]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video-file.ts
Fix broken dep
[github/Chocobozzz/PeerTube.git] / server / models / video / video-file.ts
CommitLineData
90a8bd30 1import { remove } from 'fs-extra'
41fb13c3 2import memoizee from 'memoizee'
90a8bd30 3import { join } from 'path'
9d8ef212 4import { FindOptions, Op, Transaction, WhereOptions } from 'sequelize'
c48e82b5
C
5import {
6 AllowNull,
7 BelongsTo,
8 Column,
9 CreatedAt,
10 DataType,
11 Default,
90a8bd30 12 DefaultScope,
c48e82b5
C
13 ForeignKey,
14 HasMany,
15 Is,
16 Model,
8319d6ae 17 Scopes,
90a8bd30
C
18 Table,
19 UpdatedAt
c48e82b5 20} from 'sequelize-typescript'
90a8bd30
C
21import validator from 'validator'
22import { buildRemoteVideoBaseUrl } from '@server/helpers/activitypub'
23import { logger } from '@server/helpers/logger'
24import { extractVideo } from '@server/helpers/video'
0305db28
JB
25import { getHLSPublicFileUrl, getWebTorrentPublicFileUrl } from '@server/lib/object-storage'
26import { getFSTorrentFilePath } from '@server/lib/paths'
ad5db104 27import { isStreamingPlaylist, MStreamingPlaylistVideo, MVideo, MVideoWithHost } from '@server/types/models'
482b2623 28import { VideoResolution, VideoStorage } from '@shared/models'
6b5f72be 29import { AttributesOnly } from '@shared/typescript-utils'
3a6f351b 30import {
14e2014a 31 isVideoFileExtnameValid,
3a6f351b
C
32 isVideoFileInfoHashValid,
33 isVideoFileResolutionValid,
34 isVideoFileSizeValid,
35 isVideoFPSResolutionValid
36} from '../../helpers/custom-validators/videos'
90a8bd30
C
37import {
38 LAZY_STATIC_PATHS,
39 MEMOIZE_LENGTH,
40 MEMOIZE_TTL,
90a8bd30
C
41 STATIC_DOWNLOAD_PATHS,
42 STATIC_PATHS,
43 WEBSERVER
44} from '../../initializers/constants'
45import { MVideoFile, MVideoFileStreamingPlaylistVideo, MVideoFileVideo } from '../../types/models/video/video-file'
46import { VideoRedundancyModel } from '../redundancy/video-redundancy'
fa47956e 47import { doesExist } from '../shared'
3acc5084 48import { parseAggregateResult, throwIfNotValid } from '../utils'
3fd3ab2d 49import { VideoModel } from './video'
ae9bbed4 50import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
93e1258c 51
8319d6ae
RK
52export enum ScopeNames {
53 WITH_VIDEO = 'WITH_VIDEO',
90a8bd30
C
54 WITH_METADATA = 'WITH_METADATA',
55 WITH_VIDEO_OR_PLAYLIST = 'WITH_VIDEO_OR_PLAYLIST'
8319d6ae
RK
56}
57
8319d6ae
RK
58@DefaultScope(() => ({
59 attributes: {
7b81edc8 60 exclude: [ 'metadata' ]
8319d6ae
RK
61 }
62}))
63@Scopes(() => ({
64 [ScopeNames.WITH_VIDEO]: {
65 include: [
66 {
67 model: VideoModel.unscoped(),
68 required: true
69 }
70 ]
71 },
9d8ef212 72 [ScopeNames.WITH_VIDEO_OR_PLAYLIST]: (options: { whereVideo?: WhereOptions } = {}) => {
90a8bd30
C
73 return {
74 include: [
75 {
76 model: VideoModel.unscoped(),
77 required: false,
78 where: options.whereVideo
79 },
80 {
81 model: VideoStreamingPlaylistModel.unscoped(),
82 required: false,
83 include: [
84 {
85 model: VideoModel.unscoped(),
86 required: true,
87 where: options.whereVideo
88 }
89 ]
90 }
91 ]
92 }
93 },
8319d6ae
RK
94 [ScopeNames.WITH_METADATA]: {
95 attributes: {
7b81edc8 96 include: [ 'metadata' ]
8319d6ae
RK
97 }
98 }
99}))
3fd3ab2d
C
100@Table({
101 tableName: 'videoFile',
102 indexes: [
93e1258c 103 {
d7a25329
C
104 fields: [ 'videoId' ],
105 where: {
106 videoId: {
107 [Op.ne]: null
108 }
109 }
110 },
111 {
112 fields: [ 'videoStreamingPlaylistId' ],
113 where: {
114 videoStreamingPlaylistId: {
115 [Op.ne]: null
116 }
117 }
93e1258c 118 },
d7a25329 119
93e1258c 120 {
3fd3ab2d 121 fields: [ 'infoHash' ]
8cd72bd3 122 },
d7a25329 123
90a8bd30
C
124 {
125 fields: [ 'torrentFilename' ],
126 unique: true
127 },
128
129 {
130 fields: [ 'filename' ],
131 unique: true
132 },
133
8cd72bd3
C
134 {
135 fields: [ 'videoId', 'resolution', 'fps' ],
d7a25329
C
136 unique: true,
137 where: {
138 videoId: {
139 [Op.ne]: null
140 }
141 }
142 },
143 {
144 fields: [ 'videoStreamingPlaylistId', 'resolution', 'fps' ],
145 unique: true,
146 where: {
147 videoStreamingPlaylistId: {
148 [Op.ne]: null
149 }
150 }
93e1258c 151 }
93e1258c 152 ]
3fd3ab2d 153})
16c016e8 154export class VideoFileModel extends Model<Partial<AttributesOnly<VideoFileModel>>> {
3fd3ab2d
C
155 @CreatedAt
156 createdAt: Date
157
158 @UpdatedAt
159 updatedAt: Date
160
161 @AllowNull(false)
162 @Is('VideoFileResolution', value => throwIfNotValid(value, isVideoFileResolutionValid, 'resolution'))
163 @Column
164 resolution: number
165
166 @AllowNull(false)
167 @Is('VideoFileSize', value => throwIfNotValid(value, isVideoFileSizeValid, 'size'))
168 @Column(DataType.BIGINT)
169 size: number
170
171 @AllowNull(false)
14e2014a
C
172 @Is('VideoFileExtname', value => throwIfNotValid(value, isVideoFileExtnameValid, 'extname'))
173 @Column
3fd3ab2d
C
174 extname: string
175
c6c0fa6c
C
176 @AllowNull(true)
177 @Is('VideoFileInfohash', value => throwIfNotValid(value, isVideoFileInfoHashValid, 'info hash', true))
3fd3ab2d
C
178 @Column
179 infoHash: string
180
2e7cf5ae
C
181 @AllowNull(false)
182 @Default(-1)
3a6f351b
C
183 @Is('VideoFileFPS', value => throwIfNotValid(value, isVideoFPSResolutionValid, 'fps'))
184 @Column
185 fps: number
186
8319d6ae
RK
187 @AllowNull(true)
188 @Column(DataType.JSONB)
189 metadata: any
190
191 @AllowNull(true)
192 @Column
193 metadataUrl: string
194
02b286f8 195 // Could be null for remote files
90a8bd30
C
196 @AllowNull(true)
197 @Column
198 fileUrl: string
199
200 // Could be null for live files
201 @AllowNull(true)
202 @Column
203 filename: string
204
02b286f8 205 // Could be null for remote files
90a8bd30
C
206 @AllowNull(true)
207 @Column
208 torrentUrl: string
209
210 // Could be null for live files
211 @AllowNull(true)
212 @Column
213 torrentFilename: string
214
3fd3ab2d
C
215 @ForeignKey(() => VideoModel)
216 @Column
217 videoId: number
218
0305db28
JB
219 @AllowNull(false)
220 @Default(VideoStorage.FILE_SYSTEM)
221 @Column
222 storage: VideoStorage
223
3fd3ab2d 224 @BelongsTo(() => VideoModel, {
93e1258c 225 foreignKey: {
d7a25329 226 allowNull: true
93e1258c
C
227 },
228 onDelete: 'CASCADE'
229 })
3fd3ab2d 230 Video: VideoModel
cc43831a 231
d7a25329
C
232 @ForeignKey(() => VideoStreamingPlaylistModel)
233 @Column
234 videoStreamingPlaylistId: number
235
236 @BelongsTo(() => VideoStreamingPlaylistModel, {
237 foreignKey: {
238 allowNull: true
239 },
240 onDelete: 'CASCADE'
241 })
242 VideoStreamingPlaylist: VideoStreamingPlaylistModel
243
c48e82b5
C
244 @HasMany(() => VideoRedundancyModel, {
245 foreignKey: {
09209296 246 allowNull: true
c48e82b5
C
247 },
248 onDelete: 'CASCADE',
249 hooks: true
250 })
251 RedundancyVideos: VideoRedundancyModel[]
252
35f28e94
C
253 static doesInfohashExistCached = memoizee(VideoFileModel.doesInfohashExist, {
254 promise: true,
255 max: MEMOIZE_LENGTH.INFO_HASH_EXISTS,
256 maxAge: MEMOIZE_TTL.INFO_HASH_EXISTS
257 })
258
09209296 259 static doesInfohashExist (infoHash: string) {
cc43831a 260 const query = 'SELECT 1 FROM "videoFile" WHERE "infoHash" = $infoHash LIMIT 1'
cc43831a 261
764b1a14 262 return doesExist(query, { infoHash })
cc43831a 263 }
e5565833 264
8319d6ae
RK
265 static async doesVideoExistForVideoFile (id: number, videoIdOrUUID: number | string) {
266 const videoFile = await VideoFileModel.loadWithVideoOrPlaylist(id, videoIdOrUUID)
7b81edc8
C
267
268 return !!videoFile
8319d6ae
RK
269 }
270
764b1a14
C
271 static async doesOwnedTorrentFileExist (filename: string) {
272 const query = 'SELECT 1 FROM "videoFile" ' +
273 'LEFT JOIN "video" "webtorrent" ON "webtorrent"."id" = "videoFile"."videoId" AND "webtorrent"."remote" IS FALSE ' +
274 'LEFT JOIN "videoStreamingPlaylist" ON "videoStreamingPlaylist"."id" = "videoFile"."videoStreamingPlaylistId" ' +
275 'LEFT JOIN "video" "hlsVideo" ON "hlsVideo"."id" = "videoStreamingPlaylist"."videoId" AND "hlsVideo"."remote" IS FALSE ' +
276 'WHERE "torrentFilename" = $filename AND ("hlsVideo"."id" IS NOT NULL OR "webtorrent"."id" IS NOT NULL) LIMIT 1'
277
278 return doesExist(query, { filename })
279 }
280
281 static async doesOwnedWebTorrentVideoFileExist (filename: string) {
282 const query = 'SELECT 1 FROM "videoFile" INNER JOIN "video" ON "video"."id" = "videoFile"."videoId" AND "video"."remote" IS FALSE ' +
0305db28 283 `WHERE "filename" = $filename AND "storage" = ${VideoStorage.FILE_SYSTEM} LIMIT 1`
764b1a14
C
284
285 return doesExist(query, { filename })
286 }
287
288 static loadByFilename (filename: string) {
289 const query = {
290 where: {
291 filename
292 }
293 }
294
295 return VideoFileModel.findOne(query)
296 }
297
90a8bd30
C
298 static loadWithVideoOrPlaylistByTorrentFilename (filename: string) {
299 const query = {
300 where: {
301 torrentFilename: filename
302 }
303 }
304
305 return VideoFileModel.scope(ScopeNames.WITH_VIDEO_OR_PLAYLIST).findOne(query)
306 }
307
8319d6ae
RK
308 static loadWithMetadata (id: number) {
309 return VideoFileModel.scope(ScopeNames.WITH_METADATA).findByPk(id)
310 }
311
25378bc8 312 static loadWithVideo (id: number) {
8319d6ae
RK
313 return VideoFileModel.scope(ScopeNames.WITH_VIDEO).findByPk(id)
314 }
25378bc8 315
8319d6ae 316 static loadWithVideoOrPlaylist (id: number, videoIdOrUUID: number | string) {
7b81edc8
C
317 const whereVideo = validator.isUUID(videoIdOrUUID + '')
318 ? { uuid: videoIdOrUUID }
319 : { id: videoIdOrUUID }
320
321 const options = {
322 where: {
323 id
90a8bd30 324 }
7b81edc8
C
325 }
326
90a8bd30
C
327 return VideoFileModel.scope({ method: [ ScopeNames.WITH_VIDEO_OR_PLAYLIST, whereVideo ] })
328 .findOne(options)
7b81edc8
C
329 .then(file => {
330 // We used `required: false` so check we have at least a video or a streaming playlist
331 if (!file.Video && !file.VideoStreamingPlaylist) return null
332
333 return file
334 })
25378bc8
C
335 }
336
3acc5084 337 static listByStreamingPlaylist (streamingPlaylistId: number, transaction: Transaction) {
ae9bbed4
C
338 const query = {
339 include: [
340 {
341 model: VideoModel.unscoped(),
342 required: true,
343 include: [
344 {
345 model: VideoStreamingPlaylistModel.unscoped(),
346 required: true,
347 where: {
348 id: streamingPlaylistId
349 }
350 }
351 ]
352 }
353 ],
354 transaction
355 }
356
357 return VideoFileModel.findAll(query)
358 }
359
3acc5084 360 static getStats () {
0b84383d 361 const webtorrentFilesQuery: FindOptions = {
44b9c0ba
C
362 include: [
363 {
364 attributes: [],
0b84383d 365 required: true,
44b9c0ba
C
366 model: VideoModel.unscoped(),
367 where: {
368 remote: false
369 }
370 }
371 ]
44b9c0ba 372 }
3acc5084 373
0b84383d
C
374 const hlsFilesQuery: FindOptions = {
375 include: [
376 {
377 attributes: [],
378 required: true,
379 model: VideoStreamingPlaylistModel.unscoped(),
380 include: [
381 {
382 attributes: [],
383 model: VideoModel.unscoped(),
384 required: true,
385 where: {
386 remote: false
387 }
388 }
389 ]
390 }
391 ]
392 }
393
394 return Promise.all([
395 VideoFileModel.aggregate('size', 'SUM', webtorrentFilesQuery),
396 VideoFileModel.aggregate('size', 'SUM', hlsFilesQuery)
397 ]).then(([ webtorrentResult, hlsResult ]) => ({
398 totalLocalVideoFilesSize: parseAggregateResult(webtorrentResult) + parseAggregateResult(hlsResult)
399 }))
44b9c0ba
C
400 }
401
d7a25329
C
402 // Redefine upsert because sequelize does not use an appropriate where clause in the update query with 2 unique indexes
403 static async customUpsert (
404 videoFile: MVideoFile,
405 mode: 'streaming-playlist' | 'video',
406 transaction: Transaction
407 ) {
408 const baseWhere = {
409 fps: videoFile.fps,
410 resolution: videoFile.resolution
411 }
412
413 if (mode === 'streaming-playlist') Object.assign(baseWhere, { videoStreamingPlaylistId: videoFile.videoStreamingPlaylistId })
414 else Object.assign(baseWhere, { videoId: videoFile.videoId })
415
416 const element = await VideoFileModel.findOne({ where: baseWhere, transaction })
417 if (!element) return videoFile.save({ transaction })
418
419 for (const k of Object.keys(videoFile.toJSON())) {
420 element[k] = videoFile[k]
421 }
422
423 return element.save({ transaction })
424 }
425
97969c4e
C
426 static removeHLSFilesOfVideoId (videoStreamingPlaylistId: number) {
427 const options = {
428 where: { videoStreamingPlaylistId }
429 }
430
431 return VideoFileModel.destroy(options)
432 }
433
c4d12552
C
434 hasTorrent () {
435 return this.infoHash && this.torrentFilename
436 }
437
d7a25329
C
438 getVideoOrStreamingPlaylist (this: MVideoFileVideo | MVideoFileStreamingPlaylistVideo): MVideo | MStreamingPlaylistVideo {
439 if (this.videoId) return (this as MVideoFileVideo).Video
440
441 return (this as MVideoFileStreamingPlaylistVideo).VideoStreamingPlaylist
442 }
443
90a8bd30
C
444 getVideo (this: MVideoFileVideo | MVideoFileStreamingPlaylistVideo): MVideo {
445 return extractVideo(this.getVideoOrStreamingPlaylist())
446 }
447
536598cf 448 isAudio () {
482b2623 449 return this.resolution === VideoResolution.H_NOVIDEO
536598cf
C
450 }
451
bd54ad19
C
452 isLive () {
453 return this.size === -1
454 }
455
053aed43 456 isHLS () {
9e2b2e76 457 return !!this.videoStreamingPlaylistId
053aed43
C
458 }
459
0305db28
JB
460 getObjectStorageUrl () {
461 if (this.isHLS()) {
462 return getHLSPublicFileUrl(this.fileUrl)
463 }
464
465 return getWebTorrentPublicFileUrl(this.fileUrl)
466 }
467
8efc27bf 468 getFileUrl (video: MVideo) {
0305db28
JB
469 if (this.storage === VideoStorage.OBJECT_STORAGE) {
470 return this.getObjectStorageUrl()
471 }
90a8bd30 472
0305db28 473 if (!this.Video) this.Video = video as VideoModel
90a8bd30 474 if (video.isOwned()) return WEBSERVER.URL + this.getFileStaticPath(video)
90a8bd30 475
d9a2a031 476 return this.fileUrl
90a8bd30
C
477 }
478
479 getFileStaticPath (video: MVideo) {
480 if (this.isHLS()) return join(STATIC_PATHS.STREAMING_PLAYLISTS.HLS, video.uuid, this.filename)
481
482 return join(STATIC_PATHS.WEBSEED, this.filename)
483 }
484
485 getFileDownloadUrl (video: MVideoWithHost) {
764b1a14
C
486 const path = this.isHLS()
487 ? join(STATIC_DOWNLOAD_PATHS.HLS_VIDEOS, `${video.uuid}-${this.resolution}-fragmented${this.extname}`)
488 : join(STATIC_DOWNLOAD_PATHS.VIDEOS, `${video.uuid}-${this.resolution}${this.extname}`)
90a8bd30
C
489
490 if (video.isOwned()) return WEBSERVER.URL + path
491
492 // FIXME: don't guess remote URL
493 return buildRemoteVideoBaseUrl(video, path)
494 }
495
8efc27bf 496 getRemoteTorrentUrl (video: MVideo) {
90a8bd30
C
497 if (video.isOwned()) throw new Error(`Video ${video.url} is not a remote video`)
498
d9a2a031 499 return this.torrentUrl
90a8bd30
C
500 }
501
502 // We proxify torrent requests so use a local URL
503 getTorrentUrl () {
d61893f7
C
504 if (!this.torrentFilename) return null
505
90a8bd30
C
506 return WEBSERVER.URL + this.getTorrentStaticPath()
507 }
508
509 getTorrentStaticPath () {
d61893f7
C
510 if (!this.torrentFilename) return null
511
90a8bd30
C
512 return join(LAZY_STATIC_PATHS.TORRENTS, this.torrentFilename)
513 }
514
515 getTorrentDownloadUrl () {
d61893f7
C
516 if (!this.torrentFilename) return null
517
90a8bd30
C
518 return WEBSERVER.URL + join(STATIC_DOWNLOAD_PATHS.TORRENTS, this.torrentFilename)
519 }
520
521 removeTorrent () {
d61893f7
C
522 if (!this.torrentFilename) return null
523
0305db28 524 const torrentPath = getFSTorrentFilePath(this)
90a8bd30
C
525 return remove(torrentPath)
526 .catch(err => logger.warn('Cannot delete torrent %s.', torrentPath, { err }))
527 }
528
453e83ea 529 hasSameUniqueKeysThan (other: MVideoFile) {
e5565833
C
530 return this.fps === other.fps &&
531 this.resolution === other.resolution &&
d7a25329
C
532 (
533 (this.videoId !== null && this.videoId === other.videoId) ||
534 (this.videoStreamingPlaylistId !== null && this.videoStreamingPlaylistId === other.videoStreamingPlaylistId)
535 )
e5565833 536 }
ad5db104
C
537
538 withVideoOrPlaylist (videoOrPlaylist: MVideo | MStreamingPlaylistVideo) {
539 if (isStreamingPlaylist(videoOrPlaylist)) return Object.assign(this, { VideoStreamingPlaylist: videoOrPlaylist })
540
541 return Object.assign(this, { Video: videoOrPlaylist })
542 }
93e1258c 543}