2016-05-09 23:04:56 +08:00
|
|
|
import * as path from "path";
|
|
|
|
import * as fs from "fs";
|
2016-03-20 02:59:19 +08:00
|
|
|
import {NextFunction, Request, Response} from "express";
|
|
|
|
import {Error, ErrorCodes} from "../../common/entities/Error";
|
2016-12-28 03:55:51 +08:00
|
|
|
import {DirectoryDTO} from "../../common/entities/DirectoryDTO";
|
2016-04-22 19:23:44 +08:00
|
|
|
import {ObjectManagerRepository} from "../model/ObjectManagerRepository";
|
2017-07-08 06:18:24 +08:00
|
|
|
import {SearchTypes} from "../../common/entities/AutoCompleteItem";
|
2016-05-10 01:14:33 +08:00
|
|
|
import {ContentWrapper} from "../../common/entities/ConentWrapper";
|
2016-12-28 03:55:51 +08:00
|
|
|
import {PhotoDTO} from "../../common/entities/PhotoDTO";
|
2016-06-22 22:34:44 +08:00
|
|
|
import {ProjectPath} from "../ProjectPath";
|
2017-06-04 04:35:47 +08:00
|
|
|
import {Logger} from "../Logger";
|
2017-06-04 21:25:08 +08:00
|
|
|
import {Config} from "../../common/config/private/Config";
|
2017-07-04 01:17:49 +08:00
|
|
|
import {UserUtil} from "../../common/entities/UserDTO";
|
2016-03-20 02:59:19 +08:00
|
|
|
|
2017-06-04 04:35:47 +08:00
|
|
|
|
|
|
|
const LOG_TAG = "[GalleryMWs]";
|
2016-03-26 18:19:10 +08:00
|
|
|
export class GalleryMWs {
|
2016-03-20 02:59:19 +08:00
|
|
|
|
2016-03-26 18:19:10 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
public static async listDirectory(req: Request, res: Response, next: NextFunction) {
|
2017-06-11 04:32:56 +08:00
|
|
|
let directoryName = req.params.directory || "/";
|
|
|
|
let absoluteDirectoryName = path.join(ProjectPath.ImageFolder, directoryName);
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
if (!fs.statSync(absoluteDirectoryName).isDirectory()) {
|
|
|
|
return next();
|
2016-03-20 02:59:19 +08:00
|
|
|
}
|
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
try {
|
2017-06-11 04:32:56 +08:00
|
|
|
|
2017-07-04 01:17:49 +08:00
|
|
|
const directory = await ObjectManagerRepository.getInstance().GalleryManager.listDirectory(directoryName);
|
|
|
|
if (req.session.user.permissions &&
|
|
|
|
req.session.user.permissions.length > 0 &&
|
|
|
|
req.session.user.permissions[0] != "/") {
|
|
|
|
directory.directories = directory.directories.filter(d =>
|
|
|
|
UserUtil.isDirectoryAvailable(d, req.session.user.permissions));
|
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
req.resultPipe = new ContentWrapper(directory, null);
|
|
|
|
return next();
|
2017-07-04 01:17:49 +08:00
|
|
|
|
|
|
|
} catch (err) {
|
|
|
|
Logger.warn(LOG_TAG, "Error during listing the directory", err);
|
|
|
|
console.error(err);
|
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR, err));
|
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-06-22 22:34:44 +08:00
|
|
|
|
2016-12-28 03:55:51 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public static removeCyclicDirectoryReferences(req: Request, res: Response, next: NextFunction) {
|
|
|
|
if (!req.resultPipe)
|
|
|
|
return next();
|
2017-03-18 07:11:53 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
let cw: ContentWrapper = req.resultPipe;
|
|
|
|
let removeDirs = (dir) => {
|
|
|
|
dir.photos.forEach((photo: PhotoDTO) => {
|
|
|
|
photo.directory = null;
|
|
|
|
});
|
2017-03-18 07:11:53 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
dir.directories.forEach((directory: DirectoryDTO) => {
|
|
|
|
removeDirs(directory);
|
|
|
|
directory.parent = null;
|
|
|
|
});
|
2016-06-22 22:34:44 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
};
|
2017-03-18 07:11:53 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
if (cw.directory) {
|
|
|
|
removeDirs(cw.directory);
|
2016-06-22 22:34:44 +08:00
|
|
|
}
|
|
|
|
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
return next();
|
|
|
|
}
|
2016-03-20 17:49:49 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
public static loadImage(req: Request, res: Response, next: NextFunction) {
|
|
|
|
if (!(req.params.imagePath)) {
|
|
|
|
return next();
|
|
|
|
}
|
2016-05-13 05:00:38 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
let fullImagePath = path.join(ProjectPath.ImageFolder, req.params.imagePath);
|
|
|
|
if (fs.statSync(fullImagePath).isDirectory()) {
|
|
|
|
return next();
|
2016-03-20 02:59:19 +08:00
|
|
|
}
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
//check if thumbnail already exist
|
|
|
|
if (fs.existsSync(fullImagePath) === false) {
|
2017-07-04 16:24:20 +08:00
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR, "no such file:" + fullImagePath));
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-20 02:59:19 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
req.resultPipe = fullImagePath;
|
|
|
|
return next();
|
|
|
|
}
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2016-05-16 17:03:11 +08:00
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
public static async search(req: Request, res: Response, next: NextFunction) {
|
2017-06-11 04:32:56 +08:00
|
|
|
if (Config.Client.Search.searchEnabled === false) {
|
|
|
|
return next();
|
|
|
|
}
|
2016-05-16 17:03:11 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
if (!(req.params.text)) {
|
|
|
|
return next();
|
2016-03-20 02:59:19 +08:00
|
|
|
}
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
let type: SearchTypes;
|
|
|
|
if (req.query.type) {
|
|
|
|
type = parseInt(req.query.type);
|
|
|
|
}
|
2017-07-08 06:18:24 +08:00
|
|
|
try {
|
|
|
|
const result = await ObjectManagerRepository.getInstance().SearchManager.search(req.params.text, type);
|
2016-05-10 01:14:33 +08:00
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
result.directories.forEach(dir => dir.photos = dir.photos || []);
|
2017-06-11 04:32:56 +08:00
|
|
|
req.resultPipe = new ContentWrapper(null, result);
|
|
|
|
return next();
|
2017-07-08 06:18:24 +08:00
|
|
|
} catch (err) {
|
2017-03-18 07:11:53 +08:00
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
Logger.warn(LOG_TAG, "Error during searching", err);
|
|
|
|
console.error(err);
|
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR, err));
|
|
|
|
}
|
|
|
|
}
|
2016-05-10 03:43:52 +08:00
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
public static async instantSearch(req: Request, res: Response, next: NextFunction) {
|
2017-06-11 04:32:56 +08:00
|
|
|
if (Config.Client.Search.instantSearchEnabled === false) {
|
|
|
|
return next();
|
|
|
|
}
|
2016-05-16 17:03:11 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
if (!(req.params.text)) {
|
|
|
|
return next();
|
2016-05-10 01:14:33 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
try {
|
|
|
|
const result = await ObjectManagerRepository.getInstance().SearchManager.instantSearch(req.params.text);
|
2017-06-11 04:32:56 +08:00
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
result.directories.forEach(dir => dir.photos = dir.photos || []);
|
2017-06-11 04:32:56 +08:00
|
|
|
req.resultPipe = new ContentWrapper(null, result);
|
|
|
|
return next();
|
2017-07-08 06:18:24 +08:00
|
|
|
} catch (err) {
|
|
|
|
Logger.warn(LOG_TAG, "Error during searching", err);
|
|
|
|
console.error(err);
|
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR, err));
|
|
|
|
}
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
public static async autocomplete(req: Request, res: Response, next: NextFunction) {
|
2017-06-11 04:32:56 +08:00
|
|
|
if (Config.Client.Search.autocompleteEnabled === false) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
if (!(req.params.text)) {
|
|
|
|
return next();
|
2016-03-20 02:59:19 +08:00
|
|
|
}
|
|
|
|
|
2017-07-08 06:18:24 +08:00
|
|
|
try {
|
|
|
|
req.resultPipe = await ObjectManagerRepository.getInstance().SearchManager.autocomplete(req.params.text);
|
2017-06-11 04:32:56 +08:00
|
|
|
return next();
|
2017-07-08 06:18:24 +08:00
|
|
|
} catch (err) {
|
|
|
|
Logger.warn(LOG_TAG, "Error during searching", err);
|
|
|
|
console.error(err);
|
|
|
|
return next(new Error(ErrorCodes.GENERAL_ERROR, err));
|
|
|
|
}
|
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
|
|
|
|
2016-03-20 02:59:19 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|