/** * 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.portal.service.impl; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.model.LayoutSetBranch; import com.liferay.portal.kernel.security.permission.ActionKeys; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.service.permission.GroupPermissionUtil; import com.liferay.portal.kernel.service.permission.LayoutSetBranchPermissionUtil; import com.liferay.portal.service.base.LayoutSetBranchServiceBaseImpl; import java.util.ArrayList; import java.util.List; /** * @author Raymond Augé * @author Brian Wing Shun Chan */ public class LayoutSetBranchServiceImpl extends LayoutSetBranchServiceBaseImpl { @Override public LayoutSetBranch addLayoutSetBranch( long groupId, boolean privateLayout, String name, String description, boolean master, long copyLayoutSetBranchId, ServiceContext serviceContext) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.ADD_LAYOUT_SET_BRANCH); return layoutSetBranchLocalService.addLayoutSetBranch( getUserId(), groupId, privateLayout, name, description, master, copyLayoutSetBranchId, serviceContext); } @Override public void deleteLayoutSetBranch(long layoutSetBranchId) throws PortalException { LayoutSetBranchPermissionUtil.check( getPermissionChecker(), layoutSetBranchId, ActionKeys.DELETE); layoutSetBranchLocalService.deleteLayoutSetBranch(layoutSetBranchId); } @Override public List<LayoutSetBranch> getLayoutSetBranches( long groupId, boolean privateLayout) { try { if (GroupPermissionUtil.contains( getPermissionChecker(), groupId, ActionKeys.VIEW_STAGING)) { return layoutSetBranchLocalService.getLayoutSetBranches( groupId, privateLayout); } } catch (PortalException pe) { if (_log.isDebugEnabled()) { _log.debug( "Unable to get layout set branches for group " + groupId + " with " + (privateLayout ? "private" : "public") + " layouts", pe); } } return new ArrayList<>(); } @Override public LayoutSetBranch mergeLayoutSetBranch( long layoutSetBranchId, long mergeLayoutSetBranchId, ServiceContext serviceContext) throws PortalException { LayoutSetBranchPermissionUtil.check( getPermissionChecker(), layoutSetBranchId, ActionKeys.UPDATE); return layoutSetBranchLocalService.mergeLayoutSetBranch( layoutSetBranchId, mergeLayoutSetBranchId, serviceContext); } @Override public LayoutSetBranch updateLayoutSetBranch( long groupId, long layoutSetBranchId, String name, String description, ServiceContext serviceContext) throws PortalException { LayoutSetBranchPermissionUtil.check( getPermissionChecker(), layoutSetBranchId, ActionKeys.UPDATE); return layoutSetBranchLocalService.updateLayoutSetBranch( layoutSetBranchId, name, description, serviceContext); } private static final Log _log = LogFactoryUtil.getLog( LayoutSetBranchServiceImpl.class); }