alfresco-ng2-components/lib/core/services/identity-group.service.ts
tomgny a40de80658
[AAE-6389] Remove duplicated identity user service mock (#7373)
* [AAE-6389] removed duplicate services and refactored existing

* [AAE-6389] improved and moved mocks to proper files

* [AAE-6389] fixed circular dependency
2021-11-24 10:18:20 +00:00

293 lines
10 KiB
TypeScript

/*!
* @license
* Copyright 2019 Alfresco Software, Ltd.
*
* 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.
*/
import { Injectable } from '@angular/core';
import { Observable, of } from 'rxjs';
import { map, switchMap } from 'rxjs/operators';
import { AppConfigService } from '../app-config/app-config.service';
import {
IdentityGroupSearchParam,
IdentityGroupQueryCloudRequestModel,
IdentityGroupModel,
IdentityGroupQueryResponse,
IdentityGroupCountModel
} from '../models/identity-group.model';
import { IdentityRoleModel } from '../models/identity-role.model';
import { IdentityGroupServiceInterface } from './identity-group.interface';
import { OAuth2Service } from './oauth2.service';
@Injectable({ providedIn: 'root' })
export class IdentityGroupService implements IdentityGroupServiceInterface {
constructor(
private oAuth2Service: OAuth2Service,
private appConfigService: AppConfigService
) {}
private get identityHost(): string {
return `${this.appConfigService.get('identityHost')}`;
}
/**
* Gets all groups.
* @returns Array of group information objects
*/
getGroups(): Observable<IdentityGroupModel[]> {
const url = `${this.identityHost}/groups`;
return this.oAuth2Service.get({ url });
}
/**
* Gets available roles
* @param groupId Id of the group.
* @returns Array of available roles information objects
*/
getAvailableRoles(groupId: string): Observable<IdentityRoleModel[]> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/realm/available`;
return this.oAuth2Service.get({ url });
}
/**
* Gets assigned roles
* @param groupId Id of the group.
* @returns Array of available roles
*/
getAssignedRoles(groupId: string): Observable<IdentityRoleModel[]> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/realm`;
return this.oAuth2Service.get({ url });
}
/**
* Assigns roles to the group
* @param groupId The ID of the group
* @param roles Array of roles to assign
*/
assignRoles(groupId: string, roles: IdentityRoleModel[]): Observable<any> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/realm`;
const bodyParam = JSON.stringify(roles);
return this.oAuth2Service.post({ url, bodyParam });
}
/**
* Removes roles from the group
* @param groupId The ID of the group
* @param roles Array of roles to remove
*/
removeRoles(groupId: string, roles: IdentityRoleModel[]): Observable<any> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/realm`;
const bodyParam = JSON.stringify(roles);
return this.oAuth2Service.delete({ url, bodyParam });
}
/**
* Get effective roles
* @param groupId Id of the group
* @returns Array of effective roles
*/
getEffectiveRoles(groupId: string): Observable<IdentityRoleModel[]> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/realm/composite`;
return this.oAuth2Service.get({ url });
}
/**
* Queries groups.
* @returns Array of user information objects
*/
queryGroups(requestQuery: IdentityGroupQueryCloudRequestModel): Observable<IdentityGroupQueryResponse> {
const url = `${this.identityHost}/groups`;
const queryParams = { first: requestQuery.first || 0, max: requestQuery.max || 5 };
return this.getTotalGroupsCount().pipe(
switchMap((totalCount: IdentityGroupCountModel) =>
this.oAuth2Service.get<any[]>({ url, queryParams }).pipe(
map((response) => {
return <IdentityGroupQueryResponse> {
entries: response,
pagination: {
skipCount: requestQuery.first,
maxItems: requestQuery.max,
count: totalCount.count,
hasMoreItems: false,
totalItems: totalCount.count
}
};
})
))
);
}
/**
* Gets groups total count.
* @returns Number of groups count.
*/
getTotalGroupsCount(): Observable<IdentityGroupCountModel> {
const url = `${this.identityHost}/groups/count`;
return this.oAuth2Service.get({ url });
}
/**
* Creates new group.
* @param newGroup Object of containing the new group details.
* @returns Empty response when the group created.
*/
createGroup(newGroup: IdentityGroupModel): Observable<any> {
const url = `${this.identityHost}/groups`;
const bodyParam = newGroup;
return this.oAuth2Service.post({ url, bodyParam });
}
/**
* Updates group details.
* @param groupId Id of the targeted group.
* @param updatedGroup Object of containing the group details
* @returns Empty response when the group updated.
*/
updateGroup(groupId: string, updatedGroup: IdentityGroupModel): Observable<any> {
const url = `${this.identityHost}/groups/${groupId}`;
const bodyParam = JSON.stringify(updatedGroup);
return this.oAuth2Service.put({ url, bodyParam });
}
/**
* Deletes Group.
* @param groupId Id of the group.
* @returns Empty response when the group deleted.
*/
deleteGroup(groupId: string): Observable<any> {
const url = `${this.identityHost}/groups/${groupId}`;
return this.oAuth2Service.delete({ url });
}
/**
* Finds groups filtered by name.
* @param searchParams Object containing the name filter string
* @returns List of group information
*/
findGroupsByName(searchParams: IdentityGroupSearchParam): Observable<IdentityGroupModel[]> {
if (searchParams.name === '') {
return of([]);
}
const url = `${this.identityHost}/groups`;
const queryParams = { search: searchParams.name };
return this.oAuth2Service.get({ url, queryParams });
}
/**
* Gets details for a specified group.
* @param groupId Id of the target group
* @returns Group details
*/
getGroupRoles(groupId: string): Observable<IdentityRoleModel[]> {
const url = this.buildRolesUrl(groupId);
return this.oAuth2Service.get({ url });
}
/**
* Check that a group has one or more roles from the supplied list.
* @param groupId Id of the target group
* @param roleNames Array of role names
* @returns True if the group has one or more of the roles, false otherwise
*/
checkGroupHasRole(groupId: string, roleNames: string[]): Observable<boolean> {
return this.getGroupRoles(groupId).pipe(map((groupRoles) => {
let hasRole = false;
if (groupRoles?.length > 0) {
roleNames.forEach((roleName: string) => {
const role = groupRoles.find(({ name }) => roleName === name);
if (role) {
hasRole = true;
return;
}
});
}
return hasRole;
}));
}
/**
* Gets the client Id using the app name.
* @param applicationName Name of the app
* @returns client Id string
*/
getClientIdByApplicationName(applicationName: string): Observable<string> {
const url = `${this.identityHost}/clients`;
const queryParams = {clientId: applicationName};
return this.oAuth2Service.get<any[]>({ url, queryParams }).pipe(
map((response) => response && response.length > 0 ? response[0].id : '')
);
}
/**
* Gets client roles.
* @param groupId Id of the target group
* @param clientId Id of the client
* @returns List of roles
*/
getClientRoles(groupId: string, clientId: string): Observable<IdentityRoleModel[]> {
const url = `${this.identityHost}/groups/${groupId}/role-mappings/clients/${clientId}`;
return this.oAuth2Service.get({ url });
}
/**
* Checks if a group has a client app.
* @param groupId Id of the target group
* @param clientId Id of the client
* @returns True if the group has the client app, false otherwise
*/
checkGroupHasClientApp(groupId: string, clientId: string): Observable<boolean> {
return this.getClientRoles(groupId, clientId).pipe(
map((response) => response && response.length > 0)
);
}
/**
* Check if a group has any of the client app roles in the supplied list.
* @param groupId Id of the target group
* @param clientId Id of the client
* @param roleNames Array of role names to check
* @returns True if the group has one or more of the roles, false otherwise
*/
checkGroupHasAnyClientAppRole(groupId: string, clientId: string, roleNames: string[]): Observable<boolean> {
return this.getClientRoles(groupId, clientId).pipe(
map((clientRoles: any[]) => {
let hasRole = false;
if (clientRoles.length > 0) {
roleNames.forEach((roleName) => {
const role = clientRoles.find(({ name }) => name === roleName);
if (role) {
hasRole = true;
return;
}
});
}
return hasRole;
})
);
}
private buildRolesUrl(groupId: string): string {
return `${this.identityHost}/groups/${groupId}/role-mappings/realm/composite`;
}
}