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

75 lines
2.3 KiB
TypeScript
Raw Normal View History

2016-05-26 02:17:42 +08:00
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
2016-03-20 02:59:19 +08:00
import {GalleryMWs} from "../middlewares/GalleryMWs";
import {RenderingMWs} from "../middlewares/RenderingMWs";
2016-03-30 03:46:44 +08:00
import {ThumbnailGeneratorMWs} from "../middlewares/ThumbnailGeneratorMWs";
2016-05-09 23:04:56 +08:00
export class GalleryRouter {
2016-12-27 06:36:38 +08:00
constructor(private app: any) {
this.addGetImageThumbnail();
this.addGetImage();
2016-03-27 02:24:12 +08:00
this.addDirectoryList();
this.addSearch();
this.addInstantSearch();
this.addAutoComplete();
}
private addDirectoryList() {
2016-05-09 23:04:56 +08:00
this.app.get(["/api/gallery/content/:directory(*)", "/api/gallery/", "/api/gallery//"],
2016-05-13 05:00:38 +08:00
AuthenticationMWs.authenticate,
GalleryMWs.listDirectory,
ThumbnailGeneratorMWs.addThumbnailInformation,
GalleryMWs.removeCyclicDirectoryReferences,
RenderingMWs.renderResult
);
};
private addGetImage() {
2016-05-05 00:34:54 +08:00
this.app.get(["/api/gallery/content/:imagePath(*\.(jpg|bmp|png|gif|jpeg))"],
2016-03-20 23:54:30 +08:00
AuthenticationMWs.authenticate,
GalleryMWs.loadImage,
RenderingMWs.renderFile
);
};
private addGetImageThumbnail() {
2016-05-05 00:34:54 +08:00
this.app.get("/api/gallery/content/:imagePath(*\.(jpg|bmp|png|gif|jpeg))/thumbnail/:size?",
2016-03-20 02:59:19 +08:00
AuthenticationMWs.authenticate,
2016-03-30 03:46:44 +08:00
GalleryMWs.loadImage,
ThumbnailGeneratorMWs.generateThumbnail,
RenderingMWs.renderFile
);
};
private addSearch() {
2016-05-17 01:36:04 +08:00
this.app.get("/api/search/:text",
AuthenticationMWs.authenticate,
GalleryMWs.search,
ThumbnailGeneratorMWs.addThumbnailInformation,
GalleryMWs.removeCyclicDirectoryReferences,
RenderingMWs.renderResult
);
};
private addInstantSearch() {
2016-05-17 01:36:04 +08:00
this.app.get("/api/instant-search/:text",
AuthenticationMWs.authenticate,
GalleryMWs.instantSearch,
ThumbnailGeneratorMWs.addThumbnailInformation,
GalleryMWs.removeCyclicDirectoryReferences,
RenderingMWs.renderResult
);
};
private addAutoComplete() {
2016-05-17 01:36:04 +08:00
this.app.get("/api/autocomplete/:text",
2016-05-16 17:03:11 +08:00
AuthenticationMWs.authenticate,
GalleryMWs.autocomplete,
RenderingMWs.renderResult
);
};
}