001/*
002 *  Copyright 2023 Anyware Services
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.ametys.odf.rights;
017
018import java.util.Arrays;
019import java.util.HashSet;
020import java.util.Set;
021import java.util.stream.Collectors;
022
023import org.ametys.cms.repository.Content;
024import org.ametys.core.user.UserIdentity;
025import org.ametys.runtime.i18n.I18nizableText;
026
027/**
028 * Access controller based on managers attribute
029 *
030 */
031public class ODFManagerAccessController extends AbstractODFRoleAccessController
032{
033    @Override
034    protected String _getTargetProfileId()
035    {
036        return  _odfRightHelper.getManagerProfileId();
037    }
038    
039    @Override
040    protected Set<UserIdentity> _getLocalAllowedUsers(Content content)
041    {
042        UserIdentity[] allowedUsers = _odfRightHelper.getManagers(content);
043        return allowedUsers != null ? Arrays.stream(allowedUsers).collect(Collectors.toSet()) : new HashSet<>();
044    }
045    
046    @Override
047    protected String _getRoleAttributePath()
048    {
049        return ODFRightHelper.MANAGERS_FIELD_PATH;
050    }
051    
052    @Override
053    protected I18nizableText _getRoleLabel()
054    {
055        return new I18nizableText("plugin.odf", "PLUGINS_ODF_MANAGER_ACCESS_CONTROLLER_ROLE");
056    }
057
058}