2018-03-31 03:30:30 +08:00
|
|
|
import {Injectable} from '@angular/core';
|
|
|
|
import {NetworkService} from '../model/network/network.service';
|
|
|
|
import {ContentWrapper} from '../../../common/entities/ConentWrapper';
|
|
|
|
import {DirectoryDTO} from '../../../common/entities/DirectoryDTO';
|
|
|
|
import {SearchTypes} from '../../../common/entities/AutoCompleteItem';
|
|
|
|
import {GalleryCacheService} from './cache.gallery.service';
|
2018-05-23 08:27:07 +08:00
|
|
|
import {BehaviorSubject} from 'rxjs';
|
2018-03-31 03:30:30 +08:00
|
|
|
import {SharingDTO} from '../../../common/entities/SharingDTO';
|
|
|
|
import {Config} from '../../../common/config/public/Config';
|
|
|
|
import {ShareService} from './share.service';
|
2018-05-27 09:44:32 +08:00
|
|
|
import {NavigationService} from '../model/navigation.service';
|
2018-05-29 02:03:12 +08:00
|
|
|
import {SortingMethods} from '../../../common/entities/SortingMethods';
|
|
|
|
|
2016-03-20 23:54:30 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-09 23:04:56 +08:00
|
|
|
export class GalleryService {
|
2016-05-05 23:51:51 +08:00
|
|
|
|
2018-05-29 02:03:12 +08:00
|
|
|
|
2017-06-21 19:47:21 +08:00
|
|
|
public content: BehaviorSubject<ContentWrapper>;
|
2018-05-29 02:03:12 +08:00
|
|
|
public sorting: BehaviorSubject<SortingMethods>;
|
2017-06-11 04:32:56 +08:00
|
|
|
private lastDirectory: DirectoryDTO;
|
|
|
|
private searchId: any;
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
constructor(private networkService: NetworkService,
|
|
|
|
private galleryCacheService: GalleryCacheService,
|
2018-05-27 09:44:32 +08:00
|
|
|
private _shareService: ShareService,
|
|
|
|
private navigatoinService: NavigationService) {
|
2017-06-21 19:47:21 +08:00
|
|
|
this.content = new BehaviorSubject<ContentWrapper>(new ContentWrapper());
|
2018-11-02 23:24:37 +08:00
|
|
|
this.sorting = new BehaviorSubject<SortingMethods>(Config.Client.Other.defaultPhotoSortingMethod);
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lastRequest: { directory: string } = {
|
|
|
|
directory: null
|
|
|
|
};
|
|
|
|
|
2018-05-29 02:03:12 +08:00
|
|
|
setSorting(sorting: SortingMethods): void {
|
|
|
|
this.sorting.next(sorting);
|
|
|
|
}
|
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
public loadDirectory(directoryName: string): void {
|
2017-06-21 19:47:21 +08:00
|
|
|
const content = new ContentWrapper();
|
2017-06-11 04:32:56 +08:00
|
|
|
|
2017-06-21 19:47:21 +08:00
|
|
|
content.directory = this.galleryCacheService.getDirectory(directoryName);
|
|
|
|
content.searchResult = null;
|
|
|
|
|
|
|
|
this.content.next(content);
|
2017-06-11 04:32:56 +08:00
|
|
|
this.lastRequest.directory = directoryName;
|
|
|
|
|
2017-07-20 02:47:09 +08:00
|
|
|
const params = {};
|
2018-05-13 00:19:51 +08:00
|
|
|
if (Config.Client.Sharing.enabled === true) {
|
2017-07-04 01:17:49 +08:00
|
|
|
if (this._shareService.isSharing()) {
|
2017-07-20 02:47:09 +08:00
|
|
|
params['sk'] = this._shareService.getSharingKey();
|
2017-07-04 01:17:49 +08:00
|
|
|
}
|
|
|
|
}
|
2017-07-08 06:18:24 +08:00
|
|
|
|
2017-07-22 01:14:22 +08:00
|
|
|
if (content.directory && content.directory.lastModified && content.directory.lastScanned &&
|
|
|
|
!content.directory.isPartial) {
|
2017-07-20 02:47:09 +08:00
|
|
|
params['knownLastModified'] = content.directory.lastModified;
|
|
|
|
params['knownLastScanned'] = content.directory.lastScanned;
|
2017-07-04 01:17:49 +08:00
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
|
2017-07-20 02:47:09 +08:00
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
this.networkService.getJson<ContentWrapper>('/gallery/content/' + directoryName, params).then((cw) => {
|
2017-07-20 02:47:09 +08:00
|
|
|
|
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
if (!cw || cw.notModified === true) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
this.galleryCacheService.setDirectory(cw.directory); // save it before adding references
|
2017-03-18 07:11:53 +08:00
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
if (this.lastRequest.directory !== directoryName) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-10 01:14:33 +08:00
|
|
|
|
2016-05-16 17:03:11 +08:00
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
DirectoryDTO.addReferences(<DirectoryDTO>cw.directory);
|
2017-06-21 19:47:21 +08:00
|
|
|
|
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
this.lastDirectory = <DirectoryDTO>cw.directory;
|
|
|
|
this.content.next(cw);
|
2017-06-21 19:47:21 +08:00
|
|
|
|
|
|
|
|
2018-05-27 09:44:32 +08:00
|
|
|
}).catch(() => {
|
|
|
|
this.navigatoinService.toGallery();
|
|
|
|
});
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public async search(text: string, type?: SearchTypes): Promise<ContentWrapper> {
|
2017-07-30 15:06:12 +08:00
|
|
|
if (this.searchId != null) {
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
}
|
2018-05-13 00:19:51 +08:00
|
|
|
if (text === null || text === '' || text.trim() === '.') {
|
2018-03-31 03:30:30 +08:00
|
|
|
return null;
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-05-16 17:03:11 +08:00
|
|
|
|
2017-07-28 06:08:35 +08:00
|
|
|
this.content.next(new ContentWrapper());
|
2017-07-30 15:06:12 +08:00
|
|
|
const cw = new ContentWrapper();
|
|
|
|
cw.searchResult = this.galleryCacheService.getSearch(text, type);
|
|
|
|
if (cw.searchResult == null) {
|
|
|
|
const params = {};
|
2018-05-13 00:19:51 +08:00
|
|
|
if (typeof type !== 'undefined') {
|
2017-07-30 15:06:12 +08:00
|
|
|
params['type'] = type;
|
|
|
|
}
|
2018-03-31 03:30:30 +08:00
|
|
|
cw.searchResult = (await this.networkService.getJson<ContentWrapper>('/search/' + text, params)).searchResult;
|
2017-07-30 15:06:12 +08:00
|
|
|
this.galleryCacheService.setSearch(text, type, cw.searchResult);
|
|
|
|
}
|
2017-07-04 01:17:49 +08:00
|
|
|
this.content.next(cw);
|
|
|
|
return cw;
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public async instantSearch(text: string): Promise<ContentWrapper> {
|
2018-05-13 00:19:51 +08:00
|
|
|
if (text === null || text === '' || text.trim() === '.') {
|
2017-07-30 15:06:12 +08:00
|
|
|
const content = new ContentWrapper(this.lastDirectory);
|
2017-06-21 19:47:21 +08:00
|
|
|
this.content.next(content);
|
2017-07-30 15:06:12 +08:00
|
|
|
if (this.searchId != null) {
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
}
|
|
|
|
if (!this.lastDirectory) {
|
2018-05-27 09:44:32 +08:00
|
|
|
this.loadDirectory('/');
|
2017-07-30 15:06:12 +08:00
|
|
|
}
|
2018-03-31 03:30:30 +08:00
|
|
|
return null;
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
if (this.searchId != null) {
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
}
|
|
|
|
|
2017-07-30 15:06:12 +08:00
|
|
|
|
|
|
|
const cw = new ContentWrapper();
|
|
|
|
cw.directory = null;
|
|
|
|
cw.searchResult = this.galleryCacheService.getSearch(text);
|
|
|
|
if (cw.searchResult == null) {
|
2018-05-13 00:19:51 +08:00
|
|
|
// If result is not search cache, try to load load more
|
2017-07-30 15:06:12 +08:00
|
|
|
this.searchId = setTimeout(() => {
|
|
|
|
this.search(text);
|
|
|
|
this.searchId = null;
|
|
|
|
}, Config.Client.Search.InstantSearchTimeout);
|
|
|
|
|
|
|
|
cw.searchResult = this.galleryCacheService.getInstantSearch(text);
|
|
|
|
|
|
|
|
if (cw.searchResult == null) {
|
2018-03-31 03:30:30 +08:00
|
|
|
cw.searchResult = (await this.networkService.getJson<ContentWrapper>('/instant-search/' + text)).searchResult;
|
2017-07-30 15:06:12 +08:00
|
|
|
this.galleryCacheService.setInstantSearch(text, cw.searchResult);
|
|
|
|
}
|
|
|
|
}
|
2017-07-04 01:17:49 +08:00
|
|
|
this.content.next(cw);
|
2017-07-30 15:06:12 +08:00
|
|
|
|
2018-05-13 00:19:51 +08:00
|
|
|
// if instant search do not have a result, do not do a search
|
2018-11-05 02:28:32 +08:00
|
|
|
if (cw.searchResult.media.length === 0 && cw.searchResult.directories.length === 0) {
|
2017-07-30 15:06:12 +08:00
|
|
|
if (this.searchId != null) {
|
|
|
|
clearTimeout(this.searchId);
|
|
|
|
}
|
|
|
|
}
|
2017-07-04 01:17:49 +08:00
|
|
|
return cw;
|
|
|
|
|
|
|
|
}
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public async getSharing(sharingKey: string): Promise<SharingDTO> {
|
2018-03-31 03:30:30 +08:00
|
|
|
return this.networkService.getJson<SharingDTO>('/share/' + sharingKey);
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-20 23:54:30 +08:00
|
|
|
|
|
|
|
}
|