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

org.wildfly.security.auth.realm.FileSystemRealmUtil Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2021 Red Hat, Inc., and individual contributors
 * as indicated by the @author tags.
 *
 * 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.security.auth.realm;


import java.util.List;

import org.wildfly.common.Assert;
import org.wildfly.security.auth.principal.NamePrincipal;
import org.wildfly.security.auth.server.ModifiableRealmIdentity;
import org.wildfly.security.auth.server.ModifiableRealmIdentityIterator;
import org.wildfly.security.auth.server.RealmUnavailableException;
import org.wildfly.security.authz.Attributes;
import org.wildfly.security.credential.Credential;

/**
 * A utility class to utilize methods from the {@code FileSystemSecurityRealm} class for the Elytron Tool.
 *
 * @author Ashpan Raskar
 * @author Cameron Rodriguez
 */
public class FileSystemRealmUtil {

    /**
     * Copies identities from an existing {@code FileSystemSecurityRealm} to a new one.
     *
     * @param oldRealm the existing {@code FileSystemSecurityRealm} with the identities
     * @param newRealm the new {@code FileSystemSecurityRealm}
     * @throws RealmUnavailableException if either realm is unavailable or an operation fails
     */
    public static void cloneIdentitiesToNewRealm(FileSystemSecurityRealm oldRealm, FileSystemSecurityRealm newRealm) throws RealmUnavailableException {
        Assert.checkNotNullParam("Old FileSystem Realm", oldRealm);
        Assert.checkNotNullParam("New FileSystem Realm", newRealm);

        ModifiableRealmIdentityIterator realmIterator = oldRealm.getRealmIdentityIterator();

        while (realmIterator.hasNext()) {
            ModifiableRealmIdentity oldIdentity = realmIterator.next();
            List credentials = ((FileSystemSecurityRealm.Identity) oldIdentity).loadCredentials();
            Attributes attributes = oldIdentity.getAttributes();

            ModifiableRealmIdentity newIdentity = newRealm.getRealmIdentityForUpdate(new NamePrincipal(oldIdentity.getRealmIdentityPrincipal().getName()));
            newIdentity.create();
            newIdentity.setCredentials(credentials);
            newIdentity.setAttributes(attributes);
            newIdentity.dispose();
        }
        realmIterator.close();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy