001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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    }