2019-06-05 15:33:18 +02:00
|
|
|
import {Injectable} from '@angular/core';
|
|
|
|
import {HttpClient} from '@angular/common/http';
|
2020-04-28 12:15:44 +02:00
|
|
|
import {map, tap} from "rxjs/operators";
|
2019-06-03 15:20:36 +02:00
|
|
|
import {CustomOptions} from "../../services/servicesUtils/customOptions.class";
|
2019-06-05 15:33:18 +02:00
|
|
|
import {EnvProperties} from "../properties/env-properties";
|
2020-04-10 07:16:38 +02:00
|
|
|
import {COOKIE} from "../../login/utils/helper.class";
|
2020-04-28 12:15:44 +02:00
|
|
|
import {BehaviorSubject, Observable} from "rxjs";
|
2018-07-06 12:33:16 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class SubscribeService {
|
2020-04-28 12:15:44 +02:00
|
|
|
private isSubscribedSubject: BehaviorSubject<boolean> = new BehaviorSubject(false);
|
2018-07-06 12:33:16 +02:00
|
|
|
|
2019-11-08 13:07:39 +01:00
|
|
|
constructor(private http: HttpClient) {
|
2020-04-28 12:15:44 +02:00
|
|
|
console.log("Subscribe service constructor");
|
|
|
|
}
|
|
|
|
|
|
|
|
public initIsSubscribedToCommunity(properties: EnvProperties, pid: string) {
|
|
|
|
let url = properties.adminToolsAPIURL + "/community/" + pid + "/is-subscriber/";
|
|
|
|
this.http.get<boolean>(url, CustomOptions.getAuthOptionsWithBody()).subscribe((isSubscribed) => {
|
|
|
|
this.isSubscribedSubject.next(isSubscribed);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public get isSubscribed(): Observable<boolean> {
|
|
|
|
return this.isSubscribedSubject.asObservable();
|
2019-11-08 13:07:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
getCommunitySubscribers(properties: EnvProperties, pid: string) {
|
|
|
|
let url = properties.adminToolsAPIURL + "/community/" + pid + "/subscribers";
|
|
|
|
return this.http.get<any>((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url);
|
|
|
|
}
|
|
|
|
|
2020-04-10 07:16:38 +02:00
|
|
|
getNumberOfCommunitySubscribers(properties: EnvProperties, pid: string) {
|
|
|
|
let url = properties.adminToolsAPIURL + "/community/" + pid + "/subscribers/count";
|
|
|
|
return this.http.get<any>((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url);
|
|
|
|
}
|
2019-11-08 13:07:39 +01:00
|
|
|
|
2020-04-10 07:16:38 +02:00
|
|
|
isSubscribedToCommunity(properties: EnvProperties, pid: string) {
|
|
|
|
let url = properties.adminToolsAPIURL + "/community/" + pid + "/is-subscriber/";
|
2020-04-10 08:09:15 +02:00
|
|
|
return this.http.get<boolean>(url, CustomOptions.getAuthOptionsWithBody())
|
2020-04-10 07:16:38 +02:00
|
|
|
.pipe(map(res => {
|
|
|
|
// if (res['status'] && res['status'] != 200) {
|
|
|
|
// return null;
|
|
|
|
// }
|
|
|
|
// if (res['subscribers'] && res['subscribers'] != null) {
|
|
|
|
//
|
|
|
|
// for (var i = 0; i < res['subscribers'].length; i++) {
|
|
|
|
// if (res['subscribers'][i] != null && res['subscribers'][i].email == email) {
|
|
|
|
// return true;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// return false;
|
|
|
|
return res;
|
2019-11-08 13:07:39 +01:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2020-04-10 07:16:38 +02:00
|
|
|
subscribeToCommunity(properties: EnvProperties, pid: string) {
|
2020-04-28 12:15:44 +02:00
|
|
|
return this.http.post<any>(properties.adminToolsAPIURL + "/community/" + pid + "/subscriber", {}, CustomOptions.getAuthOptionsWithBody())
|
|
|
|
.pipe(tap(isSubscribed => {
|
|
|
|
console.log("subscribe servive (subscribeToCommunity): isSubscribed: "+isSubscribed);
|
|
|
|
this.isSubscribedSubject.next(isSubscribed);}));
|
2020-04-10 07:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unSubscribeToCommunity(properties: EnvProperties, pid: string) {
|
2020-04-28 12:15:44 +02:00
|
|
|
return this.http.post<any>(properties.adminToolsAPIURL + "/community/" + pid + "/subscriber/delete", {}, CustomOptions.getAuthOptionsWithBody())
|
|
|
|
.pipe(tap(unSubscribed => {
|
|
|
|
console.log("subscribe servive (unSubscribeToCommunity): isSubscribed: "+!unSubscribed);
|
|
|
|
this.isSubscribedSubject.next(!unSubscribed);}));
|
2020-04-10 07:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
subscribeToCommunityByEmail(properties: EnvProperties, pid: string, email: string) {
|
2019-11-08 13:07:39 +01:00
|
|
|
let subscriber = {"email": email};
|
[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
|
|
|
return this.http.post<any>(properties.adminToolsAPIURL + "/community/" + pid + "/subscribers", JSON.stringify(subscriber), CustomOptions.getAuthOptionsWithBody());
|
2019-11-08 13:07:39 +01:00
|
|
|
}
|
|
|
|
|
2020-04-10 07:16:38 +02:00
|
|
|
unSubscribeToCommunityByEmail(properties: EnvProperties, pid: string, email: string) {
|
[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
|
|
|
return this.http.post<any>(properties.adminToolsAPIURL + "/community/" + pid + "/subscribers/delete", JSON.stringify([email]), CustomOptions.getAuthOptionsWithBody());
|
2019-11-08 13:07:39 +01:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:09:15 +02:00
|
|
|
getCommunitiesSubscribedTo(properties: EnvProperties/*, email: string*/) {
|
|
|
|
let url = properties.adminToolsAPIURL + "/subscriber/communities";//?email=" + email;
|
|
|
|
return this.http.get<any>(url, CustomOptions.getAuthOptionsWithBody());
|
2019-11-08 13:07:39 +01:00
|
|
|
}
|
2018-07-06 12:33:16 +02:00
|
|
|
}
|