Init commit
This commit is contained in:
84
server/core/helpers/query.ts
Normal file
84
server/core/helpers/query.ts
Normal file
@@ -0,0 +1,84 @@
|
||||
import { pick } from '@peertube/peertube-core-utils'
|
||||
import {
|
||||
VideoChannelsSearchQueryAfterSanitize,
|
||||
VideoPlaylistsSearchQueryAfterSanitize,
|
||||
VideosCommonQueryAfterSanitize,
|
||||
VideosSearchQueryAfterSanitize
|
||||
} from '@peertube/peertube-models'
|
||||
|
||||
function pickCommonVideoQuery (query: VideosCommonQueryAfterSanitize) {
|
||||
return pick(query, [
|
||||
'start',
|
||||
'count',
|
||||
'sort',
|
||||
'nsfw',
|
||||
'nsfwFlagsIncluded',
|
||||
'nsfwFlagsExcluded',
|
||||
'isLive',
|
||||
'includeScheduledLive',
|
||||
'categoryOneOf',
|
||||
'licenceOneOf',
|
||||
'languageOneOf',
|
||||
'host',
|
||||
'privacyOneOf',
|
||||
'tagsOneOf',
|
||||
'tagsAllOf',
|
||||
'isLocal',
|
||||
'include',
|
||||
'skipCount',
|
||||
'hasHLSFiles',
|
||||
'hasWebVideoFiles',
|
||||
'search',
|
||||
'excludeAlreadyWatched',
|
||||
'autoTagOneOf'
|
||||
])
|
||||
}
|
||||
|
||||
function pickSearchVideoQuery (query: VideosSearchQueryAfterSanitize) {
|
||||
return {
|
||||
...pickCommonVideoQuery(query),
|
||||
|
||||
...pick(query, [
|
||||
'searchTarget',
|
||||
'host',
|
||||
'startDate',
|
||||
'endDate',
|
||||
'originallyPublishedStartDate',
|
||||
'originallyPublishedEndDate',
|
||||
'durationMin',
|
||||
'durationMax',
|
||||
'uuids'
|
||||
])
|
||||
}
|
||||
}
|
||||
|
||||
function pickSearchChannelQuery (query: VideoChannelsSearchQueryAfterSanitize) {
|
||||
return pick(query, [
|
||||
'searchTarget',
|
||||
'search',
|
||||
'start',
|
||||
'count',
|
||||
'sort',
|
||||
'host',
|
||||
'handles'
|
||||
])
|
||||
}
|
||||
|
||||
function pickSearchPlaylistQuery (query: VideoPlaylistsSearchQueryAfterSanitize) {
|
||||
return pick(query, [
|
||||
'searchTarget',
|
||||
'search',
|
||||
'start',
|
||||
'count',
|
||||
'sort',
|
||||
'host',
|
||||
'uuids'
|
||||
])
|
||||
}
|
||||
|
||||
export {
|
||||
pickCommonVideoQuery,
|
||||
pickSearchVideoQuery,
|
||||
pickSearchPlaylistQuery,
|
||||
pickSearchChannelQuery
|
||||
}
|
||||
Reference in New Issue
Block a user