MongoRealmEntity.java

33 lines | 1.164 kB Blame History Raw Download
package org.keycloak.models.mongo.keycloak.entities;

import com.mongodb.DBObject;
import com.mongodb.QueryBuilder;
import org.keycloak.connections.mongo.api.MongoCollection;
import org.keycloak.connections.mongo.api.MongoIdentifiableEntity;
import org.keycloak.connections.mongo.api.context.MongoStoreInvocationContext;
import org.keycloak.models.entities.RealmEntity;

/**
 * @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
 */
@MongoCollection(collectionName = "realms")
public class MongoRealmEntity extends RealmEntity implements MongoIdentifiableEntity {

    @Override
    public void afterRemove(MongoStoreInvocationContext context) {
        DBObject query = new QueryBuilder()
                .and("realmId").is(getId())
                .get();

        // Remove all roles of this realm
        context.getMongoStore().removeEntities(MongoGroupEntity.class, query, true, context);


        // Remove all roles of this realm
        context.getMongoStore().removeEntities(MongoRoleEntity.class, query, true, context);

        // Remove all clients of this realm
        context.getMongoStore().removeEntities(MongoClientEntity.class, query, true, context);
    }
}