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

137 lines
4.0 KiB
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {AuthenticationMWs} from '../middlewares/user/AuthenticationMWs';
import {GalleryMWs} from '../middlewares/GalleryMWs';
import {RenderingMWs} from '../middlewares/RenderingMWs';
import {ThumbnailGeneratorMWs} from '../middlewares/thumbnail/ThumbnailGeneratorMWs';
import {UserRoles} from '../../common/entities/UserDTO';
2018-11-05 02:28:32 +08:00
import {ThumbnailSourceType} from '../model/threading/ThumbnailWorker';
2016-05-09 23:04:56 +08:00
export class GalleryRouter {
public static route(app: any) {
this.addGetImageIcon(app);
this.addGetImageThumbnail(app);
2018-11-05 02:28:32 +08:00
this.addGetVideoThumbnail(app);
this.addGetImage(app);
2018-11-05 02:28:32 +08:00
this.addGetVideo(app);
2018-11-26 07:26:29 +08:00
this.addGetMetaFile(app);
this.addRandom(app);
this.addDirectoryList(app);
this.addSearch(app);
this.addInstantSearch(app);
this.addAutoComplete(app);
}
private static addDirectoryList(app) {
2018-03-31 03:30:30 +08:00
app.get(['/api/gallery/content/:directory(*)', '/api/gallery/', '/api/gallery//'],
AuthenticationMWs.authenticate,
2017-07-04 01:17:49 +08:00
AuthenticationMWs.authoriseDirectory,
GalleryMWs.listDirectory,
ThumbnailGeneratorMWs.addThumbnailInformation,
2018-11-19 03:26:29 +08:00
GalleryMWs.cleanUpGalleryResults,
RenderingMWs.renderResult
);
2018-03-31 03:30:30 +08:00
}
private static addGetImage(app) {
2018-11-26 07:26:29 +08:00
app.get(['/api/gallery/content/:filePath(*\.(jpg|bmp|png|gif|jpeg))'],
AuthenticationMWs.authenticate,
2018-03-31 03:30:30 +08:00
// TODO: authorize path
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
2018-11-05 02:28:32 +08:00
RenderingMWs.renderFile
);
}
private static addGetVideo(app) {
2018-11-26 07:26:29 +08:00
app.get(['/api/gallery/content/:filePath(*\.(mp4|ogg|ogv|webm))'],
2018-11-05 02:28:32 +08:00
AuthenticationMWs.authenticate,
// TODO: authorize path
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
RenderingMWs.renderFile
);
}
private static addGetMetaFile(app) {
app.get(['/api/gallery/content/:filePath(*\.(gpx))'],
AuthenticationMWs.authenticate,
// TODO: authorize path
GalleryMWs.loadFile,
RenderingMWs.renderFile
);
2018-03-31 03:30:30 +08:00
}
private static addRandom(app) {
app.get(['/api/gallery/random'],
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Guest),
// TODO: authorize path
GalleryMWs.getRandomImage,
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
RenderingMWs.renderFile
);
}
private static addGetImageThumbnail(app) {
2018-11-26 07:26:29 +08:00
app.get('/api/gallery/content/:filePath(*\.(jpg|bmp|png|gif|jpeg))/thumbnail/:size?',
2018-11-05 02:28:32 +08:00
AuthenticationMWs.authenticate,
// TODO: authorize path
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
2018-11-05 02:28:32 +08:00
ThumbnailGeneratorMWs.generateThumbnailFactory(ThumbnailSourceType.Image),
RenderingMWs.renderFile
);
}
private static addGetVideoThumbnail(app) {
2018-11-26 07:26:29 +08:00
app.get('/api/gallery/content/:filePath(*\.(mp4|ogg|ogv|webm))/thumbnail/:size?',
AuthenticationMWs.authenticate,
2018-03-31 03:30:30 +08:00
// TODO: authorize path
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
2018-11-05 02:28:32 +08:00
ThumbnailGeneratorMWs.generateThumbnailFactory(ThumbnailSourceType.Video),
RenderingMWs.renderFile
);
2018-03-31 03:30:30 +08:00
}
private static addGetImageIcon(app) {
2018-11-26 07:26:29 +08:00
app.get('/api/gallery/content/:filePath(*\.(jpg|bmp|png|gif|jpeg))/icon',
AuthenticationMWs.authenticate,
2018-03-31 03:30:30 +08:00
// TODO: authorize path
2018-11-26 07:26:29 +08:00
GalleryMWs.loadFile,
2018-11-05 02:28:32 +08:00
ThumbnailGeneratorMWs.generateIconFactory(ThumbnailSourceType.Image),
RenderingMWs.renderFile
);
2018-03-31 03:30:30 +08:00
}
private static addSearch(app) {
2018-03-31 03:30:30 +08:00
app.get('/api/search/:text',
AuthenticationMWs.authenticate,
2017-07-09 18:03:17 +08:00
AuthenticationMWs.authorise(UserRoles.Guest),
GalleryMWs.search,
ThumbnailGeneratorMWs.addThumbnailInformation,
2018-11-19 03:26:29 +08:00
GalleryMWs.cleanUpGalleryResults,
RenderingMWs.renderResult
);
2018-03-31 03:30:30 +08:00
}
private static addInstantSearch(app) {
2018-03-31 03:30:30 +08:00
app.get('/api/instant-search/:text',
AuthenticationMWs.authenticate,
2017-07-09 18:03:17 +08:00
AuthenticationMWs.authorise(UserRoles.Guest),
GalleryMWs.instantSearch,
ThumbnailGeneratorMWs.addThumbnailInformation,
2018-11-19 03:26:29 +08:00
GalleryMWs.cleanUpGalleryResults,
RenderingMWs.renderResult
);
2018-03-31 03:30:30 +08:00
}
private static addAutoComplete(app) {
2018-03-31 03:30:30 +08:00
app.get('/api/autocomplete/:text',
AuthenticationMWs.authenticate,
2017-07-09 18:03:17 +08:00
AuthenticationMWs.authorise(UserRoles.Guest),
GalleryMWs.autocomplete,
RenderingMWs.renderResult
);
2018-03-31 03:30:30 +08:00
}
}