1 import Bluebird from 'bluebird'
2 import { remove } from 'fs-extra'
3 import { maxBy, minBy } from 'lodash'
4 import { join } from 'path'
5 import { FindOptions, Includeable, IncludeOptions, Op, QueryTypes, ScopeOptions, Sequelize, Transaction, WhereOptions } from 'sequelize'
26 } from 'sequelize-typescript'
27 import { getPrivaciesForFederation, isPrivacyForFederation, isStateForFederation } from '@server/helpers/video'
28 import { LiveManager } from '@server/lib/live/live-manager'
29 import { removeHLSFileObjectStorage, removeHLSObjectStorage, removeWebTorrentObjectStorage } from '@server/lib/object-storage'
30 import { tracer } from '@server/lib/opentelemetry/tracing'
31 import { getHLSDirectory, getHLSRedundancyDirectory, getHlsResolutionPlaylistFilename } from '@server/lib/paths'
32 import { VideoPathManager } from '@server/lib/video-path-manager'
33 import { getServerActor } from '@server/models/application/application'
34 import { ModelCache } from '@server/models/model-cache'
35 import { buildVideoEmbedPath, buildVideoWatchPath, pick } from '@shared/core-utils'
36 import { ffprobePromise, getAudioStream, uuidToShort } from '@shared/extra-utils'
50 VideoStreamingPlaylistType
51 } from '@shared/models'
52 import { AttributesOnly } from '@shared/typescript-utils'
53 import { peertubeTruncate } from '../../helpers/core-utils'
54 import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
55 import { exists, isBooleanValid } from '../../helpers/custom-validators/misc'
57 isVideoDescriptionValid,
63 } from '../../helpers/custom-validators/videos'
64 import { getVideoStreamDimensionsInfo } from '../../helpers/ffmpeg'
65 import { logger } from '../../helpers/logger'
66 import { CONFIG } from '../../initializers/config'
67 import { ACTIVITY_PUB, API_VERSION, CONSTRAINTS_FIELDS, LAZY_STATIC_PATHS, STATIC_PATHS, WEBSERVER } from '../../initializers/constants'
68 import { sendDeleteVideo } from '../../lib/activitypub/send'
71 MChannelAccountDefault,
74 MStreamingPlaylistFilesVideo,
79 MVideoAccountLightBlacklistAllFiles,
84 MVideoFormattableDetails,
90 MVideoThumbnailBlacklist,
93 } from '../../types/models'
94 import { MThumbnail } from '../../types/models/video/thumbnail'
95 import { MVideoFile, MVideoFileStreamingPlaylistVideo } from '../../types/models/video/video-file'
96 import { VideoAbuseModel } from '../abuse/video-abuse'
97 import { AccountModel } from '../account/account'
98 import { AccountVideoRateModel } from '../account/account-video-rate'
99 import { ActorModel } from '../actor/actor'
100 import { ActorImageModel } from '../actor/actor-image'
101 import { VideoRedundancyModel } from '../redundancy/video-redundancy'
102 import { ServerModel } from '../server/server'
103 import { TrackerModel } from '../server/tracker'
104 import { VideoTrackerModel } from '../server/video-tracker'
105 import { setAsUpdated } from '../shared'
106 import { UserModel } from '../user/user'
107 import { UserVideoHistoryModel } from '../user/user-video-history'
108 import { buildTrigramSearchIndex, buildWhereIdOrUUID, getVideoSort, isOutdated, throwIfNotValid } from '../utils'
109 import { VideoViewModel } from '../view/video-view'
111 videoFilesModelToFormattedJSON,
112 VideoFormattingJSONOptions,
113 videoModelToActivityPubObject,
114 videoModelToFormattedDetailsJSON,
115 videoModelToFormattedJSON
116 } from './formatter/video-format-utils'
117 import { ScheduleVideoUpdateModel } from './schedule-video-update'
119 BuildVideosListQueryOptions,
120 DisplayOnlyForFollowerOptions,
121 VideoModelGetQueryBuilder,
122 VideosIdListQueryBuilder,
123 VideosModelListQueryBuilder
125 import { TagModel } from './tag'
126 import { ThumbnailModel } from './thumbnail'
127 import { VideoBlacklistModel } from './video-blacklist'
128 import { VideoCaptionModel } from './video-caption'
129 import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } from './video-channel'
130 import { VideoCommentModel } from './video-comment'
131 import { VideoFileModel } from './video-file'
132 import { VideoImportModel } from './video-import'
133 import { VideoJobInfoModel } from './video-job-info'
134 import { VideoLiveModel } from './video-live'
135 import { VideoPlaylistElementModel } from './video-playlist-element'
136 import { VideoShareModel } from './video-share'
137 import { VideoSourceModel } from './video-source'
138 import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
139 import { VideoTagModel } from './video-tag'
141 export enum ScopeNames {
143 WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
144 WITH_TAGS = 'WITH_TAGS',
145 WITH_WEBTORRENT_FILES = 'WITH_WEBTORRENT_FILES',
146 WITH_SCHEDULED_UPDATE = 'WITH_SCHEDULED_UPDATE',
147 WITH_BLACKLISTED = 'WITH_BLACKLISTED',
148 WITH_STREAMING_PLAYLISTS = 'WITH_STREAMING_PLAYLISTS',
149 WITH_IMMUTABLE_ATTRIBUTES = 'WITH_IMMUTABLE_ATTRIBUTES',
150 WITH_USER_HISTORY = 'WITH_USER_HISTORY',
151 WITH_THUMBNAILS = 'WITH_THUMBNAILS'
154 export type ForAPIOptions = {
157 videoPlaylistId?: number
159 withAccountBlockerIds?: number[]
163 [ScopeNames.WITH_IMMUTABLE_ATTRIBUTES]: {
164 attributes: [ 'id', 'url', 'uuid', 'remote' ]
166 [ScopeNames.FOR_API]: (options: ForAPIOptions) => {
167 const include: Includeable[] = [
169 model: VideoChannelModel.scope({
171 VideoChannelScopeNames.SUMMARY, {
173 withAccountBlockerIds: options.withAccountBlockerIds
180 attributes: [ 'type', 'filename' ],
181 model: ThumbnailModel,
186 const query: FindOptions = {}
196 if (options.videoPlaylistId) {
198 model: VideoPlaylistElementModel.unscoped(),
201 videoPlaylistId: options.videoPlaylistId
206 query.include = include
210 [ScopeNames.WITH_THUMBNAILS]: {
213 model: ThumbnailModel,
218 [ScopeNames.WITH_ACCOUNT_DETAILS]: {
221 model: VideoChannelModel.unscoped(),
226 exclude: [ 'privateKey', 'publicKey' ]
228 model: ActorModel.unscoped(),
232 attributes: [ 'host' ],
233 model: ServerModel.unscoped(),
237 model: ActorImageModel,
244 model: AccountModel.unscoped(),
248 model: ActorModel.unscoped(),
250 exclude: [ 'privateKey', 'publicKey' ]
255 attributes: [ 'host' ],
256 model: ServerModel.unscoped(),
260 model: ActorImageModel,
272 [ScopeNames.WITH_TAGS]: {
273 include: [ TagModel ]
275 [ScopeNames.WITH_BLACKLISTED]: {
278 attributes: [ 'id', 'reason', 'unfederated' ],
279 model: VideoBlacklistModel,
284 [ScopeNames.WITH_WEBTORRENT_FILES]: (withRedundancies = false) => {
285 let subInclude: any[] = []
287 if (withRedundancies === true) {
290 attributes: [ 'fileUrl' ],
291 model: VideoRedundancyModel.unscoped(),
300 model: VideoFileModel,
308 [ScopeNames.WITH_STREAMING_PLAYLISTS]: (withRedundancies = false) => {
309 const subInclude: IncludeOptions[] = [
311 model: VideoFileModel,
316 if (withRedundancies === true) {
318 attributes: [ 'fileUrl' ],
319 model: VideoRedundancyModel.unscoped(),
327 model: VideoStreamingPlaylistModel.unscoped(),
335 [ScopeNames.WITH_SCHEDULED_UPDATE]: {
338 model: ScheduleVideoUpdateModel.unscoped(),
343 [ScopeNames.WITH_USER_HISTORY]: (userId: number) => {
347 attributes: [ 'currentTime' ],
348 model: UserVideoHistoryModel.unscoped(),
361 buildTrigramSearchIndex('video_name_trigram', 'name'),
363 { fields: [ 'createdAt' ] },
366 { name: 'publishedAt', order: 'DESC' },
367 { name: 'id', order: 'ASC' }
370 { fields: [ 'duration' ] },
373 { name: 'views', order: 'DESC' },
374 { name: 'id', order: 'ASC' }
377 { fields: [ 'channelId' ] },
379 fields: [ 'originallyPublishedAt' ],
381 originallyPublishedAt: {
387 fields: [ 'category' ], // We don't care videos with an unknown category
395 fields: [ 'licence' ], // We don't care videos with an unknown licence
403 fields: [ 'language' ], // We don't care videos with an unknown language
411 fields: [ 'nsfw' ], // Most of the videos are not NSFW
417 fields: [ 'remote' ], // Only index local videos
432 export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> {
435 @Default(DataType.UUIDV4)
437 @Column(DataType.UUID)
441 @Is('VideoName', value => throwIfNotValid(value, isVideoNameValid, 'name'))
457 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
461 @Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
463 privacy: VideoPrivacy
466 @Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
472 @Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description', true))
473 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
478 @Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support', true))
479 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
483 @Is('VideoDuration', value => throwIfNotValid(value, isVideoDurationValid, 'duration'))
518 @Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
519 @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
524 commentsEnabled: boolean
528 downloadEnabled: boolean
532 waitTranscoding: boolean
536 @Is('VideoState', value => throwIfNotValid(value, isVideoStateValid, 'state'))
547 @Default(DataType.NOW)
554 originallyPublishedAt: Date
556 @ForeignKey(() => VideoChannelModel)
560 @BelongsTo(() => VideoChannelModel, {
566 VideoChannel: VideoChannelModel
568 @BelongsToMany(() => TagModel, {
569 foreignKey: 'videoId',
570 through: () => VideoTagModel,
575 @BelongsToMany(() => TrackerModel, {
576 foreignKey: 'videoId',
577 through: () => VideoTrackerModel,
580 Trackers: TrackerModel[]
582 @HasMany(() => ThumbnailModel, {
590 Thumbnails: ThumbnailModel[]
592 @HasMany(() => VideoPlaylistElementModel, {
599 VideoPlaylistElements: VideoPlaylistElementModel[]
601 @HasOne(() => VideoSourceModel, {
608 VideoSource: VideoSourceModel
610 @HasMany(() => VideoAbuseModel, {
617 VideoAbuses: VideoAbuseModel[]
619 @HasMany(() => VideoFileModel, {
627 VideoFiles: VideoFileModel[]
629 @HasMany(() => VideoStreamingPlaylistModel, {
637 VideoStreamingPlaylists: VideoStreamingPlaylistModel[]
639 @HasMany(() => VideoShareModel, {
646 VideoShares: VideoShareModel[]
648 @HasMany(() => AccountVideoRateModel, {
655 AccountVideoRates: AccountVideoRateModel[]
657 @HasMany(() => VideoCommentModel, {
665 VideoComments: VideoCommentModel[]
667 @HasMany(() => VideoViewModel, {
674 VideoViews: VideoViewModel[]
676 @HasMany(() => UserVideoHistoryModel, {
683 UserVideoHistories: UserVideoHistoryModel[]
685 @HasOne(() => ScheduleVideoUpdateModel, {
692 ScheduleVideoUpdate: ScheduleVideoUpdateModel
694 @HasOne(() => VideoBlacklistModel, {
701 VideoBlacklist: VideoBlacklistModel
703 @HasOne(() => VideoLiveModel, {
710 VideoLive: VideoLiveModel
712 @HasOne(() => VideoImportModel, {
719 VideoImport: VideoImportModel
721 @HasMany(() => VideoCaptionModel, {
728 ['separate' as any]: true
730 VideoCaptions: VideoCaptionModel[]
732 @HasOne(() => VideoJobInfoModel, {
739 VideoJobInfo: VideoJobInfoModel
742 static async sendDelete (instance: MVideoAccountLight, options) {
743 if (!instance.isOwned()) return undefined
745 // Lazy load channels
746 if (!instance.VideoChannel) {
747 instance.VideoChannel = await instance.$get('VideoChannel', {
752 transaction: options.transaction
753 }) as MChannelAccountDefault
756 return sendDeleteVideo(instance, options.transaction)
760 static async removeFiles (instance: VideoModel, options) {
761 const tasks: Promise<any>[] = []
763 logger.info('Removing files of video %s.', instance.url)
765 if (instance.isOwned()) {
766 if (!Array.isArray(instance.VideoFiles)) {
767 instance.VideoFiles = await instance.$get('VideoFiles', { transaction: options.transaction })
770 // Remove physical files and torrents
771 instance.VideoFiles.forEach(file => {
772 tasks.push(instance.removeWebTorrentFile(file))
775 // Remove playlists file
776 if (!Array.isArray(instance.VideoStreamingPlaylists)) {
777 instance.VideoStreamingPlaylists = await instance.$get('VideoStreamingPlaylists', { transaction: options.transaction })
780 for (const p of instance.VideoStreamingPlaylists) {
781 tasks.push(instance.removeStreamingPlaylistFiles(p))
785 // Do not wait video deletion because we could be in a transaction
788 logger.error('Some errors when removing files of video %s in before destroy hook.', instance.uuid, { err })
795 static stopLiveIfNeeded (instance: VideoModel) {
796 if (!instance.isLive) return
798 logger.info('Stopping live of video %s after video deletion.', instance.uuid)
800 LiveManager.Instance.stopSessionOf(instance.id, null)
804 static invalidateCache (instance: VideoModel) {
805 ModelCache.Instance.invalidateCache('video', instance.id)
809 static async saveEssentialDataToAbuses (instance: VideoModel, options) {
810 const tasks: Promise<any>[] = []
812 if (!Array.isArray(instance.VideoAbuses)) {
813 instance.VideoAbuses = await instance.$get('VideoAbuses', { transaction: options.transaction })
815 if (instance.VideoAbuses.length === 0) return undefined
818 logger.info('Saving video abuses details of video %s.', instance.url)
820 if (!instance.Trackers) instance.Trackers = await instance.$get('Trackers', { transaction: options.transaction })
821 const details = instance.toFormattedDetailsJSON()
823 for (const abuse of instance.VideoAbuses) {
824 abuse.deletedVideo = details
825 tasks.push(abuse.save({ transaction: options.transaction }))
828 await Promise.all(tasks)
831 static listLocalIds (): Promise<number[]> {
833 attributes: [ 'id' ],
840 return VideoModel.findAll(query)
841 .then(rows => rows.map(r => r.id))
844 static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
845 function getRawQuery (select: string) {
846 const queryVideo = 'SELECT ' + select + ' FROM "video" AS "Video" ' +
847 'INNER JOIN "videoChannel" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
848 'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
849 'WHERE "Account"."actorId" = ' + actorId
850 const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
851 'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
852 'WHERE "VideoShare"."actorId" = ' + actorId
854 return `(${queryVideo}) UNION (${queryVideoShare})`
857 const rawQuery = getRawQuery('"Video"."id"')
858 const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
864 order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ]),
867 [Op.in]: Sequelize.literal('(' + rawQuery + ')')
869 [Op.or]: getPrivaciesForFederation()
873 attributes: [ 'filename', 'language', 'fileUrl' ],
874 model: VideoCaptionModel.unscoped(),
878 attributes: [ 'id', 'url' ],
879 model: VideoShareModel.unscoped(),
881 // We only want videos shared by this actor
896 attributes: [ 'id', 'url' ],
897 model: ActorModel.unscoped()
902 model: VideoChannelModel.unscoped(),
906 attributes: [ 'name' ],
907 model: AccountModel.unscoped(),
911 attributes: [ 'id', 'url', 'followersUrl' ],
912 model: ActorModel.unscoped(),
918 attributes: [ 'id', 'url', 'followersUrl' ],
919 model: ActorModel.unscoped(),
925 model: VideoStreamingPlaylistModel.unscoped(),
929 model: VideoFileModel,
934 VideoLiveModel.unscoped(),
940 return Bluebird.all([
941 VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findAll(query),
942 VideoModel.sequelize.query<{ total: string }>(rawCountQuery, { type: QueryTypes.SELECT })
943 ]).then(([ rows, totals ]) => {
944 // totals: totalVideos + totalVideoShares
946 let totalVideoShares = 0
947 if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
948 if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
950 const total = totalVideos + totalVideoShares
958 static async listPublishedLiveUUIDs () {
960 attributes: [ 'uuid' ],
964 state: VideoState.PUBLISHED
968 const result = await VideoModel.findAll(options)
970 return result.map(v => v.uuid)
973 static listUserVideosForApi (options: {
983 const { accountId, channelId, start, count, sort, search, isLive } = options
985 function buildBaseQuery (forCount: boolean): FindOptions {
986 const where: WhereOptions = {}
990 [Op.iLike]: '%' + search + '%'
994 if (exists(isLive)) {
995 where.isLive = isLive
998 const channelWhere = channelId
1006 order: getVideoSort(sort),
1010 ? VideoChannelModel.unscoped()
1011 : VideoChannelModel,
1013 where: channelWhere,
1017 ? AccountModel.unscoped()
1032 const countQuery = buildBaseQuery(true)
1033 const findQuery = buildBaseQuery(false)
1035 const findScopes: (string | ScopeOptions)[] = [
1036 ScopeNames.WITH_SCHEDULED_UPDATE,
1037 ScopeNames.WITH_BLACKLISTED,
1038 ScopeNames.WITH_THUMBNAILS
1041 return Promise.all([
1042 VideoModel.count(countQuery),
1043 VideoModel.scope(findScopes).findAll<MVideoForUser>(findQuery)
1044 ]).then(([ count, rows ]) => {
1052 static async listForApi (options: {
1060 include?: VideoInclude
1062 hasFiles?: boolean // default false
1063 hasWebtorrentFiles?: boolean
1064 hasHLSFiles?: boolean
1066 categoryOneOf?: number[]
1067 licenceOneOf?: number[]
1068 languageOneOf?: string[]
1069 tagsOneOf?: string[]
1070 tagsAllOf?: string[]
1071 privacyOneOf?: VideoPrivacy[]
1074 videoChannelId?: number
1076 displayOnlyForFollower: DisplayOnlyForFollowerOptions | null
1078 videoPlaylistId?: number
1080 trendingDays?: number
1082 user?: MUserAccountId
1083 historyOfUser?: MUserId
1085 countVideos?: boolean
1089 VideoModel.throwIfPrivateIncludeWithoutUser(options.include, options.user)
1090 VideoModel.throwIfPrivacyOneOfWithoutUser(options.privacyOneOf, options.user)
1092 const trendingDays = options.sort.endsWith('trending')
1093 ? CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
1096 let trendingAlgorithm: string
1097 if (options.sort.endsWith('hot')) trendingAlgorithm = 'hot'
1098 if (options.sort.endsWith('best')) trendingAlgorithm = 'best'
1100 const serverActor = await getServerActor()
1102 const queryOptions = {
1117 'displayOnlyForFollower',
1125 'hasWebtorrentFiles',
1129 serverAccountIdForBlock: serverActor.Account.id,
1134 return VideoModel.getAvailableForApi(queryOptions, options.countVideos)
1137 static async searchAndPopulateAccountAndServer (options: {
1145 include?: VideoInclude
1147 categoryOneOf?: number[]
1148 licenceOneOf?: number[]
1149 languageOneOf?: string[]
1150 tagsOneOf?: string[]
1151 tagsAllOf?: string[]
1152 privacyOneOf?: VideoPrivacy[]
1154 displayOnlyForFollower: DisplayOnlyForFollowerOptions | null
1156 user?: MUserAccountId
1158 hasWebtorrentFiles?: boolean
1159 hasHLSFiles?: boolean
1164 startDate?: string // ISO 8601
1165 endDate?: string // ISO 8601
1166 originallyPublishedStartDate?: string
1167 originallyPublishedEndDate?: string
1169 durationMin?: number // seconds
1170 durationMax?: number // seconds
1173 VideoModel.throwIfPrivateIncludeWithoutUser(options.include, options.user)
1174 VideoModel.throwIfPrivacyOneOfWithoutUser(options.privacyOneOf, options.user)
1176 const serverActor = await getServerActor()
1178 const queryOptions = {
1197 'originallyPublishedStartDate',
1198 'originallyPublishedEndDate',
1202 'hasWebtorrentFiles',
1205 'displayOnlyForFollower'
1207 serverAccountIdForBlock: serverActor.Account.id
1210 return VideoModel.getAvailableForApi(queryOptions)
1213 static countLives (options: {
1215 mode: 'published' | 'not-ended'
1219 remote: options.remote,
1221 state: options.mode === 'not-ended'
1222 ? { [Op.ne]: VideoState.LIVE_ENDED }
1223 : { [Op.eq]: VideoState.PUBLISHED }
1227 return VideoModel.count(query)
1230 static countVideosUploadedByUserSince (userId: number, since: Date) {
1234 model: VideoChannelModel.unscoped(),
1238 model: AccountModel.unscoped(),
1242 model: UserModel.unscoped(),
1260 return VideoModel.unscoped().count(options)
1263 static countLivesOfAccount (accountId: number) {
1269 [Op.ne]: VideoState.LIVE_ENDED
1275 model: VideoChannelModel.unscoped(),
1283 return VideoModel.count(options)
1286 static load (id: number | string, transaction?: Transaction): Promise<MVideoThumbnail> {
1287 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1289 return queryBuilder.queryVideo({ id, transaction, type: 'thumbnails' })
1292 static loadWithBlacklist (id: number | string, transaction?: Transaction): Promise<MVideoThumbnailBlacklist> {
1293 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1295 return queryBuilder.queryVideo({ id, transaction, type: 'thumbnails-blacklist' })
1298 static loadImmutableAttributes (id: number | string, t?: Transaction): Promise<MVideoImmutable> {
1301 where: buildWhereIdOrUUID(id),
1305 return VideoModel.scope(ScopeNames.WITH_IMMUTABLE_ATTRIBUTES).findOne(query)
1308 return ModelCache.Instance.doCache({
1309 cacheType: 'load-video-immutable-id',
1316 static loadByUrlImmutableAttributes (url: string, transaction?: Transaction): Promise<MVideoImmutable> {
1318 const query: FindOptions = {
1325 return VideoModel.scope(ScopeNames.WITH_IMMUTABLE_ATTRIBUTES).findOne(query)
1328 return ModelCache.Instance.doCache({
1329 cacheType: 'load-video-immutable-url',
1336 static loadOnlyId (id: number | string, transaction?: Transaction): Promise<MVideoId> {
1337 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1339 return queryBuilder.queryVideo({ id, transaction, type: 'id' })
1342 static loadWithFiles (id: number | string, transaction?: Transaction, logging?: boolean): Promise<MVideoWithAllFiles> {
1343 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1345 return queryBuilder.queryVideo({ id, transaction, type: 'all-files', logging })
1348 static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoThumbnail> {
1349 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1351 return queryBuilder.queryVideo({ url, transaction, type: 'thumbnails' })
1354 static loadByUrlAndPopulateAccount (url: string, transaction?: Transaction): Promise<MVideoAccountLightBlacklistAllFiles> {
1355 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1357 return queryBuilder.queryVideo({ url, transaction, type: 'account-blacklist-files' })
1360 static loadFull (id: number | string, t?: Transaction, userId?: number): Promise<MVideoFullLight> {
1361 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1363 return queryBuilder.queryVideo({ id, transaction: t, type: 'full', userId })
1366 static loadForGetAPI (parameters: {
1368 transaction?: Transaction
1370 }): Promise<MVideoDetails> {
1371 const { id, transaction, userId } = parameters
1372 const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
1374 return queryBuilder.queryVideo({ id, transaction, type: 'api', userId })
1377 static async getStats () {
1378 const serverActor = await getServerActor()
1380 let totalLocalVideoViews = await VideoModel.sum('views', {
1386 // Sequelize could return null...
1387 if (!totalLocalVideoViews) totalLocalVideoViews = 0
1389 const baseOptions = {
1392 sort: '-publishedAt',
1394 displayOnlyForFollower: {
1395 actorId: serverActor.id,
1400 const { total: totalLocalVideos } = await VideoModel.listForApi({
1406 const { total: totalVideos } = await VideoModel.listForApi(baseOptions)
1410 totalLocalVideoViews,
1415 static incrementViews (id: number, views: number) {
1416 return VideoModel.increment('views', {
1424 static updateRatesOf (videoId: number, type: VideoRateType, count: number, t: Transaction) {
1425 const field = type === 'like'
1429 const rawQuery = `UPDATE "video" SET "${field}" = :count WHERE "video"."id" = :videoId`
1431 return AccountVideoRateModel.sequelize.query(rawQuery, {
1433 replacements: { videoId, rateType: type, count },
1434 type: QueryTypes.UPDATE
1438 static syncLocalRates (videoId: number, type: VideoRateType, t: Transaction) {
1439 const field = type === 'like'
1443 const rawQuery = `UPDATE "video" SET "${field}" = ` +
1445 'SELECT COUNT(id) FROM "accountVideoRate" WHERE "accountVideoRate"."videoId" = "video"."id" AND type = :rateType' +
1447 'WHERE "video"."id" = :videoId'
1449 return AccountVideoRateModel.sequelize.query(rawQuery, {
1451 replacements: { videoId, rateType: type },
1452 type: QueryTypes.UPDATE
1456 static checkVideoHasInstanceFollow (videoId: number, followerActorId: number) {
1457 // Instances only share videos
1458 const query = 'SELECT 1 FROM "videoShare" ' +
1459 'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
1460 'WHERE "actorFollow"."actorId" = $followerActorId AND "actorFollow"."state" = \'accepted\' AND "videoShare"."videoId" = $videoId ' +
1464 type: QueryTypes.SELECT as QueryTypes.SELECT,
1465 bind: { followerActorId, videoId },
1469 return VideoModel.sequelize.query(query, options)
1470 .then(results => results.length === 1)
1473 static bulkUpdateSupportField (ofChannel: MChannel, t: Transaction) {
1476 channelId: ofChannel.id
1481 return VideoModel.update({ support: ofChannel.support }, options)
1484 static getAllIdsFromChannel (videoChannel: MChannelId): Promise<number[]> {
1486 attributes: [ 'id' ],
1488 channelId: videoChannel.id
1492 return VideoModel.findAll(query)
1493 .then(videos => videos.map(v => v.id))
1496 // threshold corresponds to how many video the field should have to be returned
1497 static async getRandomFieldSamples (field: 'category' | 'channelId', threshold: number, count: number) {
1498 const serverActor = await getServerActor()
1500 const queryOptions: BuildVideosListQueryOptions = {
1501 attributes: [ `"${field}"` ],
1502 group: `GROUP BY "${field}"`,
1503 having: `HAVING COUNT("${field}") >= ${threshold}`,
1507 serverAccountIdForBlock: serverActor.Account.id,
1508 displayOnlyForFollower: {
1509 actorId: serverActor.id,
1514 const queryBuilder = new VideosIdListQueryBuilder(VideoModel.sequelize)
1516 return queryBuilder.queryVideoIds(queryOptions)
1517 .then(rows => rows.map(r => r[field]))
1520 static buildTrendingQuery (trendingDays: number) {
1524 model: VideoViewModel,
1529 [Op.gte as any]: new Date(new Date().getTime() - (24 * 3600 * 1000) * trendingDays)
1535 private static async getAvailableForApi (
1536 options: BuildVideosListQueryOptions,
1538 ): Promise<ResultList<VideoModel>> {
1539 const span = tracer.startSpan('peertube.VideoModel.getAvailableForApi')
1541 function getCount () {
1542 if (countVideos !== true) return Promise.resolve(undefined)
1544 const countOptions = Object.assign({}, options, { isCount: true })
1545 const queryBuilder = new VideosIdListQueryBuilder(VideoModel.sequelize)
1547 return queryBuilder.countVideoIds(countOptions)
1550 function getModels () {
1551 if (options.count === 0) return Promise.resolve([])
1553 const queryBuilder = new VideosModelListQueryBuilder(VideoModel.sequelize)
1555 return queryBuilder.queryVideos(options)
1558 const [ count, rows ] = await Promise.all([ getCount(), getModels() ])
1568 private static throwIfPrivateIncludeWithoutUser (include: VideoInclude, user: MUserAccountId) {
1569 if (VideoModel.isPrivateInclude(include) && !user?.hasRight(UserRight.SEE_ALL_VIDEOS)) {
1570 throw new Error('Try to filter all-local but user cannot see all videos')
1574 private static throwIfPrivacyOneOfWithoutUser (privacyOneOf: VideoPrivacy[], user: MUserAccountId) {
1575 if (privacyOneOf && !user?.hasRight(UserRight.SEE_ALL_VIDEOS)) {
1576 throw new Error('Try to choose video privacies but user cannot see all videos')
1580 private static isPrivateInclude (include: VideoInclude) {
1581 return include & VideoInclude.BLACKLISTED ||
1582 include & VideoInclude.BLOCKED_OWNER ||
1583 include & VideoInclude.NOT_PUBLISHED_STATE
1587 return !!this.VideoBlacklist
1591 return this.VideoChannel.Account.Actor.Server?.isBlocked() || this.VideoChannel.Account.isBlocked()
1594 getQualityFileBy<T extends MVideoWithFile> (this: T, fun: (files: MVideoFile[], it: (file: MVideoFile) => number) => MVideoFile) {
1595 const files = this.getAllFiles()
1596 const file = fun(files, file => file.resolution)
1597 if (!file) return undefined
1600 return Object.assign(file, { Video: this })
1603 if (file.videoStreamingPlaylistId) {
1604 const streamingPlaylistWithVideo = Object.assign(this.VideoStreamingPlaylists[0], { Video: this })
1606 return Object.assign(file, { VideoStreamingPlaylist: streamingPlaylistWithVideo })
1609 throw new Error('File is not associated to a video of a playlist')
1612 getMaxQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
1613 return this.getQualityFileBy(maxBy)
1616 getMinQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
1617 return this.getQualityFileBy(minBy)
1620 getWebTorrentFile<T extends MVideoWithFile> (this: T, resolution: number): MVideoFileVideo {
1621 if (Array.isArray(this.VideoFiles) === false) return undefined
1623 const file = this.VideoFiles.find(f => f.resolution === resolution)
1624 if (!file) return undefined
1626 return Object.assign(file, { Video: this })
1629 hasWebTorrentFiles () {
1630 return Array.isArray(this.VideoFiles) === true && this.VideoFiles.length !== 0
1633 async addAndSaveThumbnail (thumbnail: MThumbnail, transaction?: Transaction) {
1634 thumbnail.videoId = this.id
1636 const savedThumbnail = await thumbnail.save({ transaction })
1638 if (Array.isArray(this.Thumbnails) === false) this.Thumbnails = []
1640 this.Thumbnails = this.Thumbnails.filter(t => t.id !== savedThumbnail.id)
1641 this.Thumbnails.push(savedThumbnail)
1645 if (Array.isArray(this.Thumbnails) === false) return undefined
1647 return this.Thumbnails.find(t => t.type === ThumbnailType.MINIATURE)
1651 return !!this.getPreview()
1655 if (Array.isArray(this.Thumbnails) === false) return undefined
1657 return this.Thumbnails.find(t => t.type === ThumbnailType.PREVIEW)
1661 return this.remote === false
1664 getWatchStaticPath () {
1665 return buildVideoWatchPath({ shortUUID: uuidToShort(this.uuid) })
1668 getEmbedStaticPath () {
1669 return buildVideoEmbedPath(this)
1672 getMiniatureStaticPath () {
1673 const thumbnail = this.getMiniature()
1674 if (!thumbnail) return null
1676 return join(STATIC_PATHS.THUMBNAILS, thumbnail.filename)
1679 getPreviewStaticPath () {
1680 const preview = this.getPreview()
1681 if (!preview) return null
1683 // We use a local cache, so specify our cache endpoint instead of potential remote URL
1684 return join(LAZY_STATIC_PATHS.PREVIEWS, preview.filename)
1687 toFormattedJSON (this: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
1688 return videoModelToFormattedJSON(this, options)
1691 toFormattedDetailsJSON (this: MVideoFormattableDetails): VideoDetails {
1692 return videoModelToFormattedDetailsJSON(this)
1695 getFormattedVideoFilesJSON (includeMagnet = true): VideoFile[] {
1696 let files: VideoFile[] = []
1698 if (Array.isArray(this.VideoFiles)) {
1699 const result = videoFilesModelToFormattedJSON(this, this.VideoFiles, includeMagnet)
1700 files = files.concat(result)
1703 for (const p of (this.VideoStreamingPlaylists || [])) {
1704 const result = videoFilesModelToFormattedJSON(this, p.VideoFiles, includeMagnet)
1705 files = files.concat(result)
1711 toActivityPubObject (this: MVideoAP): VideoObject {
1712 return videoModelToActivityPubObject(this)
1715 getTruncatedDescription () {
1716 if (!this.description) return null
1718 const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
1719 return peertubeTruncate(this.description, { length: maxLength })
1723 let files: MVideoFile[] = []
1725 if (Array.isArray(this.VideoFiles)) {
1726 files = files.concat(this.VideoFiles)
1729 if (Array.isArray(this.VideoStreamingPlaylists)) {
1730 for (const p of this.VideoStreamingPlaylists) {
1731 if (Array.isArray(p.VideoFiles)) {
1732 files = files.concat(p.VideoFiles)
1740 probeMaxQualityFile () {
1741 const file = this.getMaxQualityFile()
1742 const videoOrPlaylist = file.getVideoOrStreamingPlaylist()
1744 return VideoPathManager.Instance.makeAvailableVideoFile(file.withVideoOrPlaylist(videoOrPlaylist), async originalFilePath => {
1745 const probe = await ffprobePromise(originalFilePath)
1747 const { audioStream } = await getAudioStream(originalFilePath, probe)
1752 ...await getVideoStreamDimensionsInfo(originalFilePath, probe)
1757 getDescriptionAPIPath () {
1758 return `/api/${API_VERSION}/videos/${this.uuid}/description`
1761 getHLSPlaylist (): MStreamingPlaylistFilesVideo {
1762 if (!this.VideoStreamingPlaylists) return undefined
1764 const playlist = this.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
1765 if (!playlist) return undefined
1767 playlist.Video = this
1772 setHLSPlaylist (playlist: MStreamingPlaylist) {
1773 const toAdd = [ playlist ] as [ VideoStreamingPlaylistModel ]
1775 if (Array.isArray(this.VideoStreamingPlaylists) === false || this.VideoStreamingPlaylists.length === 0) {
1776 this.VideoStreamingPlaylists = toAdd
1780 this.VideoStreamingPlaylists = this.VideoStreamingPlaylists
1781 .filter(s => s.type !== VideoStreamingPlaylistType.HLS)
1785 removeWebTorrentFile (videoFile: MVideoFile, isRedundancy = false) {
1786 const filePath = isRedundancy
1787 ? VideoPathManager.Instance.getFSRedundancyVideoFilePath(this, videoFile)
1788 : VideoPathManager.Instance.getFSVideoFileOutputPath(this, videoFile)
1790 const promises: Promise<any>[] = [ remove(filePath) ]
1791 if (!isRedundancy) promises.push(videoFile.removeTorrent())
1793 if (videoFile.storage === VideoStorage.OBJECT_STORAGE) {
1794 promises.push(removeWebTorrentObjectStorage(videoFile))
1797 return Promise.all(promises)
1800 async removeStreamingPlaylistFiles (streamingPlaylist: MStreamingPlaylist, isRedundancy = false) {
1801 const directoryPath = isRedundancy
1802 ? getHLSRedundancyDirectory(this)
1803 : getHLSDirectory(this)
1805 await remove(directoryPath)
1807 if (isRedundancy !== true) {
1808 const streamingPlaylistWithFiles = streamingPlaylist as MStreamingPlaylistFilesVideo
1809 streamingPlaylistWithFiles.Video = this
1811 if (!Array.isArray(streamingPlaylistWithFiles.VideoFiles)) {
1812 streamingPlaylistWithFiles.VideoFiles = await streamingPlaylistWithFiles.$get('VideoFiles')
1815 // Remove physical files and torrents
1817 streamingPlaylistWithFiles.VideoFiles.map(file => file.removeTorrent())
1820 if (streamingPlaylist.storage === VideoStorage.OBJECT_STORAGE) {
1821 await removeHLSObjectStorage(streamingPlaylist.withVideo(this))
1826 async removeStreamingPlaylistVideoFile (streamingPlaylist: MStreamingPlaylist, videoFile: MVideoFile) {
1827 const filePath = VideoPathManager.Instance.getFSHLSOutputPath(this, videoFile.filename)
1828 await videoFile.removeTorrent()
1829 await remove(filePath)
1831 const resolutionFilename = getHlsResolutionPlaylistFilename(videoFile.filename)
1832 await remove(VideoPathManager.Instance.getFSHLSOutputPath(this, resolutionFilename))
1834 if (videoFile.storage === VideoStorage.OBJECT_STORAGE) {
1835 await removeHLSFileObjectStorage(streamingPlaylist.withVideo(this), videoFile.filename)
1836 await removeHLSFileObjectStorage(streamingPlaylist.withVideo(this), resolutionFilename)
1840 async removeStreamingPlaylistFile (streamingPlaylist: MStreamingPlaylist, filename: string) {
1841 const filePath = VideoPathManager.Instance.getFSHLSOutputPath(this, filename)
1842 await remove(filePath)
1844 if (streamingPlaylist.storage === VideoStorage.OBJECT_STORAGE) {
1845 await removeHLSFileObjectStorage(streamingPlaylist.withVideo(this), filename)
1850 if (this.isOwned()) return false
1852 return isOutdated(this, ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL)
1855 hasPrivacyForFederation () {
1856 return isPrivacyForFederation(this.privacy)
1859 hasStateForFederation () {
1860 return isStateForFederation(this.state)
1863 isNewVideo (newPrivacy: VideoPrivacy) {
1864 return this.hasPrivacyForFederation() === false && isPrivacyForFederation(newPrivacy) === true
1867 setAsRefreshed (transaction?: Transaction) {
1868 return setAsUpdated('video', this.id, transaction)
1872 return this.privacy === VideoPrivacy.PRIVATE || this.privacy === VideoPrivacy.INTERNAL || !!this.VideoBlacklist
1875 setPrivacy (newPrivacy: VideoPrivacy) {
1876 if (this.privacy === VideoPrivacy.PRIVATE && newPrivacy !== VideoPrivacy.PRIVATE) {
1877 this.publishedAt = new Date()
1880 this.privacy = newPrivacy
1884 return this.privacy === VideoPrivacy.PRIVATE ||
1885 this.privacy === VideoPrivacy.UNLISTED ||
1886 this.privacy === VideoPrivacy.INTERNAL
1889 async setNewState (newState: VideoState, isNewVideo: boolean, transaction: Transaction) {
1890 if (this.state === newState) throw new Error('Cannot use same state ' + newState)
1892 this.state = newState
1894 if (this.state === VideoState.PUBLISHED && isNewVideo) {
1895 this.publishedAt = new Date()
1898 await this.save({ transaction })
1901 getBandwidthBits (this: MVideo, videoFile: MVideoFile) {
1902 return Math.ceil((videoFile.size * 8) / this.duration)
1906 if (this.isOwned()) {
1908 WEBSERVER.URL + '/tracker/announce',
1909 WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket'
1913 return this.Trackers.map(t => t.url)