2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2018-08-14 09:28:30 -04:00
|
|
|
import { SortType } from '../models/utils'
|
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')
|
2018-07-19 10:17:54 -04:00
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
function setBlacklistSort (req: express.Request, res: express.Response, next: express.NextFunction) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const 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') {
|
2021-01-21 18:12:44 -05:00
|
|
|
// If we want to sort onto the BlacklistedVideos relation, we won't specify it in the query parameter...
|
2017-09-22 03:13:43 -04:00
|
|
|
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,
|
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()
|
|
|
|
}
|
|
|
|
}
|