2020-11-12 16:41:03 +01:00
|
|
|
import {take, tap} from 'rxjs/operators';
|
2020-08-06 22:01:37 +02:00
|
|
|
import {Injectable} from '@angular/core';
|
2020-11-12 16:41:03 +01:00
|
|
|
import {Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot} from '@angular/router';
|
|
|
|
import {Observable} from 'rxjs';
|
2018-11-01 18:20:05 +01:00
|
|
|
import {LoginErrorCodes} from '../../login/utils/guardHelper.class';
|
[Trunk | Library]:
1. community.service.ts: Mark unused method "isSubscribedToCommunity()" as "deprecated" (This service calls community API - made in Italy, not uoa-admin-tools - made in Greece).
2. connectSubscriber.guard.ts: Call "isSubscribedToCommunity()" method from "subscribe.service.ts" (not "community.service.ts").
3. curator.service.ts: getCurators(properties: EnvProperties, url: string) --> getCurators(properties: EnvProperties, emails: string): Build path for request in service.
4. email.service.ts: Build request path in service
a. sendEmail(url: string, email: Email) --> sendEmail(properties: EnvProperties, email: Email)
b. contact(url: string, email: Email, recaptcha: string = null) --> contact(properties: EnvProperties, email: Email, recaptcha: string = null)
c. Create method "notifyForNewManagers(properties: EnvProperties, communityId: string, email: Email)" (sendEmail was used for everything).
5. subscribe.service.ts:
a. subscribeToCommunity(pid: string, email: string, url: string) --> subscribeToCommunity(properties: EnvProperties, pid: string, email: string)
b. unSubscribeToCommunity(pid: string, email: string, url: string) --> unSubscribeToCommunity(properties: EnvProperties, pid: string, email: string)
6. layout.service.ts: getLayout(communityId: string, url: string) --> getLayout(properties: EnvProperties, communityId: string): Build path for request in service.
7. feedback.component.ts: In method "contact" from "emailService", build request path in service.
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@58420 d315682c-612b-4755-9ff5-7f18f6832af3
2020-04-07 16:57:26 +02:00
|
|
|
import {SubscribeService} from "../../utils/subscribe/subscribe.service";
|
2020-08-06 22:01:37 +02:00
|
|
|
import {properties} from "../../../../environments/environment";
|
2018-04-16 13:49:35 +02:00
|
|
|
|
|
|
|
@Injectable()
|
2019-06-03 15:20:36 +02:00
|
|
|
export class ConnectSubscriberGuard implements CanActivate {
|
2019-02-26 14:57:04 +01:00
|
|
|
constructor(private router: Router,
|
2020-11-12 16:41:03 +01:00
|
|
|
private subscribeService: SubscribeService) {
|
2020-08-06 22:01:37 +02:00
|
|
|
}
|
2020-11-12 16:41:03 +01:00
|
|
|
|
|
|
|
check(community: string, path: string): Observable<boolean> {
|
|
|
|
let errorCode = LoginErrorCodes.NOT_SUBSCRIBER;
|
|
|
|
return this.subscribeService.isSubscribedToCommunity(properties, community).pipe(take(1), tap(subscribed =>{
|
|
|
|
if(!subscribed){
|
|
|
|
this.router.navigate(['/user-info'], {
|
|
|
|
queryParams: {
|
|
|
|
'errorCode': errorCode,
|
|
|
|
'redirectUrl': path
|
|
|
|
}
|
|
|
|
});
|
2020-08-06 22:01:37 +02:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-04-16 13:49:35 +02:00
|
|
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | boolean {
|
2019-02-27 11:39:13 +01:00
|
|
|
return this.check(route.queryParams['communityId'], state.url);
|
2019-02-26 16:25:52 +01:00
|
|
|
}
|
2020-08-06 22:01:37 +02:00
|
|
|
|
2018-04-16 13:49:35 +02:00
|
|
|
}
|