]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video.ts
Fix videos list when page is empty
[github/Chocobozzz/PeerTube.git] / server / models / video / video.ts
CommitLineData
39445ead 1import * as Bluebird from 'bluebird'
098eb377 2import { maxBy } from 'lodash'
571389d4 3import * as magnetUtil from 'magnet-uri'
4d4e5cd4 4import * as parseTorrent from 'parse-torrent'
098eb377 5import { join } from 'path'
e02643f3 6import * as Sequelize from 'sequelize'
3fd3ab2d 7import {
4ba3b8ea
C
8 AllowNull,
9 BeforeDestroy,
10 BelongsTo,
11 BelongsToMany,
12 Column,
13 CreatedAt,
14 DataType,
15 Default,
16 ForeignKey,
17 HasMany,
2baea0c7 18 HasOne,
4ba3b8ea 19 IFindOptions,
9a629c6e 20 IIncludeOptions,
4ba3b8ea
C
21 Is,
22 IsInt,
23 IsUUID,
24 Min,
25 Model,
26 Scopes,
27 Table,
9a629c6e 28 UpdatedAt
3fd3ab2d 29} from 'sequelize-typescript'
098eb377 30import { VideoPrivacy, VideoState } from '../../../shared'
3fd3ab2d 31import { VideoTorrentObject } from '../../../shared/models/activitypub/objects'
a8462c8e 32import { Video, VideoDetails, VideoFile } from '../../../shared/models/videos'
066e94c5 33import { VideoFilter } from '../../../shared/models/videos/video-query.type'
62689b94 34import { createTorrentPromise, peertubeTruncate } from '../../helpers/core-utils'
da854ddd 35import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
c48e82b5 36import { isArray, isBooleanValid } from '../../helpers/custom-validators/misc'
3fd3ab2d 37import {
4ba3b8ea
C
38 isVideoCategoryValid,
39 isVideoDescriptionValid,
40 isVideoDurationValid,
41 isVideoLanguageValid,
42 isVideoLicenceValid,
43 isVideoNameValid,
2baea0c7
C
44 isVideoPrivacyValid,
45 isVideoStateValid,
b64c950a 46 isVideoSupportValid
3fd3ab2d 47} from '../../helpers/custom-validators/videos'
098eb377 48import { generateImageFromVideoFile, getVideoFileResolution } from '../../helpers/ffmpeg-utils'
da854ddd 49import { logger } from '../../helpers/logger'
f05a1c30 50import { getServerActor } from '../../helpers/utils'
65fcc311 51import {
1297eb5d 52 ACTIVITY_PUB,
4ba3b8ea
C
53 API_VERSION,
54 CONFIG,
55 CONSTRAINTS_FIELDS,
56 PREVIEWS_SIZE,
57 REMOTE_SCHEME,
02756fbd 58 STATIC_DOWNLOAD_PATHS,
4ba3b8ea
C
59 STATIC_PATHS,
60 THUMBNAILS_SIZE,
61 VIDEO_CATEGORIES,
62 VIDEO_LANGUAGES,
63 VIDEO_LICENCES,
2baea0c7
C
64 VIDEO_PRIVACIES,
65 VIDEO_STATES
3fd3ab2d 66} from '../../initializers'
50d6de9c 67import { sendDeleteVideo } from '../../lib/activitypub/send'
3fd3ab2d
C
68import { AccountModel } from '../account/account'
69import { AccountVideoRateModel } from '../account/account-video-rate'
50d6de9c 70import { ActorModel } from '../activitypub/actor'
b6a4fd6b 71import { AvatarModel } from '../avatar/avatar'
3fd3ab2d 72import { ServerModel } from '../server/server'
9a629c6e 73import { buildTrigramSearchIndex, createSimilarityAttribute, getVideoSort, throwIfNotValid } from '../utils'
3fd3ab2d
C
74import { TagModel } from './tag'
75import { VideoAbuseModel } from './video-abuse'
76import { VideoChannelModel } from './video-channel'
da854ddd 77import { VideoCommentModel } from './video-comment'
3fd3ab2d
C
78import { VideoFileModel } from './video-file'
79import { VideoShareModel } from './video-share'
80import { VideoTagModel } from './video-tag'
2baea0c7 81import { ScheduleVideoUpdateModel } from './schedule-video-update'
40e87e9e 82import { VideoCaptionModel } from './video-caption'
26b7305a 83import { VideoBlacklistModel } from './video-blacklist'
098eb377 84import { remove, writeFile } from 'fs-extra'
9a629c6e 85import { VideoViewModel } from './video-views'
c48e82b5 86import { VideoRedundancyModel } from '../redundancy/video-redundancy'
098eb377
C
87import {
88 videoFilesModelToFormattedJSON,
89 VideoFormattingJSONOptions,
90 videoModelToActivityPubObject,
91 videoModelToFormattedDetailsJSON,
92 videoModelToFormattedJSON
93} from './video-format-utils'
627621c1 94import * as validator from 'validator'
6e46de09
C
95import { UserVideoHistoryModel } from '../account/user-video-history'
96
57c36b27
C
97// FIXME: Define indexes here because there is an issue with TS and Sequelize.literal when called directly in the annotation
98const indexes: Sequelize.DefineIndexesOptions[] = [
99 buildTrigramSearchIndex('video_name_trigram', 'name'),
100
8cd72bd3
C
101 { fields: [ 'createdAt' ] },
102 { fields: [ 'publishedAt' ] },
103 { fields: [ 'duration' ] },
104 { fields: [ 'category' ] },
105 { fields: [ 'licence' ] },
106 { fields: [ 'nsfw' ] },
107 { fields: [ 'language' ] },
108 { fields: [ 'waitTranscoding' ] },
109 { fields: [ 'state' ] },
110 { fields: [ 'remote' ] },
111 { fields: [ 'views' ] },
112 { fields: [ 'likes' ] },
113 { fields: [ 'channelId' ] },
57c36b27 114 {
8cd72bd3
C
115 fields: [ 'uuid' ],
116 unique: true
57c36b27
C
117 },
118 {
8ea6f49a 119 fields: [ 'url' ],
57c36b27
C
120 unique: true
121 }
122]
123
2baea0c7 124export enum ScopeNames {
afd2cba5
C
125 AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
126 FOR_API = 'FOR_API',
4cb6d457 127 WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
d48ff09d 128 WITH_TAGS = 'WITH_TAGS',
bbe0f064 129 WITH_FILES = 'WITH_FILES',
191764f3 130 WITH_SCHEDULED_UPDATE = 'WITH_SCHEDULED_UPDATE',
6e46de09
C
131 WITH_BLACKLISTED = 'WITH_BLACKLISTED',
132 WITH_USER_HISTORY = 'WITH_USER_HISTORY'
d48ff09d
C
133}
134
afd2cba5
C
135type ForAPIOptions = {
136 ids: number[]
137 withFiles?: boolean
138}
139
140type AvailableForListIDsOptions = {
141 actorId: number
142 includeLocalVideos: boolean
143 filter?: VideoFilter
144 categoryOneOf?: number[]
145 nsfw?: boolean
146 licenceOneOf?: number[]
147 languageOneOf?: string[]
148 tagsOneOf?: string[]
149 tagsAllOf?: string[]
150 withFiles?: boolean
151 accountId?: number
d525fc39 152 videoChannelId?: number
9a629c6e 153 trendingDays?: number
d525fc39
C
154}
155
d48ff09d 156@Scopes({
8ea6f49a 157 [ ScopeNames.FOR_API ]: (options: ForAPIOptions) => {
0626e7af 158 const accountInclude = {
03e12d7c 159 attributes: [ 'id', 'name' ],
0626e7af
C
160 model: AccountModel.unscoped(),
161 required: true,
0626e7af
C
162 include: [
163 {
03e12d7c 164 attributes: [ 'id', 'uuid', 'preferredUsername', 'url', 'serverId', 'avatarId' ],
0626e7af
C
165 model: ActorModel.unscoped(),
166 required: true,
0626e7af
C
167 include: [
168 {
169 attributes: [ 'host' ],
170 model: ServerModel.unscoped(),
171 required: false
172 },
173 {
174 model: AvatarModel.unscoped(),
175 required: false
176 }
177 ]
178 }
179 ]
180 }
181
48dce1c9 182 const videoChannelInclude = {
0f320037 183 attributes: [ 'name', 'description', 'id' ],
48dce1c9
C
184 model: VideoChannelModel.unscoped(),
185 required: true,
48dce1c9 186 include: [
0f320037
C
187 {
188 attributes: [ 'uuid', 'preferredUsername', 'url', 'serverId', 'avatarId' ],
189 model: ActorModel.unscoped(),
190 required: true,
191 include: [
192 {
193 attributes: [ 'host' ],
194 model: ServerModel.unscoped(),
195 required: false
196 },
197 {
198 model: AvatarModel.unscoped(),
199 required: false
200 }
201 ]
202 },
48dce1c9
C
203 accountInclude
204 ]
205 }
206
244e76a5 207 const query: IFindOptions<VideoModel> = {
afd2cba5
C
208 where: {
209 id: {
8ea6f49a 210 [ Sequelize.Op.any ]: options.ids
afd2cba5
C
211 }
212 },
213 include: [ videoChannelInclude ]
214 }
215
216 if (options.withFiles === true) {
217 query.include.push({
218 model: VideoFileModel.unscoped(),
219 required: true
220 })
221 }
222
223 return query
224 },
8ea6f49a 225 [ ScopeNames.AVAILABLE_FOR_LIST_IDS ]: (options: AvailableForListIDsOptions) => {
afd2cba5 226 const query: IFindOptions<VideoModel> = {
2b62cccd 227 raw: true,
afd2cba5 228 attributes: [ 'id' ],
244e76a5
RK
229 where: {
230 id: {
8ea6f49a 231 [ Sequelize.Op.and ]: [
b6314e3c
C
232 {
233 [ Sequelize.Op.notIn ]: Sequelize.literal(
234 '(SELECT "videoBlacklist"."videoId" FROM "videoBlacklist")'
235 )
236 }
237 ]
244e76a5 238 },
2186386c
C
239 // Always list public videos
240 privacy: VideoPrivacy.PUBLIC,
241 // Always list published videos, or videos that are being transcoded but on which we don't want to wait for transcoding
242 [ Sequelize.Op.or ]: [
243 {
244 state: VideoState.PUBLISHED
245 },
246 {
247 [ Sequelize.Op.and ]: {
248 state: VideoState.TO_TRANSCODE,
249 waitTranscoding: false
250 }
251 }
252 ]
50d6de9c 253 },
8ea6f49a 254 include: []
afd2cba5
C
255 }
256
257 if (options.filter || options.accountId || options.videoChannelId) {
258 const videoChannelInclude: IIncludeOptions = {
259 attributes: [],
260 model: VideoChannelModel.unscoped(),
261 required: true
262 }
263
264 if (options.videoChannelId) {
265 videoChannelInclude.where = {
266 id: options.videoChannelId
267 }
268 }
269
270 if (options.filter || options.accountId) {
271 const accountInclude: IIncludeOptions = {
272 attributes: [],
273 model: AccountModel.unscoped(),
274 required: true
275 }
276
277 if (options.filter) {
278 accountInclude.include = [
279 {
280 attributes: [],
281 model: ActorModel.unscoped(),
282 required: true,
283 where: VideoModel.buildActorWhereWithFilter(options.filter)
284 }
285 ]
286 }
287
288 if (options.accountId) {
289 accountInclude.where = { id: options.accountId }
290 }
291
292 videoChannelInclude.include = [ accountInclude ]
293 }
294
295 query.include.push(videoChannelInclude)
244e76a5
RK
296 }
297
687d638c
C
298 if (options.actorId) {
299 let localVideosReq = ''
300 if (options.includeLocalVideos === true) {
301 localVideosReq = ' UNION ALL ' +
302 'SELECT "video"."id" AS "id" FROM "video" ' +
303 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
304 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
305 'INNER JOIN "actor" ON "account"."actorId" = "actor"."id" ' +
306 'WHERE "actor"."serverId" IS NULL'
307 }
308
309 // Force actorId to be a number to avoid SQL injections
310 const actorIdNumber = parseInt(options.actorId.toString(), 10)
8ea6f49a 311 query.where[ 'id' ][ Sequelize.Op.and ].push({
b6314e3c
C
312 [ Sequelize.Op.in ]: Sequelize.literal(
313 '(' +
8ea6f49a
C
314 'SELECT "videoShare"."videoId" AS "id" FROM "videoShare" ' +
315 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
316 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
317 ' UNION ALL ' +
318 'SELECT "video"."id" AS "id" FROM "video" ' +
319 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
320 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
321 'INNER JOIN "actor" ON "account"."actorId" = "actor"."id" ' +
322 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "actor"."id" ' +
323 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
324 localVideosReq +
b6314e3c
C
325 ')'
326 )
327 })
687d638c
C
328 }
329
48dce1c9 330 if (options.withFiles === true) {
8ea6f49a 331 query.where[ 'id' ][ Sequelize.Op.and ].push({
b6314e3c
C
332 [ Sequelize.Op.in ]: Sequelize.literal(
333 '(SELECT "videoId" FROM "videoFile")'
334 )
244e76a5
RK
335 })
336 }
337
d525fc39
C
338 // FIXME: issues with sequelize count when making a join on n:m relation, so we just make a IN()
339 if (options.tagsAllOf || options.tagsOneOf) {
340 const createTagsIn = (tags: string[]) => {
341 return tags.map(t => VideoModel.sequelize.escape(t))
342 .join(', ')
343 }
344
345 if (options.tagsOneOf) {
8ea6f49a
C
346 query.where[ 'id' ][ Sequelize.Op.and ].push({
347 [ Sequelize.Op.in ]: Sequelize.literal(
b6314e3c 348 '(' +
d525fc39
C
349 'SELECT "videoId" FROM "videoTag" ' +
350 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
351 'WHERE "tag"."name" IN (' + createTagsIn(options.tagsOneOf) + ')' +
b6314e3c
C
352 ')'
353 )
354 })
d525fc39
C
355 }
356
357 if (options.tagsAllOf) {
8ea6f49a
C
358 query.where[ 'id' ][ Sequelize.Op.and ].push({
359 [ Sequelize.Op.in ]: Sequelize.literal(
d525fc39 360 '(' +
b6314e3c
C
361 'SELECT "videoId" FROM "videoTag" ' +
362 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
363 'WHERE "tag"."name" IN (' + createTagsIn(options.tagsAllOf) + ')' +
364 'GROUP BY "videoTag"."videoId" HAVING COUNT(*) = ' + options.tagsAllOf.length +
d525fc39 365 ')'
b6314e3c
C
366 )
367 })
d525fc39
C
368 }
369 }
370
371 if (options.nsfw === true || options.nsfw === false) {
8ea6f49a 372 query.where[ 'nsfw' ] = options.nsfw
d525fc39
C
373 }
374
375 if (options.categoryOneOf) {
8ea6f49a
C
376 query.where[ 'category' ] = {
377 [ Sequelize.Op.or ]: options.categoryOneOf
d525fc39
C
378 }
379 }
380
381 if (options.licenceOneOf) {
8ea6f49a
C
382 query.where[ 'licence' ] = {
383 [ Sequelize.Op.or ]: options.licenceOneOf
d525fc39 384 }
0883b324
C
385 }
386
d525fc39 387 if (options.languageOneOf) {
8ea6f49a
C
388 query.where[ 'language' ] = {
389 [ Sequelize.Op.or ]: options.languageOneOf
d525fc39 390 }
61b909b9
P
391 }
392
9a629c6e 393 if (options.trendingDays) {
b36f41ca 394 query.include.push(VideoModel.buildTrendingQuery(options.trendingDays))
9a629c6e
C
395
396 query.subQuery = false
397 }
398
244e76a5
RK
399 return query
400 },
8ea6f49a 401 [ ScopeNames.WITH_ACCOUNT_DETAILS ]: {
d48ff09d
C
402 include: [
403 {
6120941f 404 model: () => VideoChannelModel.unscoped(),
d48ff09d
C
405 required: true,
406 include: [
6120941f
C
407 {
408 attributes: {
409 exclude: [ 'privateKey', 'publicKey' ]
410 },
3e500247
C
411 model: () => ActorModel.unscoped(),
412 required: true,
413 include: [
414 {
415 attributes: [ 'host' ],
416 model: () => ServerModel.unscoped(),
417 required: false
52d9f792
C
418 },
419 {
420 model: () => AvatarModel.unscoped(),
421 required: false
3e500247
C
422 }
423 ]
6120941f 424 },
d48ff09d 425 {
3e500247 426 model: () => AccountModel.unscoped(),
d48ff09d
C
427 required: true,
428 include: [
429 {
3e500247 430 model: () => ActorModel.unscoped(),
6120941f
C
431 attributes: {
432 exclude: [ 'privateKey', 'publicKey' ]
433 },
50d6de9c
C
434 required: true,
435 include: [
436 {
3e500247
C
437 attributes: [ 'host' ],
438 model: () => ServerModel.unscoped(),
50d6de9c 439 required: false
b6a4fd6b
C
440 },
441 {
442 model: () => AvatarModel.unscoped(),
443 required: false
50d6de9c
C
444 }
445 ]
d48ff09d
C
446 }
447 ]
448 }
449 ]
450 }
451 ]
452 },
8ea6f49a 453 [ ScopeNames.WITH_TAGS ]: {
d48ff09d
C
454 include: [ () => TagModel ]
455 },
8ea6f49a 456 [ ScopeNames.WITH_BLACKLISTED ]: {
191764f3
C
457 include: [
458 {
459 attributes: [ 'id', 'reason' ],
460 model: () => VideoBlacklistModel,
461 required: false
462 }
463 ]
464 },
8ea6f49a 465 [ ScopeNames.WITH_FILES ]: {
d48ff09d
C
466 include: [
467 {
e53f952e 468 model: () => VideoFileModel.unscoped(),
6e46de09
C
469 // FIXME: typings
470 [ 'separate' as any ]: true, // We may have multiple files, having multiple redundancies so let's separate this join
c48e82b5
C
471 required: false,
472 include: [
473 {
627621c1 474 attributes: [ 'fileUrl' ],
c48e82b5
C
475 model: () => VideoRedundancyModel.unscoped(),
476 required: false
477 }
478 ]
d48ff09d
C
479 }
480 ]
bbe0f064 481 },
8ea6f49a 482 [ ScopeNames.WITH_SCHEDULED_UPDATE ]: {
bbe0f064
C
483 include: [
484 {
485 model: () => ScheduleVideoUpdateModel.unscoped(),
486 required: false
487 }
488 ]
6e46de09
C
489 },
490 [ ScopeNames.WITH_USER_HISTORY ]: (userId: number) => {
491 return {
492 include: [
493 {
494 attributes: [ 'currentTime' ],
495 model: UserVideoHistoryModel.unscoped(),
496 required: false,
497 where: {
498 userId
499 }
500 }
501 ]
502 }
d48ff09d
C
503 }
504})
3fd3ab2d
C
505@Table({
506 tableName: 'video',
57c36b27 507 indexes
3fd3ab2d
C
508})
509export class VideoModel extends Model<VideoModel> {
510
511 @AllowNull(false)
512 @Default(DataType.UUIDV4)
513 @IsUUID(4)
514 @Column(DataType.UUID)
515 uuid: string
516
517 @AllowNull(false)
518 @Is('VideoName', value => throwIfNotValid(value, isVideoNameValid, 'name'))
519 @Column
520 name: string
521
522 @AllowNull(true)
523 @Default(null)
524 @Is('VideoCategory', value => throwIfNotValid(value, isVideoCategoryValid, 'category'))
525 @Column
526 category: number
527
528 @AllowNull(true)
529 @Default(null)
530 @Is('VideoLicence', value => throwIfNotValid(value, isVideoLicenceValid, 'licence'))
531 @Column
532 licence: number
533
534 @AllowNull(true)
535 @Default(null)
536 @Is('VideoLanguage', value => throwIfNotValid(value, isVideoLanguageValid, 'language'))
9d3ef9fe
C
537 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
538 language: string
3fd3ab2d
C
539
540 @AllowNull(false)
541 @Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
542 @Column
543 privacy: number
544
545 @AllowNull(false)
47564bbe 546 @Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
3fd3ab2d
C
547 @Column
548 nsfw: boolean
549
550 @AllowNull(true)
551 @Default(null)
552 @Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description'))
553 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
554 description: string
555
2422c46b
C
556 @AllowNull(true)
557 @Default(null)
558 @Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support'))
559 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
560 support: string
561
3fd3ab2d
C
562 @AllowNull(false)
563 @Is('VideoDuration', value => throwIfNotValid(value, isVideoDurationValid, 'duration'))
564 @Column
565 duration: number
566
567 @AllowNull(false)
568 @Default(0)
569 @IsInt
570 @Min(0)
571 @Column
572 views: number
573
574 @AllowNull(false)
575 @Default(0)
576 @IsInt
577 @Min(0)
578 @Column
579 likes: number
580
581 @AllowNull(false)
582 @Default(0)
583 @IsInt
584 @Min(0)
585 @Column
586 dislikes: number
587
588 @AllowNull(false)
589 @Column
590 remote: boolean
591
592 @AllowNull(false)
593 @Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
594 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
595 url: string
596
47564bbe
C
597 @AllowNull(false)
598 @Column
599 commentsEnabled: boolean
600
2186386c
C
601 @AllowNull(false)
602 @Column
603 waitTranscoding: boolean
604
605 @AllowNull(false)
606 @Default(null)
607 @Is('VideoState', value => throwIfNotValid(value, isVideoStateValid, 'state'))
608 @Column
609 state: VideoState
610
3fd3ab2d
C
611 @CreatedAt
612 createdAt: Date
613
614 @UpdatedAt
615 updatedAt: Date
616
2922e048
JLB
617 @AllowNull(false)
618 @Default(Sequelize.NOW)
619 @Column
620 publishedAt: Date
621
3fd3ab2d
C
622 @ForeignKey(() => VideoChannelModel)
623 @Column
624 channelId: number
625
626 @BelongsTo(() => VideoChannelModel, {
feb4bdfd 627 foreignKey: {
50d6de9c 628 allowNull: true
feb4bdfd 629 },
6b738c7a 630 hooks: true
feb4bdfd 631 })
3fd3ab2d 632 VideoChannel: VideoChannelModel
7920c273 633
3fd3ab2d 634 @BelongsToMany(() => TagModel, {
7920c273 635 foreignKey: 'videoId',
3fd3ab2d
C
636 through: () => VideoTagModel,
637 onDelete: 'CASCADE'
7920c273 638 })
3fd3ab2d 639 Tags: TagModel[]
55fa55a9 640
3fd3ab2d 641 @HasMany(() => VideoAbuseModel, {
55fa55a9
C
642 foreignKey: {
643 name: 'videoId',
644 allowNull: false
645 },
646 onDelete: 'cascade'
647 })
3fd3ab2d 648 VideoAbuses: VideoAbuseModel[]
93e1258c 649
3fd3ab2d 650 @HasMany(() => VideoFileModel, {
93e1258c
C
651 foreignKey: {
652 name: 'videoId',
653 allowNull: false
654 },
c48e82b5 655 hooks: true,
93e1258c
C
656 onDelete: 'cascade'
657 })
3fd3ab2d 658 VideoFiles: VideoFileModel[]
e71bcc0f 659
3fd3ab2d 660 @HasMany(() => VideoShareModel, {
e71bcc0f
C
661 foreignKey: {
662 name: 'videoId',
663 allowNull: false
664 },
665 onDelete: 'cascade'
666 })
3fd3ab2d 667 VideoShares: VideoShareModel[]
16b90975 668
3fd3ab2d 669 @HasMany(() => AccountVideoRateModel, {
16b90975
C
670 foreignKey: {
671 name: 'videoId',
672 allowNull: false
673 },
674 onDelete: 'cascade'
675 })
3fd3ab2d 676 AccountVideoRates: AccountVideoRateModel[]
f285faa0 677
da854ddd
C
678 @HasMany(() => VideoCommentModel, {
679 foreignKey: {
680 name: 'videoId',
681 allowNull: false
682 },
f05a1c30
C
683 onDelete: 'cascade',
684 hooks: true
da854ddd
C
685 })
686 VideoComments: VideoCommentModel[]
687
9a629c6e
C
688 @HasMany(() => VideoViewModel, {
689 foreignKey: {
690 name: 'videoId',
691 allowNull: false
692 },
6e46de09 693 onDelete: 'cascade'
9a629c6e
C
694 })
695 VideoViews: VideoViewModel[]
696
6e46de09
C
697 @HasMany(() => UserVideoHistoryModel, {
698 foreignKey: {
699 name: 'videoId',
700 allowNull: false
701 },
702 onDelete: 'cascade'
703 })
704 UserVideoHistories: UserVideoHistoryModel[]
705
2baea0c7
C
706 @HasOne(() => ScheduleVideoUpdateModel, {
707 foreignKey: {
708 name: 'videoId',
709 allowNull: false
710 },
711 onDelete: 'cascade'
712 })
713 ScheduleVideoUpdate: ScheduleVideoUpdateModel
714
26b7305a
C
715 @HasOne(() => VideoBlacklistModel, {
716 foreignKey: {
717 name: 'videoId',
718 allowNull: false
719 },
720 onDelete: 'cascade'
721 })
722 VideoBlacklist: VideoBlacklistModel
723
40e87e9e
C
724 @HasMany(() => VideoCaptionModel, {
725 foreignKey: {
726 name: 'videoId',
727 allowNull: false
728 },
729 onDelete: 'cascade',
730 hooks: true,
8ea6f49a 731 [ 'separate' as any ]: true
40e87e9e
C
732 })
733 VideoCaptions: VideoCaptionModel[]
734
f05a1c30
C
735 @BeforeDestroy
736 static async sendDelete (instance: VideoModel, options) {
737 if (instance.isOwned()) {
738 if (!instance.VideoChannel) {
739 instance.VideoChannel = await instance.$get('VideoChannel', {
740 include: [
741 {
742 model: AccountModel,
743 include: [ ActorModel ]
744 }
745 ],
746 transaction: options.transaction
747 }) as VideoChannelModel
748 }
749
f05a1c30
C
750 return sendDeleteVideo(instance, options.transaction)
751 }
752
753 return undefined
754 }
755
6b738c7a 756 @BeforeDestroy
40e87e9e 757 static async removeFiles (instance: VideoModel) {
f05a1c30 758 const tasks: Promise<any>[] = []
f285faa0 759
8e0fd45e 760 logger.info('Removing files of video %s.', instance.url)
6b738c7a 761
f05a1c30 762 tasks.push(instance.removeThumbnail())
93e1258c 763
3fd3ab2d 764 if (instance.isOwned()) {
f05a1c30
C
765 if (!Array.isArray(instance.VideoFiles)) {
766 instance.VideoFiles = await instance.$get('VideoFiles') as VideoFileModel[]
767 }
768
769 tasks.push(instance.removePreview())
40298b02 770
3fd3ab2d
C
771 // Remove physical files and torrents
772 instance.VideoFiles.forEach(file => {
773 tasks.push(instance.removeFile(file))
774 tasks.push(instance.removeTorrent(file))
775 })
776 }
40298b02 777
6b738c7a
C
778 // Do not wait video deletion because we could be in a transaction
779 Promise.all(tasks)
8ea6f49a
C
780 .catch(err => {
781 logger.error('Some errors when removing files of video %s in before destroy hook.', instance.uuid, { err })
782 })
6b738c7a
C
783
784 return undefined
3fd3ab2d 785 }
f285faa0 786
3fd3ab2d 787 static list () {
d48ff09d 788 return VideoModel.scope(ScopeNames.WITH_FILES).findAll()
3fd3ab2d 789 }
f285faa0 790
50d6de9c 791 static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
3fd3ab2d
C
792 function getRawQuery (select: string) {
793 const queryVideo = 'SELECT ' + select + ' FROM "video" AS "Video" ' +
794 'INNER JOIN "videoChannel" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
50d6de9c
C
795 'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
796 'WHERE "Account"."actorId" = ' + actorId
3fd3ab2d
C
797 const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
798 'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
50d6de9c 799 'WHERE "VideoShare"."actorId" = ' + actorId
558d7c23 800
3fd3ab2d
C
801 return `(${queryVideo}) UNION (${queryVideoShare})`
802 }
aaf61f38 803
3fd3ab2d
C
804 const rawQuery = getRawQuery('"Video"."id"')
805 const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
806
807 const query = {
808 distinct: true,
809 offset: start,
810 limit: count,
9a629c6e 811 order: getVideoSort('createdAt', [ 'Tags', 'name', 'ASC' ]),
3fd3ab2d
C
812 where: {
813 id: {
8ea6f49a 814 [ Sequelize.Op.in ]: Sequelize.literal('(' + rawQuery + ')')
3c75ce12 815 },
8ea6f49a 816 [ Sequelize.Op.or ]: [
3c75ce12
C
817 { privacy: VideoPrivacy.PUBLIC },
818 { privacy: VideoPrivacy.UNLISTED }
819 ]
3fd3ab2d
C
820 },
821 include: [
40e87e9e
C
822 {
823 attributes: [ 'language' ],
824 model: VideoCaptionModel.unscoped(),
825 required: false
826 },
3fd3ab2d 827 {
1d230c44 828 attributes: [ 'id', 'url' ],
2c897999 829 model: VideoShareModel.unscoped(),
3fd3ab2d 830 required: false,
e3d5ea4f
C
831 // We only want videos shared by this actor
832 where: {
8ea6f49a 833 [ Sequelize.Op.and ]: [
e3d5ea4f
C
834 {
835 id: {
8ea6f49a 836 [ Sequelize.Op.not ]: null
e3d5ea4f
C
837 }
838 },
839 {
840 actorId
841 }
842 ]
843 },
50d6de9c
C
844 include: [
845 {
2c897999
C
846 attributes: [ 'id', 'url' ],
847 model: ActorModel.unscoped()
50d6de9c
C
848 }
849 ]
3fd3ab2d
C
850 },
851 {
2c897999 852 model: VideoChannelModel.unscoped(),
3fd3ab2d
C
853 required: true,
854 include: [
855 {
2c897999
C
856 attributes: [ 'name' ],
857 model: AccountModel.unscoped(),
858 required: true,
859 include: [
860 {
e3d5ea4f 861 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999
C
862 model: ActorModel.unscoped(),
863 required: true
864 }
865 ]
866 },
867 {
e3d5ea4f 868 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999 869 model: ActorModel.unscoped(),
3fd3ab2d
C
870 required: true
871 }
872 ]
873 },
3fd3ab2d 874 VideoFileModel,
2c897999 875 TagModel
3fd3ab2d
C
876 ]
877 }
164174a6 878
3fd3ab2d
C
879 return Bluebird.all([
880 // FIXME: typing issue
881 VideoModel.findAll(query as any),
882 VideoModel.sequelize.query(rawCountQuery, { type: Sequelize.QueryTypes.SELECT })
883 ]).then(([ rows, totals ]) => {
884 // totals: totalVideos + totalVideoShares
885 let totalVideos = 0
886 let totalVideoShares = 0
8ea6f49a
C
887 if (totals[ 0 ]) totalVideos = parseInt(totals[ 0 ].total, 10)
888 if (totals[ 1 ]) totalVideoShares = parseInt(totals[ 1 ].total, 10)
3fd3ab2d
C
889
890 const total = totalVideos + totalVideoShares
891 return {
892 data: rows,
893 total: total
894 }
895 })
896 }
93e1258c 897
26b7305a 898 static listUserVideosForApi (accountId: number, start: number, count: number, sort: string, withFiles = false) {
244e76a5 899 const query: IFindOptions<VideoModel> = {
3fd3ab2d
C
900 offset: start,
901 limit: count,
9a629c6e 902 order: getVideoSort(sort),
3fd3ab2d
C
903 include: [
904 {
905 model: VideoChannelModel,
906 required: true,
907 include: [
908 {
909 model: AccountModel,
910 where: {
7b87d2d5 911 id: accountId
3fd3ab2d
C
912 },
913 required: true
914 }
915 ]
2baea0c7
C
916 },
917 {
918 model: ScheduleVideoUpdateModel,
919 required: false
26b7305a
C
920 },
921 {
922 model: VideoBlacklistModel,
923 required: false
d48ff09d 924 }
3fd3ab2d
C
925 ]
926 }
d8755eed 927
244e76a5
RK
928 if (withFiles === true) {
929 query.include.push({
930 model: VideoFileModel.unscoped(),
931 required: true
932 })
933 }
934
3fd3ab2d
C
935 return VideoModel.findAndCountAll(query).then(({ rows, count }) => {
936 return {
937 data: rows,
938 total: count
939 }
940 })
941 }
93e1258c 942
48dce1c9 943 static async listForApi (options: {
0626e7af
C
944 start: number,
945 count: number,
946 sort: string,
d525fc39 947 nsfw: boolean,
06a05d5f 948 includeLocalVideos: boolean,
48dce1c9 949 withFiles: boolean,
d525fc39
C
950 categoryOneOf?: number[],
951 licenceOneOf?: number[],
952 languageOneOf?: string[],
953 tagsOneOf?: string[],
954 tagsAllOf?: string[],
0626e7af 955 filter?: VideoFilter,
48dce1c9 956 accountId?: number,
06a05d5f
C
957 videoChannelId?: number,
958 actorId?: number
6e46de09
C
959 trendingDays?: number,
960 userId?: number
7348b1fd 961 }, countVideos = true) {
9a629c6e 962 const query: IFindOptions<VideoModel> = {
48dce1c9
C
963 offset: options.start,
964 limit: options.count,
9a629c6e
C
965 order: getVideoSort(options.sort)
966 }
967
968 let trendingDays: number
969 if (options.sort.endsWith('trending')) {
970 trendingDays = CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
971
972 query.group = 'VideoModel.id'
3fd3ab2d 973 }
93e1258c 974
687d638c
C
975 // actorId === null has a meaning, so just check undefined
976 const actorId = options.actorId !== undefined ? options.actorId : (await getServerActor()).id
06a05d5f 977
afd2cba5
C
978 const queryOptions = {
979 actorId,
980 nsfw: options.nsfw,
981 categoryOneOf: options.categoryOneOf,
982 licenceOneOf: options.licenceOneOf,
983 languageOneOf: options.languageOneOf,
984 tagsOneOf: options.tagsOneOf,
985 tagsAllOf: options.tagsAllOf,
986 filter: options.filter,
987 withFiles: options.withFiles,
988 accountId: options.accountId,
989 videoChannelId: options.videoChannelId,
9a629c6e 990 includeLocalVideos: options.includeLocalVideos,
6e46de09 991 userId: options.userId,
9a629c6e 992 trendingDays
48dce1c9
C
993 }
994
7348b1fd 995 return VideoModel.getAvailableForApi(query, queryOptions, countVideos)
93e1258c
C
996 }
997
0b18f4aa 998 static async searchAndPopulateAccountAndServer (options: {
06a05d5f 999 includeLocalVideos: boolean
d4112450 1000 search?: string
0b18f4aa
C
1001 start?: number
1002 count?: number
1003 sort?: string
1004 startDate?: string // ISO 8601
1005 endDate?: string // ISO 8601
1006 nsfw?: boolean
1007 categoryOneOf?: number[]
1008 licenceOneOf?: number[]
1009 languageOneOf?: string[]
1010 tagsOneOf?: string[]
1011 tagsAllOf?: string[]
1012 durationMin?: number // seconds
1013 durationMax?: number // seconds
6e46de09 1014 userId?: number
0b18f4aa 1015 }) {
8ea6f49a 1016 const whereAnd = []
d525fc39
C
1017
1018 if (options.startDate || options.endDate) {
8ea6f49a 1019 const publishedAtRange = {}
d525fc39 1020
8ea6f49a
C
1021 if (options.startDate) publishedAtRange[ Sequelize.Op.gte ] = options.startDate
1022 if (options.endDate) publishedAtRange[ Sequelize.Op.lte ] = options.endDate
d525fc39
C
1023
1024 whereAnd.push({ publishedAt: publishedAtRange })
1025 }
1026
1027 if (options.durationMin || options.durationMax) {
8ea6f49a 1028 const durationRange = {}
d525fc39 1029
8ea6f49a
C
1030 if (options.durationMin) durationRange[ Sequelize.Op.gte ] = options.durationMin
1031 if (options.durationMax) durationRange[ Sequelize.Op.lte ] = options.durationMax
d525fc39
C
1032
1033 whereAnd.push({ duration: durationRange })
1034 }
1035
d4112450 1036 const attributesInclude = []
dbfd3e9b
C
1037 const escapedSearch = VideoModel.sequelize.escape(options.search)
1038 const escapedLikeSearch = VideoModel.sequelize.escape('%' + options.search + '%')
d4112450
C
1039 if (options.search) {
1040 whereAnd.push(
1041 {
dbfd3e9b
C
1042 id: {
1043 [ Sequelize.Op.in ]: Sequelize.literal(
1044 '(' +
8ea6f49a
C
1045 'SELECT "video"."id" FROM "video" ' +
1046 'WHERE ' +
1047 'lower(immutable_unaccent("video"."name")) % lower(immutable_unaccent(' + escapedSearch + ')) OR ' +
1048 'lower(immutable_unaccent("video"."name")) LIKE lower(immutable_unaccent(' + escapedLikeSearch + '))' +
1049 'UNION ALL ' +
1050 'SELECT "video"."id" FROM "video" LEFT JOIN "videoTag" ON "videoTag"."videoId" = "video"."id" ' +
1051 'INNER JOIN "tag" ON "tag"."id" = "videoTag"."tagId" ' +
1052 'WHERE "tag"."name" = ' + escapedSearch +
dbfd3e9b
C
1053 ')'
1054 )
1055 }
d4112450
C
1056 }
1057 )
1058
1059 attributesInclude.push(createSimilarityAttribute('VideoModel.name', options.search))
1060 }
1061
1062 // Cannot search on similarity if we don't have a search
1063 if (!options.search) {
1064 attributesInclude.push(
1065 Sequelize.literal('0 as similarity')
1066 )
1067 }
d525fc39 1068
f05a1c30 1069 const query: IFindOptions<VideoModel> = {
57c36b27 1070 attributes: {
d4112450 1071 include: attributesInclude
57c36b27 1072 },
d525fc39
C
1073 offset: options.start,
1074 limit: options.count,
9a629c6e 1075 order: getVideoSort(options.sort),
d525fc39
C
1076 where: {
1077 [ Sequelize.Op.and ]: whereAnd
1078 }
f05a1c30
C
1079 }
1080
1081 const serverActor = await getServerActor()
afd2cba5
C
1082 const queryOptions = {
1083 actorId: serverActor.id,
1084 includeLocalVideos: options.includeLocalVideos,
1085 nsfw: options.nsfw,
1086 categoryOneOf: options.categoryOneOf,
1087 licenceOneOf: options.licenceOneOf,
1088 languageOneOf: options.languageOneOf,
1089 tagsOneOf: options.tagsOneOf,
6e46de09
C
1090 tagsAllOf: options.tagsAllOf,
1091 userId: options.userId
48dce1c9 1092 }
f05a1c30 1093
afd2cba5 1094 return VideoModel.getAvailableForApi(query, queryOptions)
f05a1c30
C
1095 }
1096
627621c1
C
1097 static load (id: number | string, t?: Sequelize.Transaction) {
1098 const where = VideoModel.buildWhereIdOrUUID(id)
1099 const options = {
1100 where,
1101 transaction: t
3fd3ab2d 1102 }
d8755eed 1103
627621c1 1104 return VideoModel.findOne(options)
3fd3ab2d 1105 }
d8755eed 1106
627621c1
C
1107 static loadOnlyId (id: number | string, t?: Sequelize.Transaction) {
1108 const where = VideoModel.buildWhereIdOrUUID(id)
1109
3fd3ab2d 1110 const options = {
627621c1
C
1111 attributes: [ 'id' ],
1112 where,
1113 transaction: t
3fd3ab2d 1114 }
72c7248b 1115
627621c1
C
1116 return VideoModel.findOne(options)
1117 }
1118
1119 static loadWithFile (id: number, t?: Sequelize.Transaction, logging?: boolean) {
1120 return VideoModel.scope(ScopeNames.WITH_FILES)
1121 .findById(id, { transaction: t, logging })
3fd3ab2d 1122 }
72c7248b 1123
627621c1 1124 static loadByUUIDWithFile (uuid: string) {
8fa5653a
C
1125 const options = {
1126 where: {
1127 uuid
1128 }
1129 }
1130
1131 return VideoModel
1132 .scope([ ScopeNames.WITH_FILES ])
1133 .findOne(options)
1134 }
1135
4157cdb1 1136 static loadByUrl (url: string, transaction?: Sequelize.Transaction) {
627621c1
C
1137 const query: IFindOptions<VideoModel> = {
1138 where: {
1139 url
4157cdb1
C
1140 },
1141 transaction
627621c1
C
1142 }
1143
4157cdb1
C
1144 return VideoModel.findOne(query)
1145 }
1146
1147 static loadByUrlAndPopulateAccount (url: string, transaction?: Sequelize.Transaction) {
1148 const query: IFindOptions<VideoModel> = {
1149 where: {
1150 url
1151 },
1152 transaction
1153 }
627621c1
C
1154
1155 return VideoModel.scope([ ScopeNames.WITH_ACCOUNT_DETAILS, ScopeNames.WITH_FILES ]).findOne(query)
1156 }
1157
6e46de09 1158 static loadAndPopulateAccountAndServerAndTags (id: number | string, t?: Sequelize.Transaction, userId?: number) {
627621c1
C
1159 const where = VideoModel.buildWhereIdOrUUID(id)
1160
3fd3ab2d
C
1161 const options = {
1162 order: [ [ 'Tags', 'name', 'ASC' ] ],
627621c1 1163 where,
2186386c 1164 transaction: t
3fd3ab2d 1165 }
fd45e8f4 1166
6e46de09
C
1167 const scopes = [
1168 ScopeNames.WITH_TAGS,
1169 ScopeNames.WITH_BLACKLISTED,
1170 ScopeNames.WITH_FILES,
1171 ScopeNames.WITH_ACCOUNT_DETAILS,
1172 ScopeNames.WITH_SCHEDULED_UPDATE
1173 ]
1174
1175 if (userId) {
1176 scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] } as any) // FIXME: typings
1177 }
1178
d48ff09d 1179 return VideoModel
6e46de09 1180 .scope(scopes)
da854ddd
C
1181 .findOne(options)
1182 }
1183
09cababd
C
1184 static async getStats () {
1185 const totalLocalVideos = await VideoModel.count({
1186 where: {
1187 remote: false
1188 }
1189 })
1190 const totalVideos = await VideoModel.count()
1191
1192 let totalLocalVideoViews = await VideoModel.sum('views', {
1193 where: {
1194 remote: false
1195 }
1196 })
1197 // Sequelize could return null...
1198 if (!totalLocalVideoViews) totalLocalVideoViews = 0
1199
1200 return {
1201 totalLocalVideos,
1202 totalLocalVideoViews,
1203 totalVideos
1204 }
1205 }
1206
6b616860
C
1207 static incrementViews (id: number, views: number) {
1208 return VideoModel.increment('views', {
1209 by: views,
1210 where: {
1211 id
1212 }
1213 })
1214 }
1215
2d3741d6 1216 // threshold corresponds to how many video the field should have to be returned
7348b1fd
C
1217 static async getRandomFieldSamples (field: 'category' | 'channelId', threshold: number, count: number) {
1218 const actorId = (await getServerActor()).id
1219
1220 const scopeOptions = {
1221 actorId,
1222 includeLocalVideos: true
1223 }
1224
2d3741d6
C
1225 const query: IFindOptions<VideoModel> = {
1226 attributes: [ field ],
1227 limit: count,
1228 group: field,
1229 having: Sequelize.where(Sequelize.fn('COUNT', Sequelize.col(field)), {
8ea6f49a 1230 [ Sequelize.Op.gte ]: threshold
2d3741d6 1231 }) as any, // FIXME: typings
2d3741d6
C
1232 order: [ this.sequelize.random() ]
1233 }
1234
7348b1fd
C
1235 return VideoModel.scope({ method: [ ScopeNames.AVAILABLE_FOR_LIST_IDS, scopeOptions ] })
1236 .findAll(query)
8ea6f49a 1237 .then(rows => rows.map(r => r[ field ]))
2d3741d6
C
1238 }
1239
b36f41ca
C
1240 static buildTrendingQuery (trendingDays: number) {
1241 return {
1242 attributes: [],
1243 subQuery: false,
1244 model: VideoViewModel,
1245 required: false,
1246 where: {
1247 startDate: {
1248 [ Sequelize.Op.gte ]: new Date(new Date().getTime() - (24 * 3600 * 1000) * trendingDays)
1249 }
1250 }
1251 }
1252 }
1253
066e94c5
C
1254 private static buildActorWhereWithFilter (filter?: VideoFilter) {
1255 if (filter && filter === 'local') {
1256 return {
1257 serverId: null
1258 }
1259 }
1260
1261 return {}
1262 }
afd2cba5 1263
6e46de09
C
1264 private static async getAvailableForApi (
1265 query: IFindOptions<VideoModel>,
1266 options: AvailableForListIDsOptions & { userId?: number},
1267 countVideos = true
1268 ) {
afd2cba5
C
1269 const idsScope = {
1270 method: [
1271 ScopeNames.AVAILABLE_FOR_LIST_IDS, options
1272 ]
1273 }
1274
8ea6f49a
C
1275 // Remove trending sort on count, because it uses a group by
1276 const countOptions = Object.assign({}, options, { trendingDays: undefined })
1277 const countQuery = Object.assign({}, query, { attributes: undefined, group: undefined })
1278 const countScope = {
1279 method: [
1280 ScopeNames.AVAILABLE_FOR_LIST_IDS, countOptions
1281 ]
1282 }
1283
1284 const [ count, rowsId ] = await Promise.all([
7348b1fd 1285 countVideos ? VideoModel.scope(countScope).count(countQuery) : Promise.resolve(undefined),
8ea6f49a
C
1286 VideoModel.scope(idsScope).findAll(query)
1287 ])
afd2cba5
C
1288 const ids = rowsId.map(r => r.id)
1289
1290 if (ids.length === 0) return { data: [], total: count }
1291
6e46de09
C
1292 // FIXME: typings
1293 const apiScope: any[] = [
1294 {
1295 method: [ ScopeNames.FOR_API, { ids, withFiles: options.withFiles } as ForAPIOptions ]
1296 }
1297 ]
1298
1299 if (options.userId) {
1300 apiScope.push({ method: [ ScopeNames.WITH_USER_HISTORY, options.userId ] })
afd2cba5 1301 }
b6314e3c
C
1302
1303 const secondQuery = {
1304 offset: 0,
1305 limit: query.limit,
9a629c6e
C
1306 attributes: query.attributes,
1307 order: [ // Keep original order
1308 Sequelize.literal(
1309 ids.map(id => `"VideoModel".id = ${id} DESC`).join(', ')
1310 )
1311 ]
b6314e3c
C
1312 }
1313 const rows = await VideoModel.scope(apiScope).findAll(secondQuery)
afd2cba5
C
1314
1315 return {
1316 data: rows,
1317 total: count
1318 }
1319 }
066e94c5 1320
098eb377 1321 static getCategoryLabel (id: number) {
8ea6f49a 1322 return VIDEO_CATEGORIES[ id ] || 'Misc'
ae5a3dd6
C
1323 }
1324
098eb377 1325 static getLicenceLabel (id: number) {
8ea6f49a 1326 return VIDEO_LICENCES[ id ] || 'Unknown'
ae5a3dd6
C
1327 }
1328
098eb377 1329 static getLanguageLabel (id: string) {
8ea6f49a 1330 return VIDEO_LANGUAGES[ id ] || 'Unknown'
ae5a3dd6
C
1331 }
1332
098eb377 1333 static getPrivacyLabel (id: number) {
8ea6f49a 1334 return VIDEO_PRIVACIES[ id ] || 'Unknown'
2186386c 1335 }
2243730c 1336
098eb377 1337 static getStateLabel (id: number) {
8ea6f49a 1338 return VIDEO_STATES[ id ] || 'Unknown'
2243730c
C
1339 }
1340
627621c1
C
1341 static buildWhereIdOrUUID (id: number | string) {
1342 return validator.isInt('' + id) ? { id } : { uuid: id }
1343 }
1344
3fd3ab2d
C
1345 getOriginalFile () {
1346 if (Array.isArray(this.VideoFiles) === false) return undefined
aaf61f38 1347
3fd3ab2d
C
1348 // The original file is the file that have the higher resolution
1349 return maxBy(this.VideoFiles, file => file.resolution)
e4f97bab 1350 }
aaf61f38 1351
3fd3ab2d
C
1352 getVideoFilename (videoFile: VideoFileModel) {
1353 return this.uuid + '-' + videoFile.resolution + videoFile.extname
1354 }
165cdc75 1355
3fd3ab2d
C
1356 getThumbnailName () {
1357 // We always have a copy of the thumbnail
1358 const extension = '.jpg'
1359 return this.uuid + extension
7b1f49de
C
1360 }
1361
3fd3ab2d
C
1362 getPreviewName () {
1363 const extension = '.jpg'
1364 return this.uuid + extension
1365 }
7b1f49de 1366
3fd3ab2d
C
1367 getTorrentFileName (videoFile: VideoFileModel) {
1368 const extension = '.torrent'
1369 return this.uuid + '-' + videoFile.resolution + extension
1370 }
8e7f08b5 1371
3fd3ab2d
C
1372 isOwned () {
1373 return this.remote === false
9567011b
C
1374 }
1375
3fd3ab2d 1376 createPreview (videoFile: VideoFileModel) {
3fd3ab2d
C
1377 return generateImageFromVideoFile(
1378 this.getVideoFilePath(videoFile),
1379 CONFIG.STORAGE.PREVIEWS_DIR,
1380 this.getPreviewName(),
26670720 1381 PREVIEWS_SIZE
3fd3ab2d
C
1382 )
1383 }
9567011b 1384
3fd3ab2d 1385 createThumbnail (videoFile: VideoFileModel) {
3fd3ab2d
C
1386 return generateImageFromVideoFile(
1387 this.getVideoFilePath(videoFile),
1388 CONFIG.STORAGE.THUMBNAILS_DIR,
1389 this.getThumbnailName(),
26670720 1390 THUMBNAILS_SIZE
3fd3ab2d 1391 )
14d3270f
C
1392 }
1393
02756fbd
C
1394 getTorrentFilePath (videoFile: VideoFileModel) {
1395 return join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1396 }
1397
3fd3ab2d
C
1398 getVideoFilePath (videoFile: VideoFileModel) {
1399 return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
1400 }
14d3270f 1401
81e504b3 1402 async createTorrentAndSetInfoHash (videoFile: VideoFileModel) {
3fd3ab2d 1403 const options = {
6cced8f9
C
1404 // Keep the extname, it's used by the client to stream the file inside a web browser
1405 name: `${this.name} ${videoFile.resolution}p${videoFile.extname}`,
81e504b3 1406 createdBy: 'PeerTube',
3fd3ab2d 1407 announceList: [
0edf0581
C
1408 [ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ],
1409 [ CONFIG.WEBSERVER.URL + '/tracker/announce' ]
3fd3ab2d 1410 ],
c48e82b5 1411 urlList: [ CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile) ]
3fd3ab2d 1412 }
14d3270f 1413
3fd3ab2d 1414 const torrent = await createTorrentPromise(this.getVideoFilePath(videoFile), options)
e4f97bab 1415
3fd3ab2d
C
1416 const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1417 logger.info('Creating torrent %s.', filePath)
e4f97bab 1418
62689b94 1419 await writeFile(filePath, torrent)
e4f97bab 1420
3fd3ab2d
C
1421 const parsedTorrent = parseTorrent(torrent)
1422 videoFile.infoHash = parsedTorrent.infoHash
1423 }
e4f97bab 1424
40e87e9e 1425 getEmbedStaticPath () {
3fd3ab2d
C
1426 return '/videos/embed/' + this.uuid
1427 }
e4f97bab 1428
40e87e9e 1429 getThumbnailStaticPath () {
3fd3ab2d 1430 return join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName())
e4f97bab 1431 }
227d02fe 1432
40e87e9e 1433 getPreviewStaticPath () {
3fd3ab2d
C
1434 return join(STATIC_PATHS.PREVIEWS, this.getPreviewName())
1435 }
40298b02 1436
098eb377
C
1437 toFormattedJSON (options?: VideoFormattingJSONOptions): Video {
1438 return videoModelToFormattedJSON(this, options)
14d3270f 1439 }
14d3270f 1440
2422c46b 1441 toFormattedDetailsJSON (): VideoDetails {
098eb377 1442 return videoModelToFormattedDetailsJSON(this)
244e76a5
RK
1443 }
1444
1445 getFormattedVideoFilesJSON (): VideoFile[] {
098eb377 1446 return videoFilesModelToFormattedJSON(this, this.VideoFiles)
3fd3ab2d 1447 }
e4f97bab 1448
3fd3ab2d 1449 toActivityPubObject (): VideoTorrentObject {
098eb377 1450 return videoModelToActivityPubObject(this)
3fd3ab2d
C
1451 }
1452
1453 getTruncatedDescription () {
1454 if (!this.description) return null
93e1258c 1455
bffbebbe 1456 const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
c73e83da 1457 return peertubeTruncate(this.description, maxLength)
93e1258c
C
1458 }
1459
056aa7f2 1460 getOriginalFileResolution () {
3fd3ab2d 1461 const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
0d0e8dd0 1462
056aa7f2 1463 return getVideoFileResolution(originalFilePath)
3fd3ab2d 1464 }
0d0e8dd0 1465
96f29c0f 1466 getDescriptionAPIPath () {
3fd3ab2d 1467 return `/api/${API_VERSION}/videos/${this.uuid}/description`
feb4bdfd
C
1468 }
1469
3fd3ab2d
C
1470 removeThumbnail () {
1471 const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
62689b94 1472 return remove(thumbnailPath)
ed31c059 1473 .catch(err => logger.warn('Cannot delete thumbnail %s.', thumbnailPath, { err }))
feb4bdfd
C
1474 }
1475
3fd3ab2d 1476 removePreview () {
ed31c059 1477 const previewPath = join(CONFIG.STORAGE.PREVIEWS_DIR + this.getPreviewName())
62689b94 1478 return remove(previewPath)
ed31c059 1479 .catch(err => logger.warn('Cannot delete preview %s.', previewPath, { err }))
7920c273
C
1480 }
1481
3fd3ab2d
C
1482 removeFile (videoFile: VideoFileModel) {
1483 const filePath = join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
62689b94 1484 return remove(filePath)
ed31c059 1485 .catch(err => logger.warn('Cannot delete file %s.', filePath, { err }))
feb4bdfd
C
1486 }
1487
3fd3ab2d
C
1488 removeTorrent (videoFile: VideoFileModel) {
1489 const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
62689b94 1490 return remove(torrentPath)
ed31c059 1491 .catch(err => logger.warn('Cannot delete torrent %s.', torrentPath, { err }))
aaf61f38
C
1492 }
1493
1297eb5d
C
1494 isOutdated () {
1495 if (this.isOwned()) return false
1496
1497 const now = Date.now()
1498 const createdAtTime = this.createdAt.getTime()
1499 const updatedAtTime = this.updatedAt.getTime()
1500
1501 return (now - createdAtTime) > ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL &&
1502 (now - updatedAtTime) > ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL
1503 }
1504
c48e82b5 1505 getBaseUrls () {
3fd3ab2d
C
1506 let baseUrlHttp
1507 let baseUrlWs
7920c273 1508
3fd3ab2d
C
1509 if (this.isOwned()) {
1510 baseUrlHttp = CONFIG.WEBSERVER.URL
1511 baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
1512 } else {
50d6de9c
C
1513 baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + this.VideoChannel.Account.Actor.Server.host
1514 baseUrlWs = REMOTE_SCHEME.WS + '://' + this.VideoChannel.Account.Actor.Server.host
6fcd19ba 1515 }
aaf61f38 1516
3fd3ab2d 1517 return { baseUrlHttp, baseUrlWs }
15d4ee04 1518 }
a96aed15 1519
c48e82b5
C
1520 generateMagnetUri (videoFile: VideoFileModel, baseUrlHttp: string, baseUrlWs: string) {
1521 const xs = this.getTorrentUrl(videoFile, baseUrlHttp)
1522 const announce = [ baseUrlWs + '/tracker/socket', baseUrlHttp + '/tracker/announce' ]
1523 let urlList = [ this.getVideoFileUrl(videoFile, baseUrlHttp) ]
1524
1525 const redundancies = videoFile.RedundancyVideos
1526 if (isArray(redundancies)) urlList = urlList.concat(redundancies.map(r => r.fileUrl))
1527
1528 const magnetHash = {
1529 xs,
1530 announce,
1531 urlList,
1532 infoHash: videoFile.infoHash,
1533 name: this.name
1534 }
1535
1536 return magnetUtil.encode(magnetHash)
1537 }
1538
1539 getThumbnailUrl (baseUrlHttp: string) {
3fd3ab2d 1540 return baseUrlHttp + STATIC_PATHS.THUMBNAILS + this.getThumbnailName()
a96aed15
C
1541 }
1542
c48e82b5 1543 getTorrentUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
3fd3ab2d
C
1544 return baseUrlHttp + STATIC_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1545 }
e4f97bab 1546
c48e82b5 1547 getTorrentDownloadUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
02756fbd
C
1548 return baseUrlHttp + STATIC_DOWNLOAD_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1549 }
1550
c48e82b5 1551 getVideoFileUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
3fd3ab2d
C
1552 return baseUrlHttp + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
1553 }
a96aed15 1554
c48e82b5 1555 getVideoFileDownloadUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
02756fbd
C
1556 return baseUrlHttp + STATIC_DOWNLOAD_PATHS.VIDEOS + this.getVideoFilename(videoFile)
1557 }
a96aed15 1558}