001    /**
002     * Copyright (c) 2000-2011 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.portlet.dynamicdatalists.service.permission;
016    
017    import com.liferay.portal.kernel.exception.PortalException;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.security.auth.PrincipalException;
020    import com.liferay.portal.security.permission.PermissionChecker;
021    import com.liferay.portlet.dynamicdatalists.model.DDLRecordSet;
022    import com.liferay.portlet.dynamicdatalists.service.DDLRecordSetLocalServiceUtil;
023    
024    /**
025     * @author Marcellus Tavares
026     */
027    public class DDLRecordSetPermission {
028    
029            public static void check(
030                            PermissionChecker permissionChecker, DDLRecordSet recordSet,
031                            String actionId)
032                    throws PortalException {
033    
034                    if (!contains(permissionChecker, recordSet, actionId)) {
035                            throw new PrincipalException();
036                    }
037            }
038    
039            public static void check(
040                            PermissionChecker permissionChecker, long recordSetId,
041                            String actionId)
042                    throws PortalException, SystemException {
043    
044                    if (!contains(permissionChecker, recordSetId, actionId)) {
045                            throw new PrincipalException();
046                    }
047            }
048    
049            public static void check(
050                            PermissionChecker permissionChecker, long groupId,
051                            String recordSetKey, String actionId)
052                    throws PortalException, SystemException {
053    
054                    if (!contains(permissionChecker, groupId, recordSetKey, actionId)) {
055                            throw new PrincipalException();
056                    }
057            }
058    
059            public static boolean contains(
060                    PermissionChecker permissionChecker, DDLRecordSet recordSet,
061                    String actionId) {
062    
063                    if (permissionChecker.hasOwnerPermission(
064                                    recordSet.getCompanyId(), DDLRecordSet.class.getName(),
065                                    recordSet.getRecordSetId(), recordSet.getUserId(), actionId)) {
066    
067                            return true;
068                    }
069    
070                    return permissionChecker.hasPermission(
071                            recordSet.getGroupId(), DDLRecordSet.class.getName(),
072                            recordSet.getRecordSetId(), actionId);
073            }
074    
075            public static boolean contains(
076                            PermissionChecker permissionChecker, long recordSetId,
077                            String actionId)
078                    throws PortalException, SystemException {
079    
080                    DDLRecordSet recordSet = DDLRecordSetLocalServiceUtil.getRecordSet(
081                            recordSetId);
082    
083                    return contains(permissionChecker, recordSet, actionId);
084            }
085    
086            public static boolean contains(
087                            PermissionChecker permissionChecker, long groupId,
088                            String recordSetKey, String actionId)
089                    throws PortalException, SystemException {
090    
091                    DDLRecordSet recordSet = DDLRecordSetLocalServiceUtil.getRecordSet(
092                            groupId, recordSetKey);
093    
094                    return contains(permissionChecker, recordSet, actionId);
095            }
096    
097    }