com.liferay.fragment.web.internal.portlet.action.UploadFragmentCollectionResourceMVCActionCommand Maven / Gradle / Ivy
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
package com.liferay.fragment.web.internal.portlet.action;
import com.liferay.document.library.kernel.service.DLAppService;
import com.liferay.fragment.constants.FragmentActionKeys;
import com.liferay.fragment.constants.FragmentConstants;
import com.liferay.fragment.constants.FragmentPortletKeys;
import com.liferay.item.selector.ItemSelectorUploadResponseHandler;
import com.liferay.portal.kernel.portlet.bridges.mvc.BaseMVCActionCommand;
import com.liferay.portal.kernel.portlet.bridges.mvc.MVCActionCommand;
import com.liferay.portal.kernel.security.auth.PrincipalException;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermission;
import com.liferay.portal.kernel.theme.ThemeDisplay;
import com.liferay.portal.kernel.upload.UploadPortletRequest;
import com.liferay.portal.kernel.util.WebKeys;
import com.liferay.upload.BaseImageEditorUploadFileEntryHandler;
import com.liferay.upload.UniqueFileNameProvider;
import com.liferay.upload.UploadHandler;
import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Jürgen Kappler
*/
@Component(
property = {
"javax.portlet.name=" + FragmentPortletKeys.FRAGMENT,
"mvc.command.name=/fragment/upload_fragment_collection_resource"
},
service = MVCActionCommand.class
)
public class UploadFragmentCollectionResourceMVCActionCommand
extends BaseMVCActionCommand {
@Override
protected void doProcessAction(
ActionRequest actionRequest, ActionResponse actionResponse)
throws Exception {
_uploadHandler.upload(
_fragmentCollectionResourceImageEditorUploadFileEntryHandler,
_itemSelectorUploadResponseHandler, actionRequest, actionResponse);
}
@Reference
private DLAppService _dlAppService;
private final FragmentCollectionResourceImageEditorUploadFileEntryHandler
_fragmentCollectionResourceImageEditorUploadFileEntryHandler =
new FragmentCollectionResourceImageEditorUploadFileEntryHandler();
@Reference
private ItemSelectorUploadResponseHandler
_itemSelectorUploadResponseHandler;
@Reference(
target = "(resource.name=" + FragmentConstants.RESOURCE_NAME + ")"
)
private PortletResourcePermission _portletResourcePermission;
@Reference
private UniqueFileNameProvider _uniqueFileNameProvider;
@Reference
private UploadHandler _uploadHandler;
private class FragmentCollectionResourceImageEditorUploadFileEntryHandler
extends BaseImageEditorUploadFileEntryHandler {
@Override
protected void checkPermissions(
UploadPortletRequest uploadPortletRequest)
throws PrincipalException {
ThemeDisplay themeDisplay =
(ThemeDisplay)uploadPortletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
_portletResourcePermission.check(
themeDisplay.getPermissionChecker(),
themeDisplay.getScopeGroup(),
FragmentActionKeys.MANAGE_FRAGMENT_ENTRIES);
}
@Override
protected DLAppService getDLAppService() {
return _dlAppService;
}
@Override
protected String getFolderName() {
return FragmentCollectionResourceImageEditorUploadFileEntryHandler.
class.getName();
}
@Override
protected UniqueFileNameProvider getUniqueFileNameProvider() {
return _uniqueFileNameProvider;
}
}
}