]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/sql/video-model-get-query-builder.ts
Refactor options in models
[github/Chocobozzz/PeerTube.git] / server / models / video / sql / video-model-get-query-builder.ts
CommitLineData
d9bf974f 1import { Sequelize, Transaction } from 'sequelize'
d9bf974f 2import { AbstractVideosModelQueryBuilder } from './shared/abstract-videos-model-query-builder'
1d43c3a6
C
3import { VideoFileQueryBuilder } from './shared/video-file-query-builder'
4import { VideoModelBuilder } from './shared/video-model-builder'
17bb4538 5import { VideoTables } from './shared/video-tables'
1d43c3a6
C
6
7/**
8 *
9 * Build a GET SQL query, fetch rows and create the video model
10 *
11 */
d9bf974f 12
20a206c3
C
13export type GetType =
14 'api' |
15 'full-light' |
16 'account-blacklist-files' |
17 'all-files' |
18 'thumbnails' |
19 'thumbnails-blacklist' |
20 'id' |
21 'blacklist-rights'
22
d9bf974f 23export type BuildVideoGetQueryOptions = {
71d4af1e
C
24 id?: number | string
25 url?: string
26
20a206c3 27 type: GetType
71d4af1e 28
d9bf974f 29 userId?: number
71d4af1e
C
30 transaction?: Transaction
31
32 logging?: boolean
d9bf974f
C
33}
34
1d43c3a6
C
35export class VideosModelGetQueryBuilder {
36 videoQueryBuilder: VideosModelGetQuerySubBuilder
37 webtorrentFilesQueryBuilder: VideoFileQueryBuilder
38 streamingPlaylistFilesQueryBuilder: VideoFileQueryBuilder
39
40 private readonly videoModelBuilder: VideoModelBuilder
41
20a206c3
C
42 private static readonly videoFilesInclude = new Set<GetType>([ 'api', 'full-light', 'account-blacklist-files', 'all-files' ])
43
1d43c3a6
C
44 constructor (protected readonly sequelize: Sequelize) {
45 this.videoQueryBuilder = new VideosModelGetQuerySubBuilder(sequelize)
46 this.webtorrentFilesQueryBuilder = new VideoFileQueryBuilder(sequelize)
47 this.streamingPlaylistFilesQueryBuilder = new VideoFileQueryBuilder(sequelize)
48
17bb4538 49 this.videoModelBuilder = new VideoModelBuilder('get', new VideoTables('get'))
1d43c3a6
C
50 }
51
71d4af1e 52 async queryVideo (options: BuildVideoGetQueryOptions) {
1d43c3a6
C
53 const [ videoRows, webtorrentFilesRows, streamingPlaylistFilesRows ] = await Promise.all([
54 this.videoQueryBuilder.queryVideos(options),
71d4af1e 55
20a206c3 56 VideosModelGetQueryBuilder.videoFilesInclude.has(options.type)
71d4af1e
C
57 ? this.webtorrentFilesQueryBuilder.queryWebTorrentVideos(options)
58 : Promise.resolve(undefined),
59
20a206c3 60 VideosModelGetQueryBuilder.videoFilesInclude.has(options.type)
71d4af1e
C
61 ? this.streamingPlaylistFilesQueryBuilder.queryStreamingPlaylistVideos(options)
62 : Promise.resolve(undefined)
1d43c3a6
C
63 ])
64
65 const videos = this.videoModelBuilder.buildVideosFromRows(videoRows, webtorrentFilesRows, streamingPlaylistFilesRows)
66
67 if (videos.length > 1) {
68 throw new Error('Video results is more than ')
69 }
70
71 if (videos.length === 0) return null
72 return videos[0]
73 }
74}
75
76export class VideosModelGetQuerySubBuilder extends AbstractVideosModelQueryBuilder {
d9bf974f 77 protected attributes: { [key: string]: string }
1d43c3a6
C
78
79 protected webtorrentFilesQuery: string
80 protected streamingPlaylistFilesQuery: string
d9bf974f 81
20a206c3
C
82 private static readonly trackersInclude = new Set<GetType>([ 'api' ])
83 private static readonly liveInclude = new Set<GetType>([ 'api', 'full-light' ])
84 private static readonly scheduleUpdateInclude = new Set<GetType>([ 'api', 'full-light' ])
85 private static readonly tagsInclude = new Set<GetType>([ 'api', 'full-light' ])
86 private static readonly userHistoryInclude = new Set<GetType>([ 'api', 'full-light' ])
87 private static readonly accountInclude = new Set<GetType>([ 'api', 'full-light', 'account-blacklist-files' ])
88 private static readonly ownerUserInclude = new Set<GetType>([ 'blacklist-rights' ])
89
90 private static readonly blacklistedInclude = new Set<GetType>([
91 'api',
92 'full-light',
93 'account-blacklist-files',
94 'thumbnails-blacklist',
95 'blacklist-rights'
96 ])
97
98 private static readonly thumbnailsInclude = new Set<GetType>([
99 'api',
100 'full-light',
101 'account-blacklist-files',
adddb12b 102 'all-files',
20a206c3
C
103 'thumbnails',
104 'thumbnails-blacklist'
105 ])
106
d9bf974f
C
107 constructor (protected readonly sequelize: Sequelize) {
108 super('get')
109 }
110
111 queryVideos (options: BuildVideoGetQueryOptions) {
1d43c3a6 112 this.buildMainGetQuery(options)
d9bf974f 113
71d4af1e 114 return this.runQuery(options)
d9bf974f
C
115 }
116
1d43c3a6 117 private buildMainGetQuery (options: BuildVideoGetQueryOptions) {
d9bf974f
C
118 this.attributes = {
119 '"video".*': ''
120 }
121
20a206c3 122 if (VideosModelGetQuerySubBuilder.thumbnailsInclude.has(options.type)) {
71d4af1e
C
123 this.includeThumbnails()
124 }
d9bf974f 125
20a206c3 126 if (VideosModelGetQuerySubBuilder.blacklistedInclude.has(options.type)) {
71d4af1e
C
127 this.includeBlacklisted()
128 }
d9bf974f 129
20a206c3 130 if (VideosModelGetQuerySubBuilder.accountInclude.has(options.type)) {
71d4af1e
C
131 this.includeChannels()
132 this.includeAccounts()
133 }
d9bf974f 134
20a206c3 135 if (VideosModelGetQuerySubBuilder.tagsInclude.has(options.type)) {
71d4af1e
C
136 this.includeTags()
137 }
d9bf974f 138
20a206c3 139 if (VideosModelGetQuerySubBuilder.scheduleUpdateInclude.has(options.type)) {
71d4af1e
C
140 this.includeScheduleUpdate()
141 }
d9bf974f 142
20a206c3 143 if (VideosModelGetQuerySubBuilder.liveInclude.has(options.type)) {
71d4af1e
C
144 this.includeLive()
145 }
d9bf974f 146
20a206c3 147 if (options.userId && VideosModelGetQuerySubBuilder.userHistoryInclude.has(options.type)) {
d9bf974f
C
148 this.includeUserHistory(options.userId)
149 }
150
20a206c3 151 if (VideosModelGetQuerySubBuilder.ownerUserInclude.has(options.type)) {
71d4af1e
C
152 this.includeOwnerUser()
153 }
154
20a206c3 155 if (VideosModelGetQuerySubBuilder.trackersInclude.has(options.type)) {
d9bf974f 156 this.includeTrackers()
d9bf974f
C
157 }
158
71d4af1e 159 this.whereId(options)
d9bf974f 160
71d4af1e 161 this.query = this.buildQuery(options)
d9bf974f
C
162 }
163
71d4af1e 164 private buildQuery (options: BuildVideoGetQueryOptions) {
20a206c3 165 const order = VideosModelGetQuerySubBuilder.tagsInclude.has(options.type)
71d4af1e
C
166 ? 'ORDER BY "Tags"."name" ASC'
167 : ''
168
1d43c3a6 169 const from = `SELECT * FROM "video" ${this.where} LIMIT 1`
d9bf974f 170
3c79c2ce 171 return `${this.buildSelect()} FROM (${from}) AS "video" ${this.joins} ${order}`
d9bf974f
C
172 }
173}