2019-06-03 15:20:36 +02:00
|
|
|
import {Injectable} from '@angular/core';
|
2020-01-29 11:20:53 +01:00
|
|
|
import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot} from '@angular/router';
|
2019-06-03 15:20:36 +02:00
|
|
|
import {Observable} from 'rxjs';
|
2018-03-27 10:22:55 +02:00
|
|
|
import {Session} from './utils/helper.class';
|
2018-11-01 18:20:05 +01:00
|
|
|
import {LoginErrorCodes} from './utils/guardHelper.class';
|
2020-11-11 15:43:13 +01:00
|
|
|
import {map, tap} from "rxjs/operators";
|
2019-09-13 09:01:19 +02:00
|
|
|
import {UserManagementService} from "../services/user-management.service";
|
2018-03-27 10:22:55 +02:00
|
|
|
|
|
|
|
@Injectable()
|
2019-06-03 15:20:36 +02:00
|
|
|
export class ClaimsCuratorGuard implements CanActivate {
|
2020-01-29 11:20:53 +01:00
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
constructor(private router: Router,
|
2020-01-29 11:20:53 +01:00
|
|
|
private userManagementService: UserManagementService) {
|
2019-02-26 16:25:52 +01:00
|
|
|
}
|
2020-01-29 11:20:53 +01:00
|
|
|
|
|
|
|
check(path: string): Observable<boolean> | boolean {
|
2019-01-25 12:18:38 +01:00
|
|
|
let errorCode = LoginErrorCodes.NOT_LOGIN;
|
2020-11-11 15:43:13 +01:00
|
|
|
return this.userManagementService.getUserInfo(false).pipe(map(user => {
|
2020-01-29 11:20:53 +01:00
|
|
|
if (user) {
|
|
|
|
errorCode = LoginErrorCodes.NOT_ADMIN;
|
|
|
|
}
|
|
|
|
return Session.isClaimsCurator(user) || Session.isPortalAdministrator(user);
|
2020-11-11 15:43:13 +01:00
|
|
|
}),tap(isAdmin => {
|
|
|
|
if(!isAdmin) {
|
|
|
|
this.router.navigate(['/user-info'], {
|
|
|
|
queryParams: {
|
|
|
|
'errorCode': errorCode,
|
|
|
|
'redirectUrl': path
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-09-13 09:01:19 +02:00
|
|
|
}));
|
2019-01-25 12:18:38 +01:00
|
|
|
}
|
2020-01-29 11:20:53 +01:00
|
|
|
|
2019-01-25 12:18:38 +01:00
|
|
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | boolean {
|
2019-01-29 14:03:31 +01:00
|
|
|
return this.check(state.url);
|
2019-01-25 12:18:38 +01:00
|
|
|
}
|
2020-01-29 11:20:53 +01:00
|
|
|
|
2018-03-27 10:22:55 +02:00
|
|
|
}
|