001    /**
002     * Copyright (c) 2000-2010 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.journal.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.journal.model.JournalTemplate;
022    import com.liferay.portlet.journal.service.JournalTemplateLocalServiceUtil;
023    
024    /**
025     * @author Brian Wing Shun Chan
026     * @author Raymond Augé
027     */
028    public class JournalTemplatePermission {
029    
030            public static void check(
031                            PermissionChecker permissionChecker, JournalTemplate template,
032                            String actionId)
033                    throws PortalException {
034    
035                    if (!contains(permissionChecker, template, actionId)) {
036                            throw new PrincipalException();
037                    }
038            }
039    
040            public static void check(
041                            PermissionChecker permissionChecker, long id, String actionId)
042                    throws PortalException, SystemException {
043    
044                    if (!contains(permissionChecker, id, actionId)) {
045                            throw new PrincipalException();
046                    }
047            }
048    
049            public static void check(
050                            PermissionChecker permissionChecker, long groupId,
051                            String templateId, String actionId)
052                    throws PortalException, SystemException {
053    
054                    if (!contains(permissionChecker, groupId, templateId, actionId)) {
055                            throw new PrincipalException();
056                    }
057            }
058    
059            public static boolean contains(
060                    PermissionChecker permissionChecker, JournalTemplate template,
061                    String actionId) {
062    
063                    if (permissionChecker.hasOwnerPermission(
064                                    template.getCompanyId(), JournalTemplate.class.getName(),
065                                    template.getId(), template.getUserId(), actionId)) {
066    
067                            return true;
068                    }
069    
070                    return permissionChecker.hasPermission(
071                            template.getGroupId(), JournalTemplate.class.getName(),
072                            template.getId(), actionId);
073            }
074    
075            public static boolean contains(
076                            PermissionChecker permissionChecker, long id, String actionId)
077                    throws PortalException, SystemException {
078    
079                    JournalTemplate template =
080                            JournalTemplateLocalServiceUtil.getTemplate(id);
081    
082                    return contains(permissionChecker, template, actionId);
083            }
084    
085            public static boolean contains(
086                            PermissionChecker permissionChecker, long groupId,
087                            String templateId, String actionId)
088                    throws PortalException, SystemException {
089    
090                    JournalTemplate template =
091                            JournalTemplateLocalServiceUtil.getTemplate(groupId, templateId);
092    
093                    return contains(permissionChecker, template, actionId);
094            }
095    
096    }