org.restheart.security.authorizers.FileAclPermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restheart-security Show documentation
Show all versions of restheart-security Show documentation
RESTHeart Security - Security plugins
/*-
* ========================LICENSE_START=================================
* restheart-security
* %%
* Copyright (C) 2018 - 2024 SoftInstigate
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* =========================LICENSE_END==================================
*/
package org.restheart.security.authorizers;
import static org.restheart.plugins.ConfigurablePlugin.argValue;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import org.restheart.configuration.ConfigurationException;
import org.restheart.security.AclVarsInterpolator;
import org.restheart.security.BaseAclPermission;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import io.undertow.predicate.PredicateParser;
/**
* ACL Permission that specifies the conditions that are necessary to perform
* the request
*
* The request is authorized if AclPermission.resolve() to true
*
* @author Andrea Di Cesare {@literal }
*/
public class FileAclPermission extends BaseAclPermission {
private static final Logger LOGGER = LoggerFactory.getLogger(FileAclPermission.class);
private final String requestPredicate;
private FileAclPermission(String requestPredicate, Set roles, int priority, Map raw) throws ConfigurationException {
super(req -> AclVarsInterpolator.interpolatePredicate(req, requestPredicate, FileAclPermission.class.getClassLoader()).resolve(req.getExchange()), roles, priority, raw);
this.requestPredicate = requestPredicate;
}
/**
* build acl permission from file definition
*
* @param seq
* @param args
* @throws ConfigurationException
*/
static FileAclPermission build(Map args) throws ConfigurationException {
var roles = new LinkedHashSet();
if (args.containsKey("role") && args.containsKey("roles")) {
throw new ConfigurationException("Wrong permission: it specifies both 'role' and 'roles'; it requires just one or the other.");
} else if (args.containsKey("role")) {
roles.add(argValue(args, "role"));
} else if (args.containsKey("roles")) {
roles.addAll(argValue(args, "roles"));
} else {
throw new ConfigurationException("Wrong permission: does not specify 'role' or 'roles'.");
}
if (!args.containsKey("predicate")) {
throw new ConfigurationException("Wrong permission: missing 'predicate'");
}
String argPredicate = argValue(args, "predicate");
if (argPredicate == null) {
throw new ConfigurationException("Wrong permission: 'predicate' cannot be null");
}
try {
// check predicate
PredicateParser.parse(argPredicate, FileAclPermission.class.getClassLoader());
} catch (Throwable t) {
throw new ConfigurationException("Wrong permission: invalid predicate: " + argPredicate, t);
}
int priority;
if (args.containsKey("priority")) {
priority = argValue(args, "priority");
} else {
LOGGER.warn("Predicate {} {} doesn't have priority; setting it to very low priority", roles, argPredicate);
priority = Integer.MAX_VALUE; // very low priority
}
return new FileAclPermission(argPredicate, roles, priority, args);
}
/**
*
* @return the requestPredicate
*/
public String getRequestPredicate() {
return requestPredicate;
}
}