1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/model/query.service.ts

37 lines
1.1 KiB
TypeScript
Raw Normal View History

import {Injectable} from '@angular/core';
import {ShareService} from '../gallery/share.service';
import {PhotoDTO} from '../../../common/entities/PhotoDTO';
2018-11-05 02:28:32 +08:00
import {MediaDTO} from '../../../common/entities/MediaDTO';
2018-11-30 22:36:42 +08:00
import {QueryParams} from '../../../common/QueryParams';
import {Utils} from '../../../common/Utils';
import {GalleryService} from '../gallery/gallery.service';
@Injectable()
export class QueryService {
constructor(private shareService: ShareService,
private galleryService: GalleryService) {
}
getMediaStringId(media: MediaDTO): string {
if (this.galleryService.isSearchResult()) {
return Utils.concatUrls(media.directory.path, media.directory.name, media.name);
} else {
return media.name;
}
}
2018-11-05 02:28:32 +08:00
getParams(media?: MediaDTO): { [key: string]: string } {
2018-11-29 06:49:33 +08:00
const query: { [key: string]: string } = {};
2018-11-05 02:28:32 +08:00
if (media) {
query[QueryParams.gallery.photo] = this.getMediaStringId(media);
}
if (this.shareService.isSharing()) {
2018-11-30 22:36:42 +08:00
query[QueryParams.gallery.sharingKey_short] = this.shareService.getSharingKey();
}
return query;
}
}