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