]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/redundancy/video-redundancy.ts
Upgrade sequelize
[github/Chocobozzz/PeerTube.git] / server / models / redundancy / video-redundancy.ts
CommitLineData
c48e82b5 1import {
c48e82b5 2 AllowNull,
25378bc8 3 BeforeDestroy,
c48e82b5
C
4 BelongsTo,
5 Column,
6 CreatedAt,
7 DataType,
8 ForeignKey,
9 Is,
10 Model,
11 Scopes,
c48e82b5
C
12 Table,
13 UpdatedAt
14} from 'sequelize-typescript'
15import { ActorModel } from '../activitypub/actor'
3acc5084 16import { getVideoSort, parseAggregateResult, throwIfNotValid } from '../utils'
c48e82b5 17import { isActivityPubUrlValid, isUrlValid } from '../../helpers/custom-validators/activitypub/misc'
74dc3bca 18import { CONSTRAINTS_FIELDS, MIMETYPES } from '../../initializers/constants'
c48e82b5 19import { VideoFileModel } from '../video/video-file'
c48e82b5
C
20import { getServerActor } from '../../helpers/utils'
21import { VideoModel } from '../video/video'
22import { VideoRedundancyStrategy } from '../../../shared/models/redundancy'
23import { logger } from '../../helpers/logger'
4a08f669 24import { CacheFileObject, VideoPrivacy } from '../../../shared'
c48e82b5
C
25import { VideoChannelModel } from '../video/video-channel'
26import { ServerModel } from '../server/server'
27import { sample } from 'lodash'
28import { isTestInstance } from '../../helpers/core-utils'
3f6b6a56 29import * as Bluebird from 'bluebird'
3acc5084 30import { col, FindOptions, fn, literal, Op, Transaction } from 'sequelize'
09209296 31import { VideoStreamingPlaylistModel } from '../video/video-streaming-playlist'
6dd9de95 32import { CONFIG } from '../../initializers/config'
c48e82b5
C
33
34export enum ScopeNames {
35 WITH_VIDEO = 'WITH_VIDEO'
36}
37
3acc5084 38@Scopes(() => ({
c48e82b5
C
39 [ ScopeNames.WITH_VIDEO ]: {
40 include: [
41 {
3acc5084 42 model: VideoFileModel,
09209296
C
43 required: false,
44 include: [
45 {
3acc5084 46 model: VideoModel,
09209296
C
47 required: true
48 }
49 ]
50 },
51 {
3acc5084 52 model: VideoStreamingPlaylistModel,
09209296 53 required: false,
c48e82b5
C
54 include: [
55 {
3acc5084 56 model: VideoModel,
c48e82b5
C
57 required: true
58 }
59 ]
60 }
3acc5084 61 ]
c48e82b5 62 }
3acc5084 63}))
c48e82b5
C
64
65@Table({
66 tableName: 'videoRedundancy',
67 indexes: [
68 {
69 fields: [ 'videoFileId' ]
70 },
71 {
72 fields: [ 'actorId' ]
73 },
74 {
75 fields: [ 'url' ],
76 unique: true
77 }
78 ]
79})
80export class VideoRedundancyModel extends Model<VideoRedundancyModel> {
81
82 @CreatedAt
83 createdAt: Date
84
85 @UpdatedAt
86 updatedAt: Date
87
88 @AllowNull(false)
89 @Column
90 expiresOn: Date
91
92 @AllowNull(false)
93 @Is('VideoRedundancyFileUrl', value => throwIfNotValid(value, isUrlValid, 'fileUrl'))
94 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS_REDUNDANCY.URL.max))
95 fileUrl: string
96
97 @AllowNull(false)
98 @Is('VideoRedundancyUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
99 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS_REDUNDANCY.URL.max))
100 url: string
101
102 @AllowNull(true)
103 @Column
104 strategy: string // Only used by us
105
106 @ForeignKey(() => VideoFileModel)
107 @Column
108 videoFileId: number
109
110 @BelongsTo(() => VideoFileModel, {
111 foreignKey: {
09209296 112 allowNull: true
c48e82b5
C
113 },
114 onDelete: 'cascade'
115 })
116 VideoFile: VideoFileModel
117
09209296
C
118 @ForeignKey(() => VideoStreamingPlaylistModel)
119 @Column
120 videoStreamingPlaylistId: number
121
122 @BelongsTo(() => VideoStreamingPlaylistModel, {
123 foreignKey: {
124 allowNull: true
125 },
126 onDelete: 'cascade'
127 })
128 VideoStreamingPlaylist: VideoStreamingPlaylistModel
129
c48e82b5
C
130 @ForeignKey(() => ActorModel)
131 @Column
132 actorId: number
133
134 @BelongsTo(() => ActorModel, {
135 foreignKey: {
136 allowNull: false
137 },
138 onDelete: 'cascade'
139 })
140 Actor: ActorModel
141
25378bc8
C
142 @BeforeDestroy
143 static async removeFile (instance: VideoRedundancyModel) {
8d1fa36a 144 if (!instance.isOwned()) return
c48e82b5 145
09209296
C
146 if (instance.videoFileId) {
147 const videoFile = await VideoFileModel.loadWithVideo(instance.videoFileId)
c48e82b5 148
09209296
C
149 const logIdentifier = `${videoFile.Video.uuid}-${videoFile.resolution}`
150 logger.info('Removing duplicated video file %s.', logIdentifier)
25378bc8 151
09209296
C
152 videoFile.Video.removeFile(videoFile, true)
153 .catch(err => logger.error('Cannot delete %s files.', logIdentifier, { err }))
154 }
155
156 if (instance.videoStreamingPlaylistId) {
157 const videoStreamingPlaylist = await VideoStreamingPlaylistModel.loadWithVideo(instance.videoStreamingPlaylistId)
158
159 const videoUUID = videoStreamingPlaylist.Video.uuid
160 logger.info('Removing duplicated video streaming playlist %s.', videoUUID)
161
162 videoStreamingPlaylist.Video.removeStreamingPlaylist(true)
163 .catch(err => logger.error('Cannot delete video streaming playlist files of %s.', videoUUID, { err }))
164 }
d0ae9490
C
165
166 return undefined
c48e82b5
C
167 }
168
46f8d69b
C
169 static async loadLocalByFileId (videoFileId: number) {
170 const actor = await getServerActor()
171
c48e82b5
C
172 const query = {
173 where: {
46f8d69b 174 actorId: actor.id,
c48e82b5
C
175 videoFileId
176 }
177 }
178
179 return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
180 }
181
09209296
C
182 static async loadLocalByStreamingPlaylistId (videoStreamingPlaylistId: number) {
183 const actor = await getServerActor()
184
185 const query = {
186 where: {
187 actorId: actor.id,
188 videoStreamingPlaylistId
189 }
190 }
191
192 return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
193 }
194
3acc5084 195 static loadByUrl (url: string, transaction?: Transaction) {
c48e82b5
C
196 const query = {
197 where: {
198 url
e5565833
C
199 },
200 transaction
c48e82b5
C
201 }
202
203 return VideoRedundancyModel.findOne(query)
204 }
205
5ce1208a
C
206 static async isLocalByVideoUUIDExists (uuid: string) {
207 const actor = await getServerActor()
208
209 const query = {
210 raw: true,
211 attributes: [ 'id' ],
212 where: {
213 actorId: actor.id
214 },
215 include: [
216 {
217 attributes: [ ],
218 model: VideoFileModel,
219 required: true,
220 include: [
221 {
222 attributes: [ ],
223 model: VideoModel,
224 required: true,
225 where: {
226 uuid
227 }
228 }
229 ]
230 }
231 ]
232 }
233
234 return VideoRedundancyModel.findOne(query)
235 .then(r => !!r)
236 }
237
3f6b6a56
C
238 static async getVideoSample (p: Bluebird<VideoModel[]>) {
239 const rows = await p
b36f41ca
C
240 const ids = rows.map(r => r.id)
241 const id = sample(ids)
242
09209296 243 return VideoModel.loadWithFiles(id, undefined, !isTestInstance())
b36f41ca
C
244 }
245
c48e82b5
C
246 static async findMostViewToDuplicate (randomizedFactor: number) {
247 // On VideoModel!
248 const query = {
b36f41ca 249 attributes: [ 'id', 'views' ],
c48e82b5 250 limit: randomizedFactor,
b36f41ca 251 order: getVideoSort('-views'),
4a08f669
C
252 where: {
253 privacy: VideoPrivacy.PUBLIC
254 },
c48e82b5 255 include: [
b36f41ca
C
256 await VideoRedundancyModel.buildVideoFileForDuplication(),
257 VideoRedundancyModel.buildServerRedundancyInclude()
258 ]
259 }
260
3f6b6a56 261 return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
b36f41ca
C
262 }
263
264 static async findTrendingToDuplicate (randomizedFactor: number) {
265 // On VideoModel!
266 const query = {
267 attributes: [ 'id', 'views' ],
268 subQuery: false,
b36f41ca
C
269 group: 'VideoModel.id',
270 limit: randomizedFactor,
271 order: getVideoSort('-trending'),
4a08f669
C
272 where: {
273 privacy: VideoPrivacy.PUBLIC
274 },
b36f41ca
C
275 include: [
276 await VideoRedundancyModel.buildVideoFileForDuplication(),
277 VideoRedundancyModel.buildServerRedundancyInclude(),
278
279 VideoModel.buildTrendingQuery(CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS)
c48e82b5
C
280 ]
281 }
282
3f6b6a56
C
283 return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
284 }
285
286 static async findRecentlyAddedToDuplicate (randomizedFactor: number, minViews: number) {
287 // On VideoModel!
288 const query = {
289 attributes: [ 'id', 'publishedAt' ],
3f6b6a56
C
290 limit: randomizedFactor,
291 order: getVideoSort('-publishedAt'),
292 where: {
4a08f669 293 privacy: VideoPrivacy.PUBLIC,
3f6b6a56 294 views: {
3acc5084 295 [ Op.gte ]: minViews
3f6b6a56
C
296 }
297 },
298 include: [
299 await VideoRedundancyModel.buildVideoFileForDuplication(),
300 VideoRedundancyModel.buildServerRedundancyInclude()
301 ]
302 }
c48e82b5 303
3f6b6a56 304 return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
c48e82b5
C
305 }
306
e5565833
C
307 static async loadOldestLocalThatAlreadyExpired (strategy: VideoRedundancyStrategy, expiresAfterMs: number) {
308 const expiredDate = new Date()
309 expiredDate.setMilliseconds(expiredDate.getMilliseconds() - expiresAfterMs)
310
311 const actor = await getServerActor()
312
313 const query = {
314 where: {
315 actorId: actor.id,
316 strategy,
317 createdAt: {
3acc5084 318 [ Op.lt ]: expiredDate
e5565833
C
319 }
320 }
321 }
322
323 return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findOne(query)
324 }
325
3f6b6a56 326 static async getTotalDuplicated (strategy: VideoRedundancyStrategy) {
c48e82b5
C
327 const actor = await getServerActor()
328
3acc5084 329 const query: FindOptions = {
3f6b6a56
C
330 include: [
331 {
332 attributes: [],
333 model: VideoRedundancyModel,
334 required: true,
335 where: {
336 actorId: actor.id,
337 strategy
338 }
339 }
340 ]
c48e82b5
C
341 }
342
3acc5084
C
343 return VideoFileModel.aggregate('size', 'SUM', query)
344 .then(result => parseAggregateResult(result))
c48e82b5
C
345 }
346
e5565833
C
347 static async listLocalExpired () {
348 const actor = await getServerActor()
349
350 const query = {
351 where: {
352 actorId: actor.id,
353 expiresOn: {
3acc5084 354 [ Op.lt ]: new Date()
e5565833
C
355 }
356 }
357 }
358
359 return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
360 }
361
362 static async listRemoteExpired () {
363 const actor = await getServerActor()
364
c48e82b5 365 const query = {
c48e82b5 366 where: {
e5565833 367 actorId: {
3acc5084 368 [Op.ne]: actor.id
e5565833 369 },
c48e82b5 370 expiresOn: {
3acc5084 371 [ Op.lt ]: new Date()
c48e82b5
C
372 }
373 }
374 }
375
e5565833 376 return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
c48e82b5
C
377 }
378
161b061d
C
379 static async listLocalOfServer (serverId: number) {
380 const actor = await getServerActor()
09209296
C
381 const buildVideoInclude = () => ({
382 model: VideoModel,
383 required: true,
161b061d
C
384 include: [
385 {
09209296
C
386 attributes: [],
387 model: VideoChannelModel.unscoped(),
161b061d
C
388 required: true,
389 include: [
390 {
09209296
C
391 attributes: [],
392 model: ActorModel.unscoped(),
161b061d 393 required: true,
09209296
C
394 where: {
395 serverId
396 }
161b061d
C
397 }
398 ]
399 }
400 ]
09209296
C
401 })
402
403 const query = {
404 where: {
405 actorId: actor.id
406 },
407 include: [
408 {
409 model: VideoFileModel,
410 required: false,
411 include: [ buildVideoInclude() ]
412 },
413 {
414 model: VideoStreamingPlaylistModel,
415 required: false,
416 include: [ buildVideoInclude() ]
417 }
418 ]
161b061d
C
419 }
420
421 return VideoRedundancyModel.findAll(query)
422 }
423
4b5384f6
C
424 static async getStats (strategy: VideoRedundancyStrategy) {
425 const actor = await getServerActor()
426
3acc5084 427 const query: FindOptions = {
4b5384f6
C
428 raw: true,
429 attributes: [
3acc5084
C
430 [ fn('COALESCE', fn('SUM', col('VideoFile.size')), '0'), 'totalUsed' ],
431 [ fn('COUNT', fn('DISTINCT', col('videoId'))), 'totalVideos' ],
432 [ fn('COUNT', col('videoFileId')), 'totalVideoFiles' ]
4b5384f6
C
433 ],
434 where: {
435 strategy,
436 actorId: actor.id
437 },
438 include: [
439 {
440 attributes: [],
441 model: VideoFileModel,
442 required: true
443 }
444 ]
445 }
446
3acc5084 447 return VideoRedundancyModel.findOne(query)
4b5384f6 448 .then((r: any) => ({
3acc5084 449 totalUsed: parseAggregateResult(r.totalUsed),
4b5384f6
C
450 totalVideos: r.totalVideos,
451 totalVideoFiles: r.totalVideoFiles
452 }))
453 }
454
09209296
C
455 getVideo () {
456 if (this.VideoFile) return this.VideoFile.Video
457
458 return this.VideoStreamingPlaylist.Video
459 }
460
8d1fa36a
C
461 isOwned () {
462 return !!this.strategy
463 }
464
c48e82b5 465 toActivityPubObject (): CacheFileObject {
09209296
C
466 if (this.VideoStreamingPlaylist) {
467 return {
468 id: this.url,
469 type: 'CacheFile' as 'CacheFile',
470 object: this.VideoStreamingPlaylist.Video.url,
471 expires: this.expiresOn.toISOString(),
472 url: {
473 type: 'Link',
474 mimeType: 'application/x-mpegURL',
475 mediaType: 'application/x-mpegURL',
476 href: this.fileUrl
477 }
478 }
479 }
480
c48e82b5
C
481 return {
482 id: this.url,
483 type: 'CacheFile' as 'CacheFile',
484 object: this.VideoFile.Video.url,
485 expires: this.expiresOn.toISOString(),
486 url: {
487 type: 'Link',
14e2014a
C
488 mimeType: MIMETYPES.VIDEO.EXT_MIMETYPE[ this.VideoFile.extname ] as any,
489 mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[ this.VideoFile.extname ] as any,
c48e82b5
C
490 href: this.fileUrl,
491 height: this.VideoFile.resolution,
492 size: this.VideoFile.size,
493 fps: this.VideoFile.fps
494 }
495 }
496 }
497
b36f41ca
C
498 // Don't include video files we already duplicated
499 private static async buildVideoFileForDuplication () {
c48e82b5
C
500 const actor = await getServerActor()
501
3acc5084 502 const notIn = literal(
c48e82b5 503 '(' +
09209296 504 `SELECT "videoFileId" FROM "videoRedundancy" WHERE "actorId" = ${actor.id} AND "videoFileId" IS NOT NULL` +
c48e82b5
C
505 ')'
506 )
b36f41ca
C
507
508 return {
509 attributes: [],
510 model: VideoFileModel.unscoped(),
511 required: true,
512 where: {
513 id: {
3acc5084 514 [ Op.notIn ]: notIn
b36f41ca
C
515 }
516 }
517 }
518 }
519
520 private static buildServerRedundancyInclude () {
521 return {
522 attributes: [],
523 model: VideoChannelModel.unscoped(),
524 required: true,
525 include: [
526 {
527 attributes: [],
528 model: ActorModel.unscoped(),
529 required: true,
530 include: [
531 {
532 attributes: [],
533 model: ServerModel.unscoped(),
534 required: true,
535 where: {
536 redundancyAllowed: true
537 }
538 }
539 ]
540 }
541 ]
542 }
c48e82b5
C
543 }
544}