]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video.ts
Refractor and optimize AP collections
[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,
50d6de9c
C
605 include: [
606 {
2c897999
C
607 attributes: [ 'id', 'url' ],
608 model: ActorModel.unscoped()
50d6de9c
C
609 }
610 ]
3fd3ab2d
C
611 },
612 {
2c897999 613 model: VideoChannelModel.unscoped(),
3fd3ab2d
C
614 required: true,
615 include: [
616 {
2c897999
C
617 attributes: [ 'name' ],
618 model: AccountModel.unscoped(),
619 required: true,
620 include: [
621 {
622 attributes: [ 'id', 'url' ],
623 model: ActorModel.unscoped(),
624 required: true
625 }
626 ]
627 },
628 {
629 attributes: [ 'id', 'url' ],
630 model: ActorModel.unscoped(),
3fd3ab2d
C
631 required: true
632 }
633 ]
634 },
3fd3ab2d 635 VideoFileModel,
2c897999 636 TagModel
3fd3ab2d
C
637 ]
638 }
164174a6 639
3fd3ab2d
C
640 return Bluebird.all([
641 // FIXME: typing issue
642 VideoModel.findAll(query as any),
643 VideoModel.sequelize.query(rawCountQuery, { type: Sequelize.QueryTypes.SELECT })
644 ]).then(([ rows, totals ]) => {
645 // totals: totalVideos + totalVideoShares
646 let totalVideos = 0
647 let totalVideoShares = 0
648 if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
649 if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
650
651 const total = totalVideos + totalVideoShares
652 return {
653 data: rows,
654 total: total
655 }
656 })
657 }
93e1258c 658
0883b324 659 static listAccountVideosForApi (accountId: number, start: number, count: number, sort: string, hideNSFW: boolean, withFiles = false) {
244e76a5 660 const query: IFindOptions<VideoModel> = {
3fd3ab2d
C
661 offset: start,
662 limit: count,
3bb6c526 663 order: getSort(sort),
3fd3ab2d
C
664 include: [
665 {
666 model: VideoChannelModel,
667 required: true,
668 include: [
669 {
670 model: AccountModel,
671 where: {
7b87d2d5 672 id: accountId
3fd3ab2d
C
673 },
674 required: true
675 }
676 ]
d48ff09d 677 }
3fd3ab2d
C
678 ]
679 }
d8755eed 680
244e76a5
RK
681 if (withFiles === true) {
682 query.include.push({
683 model: VideoFileModel.unscoped(),
684 required: true
685 })
686 }
687
0883b324
C
688 if (hideNSFW === true) {
689 query.where = {
690 nsfw: false
691 }
692 }
693
3fd3ab2d
C
694 return VideoModel.findAndCountAll(query).then(({ rows, count }) => {
695 return {
696 data: rows,
697 total: count
698 }
699 })
700 }
93e1258c 701
48dce1c9 702 static async listForApi (options: {
0626e7af
C
703 start: number,
704 count: number,
705 sort: string,
706 hideNSFW: boolean,
48dce1c9 707 withFiles: boolean,
0626e7af 708 filter?: VideoFilter,
48dce1c9
C
709 accountId?: number,
710 videoChannelId?: number
711 }) {
3fd3ab2d 712 const query = {
48dce1c9
C
713 offset: options.start,
714 limit: options.count,
715 order: getSort(options.sort)
3fd3ab2d 716 }
93e1258c 717
f05a1c30 718 const serverActor = await getServerActor()
48dce1c9
C
719 const scopes = {
720 method: [
721 ScopeNames.AVAILABLE_FOR_LIST, {
722 actorId: serverActor.id,
723 hideNSFW: options.hideNSFW,
724 filter: options.filter,
725 withFiles: options.withFiles,
726 accountId: options.accountId,
727 videoChannelId: options.videoChannelId
728 }
729 ]
730 }
731
732 return VideoModel.scope(scopes)
d48ff09d
C
733 .findAndCountAll(query)
734 .then(({ rows, count }) => {
735 return {
736 data: rows,
737 total: count
738 }
739 })
93e1258c
C
740 }
741
0883b324 742 static async searchAndPopulateAccountAndServer (value: string, start: number, count: number, sort: string, hideNSFW: boolean) {
f05a1c30
C
743 const query: IFindOptions<VideoModel> = {
744 offset: start,
745 limit: count,
3bb6c526 746 order: getSort(sort),
f05a1c30 747 where: {
3e0c9ff5
C
748 [Sequelize.Op.or]: [
749 {
750 name: {
751 [ Sequelize.Op.iLike ]: '%' + value + '%'
752 }
753 },
754 {
0f320037 755 preferredUsernameChannel: Sequelize.where(Sequelize.col('VideoChannel->Actor.preferredUsername'), {
3e0c9ff5
C
756 [ Sequelize.Op.iLike ]: '%' + value + '%'
757 })
758 },
759 {
0f320037
C
760 preferredUsernameAccount: Sequelize.where(Sequelize.col('VideoChannel->Account->Actor.preferredUsername'), {
761 [ Sequelize.Op.iLike ]: '%' + value + '%'
762 })
763 },
764 {
765 host: Sequelize.where(Sequelize.col('VideoChannel->Account->Actor->Server.host'), {
3e0c9ff5
C
766 [ Sequelize.Op.iLike ]: '%' + value + '%'
767 })
768 }
769 ]
f05a1c30
C
770 }
771 }
772
773 const serverActor = await getServerActor()
48dce1c9
C
774 const scopes = {
775 method: [
776 ScopeNames.AVAILABLE_FOR_LIST, {
777 actorId: serverActor.id,
778 hideNSFW
779 }
780 ]
781 }
f05a1c30 782
48dce1c9 783 return VideoModel.scope(scopes)
244e76a5
RK
784 .findAndCountAll(query)
785 .then(({ rows, count }) => {
f05a1c30
C
786 return {
787 data: rows,
788 total: count
789 }
790 })
791 }
792
3fd3ab2d
C
793 static load (id: number) {
794 return VideoModel.findById(id)
795 }
fdbda9e3 796
3fd3ab2d
C
797 static loadByUrlAndPopulateAccount (url: string, t?: Sequelize.Transaction) {
798 const query: IFindOptions<VideoModel> = {
799 where: {
800 url
d48ff09d 801 }
3fd3ab2d 802 }
d8755eed 803
3fd3ab2d 804 if (t !== undefined) query.transaction = t
d8755eed 805
4cb6d457 806 return VideoModel.scope([ ScopeNames.WITH_ACCOUNT_DETAILS, ScopeNames.WITH_FILES ]).findOne(query)
3fd3ab2d 807 }
d8755eed 808
2ccaeeb3 809 static loadByUUIDOrURLAndPopulateAccount (uuid: string, url: string, t?: Sequelize.Transaction) {
3fd3ab2d
C
810 const query: IFindOptions<VideoModel> = {
811 where: {
812 [Sequelize.Op.or]: [
813 { uuid },
814 { url }
815 ]
d48ff09d 816 }
3fd3ab2d 817 }
feb4bdfd 818
3fd3ab2d 819 if (t !== undefined) query.transaction = t
feb4bdfd 820
2ccaeeb3 821 return VideoModel.scope([ ScopeNames.WITH_ACCOUNT_DETAILS, ScopeNames.WITH_FILES ]).findOne(query)
72c7248b
C
822 }
823
3fd3ab2d
C
824 static loadAndPopulateAccountAndServerAndTags (id: number) {
825 const options = {
d48ff09d 826 order: [ [ 'Tags', 'name', 'ASC' ] ]
3fd3ab2d 827 }
72c7248b 828
d48ff09d 829 return VideoModel
4cb6d457 830 .scope([ ScopeNames.WITH_TAGS, ScopeNames.WITH_FILES, ScopeNames.WITH_ACCOUNT_DETAILS ])
d48ff09d 831 .findById(id, options)
3fd3ab2d 832 }
72c7248b 833
8fa5653a
C
834 static loadByUUID (uuid: string) {
835 const options = {
836 where: {
837 uuid
838 }
839 }
840
841 return VideoModel
842 .scope([ ScopeNames.WITH_FILES ])
843 .findOne(options)
844 }
845
3fd3ab2d
C
846 static loadByUUIDAndPopulateAccountAndServerAndTags (uuid: string) {
847 const options = {
848 order: [ [ 'Tags', 'name', 'ASC' ] ],
849 where: {
850 uuid
d48ff09d 851 }
3fd3ab2d 852 }
fd45e8f4 853
d48ff09d 854 return VideoModel
4cb6d457 855 .scope([ ScopeNames.WITH_TAGS, ScopeNames.WITH_FILES, ScopeNames.WITH_ACCOUNT_DETAILS ])
da854ddd
C
856 .findOne(options)
857 }
858
09cababd
C
859 static async getStats () {
860 const totalLocalVideos = await VideoModel.count({
861 where: {
862 remote: false
863 }
864 })
865 const totalVideos = await VideoModel.count()
866
867 let totalLocalVideoViews = await VideoModel.sum('views', {
868 where: {
869 remote: false
870 }
871 })
872 // Sequelize could return null...
873 if (!totalLocalVideoViews) totalLocalVideoViews = 0
874
875 return {
876 totalLocalVideos,
877 totalLocalVideoViews,
878 totalVideos
879 }
880 }
881
066e94c5
C
882 private static buildActorWhereWithFilter (filter?: VideoFilter) {
883 if (filter && filter === 'local') {
884 return {
885 serverId: null
886 }
887 }
888
889 return {}
890 }
891
ae5a3dd6
C
892 private static getCategoryLabel (id: number) {
893 let categoryLabel = VIDEO_CATEGORIES[id]
894 if (!categoryLabel) categoryLabel = 'Misc'
895
896 return categoryLabel
897 }
898
899 private static getLicenceLabel (id: number) {
900 let licenceLabel = VIDEO_LICENCES[id]
901 if (!licenceLabel) licenceLabel = 'Unknown'
902
903 return licenceLabel
904 }
905
9d3ef9fe 906 private static getLanguageLabel (id: string) {
ae5a3dd6
C
907 let languageLabel = VIDEO_LANGUAGES[id]
908 if (!languageLabel) languageLabel = 'Unknown'
909
910 return languageLabel
911 }
912
2243730c
C
913 private static getPrivacyLabel (id: number) {
914 let privacyLabel = VIDEO_PRIVACIES[id]
915 if (!privacyLabel) privacyLabel = 'Unknown'
916
917 return privacyLabel
918 }
919
3fd3ab2d
C
920 getOriginalFile () {
921 if (Array.isArray(this.VideoFiles) === false) return undefined
aaf61f38 922
3fd3ab2d
C
923 // The original file is the file that have the higher resolution
924 return maxBy(this.VideoFiles, file => file.resolution)
e4f97bab 925 }
aaf61f38 926
3fd3ab2d
C
927 getVideoFilename (videoFile: VideoFileModel) {
928 return this.uuid + '-' + videoFile.resolution + videoFile.extname
929 }
165cdc75 930
3fd3ab2d
C
931 getThumbnailName () {
932 // We always have a copy of the thumbnail
933 const extension = '.jpg'
934 return this.uuid + extension
7b1f49de
C
935 }
936
3fd3ab2d
C
937 getPreviewName () {
938 const extension = '.jpg'
939 return this.uuid + extension
940 }
7b1f49de 941
3fd3ab2d
C
942 getTorrentFileName (videoFile: VideoFileModel) {
943 const extension = '.torrent'
944 return this.uuid + '-' + videoFile.resolution + extension
945 }
8e7f08b5 946
3fd3ab2d
C
947 isOwned () {
948 return this.remote === false
9567011b
C
949 }
950
3fd3ab2d 951 createPreview (videoFile: VideoFileModel) {
3fd3ab2d
C
952 return generateImageFromVideoFile(
953 this.getVideoFilePath(videoFile),
954 CONFIG.STORAGE.PREVIEWS_DIR,
955 this.getPreviewName(),
26670720 956 PREVIEWS_SIZE
3fd3ab2d
C
957 )
958 }
9567011b 959
3fd3ab2d 960 createThumbnail (videoFile: VideoFileModel) {
3fd3ab2d
C
961 return generateImageFromVideoFile(
962 this.getVideoFilePath(videoFile),
963 CONFIG.STORAGE.THUMBNAILS_DIR,
964 this.getThumbnailName(),
26670720 965 THUMBNAILS_SIZE
3fd3ab2d 966 )
14d3270f
C
967 }
968
3fd3ab2d
C
969 getVideoFilePath (videoFile: VideoFileModel) {
970 return join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
971 }
14d3270f 972
81e504b3 973 async createTorrentAndSetInfoHash (videoFile: VideoFileModel) {
3fd3ab2d 974 const options = {
6cced8f9
C
975 // Keep the extname, it's used by the client to stream the file inside a web browser
976 name: `${this.name} ${videoFile.resolution}p${videoFile.extname}`,
81e504b3 977 createdBy: 'PeerTube',
3fd3ab2d 978 announceList: [
0edf0581
C
979 [ CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT + '/tracker/socket' ],
980 [ CONFIG.WEBSERVER.URL + '/tracker/announce' ]
3fd3ab2d
C
981 ],
982 urlList: [
983 CONFIG.WEBSERVER.URL + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
984 ]
985 }
14d3270f 986
3fd3ab2d 987 const torrent = await createTorrentPromise(this.getVideoFilePath(videoFile), options)
e4f97bab 988
3fd3ab2d
C
989 const filePath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
990 logger.info('Creating torrent %s.', filePath)
e4f97bab 991
3fd3ab2d 992 await writeFilePromise(filePath, torrent)
e4f97bab 993
3fd3ab2d
C
994 const parsedTorrent = parseTorrent(torrent)
995 videoFile.infoHash = parsedTorrent.infoHash
996 }
e4f97bab 997
3fd3ab2d
C
998 getEmbedPath () {
999 return '/videos/embed/' + this.uuid
1000 }
e4f97bab 1001
3fd3ab2d
C
1002 getThumbnailPath () {
1003 return join(STATIC_PATHS.THUMBNAILS, this.getThumbnailName())
e4f97bab 1004 }
227d02fe 1005
3fd3ab2d
C
1006 getPreviewPath () {
1007 return join(STATIC_PATHS.PREVIEWS, this.getPreviewName())
1008 }
40298b02 1009
2422c46b 1010 toFormattedJSON (): Video {
b64c950a 1011 const formattedAccount = this.VideoChannel.Account.toFormattedJSON()
0f320037 1012 const formattedVideoChannel = this.VideoChannel.toFormattedJSON()
14d3270f 1013
3fd3ab2d
C
1014 return {
1015 id: this.id,
1016 uuid: this.uuid,
1017 name: this.name,
ae5a3dd6
C
1018 category: {
1019 id: this.category,
1020 label: VideoModel.getCategoryLabel(this.category)
1021 },
1022 licence: {
1023 id: this.licence,
1024 label: VideoModel.getLicenceLabel(this.licence)
1025 },
1026 language: {
1027 id: this.language,
1028 label: VideoModel.getLanguageLabel(this.language)
1029 },
2243730c
C
1030 privacy: {
1031 id: this.privacy,
1032 label: VideoModel.getPrivacyLabel(this.privacy)
1033 },
3fd3ab2d
C
1034 nsfw: this.nsfw,
1035 description: this.getTruncatedDescription(),
3fd3ab2d 1036 isLocal: this.isOwned(),
3fd3ab2d
C
1037 duration: this.duration,
1038 views: this.views,
1039 likes: this.likes,
1040 dislikes: this.dislikes,
3fd3ab2d
C
1041 thumbnailPath: this.getThumbnailPath(),
1042 previewPath: this.getPreviewPath(),
1043 embedPath: this.getEmbedPath(),
1044 createdAt: this.createdAt,
b64c950a 1045 updatedAt: this.updatedAt,
2922e048 1046 publishedAt: this.publishedAt,
b64c950a 1047 account: {
03e12d7c
C
1048 id: formattedAccount.id,
1049 uuid: formattedAccount.uuid,
b64c950a
C
1050 name: formattedAccount.name,
1051 displayName: formattedAccount.displayName,
1052 url: formattedAccount.url,
1053 host: formattedAccount.host,
1054 avatar: formattedAccount.avatar
0f320037
C
1055 },
1056 channel: {
1057 id: formattedVideoChannel.id,
1058 uuid: formattedVideoChannel.uuid,
1059 name: formattedVideoChannel.name,
1060 displayName: formattedVideoChannel.displayName,
1061 url: formattedVideoChannel.url,
1062 host: formattedVideoChannel.host,
1063 avatar: formattedVideoChannel.avatar
b64c950a 1064 }
2422c46b 1065 }
14d3270f 1066 }
14d3270f 1067
2422c46b 1068 toFormattedDetailsJSON (): VideoDetails {
3fd3ab2d 1069 const formattedJson = this.toFormattedJSON()
e4f97bab 1070
3fd3ab2d 1071 const detailsJson = {
2422c46b 1072 support: this.support,
3fd3ab2d
C
1073 descriptionPath: this.getDescriptionPath(),
1074 channel: this.VideoChannel.toFormattedJSON(),
1075 account: this.VideoChannel.Account.toFormattedJSON(),
ee28cdf1 1076 tags: map(this.Tags, 'name'),
47564bbe 1077 commentsEnabled: this.commentsEnabled,
3fd3ab2d
C
1078 files: []
1079 }
e4f97bab 1080
3fd3ab2d 1081 // Format and sort video files
244e76a5
RK
1082 detailsJson.files = this.getFormattedVideoFilesJSON()
1083
1084 return Object.assign(formattedJson, detailsJson)
1085 }
1086
1087 getFormattedVideoFilesJSON (): VideoFile[] {
3fd3ab2d 1088 const { baseUrlHttp, baseUrlWs } = this.getBaseUrls()
3fd3ab2d 1089
244e76a5
RK
1090 return this.VideoFiles
1091 .map(videoFile => {
1092 let resolutionLabel = videoFile.resolution + 'p'
3fd3ab2d 1093
244e76a5
RK
1094 return {
1095 resolution: {
1096 id: videoFile.resolution,
1097 label: resolutionLabel
1098 },
1099 magnetUri: this.generateMagnetUri(videoFile, baseUrlHttp, baseUrlWs),
1100 size: videoFile.size,
1101 torrentUrl: this.getTorrentUrl(videoFile, baseUrlHttp),
1102 fileUrl: this.getVideoFileUrl(videoFile, baseUrlHttp)
1103 } as VideoFile
1104 })
1105 .sort((a, b) => {
1106 if (a.resolution.id < b.resolution.id) return 1
1107 if (a.resolution.id === b.resolution.id) return 0
1108 return -1
1109 })
3fd3ab2d 1110 }
e4f97bab 1111
3fd3ab2d
C
1112 toActivityPubObject (): VideoTorrentObject {
1113 const { baseUrlHttp, baseUrlWs } = this.getBaseUrls()
1114 if (!this.Tags) this.Tags = []
e4f97bab 1115
3fd3ab2d
C
1116 const tag = this.Tags.map(t => ({
1117 type: 'Hashtag' as 'Hashtag',
1118 name: t.name
1119 }))
40298b02 1120
3fd3ab2d
C
1121 let language
1122 if (this.language) {
1123 language = {
9d3ef9fe 1124 identifier: this.language,
ae5a3dd6 1125 name: VideoModel.getLanguageLabel(this.language)
3fd3ab2d
C
1126 }
1127 }
40298b02 1128
3fd3ab2d
C
1129 let category
1130 if (this.category) {
1131 category = {
1132 identifier: this.category + '',
ae5a3dd6 1133 name: VideoModel.getCategoryLabel(this.category)
3fd3ab2d
C
1134 }
1135 }
40298b02 1136
3fd3ab2d
C
1137 let licence
1138 if (this.licence) {
1139 licence = {
1140 identifier: this.licence + '',
ae5a3dd6 1141 name: VideoModel.getLicenceLabel(this.licence)
3fd3ab2d
C
1142 }
1143 }
9567011b 1144
3fd3ab2d
C
1145 const url = []
1146 for (const file of this.VideoFiles) {
1147 url.push({
1148 type: 'Link',
1149 mimeType: 'video/' + file.extname.replace('.', ''),
9fb3abfd 1150 href: this.getVideoFileUrl(file, baseUrlHttp),
3fd3ab2d
C
1151 width: file.resolution,
1152 size: file.size
1153 })
1154
1155 url.push({
1156 type: 'Link',
1157 mimeType: 'application/x-bittorrent',
9fb3abfd 1158 href: this.getTorrentUrl(file, baseUrlHttp),
3fd3ab2d
C
1159 width: file.resolution
1160 })
1161
1162 url.push({
1163 type: 'Link',
1164 mimeType: 'application/x-bittorrent;x-scheme-handler/magnet',
9fb3abfd 1165 href: this.generateMagnetUri(file, baseUrlHttp, baseUrlWs),
3fd3ab2d
C
1166 width: file.resolution
1167 })
1168 }
93e1258c 1169
3fd3ab2d
C
1170 // Add video url too
1171 url.push({
1172 type: 'Link',
1173 mimeType: 'text/html',
9fb3abfd 1174 href: CONFIG.WEBSERVER.URL + '/videos/watch/' + this.uuid
3fd3ab2d 1175 })
93e1258c 1176
3fd3ab2d
C
1177 return {
1178 type: 'Video' as 'Video',
1179 id: this.url,
1180 name: this.name,
093237cf 1181 duration: this.getActivityStreamDuration(),
3fd3ab2d
C
1182 uuid: this.uuid,
1183 tag,
1184 category,
1185 licence,
1186 language,
1187 views: this.views,
0a67e28b 1188 sensitive: this.nsfw,
47564bbe 1189 commentsEnabled: this.commentsEnabled,
2922e048 1190 published: this.publishedAt.toISOString(),
3fd3ab2d
C
1191 updated: this.updatedAt.toISOString(),
1192 mediaType: 'text/markdown',
1193 content: this.getTruncatedDescription(),
2422c46b 1194 support: this.support,
3fd3ab2d
C
1195 icon: {
1196 type: 'Image',
1197 url: this.getThumbnailUrl(baseUrlHttp),
1198 mediaType: 'image/jpeg',
1199 width: THUMBNAILS_SIZE.width,
1200 height: THUMBNAILS_SIZE.height
1201 },
1202 url,
8fffe21a
C
1203 likes: getVideoLikesActivityPubUrl(this),
1204 dislikes: getVideoDislikesActivityPubUrl(this),
1205 shares: getVideoSharesActivityPubUrl(this),
1206 comments: getVideoCommentsActivityPubUrl(this),
50d6de9c 1207 attributedTo: [
2ccaeeb3
C
1208 {
1209 type: 'Person',
1210 id: this.VideoChannel.Account.Actor.url
fc27b17c
C
1211 },
1212 {
1213 type: 'Group',
1214 id: this.VideoChannel.Actor.url
50d6de9c
C
1215 }
1216 ]
3fd3ab2d
C
1217 }
1218 }
1219
1220 getTruncatedDescription () {
1221 if (!this.description) return null
93e1258c 1222
bffbebbe 1223 const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
c73e83da 1224 return peertubeTruncate(this.description, maxLength)
93e1258c
C
1225 }
1226
81e504b3 1227 async optimizeOriginalVideofile () {
3fd3ab2d
C
1228 const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
1229 const newExtname = '.mp4'
1230 const inputVideoFile = this.getOriginalFile()
1231 const videoInputPath = join(videosDirectory, this.getVideoFilename(inputVideoFile))
1232 const videoOutputPath = join(videosDirectory, this.id + '-transcoded' + newExtname)
b769007f 1233
3fd3ab2d
C
1234 const transcodeOptions = {
1235 inputPath: videoInputPath,
1236 outputPath: videoOutputPath
1237 }
c46edbc2 1238
b0ef1782
C
1239 // Could be very long!
1240 await transcode(transcodeOptions)
c46edbc2 1241
b0ef1782 1242 try {
3fd3ab2d 1243 await unlinkPromise(videoInputPath)
c46edbc2 1244
3fd3ab2d
C
1245 // Important to do this before getVideoFilename() to take in account the new file extension
1246 inputVideoFile.set('extname', newExtname)
e71bcc0f 1247
3fd3ab2d
C
1248 await renamePromise(videoOutputPath, this.getVideoFilePath(inputVideoFile))
1249 const stats = await statPromise(this.getVideoFilePath(inputVideoFile))
e71bcc0f 1250
3fd3ab2d 1251 inputVideoFile.set('size', stats.size)
e71bcc0f 1252
3fd3ab2d
C
1253 await this.createTorrentAndSetInfoHash(inputVideoFile)
1254 await inputVideoFile.save()
fd45e8f4 1255
3fd3ab2d
C
1256 } catch (err) {
1257 // Auto destruction...
d5b7d911 1258 this.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', { err }))
fd45e8f4 1259
3fd3ab2d
C
1260 throw err
1261 }
feb4bdfd
C
1262 }
1263
81e504b3 1264 async transcodeOriginalVideofile (resolution: VideoResolution, isPortraitMode: boolean) {
3fd3ab2d
C
1265 const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
1266 const extname = '.mp4'
aaf61f38 1267
3fd3ab2d
C
1268 // We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
1269 const videoInputPath = join(videosDirectory, this.getVideoFilename(this.getOriginalFile()))
feb4bdfd 1270
3fd3ab2d
C
1271 const newVideoFile = new VideoFileModel({
1272 resolution,
1273 extname,
1274 size: 0,
1275 videoId: this.id
1276 })
1277 const videoOutputPath = join(videosDirectory, this.getVideoFilename(newVideoFile))
a041b171 1278
3fd3ab2d
C
1279 const transcodeOptions = {
1280 inputPath: videoInputPath,
1281 outputPath: videoOutputPath,
056aa7f2
C
1282 resolution,
1283 isPortraitMode
3fd3ab2d 1284 }
a041b171 1285
3fd3ab2d 1286 await transcode(transcodeOptions)
a041b171 1287
3fd3ab2d 1288 const stats = await statPromise(videoOutputPath)
d7d5611c 1289
3fd3ab2d 1290 newVideoFile.set('size', stats.size)
d7d5611c 1291
3fd3ab2d 1292 await this.createTorrentAndSetInfoHash(newVideoFile)
d7d5611c 1293
3fd3ab2d
C
1294 await newVideoFile.save()
1295
1296 this.VideoFiles.push(newVideoFile)
0d0e8dd0
C
1297 }
1298
056aa7f2 1299 getOriginalFileResolution () {
3fd3ab2d 1300 const originalFilePath = this.getVideoFilePath(this.getOriginalFile())
0d0e8dd0 1301
056aa7f2 1302 return getVideoFileResolution(originalFilePath)
3fd3ab2d 1303 }
0d0e8dd0 1304
3fd3ab2d
C
1305 getDescriptionPath () {
1306 return `/api/${API_VERSION}/videos/${this.uuid}/description`
feb4bdfd
C
1307 }
1308
3fd3ab2d
C
1309 removeThumbnail () {
1310 const thumbnailPath = join(CONFIG.STORAGE.THUMBNAILS_DIR, this.getThumbnailName())
1311 return unlinkPromise(thumbnailPath)
feb4bdfd
C
1312 }
1313
3fd3ab2d
C
1314 removePreview () {
1315 // Same name than video thumbnail
1316 return unlinkPromise(CONFIG.STORAGE.PREVIEWS_DIR + this.getPreviewName())
7920c273
C
1317 }
1318
3fd3ab2d
C
1319 removeFile (videoFile: VideoFileModel) {
1320 const filePath = join(CONFIG.STORAGE.VIDEOS_DIR, this.getVideoFilename(videoFile))
1321 return unlinkPromise(filePath)
feb4bdfd
C
1322 }
1323
3fd3ab2d
C
1324 removeTorrent (videoFile: VideoFileModel) {
1325 const torrentPath = join(CONFIG.STORAGE.TORRENTS_DIR, this.getTorrentFileName(videoFile))
1326 return unlinkPromise(torrentPath)
aaf61f38
C
1327 }
1328
093237cf
C
1329 getActivityStreamDuration () {
1330 // https://www.w3.org/TR/activitystreams-vocabulary/#dfn-duration
1331 return 'PT' + this.duration + 'S'
1332 }
1333
3fd3ab2d
C
1334 private getBaseUrls () {
1335 let baseUrlHttp
1336 let baseUrlWs
7920c273 1337
3fd3ab2d
C
1338 if (this.isOwned()) {
1339 baseUrlHttp = CONFIG.WEBSERVER.URL
1340 baseUrlWs = CONFIG.WEBSERVER.WS + '://' + CONFIG.WEBSERVER.HOSTNAME + ':' + CONFIG.WEBSERVER.PORT
1341 } else {
50d6de9c
C
1342 baseUrlHttp = REMOTE_SCHEME.HTTP + '://' + this.VideoChannel.Account.Actor.Server.host
1343 baseUrlWs = REMOTE_SCHEME.WS + '://' + this.VideoChannel.Account.Actor.Server.host
6fcd19ba 1344 }
aaf61f38 1345
3fd3ab2d 1346 return { baseUrlHttp, baseUrlWs }
15d4ee04 1347 }
a96aed15 1348
3fd3ab2d
C
1349 private getThumbnailUrl (baseUrlHttp: string) {
1350 return baseUrlHttp + STATIC_PATHS.THUMBNAILS + this.getThumbnailName()
a96aed15
C
1351 }
1352
3fd3ab2d
C
1353 private getTorrentUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
1354 return baseUrlHttp + STATIC_PATHS.TORRENTS + this.getTorrentFileName(videoFile)
1355 }
e4f97bab 1356
3fd3ab2d
C
1357 private getVideoFileUrl (videoFile: VideoFileModel, baseUrlHttp: string) {
1358 return baseUrlHttp + STATIC_PATHS.WEBSEED + this.getVideoFilename(videoFile)
1359 }
a96aed15 1360
3fd3ab2d
C
1361 private generateMagnetUri (videoFile: VideoFileModel, baseUrlHttp: string, baseUrlWs: string) {
1362 const xs = this.getTorrentUrl(videoFile, baseUrlHttp)
1363 const announce = [ baseUrlWs + '/tracker/socket', baseUrlHttp + '/tracker/announce' ]
1364 const urlList = [ this.getVideoFileUrl(videoFile, baseUrlHttp) ]
1365
1366 const magnetHash = {
1367 xs,
1368 announce,
1369 urlList,
1370 infoHash: videoFile.infoHash,
1371 name: this.name
1372 }
a96aed15 1373
3fd3ab2d 1374 return magnetUtil.encode(magnetHash)
a96aed15 1375 }
a96aed15 1376}