]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video-query-builder.ts
Split ffmpeg utils with ffprobe utils
[github/Chocobozzz/PeerTube.git] / server / models / video / video-query-builder.ts
CommitLineData
5f3e2425
C
1import { VideoFilter, VideoPrivacy, VideoState } from '@shared/models'
2import { buildDirectionAndField, createSafeIn } from '@server/models/utils'
3import { Model } from 'sequelize-typescript'
26d6bf65 4import { MUserAccountId, MUserId } from '@server/types/models'
5f3e2425 5import validator from 'validator'
fab67463 6import { exists } from '@server/helpers/custom-validators/misc'
5f3e2425
C
7
8export type BuildVideosQueryOptions = {
9 attributes?: string[]
10
11 serverAccountId: number
12 followerActorId: number
13 includeLocalVideos: boolean
14
15 count: number
16 start: number
17 sort: string
18
19 filter?: VideoFilter
20 categoryOneOf?: number[]
21 nsfw?: boolean
22 licenceOneOf?: number[]
23 languageOneOf?: string[]
24 tagsOneOf?: string[]
25 tagsAllOf?: string[]
26
27 withFiles?: boolean
28
29 accountId?: number
30 videoChannelId?: number
31
32 videoPlaylistId?: number
33
34 trendingDays?: number
35 user?: MUserAccountId
36 historyOfUser?: MUserId
37
38 startDate?: string // ISO 8601
39 endDate?: string // ISO 8601
40 originallyPublishedStartDate?: string
41 originallyPublishedEndDate?: string
42
43 durationMin?: number // seconds
44 durationMax?: number // seconds
45
46 search?: string
47
48 isCount?: boolean
49
50 group?: string
51 having?: string
52}
53
54function buildListQuery (model: typeof Model, options: BuildVideosQueryOptions) {
55 const and: string[] = []
5f3e2425
C
56 const joins: string[] = []
57 const replacements: any = {}
6b842050 58 const cte: string[] = []
5f3e2425
C
59
60 let attributes: string[] = options.attributes || [ '"video"."id"' ]
61 let group = options.group || ''
62 const having = options.having || ''
63
64 joins.push(
65 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId"' +
66 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId"' +
6b842050 67 'INNER JOIN "actor" "accountActor" ON "account"."actorId" = "accountActor"."id"'
5f3e2425
C
68 )
69
70 and.push('"video"."id" NOT IN (SELECT "videoBlacklist"."videoId" FROM "videoBlacklist")')
71
72 if (options.serverAccountId) {
73 const blockerIds = [ options.serverAccountId ]
74 if (options.user) blockerIds.push(options.user.Account.id)
75
6b842050 76 const inClause = createSafeIn(model, blockerIds)
5f3e2425
C
77
78 and.push(
6b842050
C
79 'NOT EXISTS (' +
80 ' SELECT 1 FROM "accountBlocklist" ' +
81 ' WHERE "accountBlocklist"."accountId" IN (' + inClause + ') ' +
82 ' AND "accountBlocklist"."targetAccountId" = "account"."id" ' +
83 ')' +
84 'AND NOT EXISTS (' +
85 ' SELECT 1 FROM "serverBlocklist" WHERE "serverBlocklist"."accountId" IN (' + inClause + ') ' +
86 ' AND "serverBlocklist"."targetServerId" = "accountActor"."serverId"' +
87 ')'
5f3e2425 88 )
5f3e2425
C
89 }
90
91 // Only list public/published videos
0aa52e17 92 if (!options.filter || (options.filter !== 'all-local' && options.filter !== 'all')) {
5f3e2425
C
93 and.push(
94 `("video"."state" = ${VideoState.PUBLISHED} OR ` +
95 `("video"."state" = ${VideoState.TO_TRANSCODE} AND "video"."waitTranscoding" IS false))`
96 )
97
98 if (options.user) {
99 and.push(
100 `("video"."privacy" = ${VideoPrivacy.PUBLIC} OR "video"."privacy" = ${VideoPrivacy.INTERNAL})`
101 )
102 } else { // Or only public videos
103 and.push(
104 `"video"."privacy" = ${VideoPrivacy.PUBLIC}`
105 )
106 }
107 }
108
109 if (options.videoPlaylistId) {
110 joins.push(
111 'INNER JOIN "videoPlaylistElement" "video"."id" = "videoPlaylistElement"."videoId" ' +
112 'AND "videoPlaylistElement"."videoPlaylistId" = :videoPlaylistId'
113 )
114
115 replacements.videoPlaylistId = options.videoPlaylistId
116 }
117
118 if (options.filter && (options.filter === 'local' || options.filter === 'all-local')) {
119 and.push('"video"."remote" IS FALSE')
120 }
121
122 if (options.accountId) {
123 and.push('"account"."id" = :accountId')
124 replacements.accountId = options.accountId
125 }
126
127 if (options.videoChannelId) {
128 and.push('"videoChannel"."id" = :videoChannelId')
129 replacements.videoChannelId = options.videoChannelId
130 }
131
132 if (options.followerActorId) {
133 let query =
134 '(' +
135 ' EXISTS (' +
136 ' SELECT 1 FROM "videoShare" ' +
137 ' INNER JOIN "actorFollow" "actorFollowShare" ON "actorFollowShare"."targetActorId" = "videoShare"."actorId" ' +
f046e2fa
C
138 ' AND "actorFollowShare"."actorId" = :followerActorId AND "actorFollowShare"."state" = \'accepted\' ' +
139 ' WHERE "videoShare"."videoId" = "video"."id"' +
5f3e2425
C
140 ' )' +
141 ' OR' +
142 ' EXISTS (' +
143 ' SELECT 1 from "actorFollow" ' +
f046e2fa
C
144 ' WHERE "actorFollow"."targetActorId" = "videoChannel"."actorId" AND "actorFollow"."actorId" = :followerActorId ' +
145 ' AND "actorFollow"."state" = \'accepted\'' +
5f3e2425
C
146 ' )'
147
148 if (options.includeLocalVideos) {
149 query += ' OR "video"."remote" IS FALSE'
150 }
151
152 query += ')'
153
154 and.push(query)
155 replacements.followerActorId = options.followerActorId
156 }
157
158 if (options.withFiles === true) {
97816649
C
159 and.push(
160 '(' +
161 ' EXISTS (SELECT 1 FROM "videoFile" WHERE "videoFile"."videoId" = "video"."id") ' +
162 ' OR EXISTS (' +
163 ' SELECT 1 FROM "videoStreamingPlaylist" ' +
164 ' INNER JOIN "videoFile" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist"."id" ' +
165 ' WHERE "videoStreamingPlaylist"."videoId" = "video"."id"' +
166 ' )' +
167 ')'
168 )
5f3e2425
C
169 }
170
171 if (options.tagsOneOf) {
172 const tagsOneOfLower = options.tagsOneOf.map(t => t.toLowerCase())
173
174 and.push(
175 'EXISTS (' +
176 ' SELECT 1 FROM "videoTag" ' +
177 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
178 ' WHERE lower("tag"."name") IN (' + createSafeIn(model, tagsOneOfLower) + ') ' +
179 ' AND "video"."id" = "videoTag"."videoId"' +
180 ')'
181 )
182 }
183
184 if (options.tagsAllOf) {
185 const tagsAllOfLower = options.tagsAllOf.map(t => t.toLowerCase())
186
187 and.push(
188 'EXISTS (' +
189 ' SELECT 1 FROM "videoTag" ' +
190 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
191 ' WHERE lower("tag"."name") IN (' + createSafeIn(model, tagsAllOfLower) + ') ' +
192 ' AND "video"."id" = "videoTag"."videoId" ' +
193 ' GROUP BY "videoTag"."videoId" HAVING COUNT(*) = ' + tagsAllOfLower.length +
194 ')'
195 )
196 }
197
198 if (options.nsfw === true) {
199 and.push('"video"."nsfw" IS TRUE')
200 }
201
202 if (options.nsfw === false) {
203 and.push('"video"."nsfw" IS FALSE')
204 }
205
206 if (options.categoryOneOf) {
207 and.push('"video"."category" IN (:categoryOneOf)')
208 replacements.categoryOneOf = options.categoryOneOf
209 }
210
211 if (options.licenceOneOf) {
212 and.push('"video"."licence" IN (:licenceOneOf)')
213 replacements.licenceOneOf = options.licenceOneOf
214 }
215
216 if (options.languageOneOf) {
14cbb9a6
C
217 const languages = options.languageOneOf.filter(l => l && l !== '_unknown')
218 const languagesQueryParts: string[] = []
219
220 if (languages.length !== 0) {
8f31261f 221 languagesQueryParts.push('"video"."language" IN (:languageOneOf)')
14cbb9a6
C
222 replacements.languageOneOf = languages
223
224 languagesQueryParts.push(
8f31261f
C
225 'EXISTS (' +
226 ' SELECT 1 FROM "videoCaption" WHERE "videoCaption"."language" ' +
227 ' IN (' + createSafeIn(model, languages) + ') AND ' +
228 ' "videoCaption"."videoId" = "video"."id"' +
14cbb9a6
C
229 ')'
230 )
231 }
5f3e2425
C
232
233 if (options.languageOneOf.includes('_unknown')) {
14cbb9a6 234 languagesQueryParts.push('"video"."language" IS NULL')
5f3e2425
C
235 }
236
8f31261f
C
237 if (languagesQueryParts.length !== 0) {
238 and.push('(' + languagesQueryParts.join(' OR ') + ')')
239 }
5f3e2425
C
240 }
241
242 // We don't exclude results in this if so if we do a count we don't need to add this complex clauses
243 if (options.trendingDays && options.isCount !== true) {
244 const viewsGteDate = new Date(new Date().getTime() - (24 * 3600 * 1000) * options.trendingDays)
245
246 joins.push('LEFT JOIN "videoView" ON "video"."id" = "videoView"."videoId" AND "videoView"."startDate" >= :viewsGteDate')
247 replacements.viewsGteDate = viewsGteDate
248
6b842050
C
249 attributes.push('COALESCE(SUM("videoView"."views"), 0) AS "videoViewsSum"')
250
5f3e2425
C
251 group = 'GROUP BY "video"."id"'
252 }
253
254 if (options.historyOfUser) {
255 joins.push('INNER JOIN "userVideoHistory" on "video"."id" = "userVideoHistory"."videoId"')
256
257 and.push('"userVideoHistory"."userId" = :historyOfUser')
6b842050 258 replacements.historyOfUser = options.historyOfUser.id
5f3e2425
C
259 }
260
261 if (options.startDate) {
262 and.push('"video"."publishedAt" >= :startDate')
263 replacements.startDate = options.startDate
264 }
265
266 if (options.endDate) {
267 and.push('"video"."publishedAt" <= :endDate')
268 replacements.endDate = options.endDate
269 }
270
271 if (options.originallyPublishedStartDate) {
272 and.push('"video"."originallyPublishedAt" >= :originallyPublishedStartDate')
273 replacements.originallyPublishedStartDate = options.originallyPublishedStartDate
274 }
275
276 if (options.originallyPublishedEndDate) {
277 and.push('"video"."originallyPublishedAt" <= :originallyPublishedEndDate')
278 replacements.originallyPublishedEndDate = options.originallyPublishedEndDate
279 }
280
281 if (options.durationMin) {
282 and.push('"video"."duration" >= :durationMin')
283 replacements.durationMin = options.durationMin
284 }
285
286 if (options.durationMax) {
287 and.push('"video"."duration" <= :durationMax')
288 replacements.durationMax = options.durationMax
289 }
290
291 if (options.search) {
292 const escapedSearch = model.sequelize.escape(options.search)
293 const escapedLikeSearch = model.sequelize.escape('%' + options.search + '%')
294
6b842050
C
295 cte.push(
296 '"trigramSearch" AS (' +
297 ' SELECT "video"."id", ' +
298 ` similarity(lower(immutable_unaccent("video"."name")), lower(immutable_unaccent(${escapedSearch}))) as similarity ` +
299 ' FROM "video" ' +
300 ' WHERE lower(immutable_unaccent("video"."name")) % lower(immutable_unaccent(' + escapedSearch + ')) OR ' +
301 ' lower(immutable_unaccent("video"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))' +
302 ')'
303 )
304
305 joins.push('LEFT JOIN "trigramSearch" ON "video"."id" = "trigramSearch"."id"')
306
5f3e2425 307 let base = '(' +
6b842050 308 ' "trigramSearch"."id" IS NOT NULL OR ' +
5f3e2425
C
309 ' EXISTS (' +
310 ' SELECT 1 FROM "videoTag" ' +
311 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
312 ` WHERE lower("tag"."name") = ${escapedSearch} ` +
313 ' AND "video"."id" = "videoTag"."videoId"' +
314 ' )'
315
316 if (validator.isUUID(options.search)) {
317 base += ` OR "video"."uuid" = ${escapedSearch}`
318 }
319
320 base += ')'
321 and.push(base)
322
6b842050 323 attributes.push(`COALESCE("trigramSearch"."similarity", 0) as similarity`)
5f3e2425
C
324 } else {
325 attributes.push('0 as similarity')
326 }
327
328 if (options.isCount === true) attributes = [ 'COUNT(*) as "total"' ]
329
6b842050
C
330 let suffix = ''
331 let order = ''
5f3e2425 332 if (options.isCount !== true) {
5f3e2425 333
fab67463 334 if (exists(options.sort)) {
2fd59d7d
C
335 if (options.sort === '-originallyPublishedAt' || options.sort === 'originallyPublishedAt') {
336 attributes.push('COALESCE("video"."originallyPublishedAt", "video"."publishedAt") AS "publishedAtForOrder"')
337 }
338
811cef14 339 order = buildOrder(options.sort)
fab67463
C
340 suffix += `${order} `
341 }
342
343 if (exists(options.count)) {
344 const count = parseInt(options.count + '', 10)
345 suffix += `LIMIT ${count} `
346 }
6b842050 347
fab67463
C
348 if (exists(options.start)) {
349 const start = parseInt(options.start + '', 10)
350 suffix += `OFFSET ${start} `
351 }
5f3e2425
C
352 }
353
6b842050
C
354 const cteString = cte.length !== 0
355 ? `WITH ${cte.join(', ')} `
356 : ''
357
358 const query = cteString +
359 'SELECT ' + attributes.join(', ') + ' ' +
360 'FROM "video" ' + joins.join(' ') + ' ' +
361 'WHERE ' + and.join(' AND ') + ' ' +
362 group + ' ' +
363 having + ' ' +
364 suffix
365
366 return { query, replacements, order }
5f3e2425
C
367}
368
811cef14 369function buildOrder (value: string) {
5f3e2425 370 const { direction, field } = buildDirectionAndField(value)
6b842050 371 if (field.match(/^[a-zA-Z."]+$/) === null) throw new Error('Invalid sort column ' + field)
5f3e2425
C
372
373 if (field.toLowerCase() === 'random') return 'ORDER BY RANDOM()'
374
375 if (field.toLowerCase() === 'trending') { // Sort by aggregation
6b842050 376 return `ORDER BY "videoViewsSum" ${direction}, "video"."views" ${direction}`
5f3e2425
C
377 }
378
379 let firstSort: string
380
381 if (field.toLowerCase() === 'match') { // Search
382 firstSort = '"similarity"'
2fd59d7d
C
383 } else if (field === 'originallyPublishedAt') {
384 firstSort = '"publishedAtForOrder"'
6b842050
C
385 } else if (field.includes('.')) {
386 firstSort = field
5f3e2425
C
387 } else {
388 firstSort = `"video"."${field}"`
389 }
390
391 return `ORDER BY ${firstSort} ${direction}, "video"."id" ASC`
392}
393
6b842050
C
394function wrapForAPIResults (baseQuery: string, replacements: any, options: BuildVideosQueryOptions, order: string) {
395 const attributes = {
396 '"video".*': '',
397 '"VideoChannel"."id"': '"VideoChannel.id"',
398 '"VideoChannel"."name"': '"VideoChannel.name"',
399 '"VideoChannel"."description"': '"VideoChannel.description"',
400 '"VideoChannel"."actorId"': '"VideoChannel.actorId"',
401 '"VideoChannel->Actor"."id"': '"VideoChannel.Actor.id"',
402 '"VideoChannel->Actor"."preferredUsername"': '"VideoChannel.Actor.preferredUsername"',
403 '"VideoChannel->Actor"."url"': '"VideoChannel.Actor.url"',
404 '"VideoChannel->Actor"."serverId"': '"VideoChannel.Actor.serverId"',
405 '"VideoChannel->Actor"."avatarId"': '"VideoChannel.Actor.avatarId"',
406 '"VideoChannel->Account"."id"': '"VideoChannel.Account.id"',
407 '"VideoChannel->Account"."name"': '"VideoChannel.Account.name"',
408 '"VideoChannel->Account->Actor"."id"': '"VideoChannel.Account.Actor.id"',
409 '"VideoChannel->Account->Actor"."preferredUsername"': '"VideoChannel.Account.Actor.preferredUsername"',
410 '"VideoChannel->Account->Actor"."url"': '"VideoChannel.Account.Actor.url"',
411 '"VideoChannel->Account->Actor"."serverId"': '"VideoChannel.Account.Actor.serverId"',
412 '"VideoChannel->Account->Actor"."avatarId"': '"VideoChannel.Account.Actor.avatarId"',
413 '"VideoChannel->Actor->Server"."id"': '"VideoChannel.Actor.Server.id"',
414 '"VideoChannel->Actor->Server"."host"': '"VideoChannel.Actor.Server.host"',
415 '"VideoChannel->Actor->Avatar"."id"': '"VideoChannel.Actor.Avatar.id"',
416 '"VideoChannel->Actor->Avatar"."filename"': '"VideoChannel.Actor.Avatar.filename"',
417 '"VideoChannel->Actor->Avatar"."fileUrl"': '"VideoChannel.Actor.Avatar.fileUrl"',
418 '"VideoChannel->Actor->Avatar"."onDisk"': '"VideoChannel.Actor.Avatar.onDisk"',
419 '"VideoChannel->Actor->Avatar"."createdAt"': '"VideoChannel.Actor.Avatar.createdAt"',
420 '"VideoChannel->Actor->Avatar"."updatedAt"': '"VideoChannel.Actor.Avatar.updatedAt"',
421 '"VideoChannel->Account->Actor->Server"."id"': '"VideoChannel.Account.Actor.Server.id"',
422 '"VideoChannel->Account->Actor->Server"."host"': '"VideoChannel.Account.Actor.Server.host"',
423 '"VideoChannel->Account->Actor->Avatar"."id"': '"VideoChannel.Account.Actor.Avatar.id"',
424 '"VideoChannel->Account->Actor->Avatar"."filename"': '"VideoChannel.Account.Actor.Avatar.filename"',
425 '"VideoChannel->Account->Actor->Avatar"."fileUrl"': '"VideoChannel.Account.Actor.Avatar.fileUrl"',
426 '"VideoChannel->Account->Actor->Avatar"."onDisk"': '"VideoChannel.Account.Actor.Avatar.onDisk"',
427 '"VideoChannel->Account->Actor->Avatar"."createdAt"': '"VideoChannel.Account.Actor.Avatar.createdAt"',
428 '"VideoChannel->Account->Actor->Avatar"."updatedAt"': '"VideoChannel.Account.Actor.Avatar.updatedAt"',
429 '"Thumbnails"."id"': '"Thumbnails.id"',
430 '"Thumbnails"."type"': '"Thumbnails.type"',
431 '"Thumbnails"."filename"': '"Thumbnails.filename"'
432 }
433
434 const joins = [
435 'INNER JOIN "video" ON "tmp"."id" = "video"."id"',
436
437 'INNER JOIN "videoChannel" AS "VideoChannel" ON "video"."channelId" = "VideoChannel"."id"',
438 'INNER JOIN "actor" AS "VideoChannel->Actor" ON "VideoChannel"."actorId" = "VideoChannel->Actor"."id"',
439 'INNER JOIN "account" AS "VideoChannel->Account" ON "VideoChannel"."accountId" = "VideoChannel->Account"."id"',
440 'INNER JOIN "actor" AS "VideoChannel->Account->Actor" ON "VideoChannel->Account"."actorId" = "VideoChannel->Account->Actor"."id"',
441
442 'LEFT OUTER JOIN "server" AS "VideoChannel->Actor->Server" ON "VideoChannel->Actor"."serverId" = "VideoChannel->Actor->Server"."id"',
443 'LEFT OUTER JOIN "avatar" AS "VideoChannel->Actor->Avatar" ON "VideoChannel->Actor"."avatarId" = "VideoChannel->Actor->Avatar"."id"',
444
445 'LEFT OUTER JOIN "server" AS "VideoChannel->Account->Actor->Server" ' +
446 'ON "VideoChannel->Account->Actor"."serverId" = "VideoChannel->Account->Actor->Server"."id"',
447
448 'LEFT OUTER JOIN "avatar" AS "VideoChannel->Account->Actor->Avatar" ' +
449 'ON "VideoChannel->Account->Actor"."avatarId" = "VideoChannel->Account->Actor->Avatar"."id"',
450
451 'LEFT OUTER JOIN "thumbnail" AS "Thumbnails" ON "video"."id" = "Thumbnails"."videoId"'
452 ]
453
454 if (options.withFiles) {
97816649
C
455 joins.push('LEFT JOIN "videoFile" AS "VideoFiles" ON "VideoFiles"."videoId" = "video"."id"')
456
457 joins.push('LEFT JOIN "videoStreamingPlaylist" AS "VideoStreamingPlaylists" ON "VideoStreamingPlaylists"."videoId" = "video"."id"')
458 joins.push(
459 'LEFT JOIN "videoFile" AS "VideoStreamingPlaylists->VideoFiles" ' +
460 'ON "VideoStreamingPlaylists->VideoFiles"."videoStreamingPlaylistId" = "VideoStreamingPlaylists"."id"'
461 )
6b842050
C
462
463 Object.assign(attributes, {
464 '"VideoFiles"."id"': '"VideoFiles.id"',
465 '"VideoFiles"."createdAt"': '"VideoFiles.createdAt"',
466 '"VideoFiles"."updatedAt"': '"VideoFiles.updatedAt"',
467 '"VideoFiles"."resolution"': '"VideoFiles.resolution"',
468 '"VideoFiles"."size"': '"VideoFiles.size"',
469 '"VideoFiles"."extname"': '"VideoFiles.extname"',
470 '"VideoFiles"."infoHash"': '"VideoFiles.infoHash"',
471 '"VideoFiles"."fps"': '"VideoFiles.fps"',
97816649
C
472 '"VideoFiles"."videoId"': '"VideoFiles.videoId"',
473
474 '"VideoStreamingPlaylists"."id"': '"VideoStreamingPlaylists.id"',
475 '"VideoStreamingPlaylists->VideoFiles"."id"': '"VideoStreamingPlaylists.VideoFiles.id"',
476 '"VideoStreamingPlaylists->VideoFiles"."createdAt"': '"VideoStreamingPlaylists.VideoFiles.createdAt"',
477 '"VideoStreamingPlaylists->VideoFiles"."updatedAt"': '"VideoStreamingPlaylists.VideoFiles.updatedAt"',
478 '"VideoStreamingPlaylists->VideoFiles"."resolution"': '"VideoStreamingPlaylists.VideoFiles.resolution"',
479 '"VideoStreamingPlaylists->VideoFiles"."size"': '"VideoStreamingPlaylists.VideoFiles.size"',
480 '"VideoStreamingPlaylists->VideoFiles"."extname"': '"VideoStreamingPlaylists.VideoFiles.extname"',
481 '"VideoStreamingPlaylists->VideoFiles"."infoHash"': '"VideoStreamingPlaylists.VideoFiles.infoHash"',
482 '"VideoStreamingPlaylists->VideoFiles"."fps"': '"VideoStreamingPlaylists.VideoFiles.fps"',
483 '"VideoStreamingPlaylists->VideoFiles"."videoId"': '"VideoStreamingPlaylists.VideoFiles.videoId"'
6b842050
C
484 })
485 }
486
487 if (options.user) {
488 joins.push(
489 'LEFT OUTER JOIN "userVideoHistory" ' +
490 'ON "video"."id" = "userVideoHistory"."videoId" AND "userVideoHistory"."userId" = :userVideoHistoryId'
491 )
492 replacements.userVideoHistoryId = options.user.id
493
494 Object.assign(attributes, {
495 '"userVideoHistory"."id"': '"userVideoHistory.id"',
496 '"userVideoHistory"."currentTime"': '"userVideoHistory.currentTime"'
497 })
498 }
499
500 if (options.videoPlaylistId) {
501 joins.push(
502 'INNER JOIN "videoPlaylistElement" as "VideoPlaylistElement" ON "videoPlaylistElement"."videoId" = "video"."id" ' +
503 'AND "VideoPlaylistElement"."videoPlaylistId" = :videoPlaylistId'
504 )
505 replacements.videoPlaylistId = options.videoPlaylistId
506
507 Object.assign(attributes, {
508 '"VideoPlaylistElement"."createdAt"': '"VideoPlaylistElement.createdAt"',
509 '"VideoPlaylistElement"."updatedAt"': '"VideoPlaylistElement.updatedAt"',
510 '"VideoPlaylistElement"."url"': '"VideoPlaylistElement.url"',
511 '"VideoPlaylistElement"."position"': '"VideoPlaylistElement.position"',
512 '"VideoPlaylistElement"."startTimestamp"': '"VideoPlaylistElement.startTimestamp"',
513 '"VideoPlaylistElement"."stopTimestamp"': '"VideoPlaylistElement.stopTimestamp"',
514 '"VideoPlaylistElement"."videoPlaylistId"': '"VideoPlaylistElement.videoPlaylistId"'
515 })
516 }
517
518 const select = 'SELECT ' + Object.keys(attributes).map(key => {
519 const value = attributes[key]
520 if (value) return `${key} AS ${value}`
521
522 return key
523 }).join(', ')
524
525 return `${select} FROM (${baseQuery}) AS "tmp" ${joins.join(' ')} ${order}`
526}
527
5f3e2425 528export {
6b842050
C
529 buildListQuery,
530 wrapForAPIResults
5f3e2425 531}