2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
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')
|
2023-01-10 11:09:30 +01:00
|
|
|
const setBlacklistSort = setDefaultSortFactory('-createdAt')
|
2017-09-22 09:13:43 +02:00
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|