mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
|
|
import {GalleryMWs} from "../middlewares/GalleryMWs";
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
import {ThumbnailGeneratorMWs} from "../middlewares/thumbnail/ThumbnailGeneratorMWs";
|
|
|
|
export class GalleryRouter {
|
|
public static route(app: any) {
|
|
|
|
this.addGetImageIcon(app);
|
|
this.addGetImageThumbnail(app);
|
|
this.addGetImage(app);
|
|
this.addDirectoryList(app);
|
|
|
|
this.addSearch(app);
|
|
this.addInstantSearch(app);
|
|
this.addAutoComplete(app);
|
|
}
|
|
|
|
private static addDirectoryList(app) {
|
|
app.get(["/api/gallery/content/:directory(*)", "/api/gallery/", "/api/gallery//"],
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.listDirectory,
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
|
GalleryMWs.removeCyclicDirectoryReferences,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
|
|
private static addGetImage(app) {
|
|
app.get(["/api/gallery/content/:imagePath(*\.(jpg|bmp|png|gif|jpeg))"],
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.loadImage,
|
|
RenderingMWs.renderFile
|
|
);
|
|
};
|
|
|
|
private static addGetImageThumbnail(app) {
|
|
app.get("/api/gallery/content/:imagePath(*\.(jpg|bmp|png|gif|jpeg))/thumbnail/:size?",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.loadImage,
|
|
ThumbnailGeneratorMWs.generateThumbnail,
|
|
RenderingMWs.renderFile
|
|
);
|
|
};
|
|
|
|
private static addGetImageIcon(app) {
|
|
app.get("/api/gallery/content/:imagePath(*\.(jpg|bmp|png|gif|jpeg))/icon",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.loadImage,
|
|
ThumbnailGeneratorMWs.generateIcon,
|
|
RenderingMWs.renderFile
|
|
);
|
|
};
|
|
|
|
private static addSearch(app) {
|
|
app.get("/api/search/:text",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.search,
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
|
GalleryMWs.removeCyclicDirectoryReferences,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
private static addInstantSearch(app) {
|
|
app.get("/api/instant-search/:text",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.instantSearch,
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
|
GalleryMWs.removeCyclicDirectoryReferences,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
private static addAutoComplete(app) {
|
|
app.get("/api/autocomplete/:text",
|
|
AuthenticationMWs.authenticate,
|
|
GalleryMWs.autocomplete,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
|
|
}
|