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