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

dk.grinn.keycloak.migration.boundary.RealmResourceImpl Maven / Gradle / Ivy

There is a newer version: 15.0.0.1
Show newest version
package dk.grinn.keycloak.migration.boundary;

/*-
 * #%L
 * Keycloak : Migrate : Resource
 * %%
 * Copyright (C) 2019 Jonas Grann & Kim Jersin
 * %%
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * #L%
 */

import dk.grinn.keycloak.migration.entities.Session;
import static dk.grinn.keycloak.migration.resource.RealmAccessAuthFilter.getAuthResult;
import java.util.List;
import static java.util.stream.Collectors.toList;
import javax.annotation.security.RolesAllowed;
import javax.persistence.EntityManager;
import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND;
import javax.ws.rs.core.Response;
import org.keycloak.connections.jpa.JpaConnectionProvider;
import org.keycloak.models.KeycloakSession;

/**
 *
 * @author @author Kim Jersin <[email protected]>
 */
@RolesAllowed("admin")
public class RealmResourceImpl implements RealmResource {

    private final KeycloakSession session;

    private final RealmHistoryController history;

    private final RealmHistoryLockController locks;

    public RealmResourceImpl(KeycloakSession session) {
        EntityManager em = session.getProvider(JpaConnectionProvider.class).getEntityManager();
        this.locks = new RealmHistoryLockController(em);
        this.history = new RealmHistoryController(em);
        this.session = session;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Response abortSession(String realm) {
        return locks.abortSession(realm, getAuthResult(session).getToken().getPreferredUsername()) == 1
                ? Response.noContent().build()
                : Response.status(SC_NOT_FOUND).build();
    }

    @Override
    public List getAllRealmScripts() {
        return locks.getSessions(false).stream()
                .map((session) -> {
                    session.setScripts(history.getHistory(session.getRealm()));
                    return session;
                })
                .collect(toList());
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public RealmScriptResource scripts(String realm) {
        return new RealmScriptResourceImpl(history, realm);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy