001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.service.permission;
016    
017    import com.liferay.portal.kernel.exception.PortalException;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.model.LayoutBranch;
020    import com.liferay.portal.security.auth.PrincipalException;
021    import com.liferay.portal.security.permission.PermissionChecker;
022    import com.liferay.portal.service.LayoutBranchLocalServiceUtil;
023    
024    /**
025     * @author Brian Wing Shun Chan
026     */
027    public class LayoutBranchPermissionImpl implements LayoutBranchPermission {
028    
029            public void check(
030                            PermissionChecker permissionChecker, LayoutBranch layoutBranch,
031                            String actionId)
032                    throws PortalException {
033    
034                    if (!contains(permissionChecker, layoutBranch, actionId)) {
035                            throw new PrincipalException();
036                    }
037            }
038    
039            public void check(
040                            PermissionChecker permissionChecker, long layoutBranchId,
041                            String actionId)
042                    throws PortalException, SystemException {
043    
044                    if (!contains(permissionChecker, layoutBranchId, actionId)) {
045                            throw new PrincipalException();
046                    }
047            }
048    
049            public boolean contains(
050                    PermissionChecker permissionChecker, LayoutBranch layoutBranch,
051                    String actionId) {
052    
053                    return permissionChecker.hasPermission(
054                            layoutBranch.getGroupId(), LayoutBranch.class.getName(),
055                            layoutBranch.getLayoutBranchId(), actionId);
056            }
057    
058            public boolean contains(
059                            PermissionChecker permissionChecker, long layoutBranchId,
060                            String actionId)
061                    throws PortalException, SystemException {
062    
063                    LayoutBranch layoutBranch =
064                            LayoutBranchLocalServiceUtil.getLayoutBranch(layoutBranchId);
065    
066                    return contains(permissionChecker, layoutBranch, actionId);
067            }
068    
069    }