2017-06-10 22:15:25 +02:00
|
|
|
import * as express from 'express'
|
2018-08-14 15:28:30 +02:00
|
|
|
import { SortType } from '../models/utils'
|
2017-09-22 09:13:43 +02:00
|
|
|
|
2020-01-10 10:11:28 +01:00
|
|
|
const setDefaultSort = setDefaultSortFactory('-createdAt')
|
2020-08-20 09:19:21 +02:00
|
|
|
const setDefaultVideosSort = setDefaultSortFactory('-publishedAt')
|
2017-11-13 17:39:41 +01:00
|
|
|
|
2020-01-10 10:11:28 +01:00
|
|
|
const setDefaultVideoRedundanciesSort = setDefaultSortFactory('name')
|
2018-07-19 16:17:54 +02:00
|
|
|
|
2020-01-10 10:11:28 +01:00
|
|
|
const setDefaultSearchSort = setDefaultSortFactory('-match')
|
2018-07-19 16:17:54 +02:00
|
|
|
|
2017-09-22 09:13:43 +02:00
|
|
|
function setBlacklistSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2020-01-31 16:56:52 +01:00
|
|
|
const newSort: SortType = { sortModel: undefined, sortValue: '' }
|
2017-09-22 09:13:43 +02: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') {
|
2021-01-22 00:12:44 +01:00
|
|
|
// If we want to sort onto the BlacklistedVideos relation, we won't specify it in the query parameter...
|
2017-09-22 09:13:43 +02:00
|
|
|
newSort.sortModel = undefined
|
|
|
|
} else {
|
2017-12-12 17:53:50 +01:00
|
|
|
newSort.sortModel = 'Video'
|
2017-09-22 09:13:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2018-01-17 10:50:33 +01:00
|
|
|
setDefaultSort,
|
2018-07-19 16:17:54 +02:00
|
|
|
setDefaultSearchSort,
|
2020-08-20 09:19:21 +02:00
|
|
|
setDefaultVideosSort,
|
2020-01-10 10:11:28 +01:00
|
|
|
setDefaultVideoRedundanciesSort,
|
2018-01-17 10:50:33 +01:00
|
|
|
setBlacklistSort
|
2017-05-15 22:22:03 +02:00
|
|
|
}
|
2020-01-10 10:11:28 +01:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
function setDefaultSortFactory (sort: string) {
|
|
|
|
return (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (!req.query.sort) req.query.sort = sort
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
}
|