1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/src/frontend/app/ui/gallery/share.service.ts
2021-04-18 15:48:35 +02:00

118 lines
3.3 KiB
TypeScript

import {Injectable} from '@angular/core';
import {NetworkService} from '../../model/network/network.service';
import {CreateSharingDTO, SharingDTO} from '../../../../common/entities/SharingDTO';
import {Router, RoutesRecognized} from '@angular/router';
import {BehaviorSubject} from 'rxjs';
import {distinctUntilChanged, filter} from 'rxjs/operators';
import {QueryParams} from '../../../../common/QueryParams';
import {UserDTO} from '../../../../common/entities/UserDTO';
@Injectable()
export class ShareService {
param: string = null;
queryParam: string = null;
sharingKey: string = null;
inited = false;
public ReadyPR: Promise<void>;
public sharingSubject: BehaviorSubject<SharingDTO> = new BehaviorSubject(null);
public currentSharing = this.sharingSubject
.asObservable().pipe(filter(s => s !== null)).pipe(distinctUntilChanged());
private resolve: () => void;
constructor(private networkService: NetworkService,
private router: Router) {
this.ReadyPR = new Promise((resolve: () => void) => {
if (this.inited === true) {
return resolve();
}
this.resolve = resolve;
});
this.router.events.subscribe(async val => {
if (val instanceof RoutesRecognized) {
this.param = val.state.root.firstChild.params[QueryParams.gallery.sharingKey_params] || null;
this.queryParam = val.state.root.firstChild.queryParams[QueryParams.gallery.sharingKey_query] || null;
const changed = this.sharingKey !== (this.param || this.queryParam);
if (changed) {
this.sharingKey = this.param || this.queryParam || this.sharingKey;
await this.getSharing();
}
if (this.resolve) {
this.resolve();
this.resolve = null;
this.inited = true;
}
}
});
}
onNewUser = async (user: UserDTO) => {
if (user && !!user.usedSharingKey) {
if (user.usedSharingKey !== this.sharingKey ||
this.sharingSubject.value == null) {
this.sharingKey = user.usedSharingKey;
await this.getSharing();
}
if (this.resolve) {
this.resolve();
this.resolve = null;
this.inited = true;
}
}
}
public wait(): Promise<void> {
if (this.inited) {
return Promise.resolve();
}
return this.ReadyPR;
}
public createSharing(dir: string, includeSubFolders: boolean, valid: number): Promise<SharingDTO> {
return this.networkService.postJson('/share/' + dir, {
createSharing: {
includeSubfolders: includeSubFolders,
valid
} as CreateSharingDTO
});
}
public updateSharing(dir: string, sharingId: number, includeSubFolders: boolean, password: string, valid: number): Promise<SharingDTO> {
return this.networkService.putJson('/share/' + dir, {
updateSharing: {
id: sharingId,
includeSubfolders: includeSubFolders,
valid,
password
} as CreateSharingDTO
});
}
public getSharingKey(): string {
return this.sharingKey;
}
public isSharing(): boolean {
return this.sharingKey != null;
}
private async getSharing(): Promise<void> {
try {
this.sharingSubject.next(null);
const sharing = await this.networkService.getJson<SharingDTO>('/share/' + this.getSharingKey());
this.sharingSubject.next(sharing);
} catch (e) {
console.error(e);
}
}
}