2017-06-10 16:15:25 -04:00
|
|
|
import * as express from 'express'
|
2017-12-12 11:53:50 -05:00
|
|
|
import 'express-validator'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { SortType } from '../helpers/utils'
|
2017-09-22 03:13:43 -04:00
|
|
|
|
2018-01-17 04:50:33 -05:00
|
|
|
function setDefaultSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2017-11-13 11:39:41 -05:00
|
|
|
if (!req.query.sort) req.query.sort = '-createdAt'
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2018-07-19 10:17:54 -04:00
|
|
|
function setDefaultSearchSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2018-07-20 08:35:18 -04:00
|
|
|
if (!req.query.sort) req.query.sort = '-match'
|
2018-07-19 10:17:54 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
function setBlacklistSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2018-07-25 16:01:25 -04:00
|
|
|
let newSort: SortType = { sortModel: undefined, sortValue: '' }
|
2017-09-22 03:13:43 -04:00
|
|
|
|
|
|
|
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 {
|
2017-12-12 11:53:50 -05:00
|
|
|
newSort.sortModel = 'Video'
|
2017-09-22 03:13:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
newSort.sortValue = req.query.sort
|
|
|
|
|
|
|
|
req.query.sort = newSort
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
|
2016-05-17 15:03:00 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2018-01-17 04:50:33 -05:00
|
|
|
setDefaultSort,
|
2018-07-19 10:17:54 -04:00
|
|
|
setDefaultSearchSort,
|
2018-01-17 04:50:33 -05:00
|
|
|
setBlacklistSort
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|