]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/video/video-query-builder.ts
Optimize rate endpoint
[github/Chocobozzz/PeerTube.git] / server / models / video / video-query-builder.ts
1 import { VideoFilter, VideoPrivacy, VideoState } from '@shared/models'
2 import { buildDirectionAndField, createSafeIn } from '@server/models/utils'
3 import { Model } from 'sequelize-typescript'
4 import { MUserAccountId, MUserId } from '@server/types/models'
5 import validator from 'validator'
6 import { exists } from '@server/helpers/custom-validators/misc'
7
8 export 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 trendingAlgorithm?: string // best, hot, or any other algorithm implemented
35 trendingDays?: number
36
37 user?: MUserAccountId
38 historyOfUser?: MUserId
39
40 startDate?: string // ISO 8601
41 endDate?: string // ISO 8601
42 originallyPublishedStartDate?: string
43 originallyPublishedEndDate?: string
44
45 durationMin?: number // seconds
46 durationMax?: number // seconds
47
48 search?: string
49
50 isCount?: boolean
51
52 group?: string
53 having?: string
54 }
55
56 function buildListQuery (model: typeof Model, options: BuildVideosQueryOptions) {
57 const and: string[] = []
58 const joins: string[] = []
59 const replacements: any = {}
60 const cte: string[] = []
61
62 let attributes: string[] = options.attributes || [ '"video"."id"' ]
63 let group = options.group || ''
64 const having = options.having || ''
65
66 joins.push(
67 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId"' +
68 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId"' +
69 'INNER JOIN "actor" "accountActor" ON "account"."actorId" = "accountActor"."id"'
70 )
71
72 and.push('"video"."id" NOT IN (SELECT "videoBlacklist"."videoId" FROM "videoBlacklist")')
73
74 if (options.serverAccountId) {
75 const blockerIds = [ options.serverAccountId ]
76 if (options.user) blockerIds.push(options.user.Account.id)
77
78 const inClause = createSafeIn(model, blockerIds)
79
80 and.push(
81 'NOT EXISTS (' +
82 ' SELECT 1 FROM "accountBlocklist" ' +
83 ' WHERE "accountBlocklist"."accountId" IN (' + inClause + ') ' +
84 ' AND "accountBlocklist"."targetAccountId" = "account"."id" ' +
85 ')' +
86 'AND NOT EXISTS (' +
87 ' SELECT 1 FROM "serverBlocklist" WHERE "serverBlocklist"."accountId" IN (' + inClause + ') ' +
88 ' AND "serverBlocklist"."targetServerId" = "accountActor"."serverId"' +
89 ')'
90 )
91 }
92
93 // Only list public/published videos
94 if (!options.filter || (options.filter !== 'all-local' && options.filter !== 'all')) {
95 and.push(
96 `("video"."state" = ${VideoState.PUBLISHED} OR ` +
97 `("video"."state" = ${VideoState.TO_TRANSCODE} AND "video"."waitTranscoding" IS false))`
98 )
99
100 if (options.user) {
101 and.push(
102 `("video"."privacy" = ${VideoPrivacy.PUBLIC} OR "video"."privacy" = ${VideoPrivacy.INTERNAL})`
103 )
104 } else { // Or only public videos
105 and.push(
106 `"video"."privacy" = ${VideoPrivacy.PUBLIC}`
107 )
108 }
109 }
110
111 if (options.videoPlaylistId) {
112 joins.push(
113 'INNER JOIN "videoPlaylistElement" "video"."id" = "videoPlaylistElement"."videoId" ' +
114 'AND "videoPlaylistElement"."videoPlaylistId" = :videoPlaylistId'
115 )
116
117 replacements.videoPlaylistId = options.videoPlaylistId
118 }
119
120 if (options.filter && (options.filter === 'local' || options.filter === 'all-local')) {
121 and.push('"video"."remote" IS FALSE')
122 }
123
124 if (options.accountId) {
125 and.push('"account"."id" = :accountId')
126 replacements.accountId = options.accountId
127 }
128
129 if (options.videoChannelId) {
130 and.push('"videoChannel"."id" = :videoChannelId')
131 replacements.videoChannelId = options.videoChannelId
132 }
133
134 if (options.followerActorId) {
135 let query =
136 '(' +
137 ' EXISTS (' +
138 ' SELECT 1 FROM "videoShare" ' +
139 ' INNER JOIN "actorFollow" "actorFollowShare" ON "actorFollowShare"."targetActorId" = "videoShare"."actorId" ' +
140 ' AND "actorFollowShare"."actorId" = :followerActorId AND "actorFollowShare"."state" = \'accepted\' ' +
141 ' WHERE "videoShare"."videoId" = "video"."id"' +
142 ' )' +
143 ' OR' +
144 ' EXISTS (' +
145 ' SELECT 1 from "actorFollow" ' +
146 ' WHERE "actorFollow"."targetActorId" = "videoChannel"."actorId" AND "actorFollow"."actorId" = :followerActorId ' +
147 ' AND "actorFollow"."state" = \'accepted\'' +
148 ' )'
149
150 if (options.includeLocalVideos) {
151 query += ' OR "video"."remote" IS FALSE'
152 }
153
154 query += ')'
155
156 and.push(query)
157 replacements.followerActorId = options.followerActorId
158 }
159
160 if (options.withFiles === true) {
161 and.push(
162 '(' +
163 ' EXISTS (SELECT 1 FROM "videoFile" WHERE "videoFile"."videoId" = "video"."id") ' +
164 ' OR EXISTS (' +
165 ' SELECT 1 FROM "videoStreamingPlaylist" ' +
166 ' INNER JOIN "videoFile" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist"."id" ' +
167 ' WHERE "videoStreamingPlaylist"."videoId" = "video"."id"' +
168 ' )' +
169 ')'
170 )
171 }
172
173 if (options.tagsOneOf) {
174 const tagsOneOfLower = options.tagsOneOf.map(t => t.toLowerCase())
175
176 and.push(
177 'EXISTS (' +
178 ' SELECT 1 FROM "videoTag" ' +
179 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
180 ' WHERE lower("tag"."name") IN (' + createSafeIn(model, tagsOneOfLower) + ') ' +
181 ' AND "video"."id" = "videoTag"."videoId"' +
182 ')'
183 )
184 }
185
186 if (options.tagsAllOf) {
187 const tagsAllOfLower = options.tagsAllOf.map(t => t.toLowerCase())
188
189 and.push(
190 'EXISTS (' +
191 ' SELECT 1 FROM "videoTag" ' +
192 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
193 ' WHERE lower("tag"."name") IN (' + createSafeIn(model, tagsAllOfLower) + ') ' +
194 ' AND "video"."id" = "videoTag"."videoId" ' +
195 ' GROUP BY "videoTag"."videoId" HAVING COUNT(*) = ' + tagsAllOfLower.length +
196 ')'
197 )
198 }
199
200 if (options.nsfw === true) {
201 and.push('"video"."nsfw" IS TRUE')
202 }
203
204 if (options.nsfw === false) {
205 and.push('"video"."nsfw" IS FALSE')
206 }
207
208 if (options.categoryOneOf) {
209 and.push('"video"."category" IN (:categoryOneOf)')
210 replacements.categoryOneOf = options.categoryOneOf
211 }
212
213 if (options.licenceOneOf) {
214 and.push('"video"."licence" IN (:licenceOneOf)')
215 replacements.licenceOneOf = options.licenceOneOf
216 }
217
218 if (options.languageOneOf) {
219 const languages = options.languageOneOf.filter(l => l && l !== '_unknown')
220 const languagesQueryParts: string[] = []
221
222 if (languages.length !== 0) {
223 languagesQueryParts.push('"video"."language" IN (:languageOneOf)')
224 replacements.languageOneOf = languages
225
226 languagesQueryParts.push(
227 'EXISTS (' +
228 ' SELECT 1 FROM "videoCaption" WHERE "videoCaption"."language" ' +
229 ' IN (' + createSafeIn(model, languages) + ') AND ' +
230 ' "videoCaption"."videoId" = "video"."id"' +
231 ')'
232 )
233 }
234
235 if (options.languageOneOf.includes('_unknown')) {
236 languagesQueryParts.push('"video"."language" IS NULL')
237 }
238
239 if (languagesQueryParts.length !== 0) {
240 and.push('(' + languagesQueryParts.join(' OR ') + ')')
241 }
242 }
243
244 // We don't exclude results in this so if we do a count we don't need to add this complex clause
245 if (options.isCount !== true) {
246 if (options.trendingDays) {
247 const viewsGteDate = new Date(new Date().getTime() - (24 * 3600 * 1000) * options.trendingDays)
248
249 joins.push('LEFT JOIN "videoView" ON "video"."id" = "videoView"."videoId" AND "videoView"."startDate" >= :viewsGteDate')
250 replacements.viewsGteDate = viewsGteDate
251
252 attributes.push('COALESCE(SUM("videoView"."views"), 0) AS "score"')
253
254 group = 'GROUP BY "video"."id"'
255 } else if ([ 'best', 'hot' ].includes(options.trendingAlgorithm)) {
256 /**
257 * "Hotness" is a measure based on absolute view/comment/like/dislike numbers,
258 * with fixed weights only applied to their log values.
259 *
260 * This algorithm gives little chance for an old video to have a good score,
261 * for which recent spikes in interactions could be a sign of "hotness" and
262 * justify a better score. However there are multiple ways to achieve that
263 * goal, which is left for later. Yes, this is a TODO :)
264 *
265 * notes:
266 * - weights and base score are in number of half-days.
267 * - all comments are counted, regardless of being written by the video author or not
268 * see https://github.com/reddit-archive/reddit/blob/master/r2/r2/lib/db/_sorts.pyx#L47-L58
269 */
270 const weights = {
271 like: 3,
272 dislike: -3,
273 view: 1 / 12,
274 comment: 2, // a comment takes more time than a like to do, but can be done multiple times
275 history: -2
276 }
277
278 joins.push('LEFT JOIN "videoComment" ON "video"."id" = "videoComment"."videoId"')
279
280 let attribute =
281 `LOG(GREATEST(1, "video"."likes" - 1)) * ${weights.like} ` + // likes (+)
282 `+ LOG(GREATEST(1, "video"."dislikes" - 1)) * ${weights.dislike} ` + // dislikes (-)
283 `+ LOG("video"."views" + 1) * ${weights.view} ` + // views (+)
284 `+ LOG(GREATEST(1, COUNT(DISTINCT "videoComment"."id"))) * ${weights.comment} ` + // comments (+)
285 '+ (SELECT EXTRACT(epoch FROM "video"."publishedAt") / 47000) ' // base score (in number of half-days)
286
287 if (options.trendingAlgorithm === 'best' && options.user) {
288 joins.push(
289 'LEFT JOIN "userVideoHistory" ON "video"."id" = "userVideoHistory"."videoId" AND "userVideoHistory"."userId" = :bestUser'
290 )
291 replacements.bestUser = options.user.id
292
293 attribute += `+ POWER(COUNT(DISTINCT "userVideoHistory"."id"), 2.0) * ${weights.history} `
294 }
295
296 attribute += 'AS "score"'
297 attributes.push(attribute)
298
299 group = 'GROUP BY "video"."id"'
300 }
301 }
302
303 if (options.historyOfUser) {
304 joins.push('INNER JOIN "userVideoHistory" ON "video"."id" = "userVideoHistory"."videoId"')
305
306 and.push('"userVideoHistory"."userId" = :historyOfUser')
307 replacements.historyOfUser = options.historyOfUser.id
308 }
309
310 if (options.startDate) {
311 and.push('"video"."publishedAt" >= :startDate')
312 replacements.startDate = options.startDate
313 }
314
315 if (options.endDate) {
316 and.push('"video"."publishedAt" <= :endDate')
317 replacements.endDate = options.endDate
318 }
319
320 if (options.originallyPublishedStartDate) {
321 and.push('"video"."originallyPublishedAt" >= :originallyPublishedStartDate')
322 replacements.originallyPublishedStartDate = options.originallyPublishedStartDate
323 }
324
325 if (options.originallyPublishedEndDate) {
326 and.push('"video"."originallyPublishedAt" <= :originallyPublishedEndDate')
327 replacements.originallyPublishedEndDate = options.originallyPublishedEndDate
328 }
329
330 if (options.durationMin) {
331 and.push('"video"."duration" >= :durationMin')
332 replacements.durationMin = options.durationMin
333 }
334
335 if (options.durationMax) {
336 and.push('"video"."duration" <= :durationMax')
337 replacements.durationMax = options.durationMax
338 }
339
340 if (options.search) {
341 const escapedSearch = model.sequelize.escape(options.search)
342 const escapedLikeSearch = model.sequelize.escape('%' + options.search + '%')
343
344 cte.push(
345 '"trigramSearch" AS (' +
346 ' SELECT "video"."id", ' +
347 ` similarity(lower(immutable_unaccent("video"."name")), lower(immutable_unaccent(${escapedSearch}))) as similarity ` +
348 ' FROM "video" ' +
349 ' WHERE lower(immutable_unaccent("video"."name")) % lower(immutable_unaccent(' + escapedSearch + ')) OR ' +
350 ' lower(immutable_unaccent("video"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))' +
351 ')'
352 )
353
354 joins.push('LEFT JOIN "trigramSearch" ON "video"."id" = "trigramSearch"."id"')
355
356 let base = '(' +
357 ' "trigramSearch"."id" IS NOT NULL OR ' +
358 ' EXISTS (' +
359 ' SELECT 1 FROM "videoTag" ' +
360 ' INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
361 ` WHERE lower("tag"."name") = ${escapedSearch} ` +
362 ' AND "video"."id" = "videoTag"."videoId"' +
363 ' )'
364
365 if (validator.isUUID(options.search)) {
366 base += ` OR "video"."uuid" = ${escapedSearch}`
367 }
368
369 base += ')'
370 and.push(base)
371
372 attributes.push(`COALESCE("trigramSearch"."similarity", 0) as similarity`)
373 } else {
374 attributes.push('0 as similarity')
375 }
376
377 if (options.isCount === true) attributes = [ 'COUNT(*) as "total"' ]
378
379 let suffix = ''
380 let order = ''
381 if (options.isCount !== true) {
382
383 if (exists(options.sort)) {
384 if (options.sort === '-originallyPublishedAt' || options.sort === 'originallyPublishedAt') {
385 attributes.push('COALESCE("video"."originallyPublishedAt", "video"."publishedAt") AS "publishedAtForOrder"')
386 }
387
388 order = buildOrder(options.sort)
389 suffix += `${order} `
390 }
391
392 if (exists(options.count)) {
393 const count = parseInt(options.count + '', 10)
394 suffix += `LIMIT ${count} `
395 }
396
397 if (exists(options.start)) {
398 const start = parseInt(options.start + '', 10)
399 suffix += `OFFSET ${start} `
400 }
401 }
402
403 const cteString = cte.length !== 0
404 ? `WITH ${cte.join(', ')} `
405 : ''
406
407 const query = cteString +
408 'SELECT ' + attributes.join(', ') + ' ' +
409 'FROM "video" ' + joins.join(' ') + ' ' +
410 'WHERE ' + and.join(' AND ') + ' ' +
411 group + ' ' +
412 having + ' ' +
413 suffix
414
415 return { query, replacements, order }
416 }
417
418 function buildOrder (value: string) {
419 const { direction, field } = buildDirectionAndField(value)
420 if (field.match(/^[a-zA-Z."]+$/) === null) throw new Error('Invalid sort column ' + field)
421
422 if (field.toLowerCase() === 'random') return 'ORDER BY RANDOM()'
423
424 if ([ 'trending', 'hot', 'best' ].includes(field.toLowerCase())) { // Sort by aggregation
425 return `ORDER BY "score" ${direction}, "video"."views" ${direction}`
426 }
427
428 let firstSort: string
429
430 if (field.toLowerCase() === 'match') { // Search
431 firstSort = '"similarity"'
432 } else if (field === 'originallyPublishedAt') {
433 firstSort = '"publishedAtForOrder"'
434 } else if (field.includes('.')) {
435 firstSort = field
436 } else {
437 firstSort = `"video"."${field}"`
438 }
439
440 return `ORDER BY ${firstSort} ${direction}, "video"."id" ASC`
441 }
442
443 function wrapForAPIResults (baseQuery: string, replacements: any, options: BuildVideosQueryOptions, order: string) {
444 const attributes = {
445 '"video".*': '',
446 '"VideoChannel"."id"': '"VideoChannel.id"',
447 '"VideoChannel"."name"': '"VideoChannel.name"',
448 '"VideoChannel"."description"': '"VideoChannel.description"',
449 '"VideoChannel"."actorId"': '"VideoChannel.actorId"',
450 '"VideoChannel->Actor"."id"': '"VideoChannel.Actor.id"',
451 '"VideoChannel->Actor"."preferredUsername"': '"VideoChannel.Actor.preferredUsername"',
452 '"VideoChannel->Actor"."url"': '"VideoChannel.Actor.url"',
453 '"VideoChannel->Actor"."serverId"': '"VideoChannel.Actor.serverId"',
454 '"VideoChannel->Actor"."avatarId"': '"VideoChannel.Actor.avatarId"',
455 '"VideoChannel->Account"."id"': '"VideoChannel.Account.id"',
456 '"VideoChannel->Account"."name"': '"VideoChannel.Account.name"',
457 '"VideoChannel->Account->Actor"."id"': '"VideoChannel.Account.Actor.id"',
458 '"VideoChannel->Account->Actor"."preferredUsername"': '"VideoChannel.Account.Actor.preferredUsername"',
459 '"VideoChannel->Account->Actor"."url"': '"VideoChannel.Account.Actor.url"',
460 '"VideoChannel->Account->Actor"."serverId"': '"VideoChannel.Account.Actor.serverId"',
461 '"VideoChannel->Account->Actor"."avatarId"': '"VideoChannel.Account.Actor.avatarId"',
462 '"VideoChannel->Actor->Server"."id"': '"VideoChannel.Actor.Server.id"',
463 '"VideoChannel->Actor->Server"."host"': '"VideoChannel.Actor.Server.host"',
464 '"VideoChannel->Actor->Avatar"."id"': '"VideoChannel.Actor.Avatar.id"',
465 '"VideoChannel->Actor->Avatar"."filename"': '"VideoChannel.Actor.Avatar.filename"',
466 '"VideoChannel->Actor->Avatar"."fileUrl"': '"VideoChannel.Actor.Avatar.fileUrl"',
467 '"VideoChannel->Actor->Avatar"."onDisk"': '"VideoChannel.Actor.Avatar.onDisk"',
468 '"VideoChannel->Actor->Avatar"."createdAt"': '"VideoChannel.Actor.Avatar.createdAt"',
469 '"VideoChannel->Actor->Avatar"."updatedAt"': '"VideoChannel.Actor.Avatar.updatedAt"',
470 '"VideoChannel->Account->Actor->Server"."id"': '"VideoChannel.Account.Actor.Server.id"',
471 '"VideoChannel->Account->Actor->Server"."host"': '"VideoChannel.Account.Actor.Server.host"',
472 '"VideoChannel->Account->Actor->Avatar"."id"': '"VideoChannel.Account.Actor.Avatar.id"',
473 '"VideoChannel->Account->Actor->Avatar"."filename"': '"VideoChannel.Account.Actor.Avatar.filename"',
474 '"VideoChannel->Account->Actor->Avatar"."fileUrl"': '"VideoChannel.Account.Actor.Avatar.fileUrl"',
475 '"VideoChannel->Account->Actor->Avatar"."onDisk"': '"VideoChannel.Account.Actor.Avatar.onDisk"',
476 '"VideoChannel->Account->Actor->Avatar"."createdAt"': '"VideoChannel.Account.Actor.Avatar.createdAt"',
477 '"VideoChannel->Account->Actor->Avatar"."updatedAt"': '"VideoChannel.Account.Actor.Avatar.updatedAt"',
478 '"Thumbnails"."id"': '"Thumbnails.id"',
479 '"Thumbnails"."type"': '"Thumbnails.type"',
480 '"Thumbnails"."filename"': '"Thumbnails.filename"'
481 }
482
483 const joins = [
484 'INNER JOIN "video" ON "tmp"."id" = "video"."id"',
485
486 'INNER JOIN "videoChannel" AS "VideoChannel" ON "video"."channelId" = "VideoChannel"."id"',
487 'INNER JOIN "actor" AS "VideoChannel->Actor" ON "VideoChannel"."actorId" = "VideoChannel->Actor"."id"',
488 'INNER JOIN "account" AS "VideoChannel->Account" ON "VideoChannel"."accountId" = "VideoChannel->Account"."id"',
489 'INNER JOIN "actor" AS "VideoChannel->Account->Actor" ON "VideoChannel->Account"."actorId" = "VideoChannel->Account->Actor"."id"',
490
491 'LEFT OUTER JOIN "server" AS "VideoChannel->Actor->Server" ON "VideoChannel->Actor"."serverId" = "VideoChannel->Actor->Server"."id"',
492 'LEFT OUTER JOIN "avatar" AS "VideoChannel->Actor->Avatar" ON "VideoChannel->Actor"."avatarId" = "VideoChannel->Actor->Avatar"."id"',
493
494 'LEFT OUTER JOIN "server" AS "VideoChannel->Account->Actor->Server" ' +
495 'ON "VideoChannel->Account->Actor"."serverId" = "VideoChannel->Account->Actor->Server"."id"',
496
497 'LEFT OUTER JOIN "avatar" AS "VideoChannel->Account->Actor->Avatar" ' +
498 'ON "VideoChannel->Account->Actor"."avatarId" = "VideoChannel->Account->Actor->Avatar"."id"',
499
500 'LEFT OUTER JOIN "thumbnail" AS "Thumbnails" ON "video"."id" = "Thumbnails"."videoId"'
501 ]
502
503 if (options.withFiles) {
504 joins.push('LEFT JOIN "videoFile" AS "VideoFiles" ON "VideoFiles"."videoId" = "video"."id"')
505
506 joins.push('LEFT JOIN "videoStreamingPlaylist" AS "VideoStreamingPlaylists" ON "VideoStreamingPlaylists"."videoId" = "video"."id"')
507 joins.push(
508 'LEFT JOIN "videoFile" AS "VideoStreamingPlaylists->VideoFiles" ' +
509 'ON "VideoStreamingPlaylists->VideoFiles"."videoStreamingPlaylistId" = "VideoStreamingPlaylists"."id"'
510 )
511
512 Object.assign(attributes, {
513 '"VideoFiles"."id"': '"VideoFiles.id"',
514 '"VideoFiles"."createdAt"': '"VideoFiles.createdAt"',
515 '"VideoFiles"."updatedAt"': '"VideoFiles.updatedAt"',
516 '"VideoFiles"."resolution"': '"VideoFiles.resolution"',
517 '"VideoFiles"."size"': '"VideoFiles.size"',
518 '"VideoFiles"."extname"': '"VideoFiles.extname"',
519 '"VideoFiles"."filename"': '"VideoFiles.filename"',
520 '"VideoFiles"."fileUrl"': '"VideoFiles.fileUrl"',
521 '"VideoFiles"."torrentFilename"': '"VideoFiles.torrentFilename"',
522 '"VideoFiles"."torrentUrl"': '"VideoFiles.torrentUrl"',
523 '"VideoFiles"."infoHash"': '"VideoFiles.infoHash"',
524 '"VideoFiles"."fps"': '"VideoFiles.fps"',
525 '"VideoFiles"."videoId"': '"VideoFiles.videoId"',
526
527 '"VideoStreamingPlaylists"."id"': '"VideoStreamingPlaylists.id"',
528 '"VideoStreamingPlaylists"."playlistUrl"': '"VideoStreamingPlaylists.playlistUrl"',
529 '"VideoStreamingPlaylists"."type"': '"VideoStreamingPlaylists.type"',
530 '"VideoStreamingPlaylists->VideoFiles"."id"': '"VideoStreamingPlaylists.VideoFiles.id"',
531 '"VideoStreamingPlaylists->VideoFiles"."createdAt"': '"VideoStreamingPlaylists.VideoFiles.createdAt"',
532 '"VideoStreamingPlaylists->VideoFiles"."updatedAt"': '"VideoStreamingPlaylists.VideoFiles.updatedAt"',
533 '"VideoStreamingPlaylists->VideoFiles"."resolution"': '"VideoStreamingPlaylists.VideoFiles.resolution"',
534 '"VideoStreamingPlaylists->VideoFiles"."size"': '"VideoStreamingPlaylists.VideoFiles.size"',
535 '"VideoStreamingPlaylists->VideoFiles"."extname"': '"VideoStreamingPlaylists.VideoFiles.extname"',
536 '"VideoStreamingPlaylists->VideoFiles"."filename"': '"VideoStreamingPlaylists.VideoFiles.filename"',
537 '"VideoStreamingPlaylists->VideoFiles"."fileUrl"': '"VideoStreamingPlaylists.VideoFiles.fileUrl"',
538 '"VideoStreamingPlaylists->VideoFiles"."torrentFilename"': '"VideoStreamingPlaylists.VideoFiles.torrentFilename"',
539 '"VideoStreamingPlaylists->VideoFiles"."torrentUrl"': '"VideoStreamingPlaylists.VideoFiles.torrentUrl"',
540 '"VideoStreamingPlaylists->VideoFiles"."infoHash"': '"VideoStreamingPlaylists.VideoFiles.infoHash"',
541 '"VideoStreamingPlaylists->VideoFiles"."fps"': '"VideoStreamingPlaylists.VideoFiles.fps"',
542 '"VideoStreamingPlaylists->VideoFiles"."videoStreamingPlaylistId"': '"VideoStreamingPlaylists.VideoFiles.videoStreamingPlaylistId"',
543 '"VideoStreamingPlaylists->VideoFiles"."videoId"': '"VideoStreamingPlaylists.VideoFiles.videoId"'
544 })
545 }
546
547 if (options.user) {
548 joins.push(
549 'LEFT OUTER JOIN "userVideoHistory" ' +
550 'ON "video"."id" = "userVideoHistory"."videoId" AND "userVideoHistory"."userId" = :userVideoHistoryId'
551 )
552 replacements.userVideoHistoryId = options.user.id
553
554 Object.assign(attributes, {
555 '"userVideoHistory"."id"': '"userVideoHistory.id"',
556 '"userVideoHistory"."currentTime"': '"userVideoHistory.currentTime"'
557 })
558 }
559
560 if (options.videoPlaylistId) {
561 joins.push(
562 'INNER JOIN "videoPlaylistElement" as "VideoPlaylistElement" ON "videoPlaylistElement"."videoId" = "video"."id" ' +
563 'AND "VideoPlaylistElement"."videoPlaylistId" = :videoPlaylistId'
564 )
565 replacements.videoPlaylistId = options.videoPlaylistId
566
567 Object.assign(attributes, {
568 '"VideoPlaylistElement"."createdAt"': '"VideoPlaylistElement.createdAt"',
569 '"VideoPlaylistElement"."updatedAt"': '"VideoPlaylistElement.updatedAt"',
570 '"VideoPlaylistElement"."url"': '"VideoPlaylistElement.url"',
571 '"VideoPlaylistElement"."position"': '"VideoPlaylistElement.position"',
572 '"VideoPlaylistElement"."startTimestamp"': '"VideoPlaylistElement.startTimestamp"',
573 '"VideoPlaylistElement"."stopTimestamp"': '"VideoPlaylistElement.stopTimestamp"',
574 '"VideoPlaylistElement"."videoPlaylistId"': '"VideoPlaylistElement.videoPlaylistId"'
575 })
576 }
577
578 const select = 'SELECT ' + Object.keys(attributes).map(key => {
579 const value = attributes[key]
580 if (value) return `${key} AS ${value}`
581
582 return key
583 }).join(', ')
584
585 return `${select} FROM (${baseQuery}) AS "tmp" ${joins.join(' ')} ${order}`
586 }
587
588 export {
589 buildListQuery,
590 wrapForAPIResults
591 }