2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2017-09-22 03:13:43 -04:00
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
const setDefaultSort = setDefaultSortFactory('-createdAt')
|
2020-08-20 03:19:21 -04:00
|
|
|
const setDefaultVideosSort = setDefaultSortFactory('-publishedAt')
|
2017-11-13 11:39:41 -05:00
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
const setDefaultVideoRedundanciesSort = setDefaultSortFactory('name')
|
2018-07-19 10:17:54 -04:00
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
const setDefaultSearchSort = setDefaultSortFactory('-match')
|
2023-01-10 05:09:30 -05:00
|
|
|
const setBlacklistSort = setDefaultSortFactory('-createdAt')
|
2017-09-22 03:13:43 -04:00
|
|
|
|
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,
|
2020-08-20 03:19:21 -04:00
|
|
|
setDefaultVideosSort,
|
2020-01-10 04:11:28 -05:00
|
|
|
setDefaultVideoRedundanciesSort,
|
2018-01-17 04:50:33 -05:00
|
|
|
setBlacklistSort
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|
2020-01-10 04:11:28 -05: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()
|
|
|
|
}
|
|
|
|
}
|