2018-03-31 03:30:30 +08:00
|
|
|
import {AuthenticationMWs} from '../middlewares/user/AuthenticationMWs';
|
2019-02-23 06:39:01 +08:00
|
|
|
import {Express} from 'express';
|
2018-03-31 03:30:30 +08:00
|
|
|
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';
|
2019-02-16 00:47:09 +08:00
|
|
|
import {VersionMWs} from '../middlewares/VersionMWs';
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
export class GalleryRouter {
|
2018-11-29 06:49:33 +08:00
|
|
|
public static route(app: Express) {
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
this.addGetImageIcon(app);
|
2019-01-18 07:26:20 +08:00
|
|
|
this.addGetVideoIcon(app);
|
2017-06-11 04:32:56 +08:00
|
|
|
this.addGetImageThumbnail(app);
|
2018-11-05 02:28:32 +08:00
|
|
|
this.addGetVideoThumbnail(app);
|
2017-06-11 04:32:56 +08:00
|
|
|
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);
|
2018-10-22 06:24:17 +08:00
|
|
|
this.addRandom(app);
|
2017-06-11 04:32:56 +08:00
|
|
|
this.addDirectoryList(app);
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
this.addSearch(app);
|
|
|
|
this.addInstantSearch(app);
|
|
|
|
this.addAutoComplete(app);
|
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addDirectoryList(app: Express) {
|
2018-03-31 03:30:30 +08:00
|
|
|
app.get(['/api/gallery/content/:directory(*)', '/api/gallery/', '/api/gallery//'],
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('directory'),
|
|
|
|
AuthenticationMWs.authorisePath('directory', true),
|
2019-02-16 00:47:09 +08:00
|
|
|
VersionMWs.injectGalleryVersion,
|
2017-06-11 04:32:56 +08:00
|
|
|
GalleryMWs.listDirectory,
|
|
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
2018-11-19 03:26:29 +08:00
|
|
|
GalleryMWs.cleanUpGalleryResults,
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderResult
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetImage(app: Express) {
|
2019-01-13 01:08:34 +08:00
|
|
|
app.get(['/api/gallery/content/:mediaPath(*\.(jpg|jpeg|jpe|webp|png|gif|svg))'],
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2018-11-05 02:28:32 +08:00
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetVideo(app: Express) {
|
2018-12-02 06:53:58 +08:00
|
|
|
app.get(['/api/gallery/content/:mediaPath(*\.(mp4|ogg|ogv|webm))'],
|
2018-11-05 02:28:32 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetMetaFile(app: Express) {
|
2018-12-02 06:53:58 +08:00
|
|
|
app.get(['/api/gallery/content/:mediaPath(*\.(gpx))'],
|
2018-11-26 07:26:29 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addRandom(app: Express) {
|
2018-10-22 06:24:17 +08:00
|
|
|
app.get(['/api/gallery/random'],
|
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.authorise(UserRoles.Guest),
|
2019-02-16 00:47:09 +08:00
|
|
|
VersionMWs.injectGalleryVersion,
|
2018-10-22 06:24:17 +08:00
|
|
|
GalleryMWs.getRandomImage,
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2018-10-22 06:24:17 +08:00
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetImageThumbnail(app: Express) {
|
2019-01-13 01:08:34 +08:00
|
|
|
app.get('/api/gallery/content/:mediaPath(*\.(jpg|jpeg|jpe|webp|png|gif|svg))/thumbnail/:size?',
|
2018-11-05 02:28:32 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2018-11-05 02:28:32 +08:00
|
|
|
ThumbnailGeneratorMWs.generateThumbnailFactory(ThumbnailSourceType.Image),
|
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetVideoThumbnail(app: Express) {
|
2018-12-02 06:53:58 +08:00
|
|
|
app.get('/api/gallery/content/:mediaPath(*\.(mp4|ogg|ogv|webm))/thumbnail/:size?',
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2018-11-05 02:28:32 +08:00
|
|
|
ThumbnailGeneratorMWs.generateThumbnailFactory(ThumbnailSourceType.Video),
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2019-01-18 07:26:20 +08:00
|
|
|
|
|
|
|
private static addGetVideoIcon(app: Express) {
|
|
|
|
app.get('/api/gallery/content/:mediaPath(*\.(mp4|ogg|ogv|webm))/icon',
|
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2019-01-18 07:26:20 +08:00
|
|
|
GalleryMWs.loadFile,
|
|
|
|
ThumbnailGeneratorMWs.generateIconFactory(ThumbnailSourceType.Video),
|
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addGetImageIcon(app: Express) {
|
2019-01-13 01:08:34 +08:00
|
|
|
app.get('/api/gallery/content/:mediaPath(*\.(jpg|jpeg|jpe|webp|png|gif|svg))/icon',
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2019-02-23 06:39:01 +08:00
|
|
|
AuthenticationMWs.normalizePathParam('mediaPath'),
|
|
|
|
AuthenticationMWs.authorisePath('mediaPath', false),
|
2018-11-26 07:26:29 +08:00
|
|
|
GalleryMWs.loadFile,
|
2018-11-05 02:28:32 +08:00
|
|
|
ThumbnailGeneratorMWs.generateIconFactory(ThumbnailSourceType.Image),
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderFile
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2017-01-23 05:31:29 +08:00
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addSearch(app: Express) {
|
2018-03-31 03:30:30 +08:00
|
|
|
app.get('/api/search/:text',
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2017-07-09 18:03:17 +08:00
|
|
|
AuthenticationMWs.authorise(UserRoles.Guest),
|
2019-02-16 00:47:09 +08:00
|
|
|
VersionMWs.injectGalleryVersion,
|
2017-06-11 04:32:56 +08:00
|
|
|
GalleryMWs.search,
|
|
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
2018-11-19 03:26:29 +08:00
|
|
|
GalleryMWs.cleanUpGalleryResults,
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderResult
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addInstantSearch(app: Express) {
|
2018-03-31 03:30:30 +08:00
|
|
|
app.get('/api/instant-search/:text',
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2017-07-09 18:03:17 +08:00
|
|
|
AuthenticationMWs.authorise(UserRoles.Guest),
|
2019-02-16 00:47:09 +08:00
|
|
|
VersionMWs.injectGalleryVersion,
|
2017-06-11 04:32:56 +08:00
|
|
|
GalleryMWs.instantSearch,
|
|
|
|
ThumbnailGeneratorMWs.addThumbnailInformation,
|
2018-11-19 03:26:29 +08:00
|
|
|
GalleryMWs.cleanUpGalleryResults,
|
2017-06-11 04:32:56 +08:00
|
|
|
RenderingMWs.renderResult
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-05-10 01:14:33 +08:00
|
|
|
|
2018-11-29 06:49:33 +08:00
|
|
|
private static addAutoComplete(app: Express) {
|
2018-03-31 03:30:30 +08:00
|
|
|
app.get('/api/autocomplete/:text',
|
2017-06-11 04:32:56 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
2017-07-09 18:03:17 +08:00
|
|
|
AuthenticationMWs.authorise(UserRoles.Guest),
|
2019-02-16 00:47:09 +08:00
|
|
|
VersionMWs.injectGalleryVersion,
|
2017-06-11 04:32:56 +08:00
|
|
|
GalleryMWs.autocomplete,
|
|
|
|
RenderingMWs.renderResult
|
|
|
|
);
|
2018-03-31 03:30:30 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|