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

org.apache.solr.security.AutorizationEditOperation Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.solr.security;

import static org.apache.solr.common.util.Utils.getDeepCopy;
import static org.apache.solr.handler.admin.SecurityConfHandler.getListValue;
import static org.apache.solr.handler.admin.SecurityConfHandler.getMapValue;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Collectors;
import org.apache.solr.common.util.CommandOperation;

// TODO is this a typo - should be Authorization?
enum AutorizationEditOperation {
  SET_USER_ROLE("set-user-role") {
    @Override
    public Map edit(Map latestConf, CommandOperation op) {
      Map roleMap = getMapValue(latestConf, "user-role");
      Map map = op.getDataMap();
      if (op.hasError()) return null;
      for (Map.Entry e : map.entrySet()) {
        if (e.getValue() == null) {
          roleMap.remove(e.getKey());
          continue;
        }
        if (e.getValue() instanceof String || e.getValue() instanceof List) {
          roleMap.put(e.getKey(), e.getValue());
        } else {
          op.addError("Unexpected value ");
          return null;
        }
      }
      return latestConf;
    }
  },
  SET_PERMISSION("set-permission") {
    @Override
    @SuppressWarnings({"unchecked"})
    public Map edit(Map latestConf, CommandOperation op) {
      Integer index = op.getInt(INDEX, null);
      Integer beforeIdx = op.getInt(BEFORE, null);
      Map dataMap = op.getDataMap();
      if (op.hasError()) return null;
      dataMap = getDeepCopy(dataMap, 3);
      dataMap.remove(BEFORE);
      if (beforeIdx != null && index != null) {
        op.addError("Cannot use 'index' and 'before together ");
        return null;
      }

      for (String key : dataMap.keySet()) {
        if (!Permission.knownKeys.contains(key)) op.addError("Unknown key, " + key);
      }
      try {
        Permission.load(dataMap);
      } catch (Exception e) {
        op.addError(e.getMessage());
        return null;
      }
      if (op.hasError()) return null;

      List> permissions =
          AutorizationEditOperation.ensureIndexOnPermissions(latestConf);
      List> permissionsCopy = new ArrayList<>();
      boolean beforeSatisfied = beforeIdx == null;
      boolean indexSatisfied = index == null;
      for (Map perm : permissions) {
        Integer thisIdx = getIndex(perm);
        if (thisIdx.equals(beforeIdx)) {
          beforeSatisfied = true;
          permissionsCopy.add(dataMap);
          permissionsCopy.add(perm);
        } else if (thisIdx.equals(index)) {
          // overwriting an existing one
          indexSatisfied = true;
          permissionsCopy.add(dataMap);
        } else {
          permissionsCopy.add(perm);
        }
      }

      if (!beforeSatisfied) {
        op.addError("Invalid 'before' :" + beforeIdx);
        return null;
      }
      if (!indexSatisfied) {
        op.addError("Invalid 'index' :" + index);
        return null;
      }

      // just add the new permission at the end if not already added via index / before
      if (!permissionsCopy.contains(dataMap)) {
        permissionsCopy.add(dataMap);
      }

      setIndex(permissionsCopy);

      latestConf.put(PERMISSIONS, permissionsCopy);
      return latestConf;
    }
  },
  UPDATE_PERMISSION("update-permission") {
    @Override
    public Map edit(Map latestConf, CommandOperation op) {
      Integer index = op.getInt(INDEX);
      if (op.hasError()) return null;

      List> permissions =
          AutorizationEditOperation.ensureIndexOnPermissions(latestConf);
      for (Map permission : permissions) {
        if (index.equals(getIndex(permission))) {
          LinkedHashMap copy = new LinkedHashMap<>(permission);
          copy.putAll(op.getDataMap());
          op.setCommandData(copy);
          latestConf.put(PERMISSIONS, permissions);
          return SET_PERMISSION.edit(latestConf, op);
        }
      }
      op.addError("No such permission " + name);
      return null;
    }
  },
  DELETE_PERMISSION("delete-permission") {
    @Override
    public Map edit(Map latestConf, CommandOperation op) {
      Integer id = op.getInt("");
      if (op.hasError()) return null;

      // find the permission to delete using the "index"
      List> p = AutorizationEditOperation.ensureIndexOnPermissions(latestConf);
      if (p.stream().anyMatch(map -> id.equals(getIndex(map)))) {
        // filter out the deleted index, then re-order the remaining indexes
        List> c =
            p.stream().filter(map -> !id.equals(getIndex(map))).collect(Collectors.toList());
        setIndex(c);
        latestConf.put(PERMISSIONS, c);
        return latestConf;
      } else {
        op.addError("No such index: " + id);
        return null;
      }
    }
  };

  private static final String PERMISSIONS = "permissions";
  private static final String INDEX = "index";
  private static final String BEFORE = "before";

  public final String name;

  AutorizationEditOperation(String s) {
    this.name = s;
  }

  public static AutorizationEditOperation get(String name) {
    for (AutorizationEditOperation o : values()) if (o.name.equals(name)) return o;
    return null;
  }

  static void setIndex(List> permissionsCopy) {
    final AtomicInteger counter = new AtomicInteger(0);
    permissionsCopy.forEach(map -> map.put(INDEX, counter.incrementAndGet()));
  }

  static Integer getIndex(final Map permission) {
    final Object idx = permission.get(INDEX);
    return (idx instanceof Number) ? ((Number) idx).intValue() : -1;
  }

  @SuppressWarnings("unchecked")
  private static List> ensureIndexOnPermissions(
      Map latestConf) {
    List> permissions =
        (List>) getListValue(latestConf, PERMISSIONS);
    // see if any permissions have "index" set ...
    if (permissions.stream().noneMatch(map -> map.containsKey(INDEX))) {
      // "index" not set on the list of permissions, add it now ...
      setIndex(permissions);
    }
    return permissions;
  }

  public abstract Map edit(Map latestConf, CommandOperation op);

  public String getOperationName() {
    return name;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy