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