1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/middlewares/GalleryMWs.ts

64 lines
1.8 KiB
TypeScript
Raw Normal View History

2016-03-20 02:59:19 +08:00
2016-03-20 17:49:49 +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-03-20 17:49:49 +08:00
import {GalleryManager} from "../model/GalleryManager";
2016-04-10 05:09:28 +08:00
import {Directory} from "../../common/entities/Directory";
import {Config} from "../config/Config";
2016-03-20 02:59:19 +08:00
export class GalleryMWs {
2016-03-20 02:59:19 +08:00
2016-04-10 05:09:28 +08:00
private static getImageFolder(){
return path.join(__dirname,"/../../",Config.imagesFolder);
}
2016-03-27 02:24:12 +08:00
public static listDirectory(req:Request, res:Response, next:NextFunction){
let directoryName = req.params.directory || "/";
2016-04-10 05:09:28 +08:00
let absoluteDirectoryName = path.join(GalleryMWs.getImageFolder(), directoryName);
2016-03-20 17:49:49 +08:00
if(!fs.statSync(absoluteDirectoryName).isDirectory()){
return next();
}
GalleryManager.listDirectory(directoryName,(err,directory:Directory) => {
if(err || !directory){
return next(new Error(ErrorCodes.GENERAL_ERROR,err));
2016-03-20 17:49:49 +08:00
}
req.resultPipe = directory;
return next();
2016-03-20 17:49:49 +08:00
});
2016-03-20 02:59:19 +08:00
}
2016-03-27 02:24:12 +08:00
public static loadImage(req:Request, res:Response, next:NextFunction){
if(!(req.params.imagePath)){
2016-03-20 17:49:49 +08:00
return next();
}
2016-04-10 05:09:28 +08:00
let fullImagePath = path.join(GalleryMWs.getImageFolder(), req.params.imagePath);
2016-03-20 17:49:49 +08:00
if(fs.statSync(fullImagePath).isDirectory()){
return next();
}
req.resultPipe = fullImagePath;
return next();
2016-03-20 02:59:19 +08:00
}
2016-03-30 03:46:44 +08:00
2016-03-20 02:59:19 +08:00
public static search(req:Request, res:Response, next:NextFunction){
//TODO: implement
return next(new Error(ErrorCodes.GENERAL_ERROR));
2016-03-20 02:59:19 +08:00
}
public static autocomplete(req:Request, res:Response, next:NextFunction){
//TODO: implement
return next(new Error(ErrorCodes.GENERAL_ERROR));
2016-03-20 02:59:19 +08:00
}
}