mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
2ea0ea42e3
upgrading packages
31 lines
1.4 KiB
TypeScript
31 lines
1.4 KiB
TypeScript
import {DirectoryDTO} from '../../../common/entities/DirectoryDTO';
|
|
import {IGalleryManager} from '../interfaces/IGalleryManager';
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import {DiskManager} from '../DiskManger';
|
|
import {ProjectPath} from '../../ProjectPath';
|
|
import {Config} from '../../../common/config/private/Config';
|
|
import {ReIndexingSensitivity} from '../../../common/config/private/IPrivateConfig';
|
|
import {PhotoDTO} from '../../../common/entities/PhotoDTO';
|
|
|
|
export class GalleryManager implements IGalleryManager {
|
|
|
|
public listDirectory(relativeDirectoryName: string, knownLastModified?: number, knownLastScanned?: number): Promise<DirectoryDTO> {
|
|
// If it seems that the content did not changed, do not work on it
|
|
if (knownLastModified && knownLastScanned) {
|
|
const stat = fs.statSync(path.join(ProjectPath.ImageFolder, relativeDirectoryName));
|
|
const lastModified = Math.max(stat.ctime.getTime(), stat.mtime.getTime());
|
|
if (Date.now() - knownLastScanned <= Config.Server.indexing.cachedFolderTimeout &&
|
|
lastModified === knownLastModified &&
|
|
Config.Server.indexing.reIndexingSensitivity < ReIndexingSensitivity.high) {
|
|
return Promise.resolve(null);
|
|
}
|
|
}
|
|
return DiskManager.scanDirectory(relativeDirectoryName);
|
|
}
|
|
|
|
getRandomPhoto(RandomQuery): Promise<PhotoDTO> {
|
|
throw new Error('Random photo is not supported without database');
|
|
}
|
|
}
|