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