/** * 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.comment.internal; import com.liferay.portal.kernel.comment.BaseDiscussionPermission; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.security.permission.ActionKeys; import com.liferay.portal.kernel.security.permission.PermissionChecker; import com.liferay.portlet.messageboards.service.permission.MBDiscussionPermission; /** * @author Adolfo Pérez * @author Sergio González */ public class MBDiscussionPermissionImpl extends BaseDiscussionPermission { public MBDiscussionPermissionImpl(PermissionChecker permissionChecker) { _permissionChecker = permissionChecker; } @Override public boolean hasAddPermission( long companyId, long groupId, String className, long classPK) { return MBDiscussionPermission.contains( _permissionChecker, companyId, groupId, className, classPK, ActionKeys.ADD_DISCUSSION); } @Override public boolean hasPermission(long commentId, String actionId) throws PortalException { return MBDiscussionPermission.contains( _permissionChecker, commentId, actionId); } @Override public boolean hasSubscribePermission( long companyId, long groupId, String className, long classPK) throws PortalException { return MBDiscussionPermission.contains( _permissionChecker, companyId, groupId, className, classPK, ActionKeys.SUBSCRIBE); } @Override public boolean hasViewPermission( long companyId, long groupId, String className, long classPK) { return MBDiscussionPermission.contains( _permissionChecker, companyId, groupId, className, classPK, ActionKeys.VIEW); } private final PermissionChecker _permissionChecker; }