Example #1
0
  protected void addComposites(AccessToken token, RoleModel role) {
    AccessToken.Access access = null;
    if (role.getContainer() instanceof RealmModel) {
      access = token.getRealmAccess();
      if (token.getRealmAccess() == null) {
        access = new AccessToken.Access();
        token.setRealmAccess(access);
      } else if (token.getRealmAccess().getRoles() != null
          && token.getRealmAccess().isUserInRole(role.getName())) return;

    } else {
      ClientModel app = (ClientModel) role.getContainer();
      access = token.getResourceAccess(app.getClientId());
      if (access == null) {
        access = token.addAccess(app.getClientId());
        if (app.isSurrogateAuthRequired()) access.verifyCaller(true);
      } else if (access.isUserInRole(role.getName())) return;
    }
    access.addRole(role.getName());
    if (!role.isComposite()) return;

    for (RoleModel composite : role.getComposites()) {
      addComposites(token, composite);
    }
  }
 private void processRoles(
     Set<RoleModel> inputRoles,
     List<RoleModel> realmRoles,
     MultivaluedHashMap<String, ClientRoleEntry> clientRoles) {
   for (RoleModel role : inputRoles) {
     if (role.getContainer() instanceof RealmModel) {
       realmRoles.add(role);
     } else {
       ClientModel currentClient = (ClientModel) role.getContainer();
       ClientRoleEntry clientRole =
           new ClientRoleEntry(
               currentClient.getClientId(),
               currentClient.getName(),
               role.getName(),
               role.getDescription());
       clientRoles.add(currentClient.getClientId(), clientRole);
     }
   }
 }