import {Injectable} from '@angular/core'; import {HttpClient, HttpHeaders} from '@angular/common/http'; import {BehaviorSubject, Observable} from 'rxjs'; import {Affiliation} from '../../utils/entities/CuratorInfo'; import {properties} from "../../../../environments/environment"; @Injectable() export class AffiliationService { private affiliationsSubject: BehaviorSubject = new BehaviorSubject([]); constructor(private http: HttpClient) { } public initAffiliations(communityId: string): void { let url = properties.communityAPI + communityId + "/organizations"; this.http.get((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url).subscribe((affiliations) => { this.affiliationsSubject.next(affiliations); }, error => { this.affiliationsSubject.error(error); }); } public get affiliations(): Observable { return this.affiliationsSubject.asObservable(); } public updateAffiliation(url: string, affiliation: Affiliation) { let headers = new HttpHeaders({'Content-Type': 'application/json', 'accept': 'application/json'}); return this.http.post(url, JSON.stringify(affiliation), {headers: headers}); } public deleteAffiliation(url: string, id: string) { let headers = new HttpHeaders({'Content-Type': 'application/json', 'accept': 'application/json'}); return this.http.request('delete', url, {body: id, headers: headers}) } }