2017-06-10 22:15:25 +02:00
|
|
|
import 'express-validator'
|
|
|
|
import * as express from 'express'
|
|
|
|
|
2017-09-22 09:13:43 +02:00
|
|
|
import { SortType } from '../helpers'
|
|
|
|
import { database } from '../initializers'
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function setUsersSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 21:50:51 +01:00
|
|
|
if (!req.query.sort) req.query.sort = '-createdAt'
|
2016-08-16 22:31:45 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function setVideoAbusesSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-01-04 20:59:23 +01:00
|
|
|
if (!req.query.sort) req.query.sort = '-createdAt'
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
function setVideosSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2016-12-11 21:50:51 +01:00
|
|
|
if (!req.query.sort) req.query.sort = '-createdAt'
|
2016-05-17 21:03:00 +02:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-09-22 09:13:43 +02:00
|
|
|
function setBlacklistSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
|
|
|
let newSort: SortType = { sortModel: undefined, sortValue: undefined }
|
|
|
|
|
|
|
|
if (!req.query.sort) req.query.sort = '-createdAt'
|
|
|
|
|
|
|
|
// Set model we want to sort onto
|
|
|
|
if (req.query.sort === '-createdAt' || req.query.sort === 'createdAt' ||
|
|
|
|
req.query.sort === '-id' || req.query.sort === 'id') {
|
|
|
|
// If we want to sort onto the BlacklistedVideos relation, we won't specify it in the query parameter ...
|
|
|
|
newSort.sortModel = undefined
|
|
|
|
} else {
|
|
|
|
newSort.sortModel = database.Video
|
|
|
|
}
|
|
|
|
|
|
|
|
newSort.sortValue = req.query.sort
|
|
|
|
|
|
|
|
req.query.sort = newSort
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2016-05-17 21:03:00 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
export {
|
|
|
|
setUsersSort,
|
|
|
|
setVideoAbusesSort,
|
2017-09-22 09:13:43 +02:00
|
|
|
setVideosSort,
|
|
|
|
setBlacklistSort
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|