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

io.fabric8.elasticsearch.plugin.acl.SearchGuardRolesMapping Maven / Gradle / Ivy

/**
 * Copyright (C) 2015 Red Hat, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.fabric8.elasticsearch.plugin.acl;

import java.io.IOException;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
import org.elasticsearch.common.xcontent.XContentBuilder;

import io.fabric8.elasticsearch.plugin.ConfigurationSettings;

public class SearchGuardRolesMapping implements Iterable, SearchGuardACLDocument {

    public static final String ADMIN_ROLE = "gen_project_operations";
    public static final String KIBANA_SHARED_ROLE = SearchGuardRoles.ROLE_PREFIX + "_ocp_kibana_shared";
    private static final String USER_HEADER = "users";
    private Map mappings = new HashMap<>();
    private Long version;
    
    public static class RolesMapping {

        private Boolean protect;
        private String name;

        private Set users = new HashSet();

        private String expire;

        public Boolean getProtected() {
            return this.protect;
        }
        
        public void setProtected(boolean protect) {
            this.protect = protect;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        public Collection getUsers() {
            return users;
        }

        public void setUsers(Collection users) {
            this.users = new HashSet<>(users);
        }

        @Override
        public String toString() {
            return new StringBuilder()
                    .append("name=").append(getName()).append("\n")
                    .append("expire=").append(getExpire()).append("\n")
                    .append("users=").append(getUsers().toArray()).append("\n")
                    .toString();
        }

        public void addAll(Collection users) {
            this.users.addAll(users);
        }

        public void setExpire(String expire) {
            this.expire = expire;
        }

        public String getExpire() {
            return this.expire;
        }
    }

    public SearchGuardRolesMapping() {
    }
    
    public SearchGuardRolesMapping(Long version) {
        if(version != null && version.longValue() >= 0) {
            this.version = version;
        }
    }
    
    public Long getVersion() {
        return version;
    }

    @Override
    public Iterator iterator() {
        return new ArrayList<>(mappings.values()).iterator();
    }

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
    }

    public void removeRolesMapping(RolesMapping mapping) {
        mappings.remove(mapping.getName());
    }

    @SuppressWarnings("unchecked")
    public SearchGuardRolesMapping load(Map source) {
        if(source == null) {
            return this;
        }
        for (String key : source.keySet()) {
            Map rawMappings = (Map) source.get(key);

            RolesMapping mapping = new RolesMapping();
            mapping.setName(key);
            mapping.setUsers((List)(rawMappings.get(USER_HEADER)));
            if(rawMappings.containsKey(EXPIRES)) {
                mapping.setExpire((String)rawMappings.get(EXPIRES));
            }
            mappings.put(mapping.getName(), mapping);
        }
        
        return this;
    }

    @Override
    public String getType() {
        return ConfigurationSettings.SEARCHGUARD_MAPPING_TYPE;
    }
    
    public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException{
        try {
            // output keys are names of mapping
            for (RolesMapping mapping : mappings.values()) {
                builder.startObject(mapping.getName());
                if(mapping.getExpire() != null) {
                    builder.field(EXPIRES, mapping.getExpire());
                }
                builder.array(USER_HEADER, mapping.getUsers().toArray());
                builder.endObject();
            }
            return builder;
        } catch (IOException e) {
            throw new RuntimeException("Unable to convert the SearchGuardRolesMapping to JSON", e);
        }
    }

    public void addAll(Collection mappings) {
        for (RolesMapping rolesMapping : mappings) {
            if(this.mappings.containsKey(rolesMapping.getName())){
                this.mappings.get(rolesMapping.getName()).addAll(rolesMapping.getUsers());
            } else {
                this.mappings.put(rolesMapping.getName(), rolesMapping);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy