org.wildfly.test.security.common.elytron.MappedRegexRealmMapper Maven / Gradle / Ivy
/*
* Copyright 2019 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 org.wildfly.test.security.common.elytron;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.jboss.as.controller.PathAddress;
import org.jboss.as.controller.PathElement;
import org.jboss.as.controller.client.ModelControllerClient;
import org.jboss.as.controller.operations.common.Util;
import org.jboss.as.test.integration.management.util.CLIWrapper;
import org.jboss.as.test.integration.security.common.Utils;
import org.jboss.dmr.ModelNode;
/**
* A {@link ConfigurableElement} to create a mapped regex realm mapper resource.
*
* @author Darran Lofthouse
*/
public class MappedRegexRealmMapper implements ConfigurableElement {
private final PathAddress address;
private final String name;
private final String pattern;
private final String delegateRealmMapper;
private final Map realmMapping;
MappedRegexRealmMapper(final String name, final String pattern, final String delegateRealmMapper, final Map realmMapping) {
this.name = name;
this.address = PathAddress.pathAddress(PathElement.pathElement("subsystem", "elytron"), PathElement.pathElement("mapped-regex-realm-mapper", name));
this.pattern = pattern;
this.delegateRealmMapper = delegateRealmMapper;
this.realmMapping = realmMapping;
}
@Override
public String getName() {
return name;
}
@Override
public void create(ModelControllerClient client, CLIWrapper cli) throws Exception {
ModelNode addOperation = Util.createAddOperation(address);
addOperation.get("pattern").set(pattern);
if (delegateRealmMapper != null) {
addOperation.get("delegate-realm-mapper").set(delegateRealmMapper);
}
if (realmMapping.size() > 0) {
ModelNode realmMapping = new ModelNode();
for (Entry entry : this.realmMapping.entrySet()) {
realmMapping.get(entry.getKey()).set(entry.getValue());
}
addOperation.get("realm-map").set(realmMapping);
}
Utils.applyUpdate(addOperation, client);
}
@Override
public void remove(ModelControllerClient client, CLIWrapper cli) throws Exception {
ModelNode removeOperation = Util.createRemoveOperation(address);
Utils.applyUpdate(removeOperation, client);
}
public static Builder builder(final String name) {
return new Builder(name);
}
public static class Builder {
private final String name;
private String pattern;
private String delegateRealmMapper;
private Map realmMapping = new HashMap<>();
Builder(final String name) {
this.name = name;
}
public Builder withPattern(final String pattern) {
this.pattern = pattern;
return this;
}
public Builder withDelegateRealmMapper(final String delegateRealmMapper) {
this.delegateRealmMapper = delegateRealmMapper;
return this;
}
public Builder withRealmMapping(final String from, final String to) {
realmMapping.put(from, to);
return this;
}
public MappedRegexRealmMapper build() {
return new MappedRegexRealmMapper(name, pattern, delegateRealmMapper, realmMapping);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy