81 lines
3.9 KiB
TypeScript
81 lines
3.9 KiB
TypeScript
import {Injectable} from '@angular/core';
|
|
import {HttpClient, HttpErrorResponse} from '@angular/common/http';
|
|
import {Observable} from 'rxjs';
|
|
import {properties} from '../../../environments/environment';
|
|
import {CustomOptions} from './servicesUtils/customOptions.class';
|
|
import {map} from 'rxjs/operators';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class UserRegistryService {
|
|
|
|
constructor(private http: HttpClient) {
|
|
}
|
|
|
|
public createRole(type: string, id: string): Observable<any[]> {
|
|
return this.http.post<any>(properties.registryUrl + 'create/' + encodeURIComponent(type) + '/' + encodeURIComponent(id), null,
|
|
CustomOptions.registryOptions()).pipe(map((response: any) => response.response));
|
|
}
|
|
|
|
public getMembersCount(type: string, id: string): Observable<any> {
|
|
return this.http.get(properties.registryUrl + encodeURIComponent(type) + '/' + encodeURIComponent(id) + '/members/count');
|
|
}
|
|
|
|
public subscribeTo(type: string, id: string): Observable<any> {
|
|
return this.http.post(properties.registryUrl + 'subscribe/' + encodeURIComponent(type) + '/' + encodeURIComponent(id),
|
|
null, CustomOptions.registryOptions());
|
|
}
|
|
|
|
public unsubscribeFrom(type: string, id: string): Observable<any> {
|
|
return this.http.post(properties.registryUrl + 'unsubscribe/' + encodeURIComponent(type) + '/' + encodeURIComponent(id),
|
|
null, CustomOptions.registryOptions());
|
|
}
|
|
|
|
public remove(type: string, id: string, email: string, role: "member" | "manager" = "manager"): Observable<any> {
|
|
return this.http.delete<any>(properties.registryUrl +
|
|
encodeURIComponent(type) + '/' + encodeURIComponent(id) + '/' + role + '/' + encodeURIComponent(email), CustomOptions.registryOptions());
|
|
}
|
|
|
|
public invite(type: string, id: string, details: any, role: "member" | "manager" = "manager"): Observable<any[]> {
|
|
return this.http.post<any>(properties.registryUrl + 'invite/' +
|
|
encodeURIComponent(type) + '/' + encodeURIComponent(id) + '/' + role, details,
|
|
CustomOptions.registryOptions()).pipe(map((response: any) => response.response));
|
|
}
|
|
|
|
public verify(id: string, code: string, role: "member" | "manager" = "manager"): Observable<any> {
|
|
return this.http.post<any>(properties.registryUrl + 'verification/' + role + '/' + encodeURIComponent(id), code, CustomOptions.registryOptions());
|
|
}
|
|
|
|
public getInvitation(id: string): Observable<any> {
|
|
return this.http.get<any>(properties.registryUrl + 'verification/' + encodeURIComponent(id), CustomOptions.registryOptions())
|
|
.pipe(map((response: any) => response.response));
|
|
}
|
|
|
|
public deleteVerification(id: string): Observable<any> {
|
|
return this.http.delete<any>(properties.registryUrl + 'verification/' + encodeURIComponent(id), CustomOptions.registryOptions());
|
|
}
|
|
|
|
public getActive(type: string, id: string, role: "member" | "manager" = "manager"): Observable<any[]> {
|
|
return this.http.get<any>(properties.registryUrl + encodeURIComponent(type) + '/' + encodeURIComponent(id) + "/" + role + 's',
|
|
CustomOptions.registryOptions()).pipe(map((response:any) => response.response), map(users => {
|
|
if(users.length > 0 && !users[0].email) {
|
|
return [];
|
|
} else {
|
|
return users;
|
|
}
|
|
}));
|
|
}
|
|
|
|
public getPending(type: string, id: string, role: "member" | "manager" = "manager"): Observable<any[]> {
|
|
return this.http.get<any>(properties.registryUrl + 'invite/' + encodeURIComponent(type) + '/' + encodeURIComponent(id) + "/" + role + 's/',
|
|
CustomOptions.registryOptions()).pipe(map((response: any) => response.response));
|
|
}
|
|
|
|
public cancelInvitation(type: string, id: string, email: string, role: "member" | "manager" = "manager"): Observable<any> {
|
|
return this.http.delete<any>(properties.registryUrl + 'invite/' +
|
|
encodeURIComponent(type) + '/' + encodeURIComponent(id) + '/' + role + '/' + encodeURIComponent(email),
|
|
CustomOptions.registryOptions());
|
|
}
|
|
}
|