mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
///<reference path="../../typings/main.d.ts"/>
|
|
|
|
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
|
|
import {GalleryMWs} from "../middlewares/GalleryMWs";
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
|
|
export class GalleryRouter{
|
|
constructor(private app){
|
|
|
|
this.addGetImageThumbnail();
|
|
this.addGetImage();
|
|
this.addDirectoryList();
|
|
|
|
this.addSearch();
|
|
this.addAutoComplete();
|
|
}
|
|
|
|
private addDirectoryList() {
|
|
this.app.get(["/api/gallery/:directory(*)","/api/gallery/","/api/gallery//"],
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.listDirectory,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
|
|
private addGetImage() {
|
|
this.app.get(["/api/gallery/:imagePath(*\.(jpg|bmp|png|gif|jpeg))"],
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.loadImage,
|
|
RenderingMWs.renderFile
|
|
);
|
|
};
|
|
|
|
private addGetImageThumbnail() {
|
|
this.app.get("/api/gallery/:directory/:image/thumbnail",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.loadThumbnail,
|
|
RenderingMWs.renderFile
|
|
);
|
|
};
|
|
|
|
private addSearch() {
|
|
this.app.get("/api/gallery/search",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.search,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
private addAutoComplete() {
|
|
this.app.get("/api/gallery/autocomplete",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.autocomplete,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
|
|
|
|
} |