]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video.ts
Fix actor outbox
[github/Chocobozzz/PeerTube.git] / server / models / video / video.ts
CommitLineData
39445ead 1import * as Bluebird from 'bluebird'
c73e83da 2import { map, maxBy } from 'lodash'
571389d4 3import * as magnetUtil from 'magnet-uri'
4d4e5cd4 4import * as parseTorrent from 'parse-torrent'
65fcc311 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,
18 IFindOptions,
19 Is,
20 IsInt,
21 IsUUID,
22 Min,
23 Model,
24 Scopes,
25 Table,
26 UpdatedAt
3fd3ab2d 27} from 'sequelize-typescript'
571389d4 28import { VideoPrivacy, VideoResolution } from '../../../shared'
3fd3ab2d 29import { VideoTorrentObject } from '../../../shared/models/activitypub/objects'
a8462c8e 30import { Video, VideoDetails, VideoFile } from '../../../shared/models/videos'
066e94c5 31import { VideoFilter } from '../../../shared/models/videos/video-query.type'
8fffe21a 32import { activityPubCollectionPagination } from '../../helpers/activitypub'
c73e83da 33import {
06be7ed0
C
34 createTorrentPromise,
35 peertubeTruncate,
36 renamePromise,
37 statPromise,
38 unlinkPromise,
c73e83da
C
39 writeFilePromise
40} from '../../helpers/core-utils'
da854ddd 41import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
47564bbe 42import { isBooleanValid } from '../../helpers/custom-validators/misc'
3fd3ab2d 43import {
4ba3b8ea
C
44 isVideoCategoryValid,
45 isVideoDescriptionValid,
46 isVideoDurationValid,
47 isVideoLanguageValid,
48 isVideoLicenceValid,
49 isVideoNameValid,
b64c950a
C
50 isVideoPrivacyValid,
51 isVideoSupportValid
3fd3ab2d 52} from '../../helpers/custom-validators/videos'
056aa7f2 53import { generateImageFromVideoFile, getVideoFileResolution, transcode } from '../../helpers/ffmpeg-utils'
da854ddd 54import { logger } from '../../helpers/logger'
f05a1c30 55import { getServerActor } from '../../helpers/utils'
65fcc311 56import {
4ba3b8ea
C
57 API_VERSION,
58 CONFIG,
59 CONSTRAINTS_FIELDS,
60 PREVIEWS_SIZE,
61 REMOTE_SCHEME,
62 STATIC_PATHS,
63 THUMBNAILS_SIZE,
64 VIDEO_CATEGORIES,
65 VIDEO_LANGUAGES,
66 VIDEO_LICENCES,
67 VIDEO_PRIVACIES
3fd3ab2d 68} from '../../initializers'
46531a0a
C
69import {
70 getVideoCommentsActivityPubUrl,
71 getVideoDislikesActivityPubUrl,
72 getVideoLikesActivityPubUrl,
73 getVideoSharesActivityPubUrl
74} from '../../lib/activitypub'
50d6de9c 75import { sendDeleteVideo } from '../../lib/activitypub/send'
3fd3ab2d
C
76import { AccountModel } from '../account/account'
77import { AccountVideoRateModel } from '../account/account-video-rate'
50d6de9c 78import { ActorModel } from '../activitypub/actor'
b6a4fd6b 79import { AvatarModel } from '../avatar/avatar'
3fd3ab2d
C
80import { ServerModel } from '../server/server'
81import { getSort, throwIfNotValid } from '../utils'
82import { TagModel } from './tag'
83import { VideoAbuseModel } from './video-abuse'
84import { VideoChannelModel } from './video-channel'
da854ddd 85import { VideoCommentModel } from './video-comment'
3fd3ab2d
C
86import { VideoFileModel } from './video-file'
87import { VideoShareModel } from './video-share'
88import { VideoTagModel } from './video-tag'
89
d48ff09d 90enum ScopeNames {
50d6de9c 91 AVAILABLE_FOR_LIST = 'AVAILABLE_FOR_LIST',
4cb6d457 92 WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
d48ff09d
C
93 WITH_TAGS = 'WITH_TAGS',
94 WITH_FILES = 'WITH_FILES',
95 WITH_SHARES = 'WITH_SHARES',
da854ddd
C
96 WITH_RATES = 'WITH_RATES',
97 WITH_COMMENTS = 'WITH_COMMENTS'
d48ff09d
C
98}
99
100@Scopes({
48dce1c9
C
101 [ScopeNames.AVAILABLE_FOR_LIST]: (options: {
102 actorId: number,
103 hideNSFW: boolean,
104 filter?: VideoFilter,
105 withFiles?: boolean,
106 accountId?: number,
107 videoChannelId?: number
108 }) => {
0626e7af 109 const accountInclude = {
03e12d7c 110 attributes: [ 'id', 'name' ],
0626e7af
C
111 model: AccountModel.unscoped(),
112 required: true,
113 where: {},
114 include: [
115 {
03e12d7c 116 attributes: [ 'id', 'uuid', 'preferredUsername', 'url', 'serverId', 'avatarId' ],
0626e7af
C
117 model: ActorModel.unscoped(),
118 required: true,
48dce1c9 119 where: VideoModel.buildActorWhereWithFilter(options.filter),
0626e7af
C
120 include: [
121 {
122 attributes: [ 'host' ],
123 model: ServerModel.unscoped(),
124 required: false
125 },
126 {
127 model: AvatarModel.unscoped(),
128 required: false
129 }
130 ]
131 }
132 ]
133 }
134
48dce1c9 135 const videoChannelInclude = {
0f320037 136 attributes: [ 'name', 'description', 'id' ],
48dce1c9
C
137 model: VideoChannelModel.unscoped(),
138 required: true,
139 where: {},
140 include: [
0f320037
C
141 {
142 attributes: [ 'uuid', 'preferredUsername', 'url', 'serverId', 'avatarId' ],
143 model: ActorModel.unscoped(),
144 required: true,
145 include: [
146 {
147 attributes: [ 'host' ],
148 model: ServerModel.unscoped(),
149 required: false
150 },
151 {
152 model: AvatarModel.unscoped(),
153 required: false
154 }
155 ]
156 },
48dce1c9
C
157 accountInclude
158 ]
159 }
160
161 // Force actorId to be a number to avoid SQL injections
162 const actorIdNumber = parseInt(options.actorId.toString(), 10)
244e76a5
RK
163 const query: IFindOptions<VideoModel> = {
164 where: {
165 id: {
166 [Sequelize.Op.notIn]: Sequelize.literal(
167 '(SELECT "videoBlacklist"."videoId" FROM "videoBlacklist")'
168 ),
169 [ Sequelize.Op.in ]: Sequelize.literal(
170 '(' +
2d9ab590
C
171 'SELECT "videoShare"."videoId" AS "id" FROM "videoShare" ' +
172 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
48dce1c9 173 'WHERE "actorFollow"."actorId" = ' + actorIdNumber +
2d9ab590
C
174 ' UNION ' +
175 'SELECT "video"."id" AS "id" FROM "video" ' +
176 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
177 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
178 'INNER JOIN "actor" ON "account"."actorId" = "actor"."id" ' +
179 'LEFT JOIN "actorFollow" ON "actorFollow"."targetActorId" = "actor"."id" ' +
48dce1c9 180 'WHERE "actor"."serverId" IS NULL OR "actorFollow"."actorId" = ' + actorIdNumber +
244e76a5
RK
181 ')'
182 )
183 },
184 privacy: VideoPrivacy.PUBLIC
50d6de9c 185 },
48dce1c9 186 include: [ videoChannelInclude ]
244e76a5
RK
187 }
188
48dce1c9 189 if (options.withFiles === true) {
244e76a5
RK
190 query.include.push({
191 model: VideoFileModel.unscoped(),
192 required: true
193 })
194 }
195
0883b324 196 // Hide nsfw videos?
48dce1c9 197 if (options.hideNSFW === true) {
0883b324
C
198 query.where['nsfw'] = false
199 }
200
48dce1c9 201 if (options.accountId) {
0626e7af 202 accountInclude.where = {
48dce1c9
C
203 id: options.accountId
204 }
205 }
206
207 if (options.videoChannelId) {
208 videoChannelInclude.where = {
209 id: options.videoChannelId
0626e7af
C
210 }
211 }
212
244e76a5
RK
213 return query
214 },
4cb6d457 215 [ScopeNames.WITH_ACCOUNT_DETAILS]: {
d48ff09d
C
216 include: [
217 {
6120941f 218 model: () => VideoChannelModel.unscoped(),
d48ff09d
C
219 required: true,
220 include: [
6120941f
C
221 {
222 attributes: {
223 exclude: [ 'privateKey', 'publicKey' ]
224 },
3e500247
C
225 model: () => ActorModel.unscoped(),
226 required: true,
227 include: [
228 {
229 attributes: [ 'host' ],
230 model: () => ServerModel.unscoped(),
231 required: false
232 }
233 ]
6120941f 234 },
d48ff09d 235 {
3e500247 236 model: () => AccountModel.unscoped(),
d48ff09d
C
237 required: true,
238 include: [
239 {
3e500247 240 model: () => ActorModel.unscoped(),
6120941f
C
241 attributes: {
242 exclude: [ 'privateKey', 'publicKey' ]
243 },
50d6de9c
C
244 required: true,
245 include: [
246 {
3e500247
C
247 attributes: [ 'host' ],
248 model: () => ServerModel.unscoped(),
50d6de9c 249 required: false
b6a4fd6b
C
250 },
251 {
252 model: () => AvatarModel.unscoped(),
253 required: false
50d6de9c
C
254 }
255 ]
d48ff09d
C
256 }
257 ]
258 }
259 ]
260 }
261 ]
262 },
263 [ScopeNames.WITH_TAGS]: {
264 include: [ () => TagModel ]
265 },
266 [ScopeNames.WITH_FILES]: {
267 include: [
268 {
e53f952e 269 model: () => VideoFileModel.unscoped(),
d48ff09d
C
270 required: true
271 }
272 ]
273 },
274 [ScopeNames.WITH_SHARES]: {
275 include: [
276 {
e1a540b5 277 ['separate' as any]: true,
e53f952e 278 model: () => VideoShareModel.unscoped()
d48ff09d
C
279 }
280 ]
281 },
282 [ScopeNames.WITH_RATES]: {
283 include: [
284 {
e1a540b5 285 ['separate' as any]: true,
d48ff09d 286 model: () => AccountVideoRateModel,
e53f952e
C
287 include: [
288 {
289 model: () => AccountModel.unscoped(),
290 required: true,
291 include: [
292 {
293 attributes: [ 'url' ],
294 model: () => ActorModel.unscoped()
295 }
296 ]
297 }
298 ]
d48ff09d
C
299 }
300 ]
da854ddd
C
301 },
302 [ScopeNames.WITH_COMMENTS]: {
303 include: [
304 {
e1a540b5 305 ['separate' as any]: true,
e53f952e 306 model: () => VideoCommentModel.unscoped()
da854ddd
C
307 }
308 ]
d48ff09d
C
309 }
310})
3fd3ab2d
C
311@Table({
312 tableName: 'video',
313 indexes: [
feb4bdfd 314 {
3fd3ab2d 315 fields: [ 'name' ]
feb4bdfd
C
316 },
317 {
3fd3ab2d
C
318 fields: [ 'createdAt' ]
319 },
320 {
321 fields: [ 'duration' ]
322 },
323 {
324 fields: [ 'views' ]
325 },
326 {
327 fields: [ 'likes' ]
328 },
329 {
330 fields: [ 'uuid' ]
331 },
332 {
333 fields: [ 'channelId' ]
4cb6d457
C
334 },
335 {
336 fields: [ 'id', 'privacy' ]
2ccaeeb3
C
337 },
338 {
339 fields: [ 'url'],
340 unique: true
feb4bdfd 341 }
e02643f3 342 ]
3fd3ab2d
C
343})
344export class VideoModel extends Model<VideoModel> {
345
346 @AllowNull(false)
347 @Default(DataType.UUIDV4)
348 @IsUUID(4)
349 @Column(DataType.UUID)
350 uuid: string
351
352 @AllowNull(false)
353 @Is('VideoName', value => throwIfNotValid(value, isVideoNameValid, 'name'))
354 @Column
355 name: string
356
357 @AllowNull(true)
358 @Default(null)
359 @Is('VideoCategory', value => throwIfNotValid(value, isVideoCategoryValid, 'category'))
360 @Column
361 category: number
362
363 @AllowNull(true)
364 @Default(null)
365 @Is('VideoLicence', value => throwIfNotValid(value, isVideoLicenceValid, 'licence'))
366 @Column
367 licence: number
368
369 @AllowNull(true)
370 @Default(null)
371 @Is('VideoLanguage', value => throwIfNotValid(value, isVideoLanguageValid, 'language'))
9d3ef9fe
C
372 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
373 language: string
3fd3ab2d
C
374
375 @AllowNull(false)
376 @Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
377 @Column
378 privacy: number
379
380 @AllowNull(false)
47564bbe 381 @Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
3fd3ab2d
C
382 @Column
383 nsfw: boolean
384
385 @AllowNull(true)
386 @Default(null)
387 @Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description'))
388 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
389 description: string
390
2422c46b
C
391 @AllowNull(true)
392 @Default(null)
393 @Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support'))
394 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
395 support: string
396
3fd3ab2d
C
397 @AllowNull(false)
398 @Is('VideoDuration', value => throwIfNotValid(value, isVideoDurationValid, 'duration'))
399 @Column
400 duration: number
401
402 @AllowNull(false)
403 @Default(0)
404 @IsInt
405 @Min(0)
406 @Column
407 views: number
408
409 @AllowNull(false)
410 @Default(0)
411 @IsInt
412 @Min(0)
413 @Column
414 likes: number
415
416 @AllowNull(false)
417 @Default(0)
418 @IsInt
419 @Min(0)
420 @Column
421 dislikes: number
422
423 @AllowNull(false)
424 @Column
425 remote: boolean
426
427 @AllowNull(false)
428 @Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
429 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
430 url: string
431
47564bbe
C
432 @AllowNull(false)
433 @Column
434 commentsEnabled: boolean
435
3fd3ab2d
C
436 @CreatedAt
437 createdAt: Date
438
439 @UpdatedAt
440 updatedAt: Date
441
2922e048
JLB
442 @AllowNull(false)
443 @Default(Sequelize.NOW)
444 @Column
445 publishedAt: Date
446
3fd3ab2d
C
447 @ForeignKey(() => VideoChannelModel)
448 @Column
449 channelId: number
450
451 @BelongsTo(() => VideoChannelModel, {
feb4bdfd 452 foreignKey: {
50d6de9c 453 allowNull: true
feb4bdfd 454 },
6b738c7a 455 hooks: true
feb4bdfd 456 })
3fd3ab2d 457 VideoChannel: VideoChannelModel
7920c273 458
3fd3ab2d 459 @BelongsToMany(() => TagModel, {
7920c273 460 foreignKey: 'videoId',
3fd3ab2d
C
461 through: () => VideoTagModel,
462 onDelete: 'CASCADE'
7920c273 463 })
3fd3ab2d 464 Tags: TagModel[]
55fa55a9 465
3fd3ab2d 466 @HasMany(() => VideoAbuseModel, {
55fa55a9
C
467 foreignKey: {
468 name: 'videoId',
469 allowNull: false
470 },
471 onDelete: 'cascade'
472 })
3fd3ab2d 473 VideoAbuses: VideoAbuseModel[]
93e1258c 474
3fd3ab2d 475 @HasMany(() => VideoFileModel, {
93e1258c
C
476 foreignKey: {
477 name: 'videoId',
478 allowNull: false
479 },
480 onDelete: 'cascade'
481 })
3fd3ab2d 482 VideoFiles: VideoFileModel[]
e71bcc0f 483
3fd3ab2d 484 @HasMany(() => VideoShareModel, {
e71bcc0f
C
485 foreignKey: {
486 name: 'videoId',
487 allowNull: false
488 },
489 onDelete: 'cascade'
490 })
3fd3ab2d 491 VideoShares: VideoShareModel[]
16b90975 492
3fd3ab2d 493 @HasMany(() => AccountVideoRateModel, {
16b90975
C
494 foreignKey: {
495 name: 'videoId',
496 allowNull: false
497 },
498 onDelete: 'cascade'
499 })
3fd3ab2d 500 AccountVideoRates: AccountVideoRateModel[]
f285faa0 501
da854ddd
C
502 @HasMany(() => VideoCommentModel, {
503 foreignKey: {
504 name: 'videoId',
505 allowNull: false
506 },
f05a1c30
C
507 onDelete: 'cascade',
508 hooks: true
da854ddd
C
509 })
510 VideoComments: VideoCommentModel[]
511
f05a1c30
C
512 @BeforeDestroy
513 static async sendDelete (instance: VideoModel, options) {
514 if (instance.isOwned()) {
515 if (!instance.VideoChannel) {
516 instance.VideoChannel = await instance.$get('VideoChannel', {
517 include: [
518 {
519 model: AccountModel,
520 include: [ ActorModel ]
521 }
522 ],
523 transaction: options.transaction
524 }) as VideoChannelModel
525 }
526
527 logger.debug('Sending delete of video %s.', instance.url)
528
529 return sendDeleteVideo(instance, options.transaction)
530 }
531
532 return undefined
533 }
534
6b738c7a 535 @BeforeDestroy
f05a1c30
C
536 static async removeFilesAndSendDelete (instance: VideoModel) {
537 const tasks: Promise<any>[] = []
f285faa0 538
6b738c7a
C
539 logger.debug('Removing files of video %s.', instance.url)
540
f05a1c30 541 tasks.push(instance.removeThumbnail())
93e1258c 542
3fd3ab2d 543 if (instance.isOwned()) {
f05a1c30
C
544 if (!Array.isArray(instance.VideoFiles)) {
545 instance.VideoFiles = await instance.$get('VideoFiles') as VideoFileModel[]
546 }
547
548 tasks.push(instance.removePreview())
40298b02 549
3fd3ab2d
C
550 // Remove physical files and torrents
551 instance.VideoFiles.forEach(file => {
552 tasks.push(instance.removeFile(file))
553 tasks.push(instance.removeTorrent(file))
554 })
555 }
40298b02 556
6b738c7a
C
557 // Do not wait video deletion because we could be in a transaction
558 Promise.all(tasks)
3fd3ab2d 559 .catch(err => {
d5b7d911 560 logger.error('Some errors when removing files of video %s in after destroy hook.', instance.uuid, { err })
3fd3ab2d 561 })
6b738c7a
C
562
563 return undefined
3fd3ab2d 564 }
f285faa0 565
3fd3ab2d 566 static list () {
d48ff09d 567 return VideoModel.scope(ScopeNames.WITH_FILES).findAll()
3fd3ab2d 568 }
f285faa0 569
50d6de9c 570 static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
3fd3ab2d
C
571 function getRawQuery (select: string) {
572 const queryVideo = 'SELECT ' + select + ' FROM "video" AS "Video" ' +
573 'INNER JOIN "videoChannel" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
50d6de9c
C
574 'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
575 'WHERE "Account"."actorId" = ' + actorId
3fd3ab2d
C
576 const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
577 'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
50d6de9c 578 'WHERE "VideoShare"."actorId" = ' + actorId
558d7c23 579
3fd3ab2d
C
580 return `(${queryVideo}) UNION (${queryVideoShare})`
581 }
aaf61f38 582
3fd3ab2d
C
583 const rawQuery = getRawQuery('"Video"."id"')
584 const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
585
586 const query = {
587 distinct: true,
588 offset: start,
589 limit: count,
3bb6c526 590 order: getSort('createdAt', [ 'Tags', 'name', 'ASC' ]),
3fd3ab2d
C
591 where: {
592 id: {
593 [Sequelize.Op.in]: Sequelize.literal('(' + rawQuery + ')')
3c75ce12
C
594 },
595 [Sequelize.Op.or]: [
596 { privacy: VideoPrivacy.PUBLIC },
597 { privacy: VideoPrivacy.UNLISTED }
598 ]
3fd3ab2d
C
599 },
600 include: [
601 {
1d230c44 602 attributes: [ 'id', 'url' ],
2c897999 603 model: VideoShareModel.unscoped(),
3fd3ab2d 604 required: false,
e3d5ea4f
C
605 // We only want videos shared by this actor
606 where: {
607 [Sequelize.Op.and]: [
608 {
609 id: {
610 [Sequelize.Op.not]: null
611 }
612 },
613 {
614 actorId
615 }
616 ]
617 },
50d6de9c
C
618 include: [
619 {
2c897999
C
620 attributes: [ 'id', 'url' ],
621 model: ActorModel.unscoped()
50d6de9c
C
622 }
623 ]
3fd3ab2d
C
624 },
625 {
2c897999 626 model: VideoChannelModel.unscoped(),
3fd3ab2d
C
627 required: true,
628 include: [
629 {
2c897999
C
630 attributes: [ 'name' ],
631 model: AccountModel.unscoped(),
632 required: true,
633 include: [
634 {
e3d5ea4f 635 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999
C
636 model: ActorModel.unscoped(),
637 required: true
638 }
639 ]
640 },
641 {
e3d5ea4f 642 attributes: [ 'id', 'url', 'followersUrl' ],
2c897999 643 model: ActorModel.unscoped(),
3fd3ab2d
C
644 required: true
645 }
646 ]
647 },
3fd3ab2d 648 VideoFileModel,
2c897999 649 TagModel
3fd3ab2d
C
650 ]
651 }
164174a6 652
3fd3ab2d
C
653 return Bluebird.all([
654 // FIXME: typing issue
655 VideoModel.findAll(query as any),
656 VideoModel.sequelize.query(rawCountQuery, { type: Sequelize.QueryTypes.SELECT })
657 ]).then(([ rows, totals ]) => {
658 // totals: totalVideos + totalVideoShares
659 let totalVideos = 0
660 let totalVideoShares = 0
661 if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
662 if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
663
664 const total = totalVideos + totalVideoShares
665 return {
666 data: rows,
667 total: total
668 }
669 })
670 }
93e1258c 671
0883b324 672 static listAccountVideosForApi (accountId: number, start: number, count: number, sort: string, hideNSFW: boolean, withFiles = false) {
244e76a5 673 const query: IFindOptions<VideoModel> = {
3fd3ab2d
C
674 offset: start,
675 limit: count,
3bb6c526 676 order: getSort(sort),
3fd3ab2d
C
677 include: [
678 {
679 model: VideoChannelModel,
680 required: true,
681 include: [
682 {
683 model: AccountModel,
684 where: {
7b87d2d5 685 id: accountId
3fd3ab2d
C
686 },
687 required: true
688 }
689 ]
d48ff09d 690 }
3fd3ab2d
C
691 ]
692 }
d8755eed 693
244e76a5
RK
694 if (withFiles === true) {
695 query.include.push({
696 model: VideoFileModel.unscoped(),
697 required: true
698 })
699 }
700
0883b324
C
701 if (hideNSFW === true) {
702 query.where = {
703 nsfw: false
704 }
705 }
706
3fd3ab2d
C
707 return VideoModel.findAndCountAll(query).then(({ rows, count }) => {
708 return {
709 data: rows,
710 total: count
711 }
712 })
713 }
93e1258c 714
48dce1c9 715 static async listForApi (options: {
0626e7af
C
716 start: number,
717 count: number,
718 sort: string,
719 hideNSFW: boolean,
48dce1c9 720 withFiles: boolean,
0626e7af 721 filter?: VideoFilter,
48dce1c9
C
722 accountId?: number,
723 videoChannelId?: number
724 }) {
3fd3ab2d 725 const query = {
48dce1c9
C
726 offset: options.start,
727 limit: options.count,
728 order: getSort(options.sort)
3fd3ab2d 729 }
93e1258c 730
f05a1c30 731 const serverActor = await getServerActor()
48dce1c9
C
732 const scopes = {
733 method: [
734 ScopeNames.AVAILABLE_FOR_LIST, {
735 actorId: serverActor.id,
736 hideNSFW: options.hideNSFW,
737 filter: options.filter,
738 withFiles: options.withFiles,
739 accountId: options.accountId,
740 videoChannelId: options.videoChannelId
741 }
742 ]
743 }
744
745 return VideoModel.scope(scopes)
d48ff09d
C
746 .findAndCountAll(query)
747 .then(({ rows, count }) => {
748 return {
749 data: rows,
750 total: count
751 }
752 })
93e1258c
C
753 }
754
0883b324 755 static async searchAndPopulateAccountAndServer (value: string, start: number, count: number, sort: string, hideNSFW: boolean) {
f05a1c30
C
756 const query: IFindOptions<VideoModel> = {
757 offset: start,
758 limit: count,
3bb6c526 759 order: getSort(sort),
f05a1c30 760 where: {
3e0c9ff5
C
761 [Sequelize.Op.or]: [
762 {
763 name: {
764 [ Sequelize.Op.iLike ]: '%' + value + '%'
765 }
766 },
767 {
0f320037 768 preferredUsernameChannel: Sequelize.where(Sequelize.col('VideoChannel->Actor.preferredUsername'), {
3e0c9ff5
C
769 [ Sequelize.Op.iLike ]: '%' + value + '%'
770 })
771 },
772 {
0f320037
C
773 preferredUsernameAccount: Sequelize.where(Sequelize.col('VideoChannel->Account->Actor.preferredUsername'), {
774 [ Sequelize.Op.iLike ]: '%' + value + '%'
775 })
776 },
777 {
778 host: Sequelize.where(Sequelize.col('VideoChannel->Account->Actor->Server.host'), {
3e0c9ff5
C
779 [ Sequelize.Op.iLike ]: '%' + value + '%'
780 })
781 }
782 ]
f05a1c30
C
783 }
784 }
785
786 const serverActor = await getServerActor()
48dce1c9
C
787 const scopes = {
788 method: [
789 ScopeNames.AVAILABLE_FOR_LIST, {
790 actorId: serverActor.id,
791 hideNSFW
792 }
793 ]
794 }
f05a1c30 795
48dce1c9 796 return VideoModel.scope(scopes)
244e76a5
RK
797 .findAndCountAll(query)
798 .then(({ rows, count }) => {
f05a1c30
C
799 return {
800 data: rows,
801 total: count
802 }
803 })
804 }
805
3fd3ab2d
C
806 static load (id: number) {
807 return VideoModel.findById(id)
808 }
fdbda9e3 809
3fd3ab2d
C
810 static loadByUrlAndPopulateAccount (url: string, t?: Sequelize.Transaction) {
811 const query: IFindOptions<VideoModel> = {
812 where: {
813 url
d48ff09d 814 }
3fd3ab2d 815 }
d8755eed 816
3fd3ab2d 817 if (t !== undefined) query.transaction = t
d8755eed 818
4cb6d457 819 return VideoModel.scope([ ScopeNames.WITH_ACCOUNT_DETAILS, ScopeNames.WITH_FILES ]).findOne(query)
3fd3ab2d 820 }
d8755eed 821
2ccaeeb3 822 static loadByUUIDOrURLAndPopulateAccount (uuid: string, url: string, t?: Sequelize.Transaction) {
3fd3ab2d
C
823 const query: IFindOptions<VideoModel> = {
824 where: {
825 [Sequelize.Op.or]: [
826 { uuid },
827 { url }
828 ]
d48ff09d 829 }
3fd3ab2d 830 }
feb4bdfd 831
3fd3ab2d 832 if (t !== undefined) query.transaction = t
feb4bdfd 833
2ccaeeb3 834 return VideoModel.scope([ ScopeNames.WITH_ACCOUNT_DETAILS, ScopeNames.WITH_FILES ]).findOne(query)
72c7248b
C
835 }
836
3fd3ab2d
C
837 static loadAndPopulateAccountAndServerAndTags (id: number) {
838 const options = {
d48ff09d 839 order: [ [ 'Tags', 'name', 'ASC' ] ]
3fd3ab2d 840 }
72c7248b 841
d48ff09d 842 return VideoModel
4cb6d457 843 .scope([ ScopeNames.WITH_TAGS, ScopeNames.WITH_FILES, ScopeNames.WITH_ACCOUNT_DETAILS ])
d48ff09d 844 .findById(id, options)
3fd3ab2d 845 }
72c7248b 846
8fa5653a
C
847 static loadByUUID (uuid: string) {
848 const options = {
849 where: {
850 uuid
851 }
852 }
853
854 return VideoModel
855 .scope([ ScopeNames.WITH_FILES ])
856 .findOne(options)
857 }
858
3fd3ab2d
C
859 static loadByUUIDAndPopulateAccountAndServerAndTags (uuid: string) {
860 const options = {
861 order: [ [ 'Tags', 'name', 'ASC' ] ],
862 where: {
863 uuid
d48ff09d 864 }
3fd3ab2d 865 }
fd45e8f4 866
d48ff09d 867 return VideoModel
4cb6d457 868 .scope([ ScopeNames.WITH_TAGS, ScopeNames.WITH_FILES, ScopeNames.WITH_ACCOUNT_DETAILS ])
da854ddd
C
869 .findOne(options)
870 }
871
09cababd
C
872 static async getStats () {
873 const totalLocalVideos = await VideoModel.count({
874 where: {
875 remote: false
876 }
877 })
878 const totalVideos = await VideoModel.count()
879
880 let totalLocalVideoViews = await VideoModel.sum('views', {
881 where: {
882 remote: false
883 }
884 })
885 // Sequelize could return null...
886 if (!totalLocalVideoViews) totalLocalVideoViews = 0
887
888 return {
889 totalLocalVideos,
890 totalLocalVideoViews,
891 totalVideos
892 }
893 }
894
066e94c5
C
895 private static buildActorWhereWithFilter (filter?: VideoFilter) {
896 if (filter && filter === 'local') {
897 return {
898 serverId: null
899 }
900 }
901
902 return {}
903 }
904
ae5a3dd6
C
905 private static getCategoryLabel (id: number) {
906 let categoryLabel = VIDEO_CATEGORIES[id]
907 if (!categoryLabel) categoryLabel = 'Misc'
908
909 return categoryLabel
910 }
911
912 private static getLicenceLabel (id: number) {
913 let licenceLabel = VIDEO_LICENCES[id]
914 if (!licenceLabel) licenceLabel = 'Unknown'
915
916 return licenceLabel
917 }
918
9d3ef9fe 919 private static getLanguageLabel (id: string) {
ae5a3dd6
C
920 let languageLabel = VIDEO_LANGUAGES[id]
921 if (!languageLabel) languageLabel = 'Unknown'
922
923 return languageLabel
924 }
925
2243730c
C
926 private static getPrivacyLabel (id: number) {
927 let privacyLabel = VIDEO_PRIVACIES[id]
928 if (!privacyLabel) privacyLabel = 'Unknown'
929
930 return privacyLabel
931 }
932
3fd3ab2d
C
933 getOriginalFile () {
934 if (Array.isArray(this.VideoFiles) === false) return undefined
aaf61f38 935
3fd3ab2d
C
936 // The original file is the file that have the higher resolution
937 return maxBy(this.VideoFiles, file => file.resolution)
e4f97bab 938 }
aaf61f38 939
3fd3ab2d
C
940 getVideoFilename (videoFile: VideoFileModel) {
941 return this.uuid + '-' + videoFile.resolution + videoFile.extname
942 }
165cdc75 943
3fd3ab2d
C
944 getThumbnailName () {
945 // We always have a copy of the thumbnail
946 const extension = '.jpg'
947 return this.uuid + extension
7b1f49de
C
948 }
949
3fd3ab2d
C
950 getPreviewName () {
951 const extension = '.jpg'
952 return this.uuid + extension
953 }
7b1f49de 954
3fd3ab2d
C
955 getTorrentFileName (videoFile: VideoFileModel) {
956 const extension = '.torrent'
957 return this.uuid + '-' + videoFile.resolution + extension
958 }
8e7f08b5 959
3fd3ab2d
C
960 isOwned () {
961 return this.remote === false
9567011b
C
962 }
963
3fd3ab2d 964 createPreview (videoFile: VideoFileModel) {
3fd3ab2d
C
965 return generateImageFromVideoFile(
966 this.getVideoFilePath(videoFile),
967 CONFIG.STORAGE.PREVIEWS_DIR,
968 this.getPreviewName(),
26670720 969 PREVIEWS_SIZE
3fd3ab2d
C
970 )
971 }
9567011b 972
3fd3ab2d 973 createThumbnail (videoFile: VideoFileModel) {
3fd3ab2d
C
974 return generateImageFromVideoFile(
975 this.getVideoFilePath(videoFile),
976 CONFIG.STORAGE.THUMBNAILS_DIR,
977 this.getThumbnailName(),
26670720 978 THUMBNAILS_SIZE
3fd3ab2d 979 )
14d3270f
C
980 }
981
3fd3ab2d
C
982 getVideoFilePath (videoFile: VideoFileModel) {
983 return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
984 }
14d3270f 985
81e504b3 986 async createTorrentAndSetInfoHash (videoFile: VideoFileModel) {
3fd3ab2d 987 const options = {
6cced8f9
C
988 // Keep the extname, it's used by the client to stream the file inside a web browser
989 name: `${this.name} ${videoFile.resolution}p${videoFile.extname}`,
81e504b3 990 createdBy: 'PeerTube',
3fd3ab2d 991 announceList: [
0edf0581
C
992 [ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ],
993 [ CONFIG.WEBSERVER.URL + '/tracker/announce' ]
3fd3ab2d
C
994 ],
995 urlList: [
996 CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
997 ]
998 }
14d3270f 999
3fd3ab2d 1000 const torrent = await createTorrentPromise(this.getVideoFilePath(videoFile), options)
e4f97bab 1001
3fd3ab2d
C
1002 const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1003 logger.info('Creating torrent %s.', filePath)
e4f97bab 1004
3fd3ab2d 1005 await writeFilePromise(filePath, torrent)
e4f97bab 1006
3fd3ab2d
C
1007 const parsedTorrent = parseTorrent(torrent)
1008 videoFile.infoHash = parsedTorrent.infoHash
1009 }
e4f97bab 1010
3fd3ab2d
C
1011 getEmbedPath () {
1012 return '/videos/embed/' + this.uuid
1013 }
e4f97bab 1014
3fd3ab2d
C
1015 getThumbnailPath () {
1016 return join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName())
e4f97bab 1017 }
227d02fe 1018
3fd3ab2d
C
1019 getPreviewPath () {
1020 return join(STATIC_PATHS.PREVIEWS, this.getPreviewName())
1021 }
40298b02 1022
2422c46b 1023 toFormattedJSON (): Video {
b64c950a 1024 const formattedAccount = this.VideoChannel.Account.toFormattedJSON()
0f320037 1025 const formattedVideoChannel = this.VideoChannel.toFormattedJSON()
14d3270f 1026
3fd3ab2d
C
1027 return {
1028 id: this.id,
1029 uuid: this.uuid,
1030 name: this.name,
ae5a3dd6
C
1031 category: {
1032 id: this.category,
1033 label: VideoModel.getCategoryLabel(this.category)
1034 },
1035 licence: {
1036 id: this.licence,
1037 label: VideoModel.getLicenceLabel(this.licence)
1038 },
1039 language: {
1040 id: this.language,
1041 label: VideoModel.getLanguageLabel(this.language)
1042 },
2243730c
C
1043 privacy: {
1044 id: this.privacy,
1045 label: VideoModel.getPrivacyLabel(this.privacy)
1046 },
3fd3ab2d
C
1047 nsfw: this.nsfw,
1048 description: this.getTruncatedDescription(),
3fd3ab2d 1049 isLocal: this.isOwned(),
3fd3ab2d
C
1050 duration: this.duration,
1051 views: this.views,
1052 likes: this.likes,
1053 dislikes: this.dislikes,
3fd3ab2d
C
1054 thumbnailPath: this.getThumbnailPath(),
1055 previewPath: this.getPreviewPath(),
1056 embedPath: this.getEmbedPath(),
1057 createdAt: this.createdAt,
b64c950a 1058 updatedAt: this.updatedAt,
2922e048 1059 publishedAt: this.publishedAt,
b64c950a 1060 account: {
03e12d7c
C
1061 id: formattedAccount.id,
1062 uuid: formattedAccount.uuid,
b64c950a
C
1063 name: formattedAccount.name,
1064 displayName: formattedAccount.displayName,
1065 url: formattedAccount.url,
1066 host: formattedAccount.host,
1067 avatar: formattedAccount.avatar
0f320037
C
1068 },
1069 channel: {
1070 id: formattedVideoChannel.id,
1071 uuid: formattedVideoChannel.uuid,
1072 name: formattedVideoChannel.name,
1073 displayName: formattedVideoChannel.displayName,
1074 url: formattedVideoChannel.url,
1075 host: formattedVideoChannel.host,
1076 avatar: formattedVideoChannel.avatar
b64c950a 1077 }
2422c46b 1078 }
14d3270f 1079 }
14d3270f 1080
2422c46b 1081 toFormattedDetailsJSON (): VideoDetails {
3fd3ab2d 1082 const formattedJson = this.toFormattedJSON()
e4f97bab 1083
3fd3ab2d 1084 const detailsJson = {
2422c46b 1085 support: this.support,
3fd3ab2d
C
1086 descriptionPath: this.getDescriptionPath(),
1087 channel: this.VideoChannel.toFormattedJSON(),
1088 account: this.VideoChannel.Account.toFormattedJSON(),
ee28cdf1 1089 tags: map(this.Tags, 'name'),
47564bbe 1090 commentsEnabled: this.commentsEnabled,
3fd3ab2d
C
1091 files: []
1092 }
e4f97bab 1093
3fd3ab2d 1094 // Format and sort video files
244e76a5
RK
1095 detailsJson.files = this.getFormattedVideoFilesJSON()
1096
1097 return Object.assign(formattedJson, detailsJson)
1098 }
1099
1100 getFormattedVideoFilesJSON (): VideoFile[] {
3fd3ab2d 1101 const { baseUrlHttp, baseUrlWs } = this.getBaseUrls()
3fd3ab2d 1102
244e76a5
RK
1103 return this.VideoFiles
1104 .map(videoFile => {
1105 let resolutionLabel = videoFile.resolution + 'p'
3fd3ab2d 1106
244e76a5
RK
1107 return {
1108 resolution: {
1109 id: videoFile.resolution,
1110 label: resolutionLabel
1111 },
1112 magnetUri: this.generateMagnetUri(videoFile, baseUrlHttp, baseUrlWs),
1113 size: videoFile.size,
1114 torrentUrl: this.getTorrentUrl(videoFile, baseUrlHttp),
1115 fileUrl: this.getVideoFileUrl(videoFile, baseUrlHttp)
1116 } as VideoFile
1117 })
1118 .sort((a, b) => {
1119 if (a.resolution.id < b.resolution.id) return 1
1120 if (a.resolution.id === b.resolution.id) return 0
1121 return -1
1122 })
3fd3ab2d 1123 }
e4f97bab 1124
3fd3ab2d
C
1125 toActivityPubObject (): VideoTorrentObject {
1126 const { baseUrlHttp, baseUrlWs } = this.getBaseUrls()
1127 if (!this.Tags) this.Tags = []
e4f97bab 1128
3fd3ab2d
C
1129 const tag = this.Tags.map(t => ({
1130 type: 'Hashtag' as 'Hashtag',
1131 name: t.name
1132 }))
40298b02 1133
3fd3ab2d
C
1134 let language
1135 if (this.language) {
1136 language = {
9d3ef9fe 1137 identifier: this.language,
ae5a3dd6 1138 name: VideoModel.getLanguageLabel(this.language)
3fd3ab2d
C
1139 }
1140 }
40298b02 1141
3fd3ab2d
C
1142 let category
1143 if (this.category) {
1144 category = {
1145 identifier: this.category + '',
ae5a3dd6 1146 name: VideoModel.getCategoryLabel(this.category)
3fd3ab2d
C
1147 }
1148 }
40298b02 1149
3fd3ab2d
C
1150 let licence
1151 if (this.licence) {
1152 licence = {
1153 identifier: this.licence + '',
ae5a3dd6 1154 name: VideoModel.getLicenceLabel(this.licence)
3fd3ab2d
C
1155 }
1156 }
9567011b 1157
3fd3ab2d
C
1158 const url = []
1159 for (const file of this.VideoFiles) {
1160 url.push({
1161 type: 'Link',
1162 mimeType: 'video/' + file.extname.replace('.', ''),
9fb3abfd 1163 href: this.getVideoFileUrl(file, baseUrlHttp),
3fd3ab2d
C
1164 width: file.resolution,
1165 size: file.size
1166 })
1167
1168 url.push({
1169 type: 'Link',
1170 mimeType: 'application/x-bittorrent',
9fb3abfd 1171 href: this.getTorrentUrl(file, baseUrlHttp),
3fd3ab2d
C
1172 width: file.resolution
1173 })
1174
1175 url.push({
1176 type: 'Link',
1177 mimeType: 'application/x-bittorrent;x-scheme-handler/magnet',
9fb3abfd 1178 href: this.generateMagnetUri(file, baseUrlHttp, baseUrlWs),
3fd3ab2d
C
1179 width: file.resolution
1180 })
1181 }
93e1258c 1182
3fd3ab2d
C
1183 // Add video url too
1184 url.push({
1185 type: 'Link',
1186 mimeType: 'text/html',
9fb3abfd 1187 href: CONFIG.WEBSERVER.URL + '/videos/watch/' + this.uuid
3fd3ab2d 1188 })
93e1258c 1189
3fd3ab2d
C
1190 return {
1191 type: 'Video' as 'Video',
1192 id: this.url,
1193 name: this.name,
093237cf 1194 duration: this.getActivityStreamDuration(),
3fd3ab2d
C
1195 uuid: this.uuid,
1196 tag,
1197 category,
1198 licence,
1199 language,
1200 views: this.views,
0a67e28b 1201 sensitive: this.nsfw,
47564bbe 1202 commentsEnabled: this.commentsEnabled,
2922e048 1203 published: this.publishedAt.toISOString(),
3fd3ab2d
C
1204 updated: this.updatedAt.toISOString(),
1205 mediaType: 'text/markdown',
1206 content: this.getTruncatedDescription(),
2422c46b 1207 support: this.support,
3fd3ab2d
C
1208 icon: {
1209 type: 'Image',
1210 url: this.getThumbnailUrl(baseUrlHttp),
1211 mediaType: 'image/jpeg',
1212 width: THUMBNAILS_SIZE.width,
1213 height: THUMBNAILS_SIZE.height
1214 },
1215 url,
8fffe21a
C
1216 likes: getVideoLikesActivityPubUrl(this),
1217 dislikes: getVideoDislikesActivityPubUrl(this),
1218 shares: getVideoSharesActivityPubUrl(this),
1219 comments: getVideoCommentsActivityPubUrl(this),
50d6de9c 1220 attributedTo: [
2ccaeeb3
C
1221 {
1222 type: 'Person',
1223 id: this.VideoChannel.Account.Actor.url
fc27b17c
C
1224 },
1225 {
1226 type: 'Group',
1227 id: this.VideoChannel.Actor.url
50d6de9c
C
1228 }
1229 ]
3fd3ab2d
C
1230 }
1231 }
1232
1233 getTruncatedDescription () {
1234 if (!this.description) return null
93e1258c 1235
bffbebbe 1236 const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
c73e83da 1237 return peertubeTruncate(this.description, maxLength)
93e1258c
C
1238 }
1239
81e504b3 1240 async optimizeOriginalVideofile () {
3fd3ab2d
C
1241 const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
1242 const newExtname = '.mp4'
1243 const inputVideoFile = this.getOriginalFile()
1244 const videoInputPath = join(videosDirectory, this.getVideoFilename(inputVideoFile))
1245 const videoOutputPath = join(videosDirectory, this.id + '-transcoded' + newExtname)
b769007f 1246
3fd3ab2d
C
1247 const transcodeOptions = {
1248 inputPath: videoInputPath,
1249 outputPath: videoOutputPath
1250 }
c46edbc2 1251
b0ef1782
C
1252 // Could be very long!
1253 await transcode(transcodeOptions)
c46edbc2 1254
b0ef1782 1255 try {
3fd3ab2d 1256 await unlinkPromise(videoInputPath)
c46edbc2 1257
3fd3ab2d
C
1258 // Important to do this before getVideoFilename() to take in account the new file extension
1259 inputVideoFile.set('extname', newExtname)
e71bcc0f 1260
3fd3ab2d
C
1261 await renamePromise(videoOutputPath, this.getVideoFilePath(inputVideoFile))
1262 const stats = await statPromise(this.getVideoFilePath(inputVideoFile))
e71bcc0f 1263
3fd3ab2d 1264 inputVideoFile.set('size', stats.size)
e71bcc0f 1265
3fd3ab2d
C
1266 await this.createTorrentAndSetInfoHash(inputVideoFile)
1267 await inputVideoFile.save()
fd45e8f4 1268
3fd3ab2d
C
1269 } catch (err) {
1270 // Auto destruction...
d5b7d911 1271 this.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', { err }))
fd45e8f4 1272
3fd3ab2d
C
1273 throw err
1274 }
feb4bdfd
C
1275 }
1276
81e504b3 1277 async transcodeOriginalVideofile (resolution: VideoResolution, isPortraitMode: boolean) {
3fd3ab2d
C
1278 const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
1279 const extname = '.mp4'
aaf61f38 1280
3fd3ab2d
C
1281 // We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
1282 const videoInputPath = join(videosDirectory, this.getVideoFilename(this.getOriginalFile()))
feb4bdfd 1283
3fd3ab2d
C
1284 const newVideoFile = new VideoFileModel({
1285 resolution,
1286 extname,
1287 size: 0,
1288 videoId: this.id
1289 })
1290 const videoOutputPath = join(videosDirectory, this.getVideoFilename(newVideoFile))
a041b171 1291
3fd3ab2d
C
1292 const transcodeOptions = {
1293 inputPath: videoInputPath,
1294 outputPath: videoOutputPath,
056aa7f2
C
1295 resolution,
1296 isPortraitMode
3fd3ab2d 1297 }
a041b171 1298
3fd3ab2d 1299 await transcode(transcodeOptions)
a041b171 1300
3fd3ab2d 1301 const stats = await statPromise(videoOutputPath)
d7d5611c 1302
3fd3ab2d 1303 newVideoFile.set('size', stats.size)
d7d5611c 1304
3fd3ab2d 1305 await this.createTorrentAndSetInfoHash(newVideoFile)
d7d5611c 1306
3fd3ab2d
C
1307 await newVideoFile.save()
1308
1309 this.VideoFiles.push(newVideoFile)
0d0e8dd0
C
1310 }
1311
056aa7f2 1312 getOriginalFileResolution () {
3fd3ab2d 1313 const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
0d0e8dd0 1314
056aa7f2 1315 return getVideoFileResolution(originalFilePath)
3fd3ab2d 1316 }
0d0e8dd0 1317
3fd3ab2d
C
1318 getDescriptionPath () {
1319 return `/api/${API_VERSION}/videos/${this.uuid}/description`
feb4bdfd
C
1320 }
1321
3fd3ab2d
C
1322 removeThumbnail () {
1323 const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
1324 return unlinkPromise(thumbnailPath)
feb4bdfd
C
1325 }
1326
3fd3ab2d
C
1327 removePreview () {
1328 // Same name than video thumbnail
1329 return unlinkPromise(CONFIG.STORAGE.PREVIEWS_DIR + this.getPreviewName())
7920c273
C
1330 }
1331
3fd3ab2d
C
1332 removeFile (videoFile: VideoFileModel) {
1333 const filePath = join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
1334 return unlinkPromise(filePath)
feb4bdfd
C
1335 }
1336
3fd3ab2d
C
1337 removeTorrent (videoFile: VideoFileModel) {
1338 const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1339 return unlinkPromise(torrentPath)
aaf61f38
C
1340 }
1341
093237cf
C
1342 getActivityStreamDuration () {
1343 // https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
1344 return 'PT' + this.duration + 'S'
1345 }
1346
3fd3ab2d
C
1347 private getBaseUrls () {
1348 let baseUrlHttp
1349 let baseUrlWs
7920c273 1350
3fd3ab2d
C
1351 if (this.isOwned()) {
1352 baseUrlHttp = CONFIG.WEBSERVER.URL
1353 baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
1354 } else {
50d6de9c
C
1355 baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + this.VideoChannel.Account.Actor.Server.host
1356 baseUrlWs = REMOTE_SCHEME.WS + '://' + this.VideoChannel.Account.Actor.Server.host
6fcd19ba 1357 }
aaf61f38 1358
3fd3ab2d 1359 return { baseUrlHttp, baseUrlWs }
15d4ee04 1360 }
a96aed15 1361
3fd3ab2d
C
1362 private getThumbnailUrl (baseUrlHttp: string) {
1363 return baseUrlHttp + STATIC_PATHS.THUMBNAILS + this.getThumbnailName()
a96aed15
C
1364 }
1365
3fd3ab2d
C
1366 private getTorrentUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
1367 return baseUrlHttp + STATIC_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1368 }
e4f97bab 1369
3fd3ab2d
C
1370 private getVideoFileUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
1371 return baseUrlHttp + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
1372 }
a96aed15 1373
3fd3ab2d
C
1374 private generateMagnetUri (videoFile: VideoFileModel, baseUrlHttp: string, baseUrlWs: string) {
1375 const xs = this.getTorrentUrl(videoFile, baseUrlHttp)
1376 const announce = [ baseUrlWs + '/tracker/socket', baseUrlHttp + '/tracker/announce' ]
1377 const urlList = [ this.getVideoFileUrl(videoFile, baseUrlHttp) ]
1378
1379 const magnetHash = {
1380 xs,
1381 announce,
1382 urlList,
1383 infoHash: videoFile.infoHash,
1384 name: this.name
1385 }
a96aed15 1386
3fd3ab2d 1387 return magnetUtil.encode(magnetHash)
a96aed15 1388 }
a96aed15 1389}