com.liferay.document.library.internal.security.permission.resource.FolderModelResourcePermissionRegistrar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.document.library.service
Show all versions of com.liferay.document.library.service
Liferay Document Library Service
/**
* 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.document.library.internal.security.permission.resource;
import com.liferay.document.library.kernel.service.DLAppLocalService;
import com.liferay.portal.kernel.repository.RepositoryFactory;
import com.liferay.portal.kernel.repository.model.Folder;
import com.liferay.portal.kernel.security.permission.resource.ModelResourcePermission;
import com.liferay.portal.kernel.security.permission.resource.ModelResourcePermissionFactory;
import com.liferay.portal.kernel.security.permission.resource.PortletResourcePermission;
import com.liferay.portal.kernel.util.HashMapDictionary;
import com.liferay.portlet.documentlibrary.constants.DLConstants;
import java.util.Dictionary;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
/**
* @author Preston Crary
*/
@Component(immediate = true, service = {})
public class FolderModelResourcePermissionRegistrar {
@Activate
public void activate(BundleContext bundleContext) {
Dictionary properties = new HashMapDictionary<>();
properties.put("model.class.name", Folder.class.getName());
_serviceRegistration = bundleContext.registerService(
ModelResourcePermission.class,
ModelResourcePermissionFactory.create(
Folder.class, Folder::getFolderId,
_dlAppLocalService::getFolder, _portletResourcePermission,
(modelResourcePermission, consumer) -> consumer.accept(
(permissionChecker, name, folder, actionId) ->
folder.containsPermission(
permissionChecker, actionId))),
properties);
}
@Deactivate
public void deactivate() {
_serviceRegistration.unregister();
}
@Reference
private DLAppLocalService _dlAppLocalService;
@Reference(target = "(resource.name=" + DLConstants.RESOURCE_NAME + ")")
private PortletResourcePermission _portletResourcePermission;
@Reference
private RepositoryFactory _repositoryFactory;
private ServiceRegistration _serviceRegistration;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy