com.liferay.message.boards.internal.security.permission.resource.MBThreadModelResourcePermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.message.boards.service
Show all versions of com.liferay.message.boards.service
Liferay Message Boards Service
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.message.boards.internal.security.permission.resource;
import com.liferay.message.boards.model.MBMessage;
import com.liferay.message.boards.model.MBThread;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.security.auth.PrincipalException;
import com.liferay.portal.kernel.security.permission.PermissionChecker;
import com.liferay.portal.kernel.security.permission.resource.ModelResourcePermission;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermission;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Jiaxu Wei
*/
@Component(
property = "model.class.name=com.liferay.message.boards.model.MBThread",
service = ModelResourcePermission.class
)
public class MBThreadModelResourcePermission
implements ModelResourcePermission {
@Override
public void check(
PermissionChecker permissionChecker, long threadId, String actionId)
throws PortalException {
if (!contains(permissionChecker, threadId, actionId)) {
throw new PrincipalException.MustHavePermission(
permissionChecker, MBThread.class.getName(), threadId,
actionId);
}
}
@Override
public void check(
PermissionChecker permissionChecker, MBThread mbThread,
String actionId)
throws PortalException {
if (!contains(permissionChecker, mbThread, actionId)) {
throw new PrincipalException.MustHavePermission(
permissionChecker, MBThread.class.getName(),
mbThread.getRootMessageId(), actionId);
}
}
@Override
public boolean contains(
PermissionChecker permissionChecker, long threadId, String actionId)
throws PortalException {
return _messageModelResourcePermission.contains(
permissionChecker, threadId, actionId);
}
@Override
public boolean contains(
PermissionChecker permissionChecker, MBThread mbThread,
String actionId)
throws PortalException {
return contains(permissionChecker, mbThread.getThreadId(), actionId);
}
@Override
public String getModelName() {
return MBThread.class.getName();
}
@Override
public PortletResourcePermission getPortletResourcePermission() {
return _messageModelResourcePermission.getPortletResourcePermission();
}
@Reference(
target = "(model.class.name=com.liferay.message.boards.model.MBMessage)"
)
private ModelResourcePermission _messageModelResourcePermission;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy