All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.portal.service.impl.LayoutSetServiceImpl Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * 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.model.LayoutSet;
import com.liferay.portal.kernel.model.Plugin;
import com.liferay.portal.kernel.security.permission.ActionKeys;
import com.liferay.portal.kernel.service.permission.GroupPermissionUtil;
import com.liferay.portal.kernel.service.permission.PortalPermissionUtil;
import com.liferay.portal.service.base.LayoutSetServiceBaseImpl;

import java.io.File;
import java.io.InputStream;

/**
 * @author Brian Wing Shun Chan
 */
public class LayoutSetServiceImpl extends LayoutSetServiceBaseImpl {

	/**
	 * Updates the state of the layout set prototype link.
	 *
	 * 

* Important: Setting * layoutSetPrototypeLinkEnabled to true and * layoutSetPrototypeUuid to null when the layout * set prototype's current uuid is null will result in an * IllegalStateException. *

* * @param groupId the primary key of the group * @param privateLayout whether the layout set is private to the group * @param layoutSetPrototypeLinkEnabled whether the layout set prototype is * link enabled * @param layoutSetPrototypeUuid the uuid of the layout set prototype to * link with */ @Override public void updateLayoutSetPrototypeLinkEnabled( long groupId, boolean privateLayout, boolean layoutSetPrototypeLinkEnabled, String layoutSetPrototypeUuid) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.UPDATE); LayoutSet layoutSet = layoutSetLocalService.getLayoutSet( groupId, privateLayout); if (layoutSet.isLayoutSetPrototypeLinkEnabled() && !layoutSetPrototypeLinkEnabled) { PortalPermissionUtil.check( getPermissionChecker(), ActionKeys.UNLINK_LAYOUT_SET_PROTOTYPE); } layoutSetLocalService.updateLayoutSetPrototypeLinkEnabled( groupId, privateLayout, layoutSetPrototypeLinkEnabled, layoutSetPrototypeUuid); } @Override public void updateLogo( long groupId, boolean privateLayout, boolean logo, byte[] bytes) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.MANAGE_LAYOUTS); layoutSetLocalService.updateLogo(groupId, privateLayout, logo, bytes); } @Override public void updateLogo( long groupId, boolean privateLayout, boolean logo, File file) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.MANAGE_LAYOUTS); layoutSetLocalService.updateLogo(groupId, privateLayout, logo, file); } @Override public void updateLogo( long groupId, boolean privateLayout, boolean logo, InputStream inputStream) throws PortalException { updateLogo(groupId, privateLayout, logo, inputStream, true); } @Override public void updateLogo( long groupId, boolean privateLayout, boolean logo, InputStream inputStream, boolean cleanUpStream) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.MANAGE_LAYOUTS); layoutSetLocalService.updateLogo( groupId, privateLayout, logo, inputStream, cleanUpStream); } @Override public LayoutSet updateLookAndFeel( long groupId, boolean privateLayout, String themeId, String colorSchemeId, String css) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.MANAGE_LAYOUTS); pluginSettingLocalService.checkPermission( getUserId(), themeId, Plugin.TYPE_THEME); return layoutSetLocalService.updateLookAndFeel( groupId, privateLayout, themeId, colorSchemeId, css); } @Override public LayoutSet updateSettings( long groupId, boolean privateLayout, String settings) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.MANAGE_LAYOUTS); return layoutSetLocalService.updateSettings( groupId, privateLayout, settings); } @Override public LayoutSet updateVirtualHost( long groupId, boolean privateLayout, String virtualHost) throws PortalException { GroupPermissionUtil.check( getPermissionChecker(), groupId, ActionKeys.UPDATE); return layoutSetLocalService.updateVirtualHost( groupId, privateLayout, virtualHost); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy