2017-07-20 23:00:49 +02:00
|
|
|
import {DirectoryDTO} from "../../../common/entities/DirectoryDTO";
|
2016-12-27 16:09:47 +01:00
|
|
|
import {IGalleryManager} from "../interfaces/IGalleryManager";
|
2017-07-19 20:47:09 +02:00
|
|
|
import * as path from "path";
|
|
|
|
import * as fs from "fs";
|
2016-04-22 13:23:44 +02:00
|
|
|
import {DiskManager} from "../DiskManger";
|
2017-07-19 20:47:09 +02:00
|
|
|
import {ProjectPath} from "../../ProjectPath";
|
|
|
|
import {Config} from "../../../common/config/private/Config";
|
2017-07-27 23:10:16 +02:00
|
|
|
import {ReIndexingSensitivity} from "../../../common/config/private/IPrivateConfig";
|
2016-04-22 13:23:44 +02:00
|
|
|
|
2016-05-09 17:04:56 +02:00
|
|
|
export class GalleryManager implements IGalleryManager {
|
2016-04-22 13:23:44 +02:00
|
|
|
|
2017-07-20 23:00:49 +02:00
|
|
|
public listDirectory(relativeDirectoryName: string, knownLastModified?: number, knownLastScanned?: number): Promise<DirectoryDTO> {
|
2017-07-19 20:47:09 +02:00
|
|
|
//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());
|
2017-07-27 23:10:16 +02:00
|
|
|
if (Date.now() - knownLastScanned <= Config.Server.indexing.cachedFolderTimeout &&
|
|
|
|
lastModified == knownLastModified &&
|
|
|
|
Config.Server.indexing.reIndexingSensitivity < ReIndexingSensitivity.high) {
|
2017-07-20 23:00:49 +02:00
|
|
|
return Promise.resolve(null);
|
2017-07-19 20:47:09 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-03 19:17:49 +02:00
|
|
|
return DiskManager.scanDirectory(relativeDirectoryName);
|
|
|
|
}
|
2016-04-22 13:23:44 +02:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
}
|