PeerTube/server/models/video/video.ts

2107 lines
55 KiB
TypeScript
Raw Normal View History

2017-11-23 17:36:15 +01:00
import * as Bluebird from 'bluebird'
2020-07-01 16:05:30 +02:00
import { remove } from 'fs-extra'
2020-03-09 14:44:44 +01:00
import { maxBy, minBy, pick } from 'lodash'
import { join } from 'path'
2020-12-08 14:30:29 +01:00
import { FindOptions, Includeable, IncludeOptions, Op, QueryTypes, ScopeOptions, Sequelize, Transaction, WhereOptions } from 'sequelize'
2017-12-12 17:53:50 +01:00
import {
AllowNull,
BeforeDestroy,
BelongsTo,
BelongsToMany,
Column,
CreatedAt,
DataType,
Default,
ForeignKey,
HasMany,
HasOne,
Is,
IsInt,
IsUUID,
Min,
Model,
Scopes,
Table,
2018-08-31 17:18:13 +02:00
UpdatedAt
2017-12-12 17:53:50 +01:00
} from 'sequelize-typescript'
import { setAsUpdated } from '@server/helpers/database-utils'
2020-07-01 16:05:30 +02:00
import { buildNSFWFilter } from '@server/helpers/express-utils'
2020-11-04 14:16:57 +01:00
import { getPrivaciesForFederation, isPrivacyForFederation, isStateForFederation } from '@server/helpers/video'
2020-11-02 15:43:44 +01:00
import { LiveManager } from '@server/lib/live-manager'
import { getHLSDirectory, getVideoFilePath } from '@server/lib/video-paths'
2020-07-01 16:05:30 +02:00
import { getServerActor } from '@server/models/application/application'
import { ModelCache } from '@server/models/model-cache'
2021-05-12 14:09:04 +02:00
import { AttributesOnly } from '@shared/core-utils'
2020-07-01 16:05:30 +02:00
import { VideoFile } from '@shared/models/videos/video-file.model'
import { ResultList, UserRight, VideoPrivacy, VideoState } from '../../../shared'
2020-09-17 13:59:02 +02:00
import { VideoObject } from '../../../shared/models/activitypub/objects'
import { Video, VideoDetails, VideoRateType } from '../../../shared/models/videos'
2020-07-01 16:05:30 +02:00
import { ThumbnailType } from '../../../shared/models/videos/thumbnail.type'
2018-03-13 10:24:28 +01:00
import { VideoFilter } from '../../../shared/models/videos/video-query.type'
2020-07-01 16:05:30 +02:00
import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
2019-07-15 09:22:57 +02:00
import { peertubeTruncate } from '../../helpers/core-utils'
2017-12-28 11:16:08 +01:00
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
import { isBooleanValid } from '../../helpers/custom-validators/misc'
2017-12-12 17:53:50 +01:00
import {
isVideoCategoryValid,
isVideoDescriptionValid,
isVideoDurationValid,
isVideoLanguageValid,
isVideoLicenceValid,
2019-02-26 10:55:40 +01:00
isVideoNameValid,
isVideoPrivacyValid,
isVideoStateValid,
2018-03-12 11:06:15 +01:00
isVideoSupportValid
2017-12-12 17:53:50 +01:00
} from '../../helpers/custom-validators/videos'
2020-11-20 17:16:55 +01:00
import { getVideoFileResolution } from '../../helpers/ffprobe-utils'
2017-12-28 11:16:08 +01:00
import { logger } from '../../helpers/logger'
2020-07-01 16:05:30 +02:00
import { CONFIG } from '../../initializers/config'
2017-05-15 22:22:03 +02:00
import {
2018-08-22 16:15:35 +02:00
ACTIVITY_PUB,
API_VERSION,
2019-02-26 10:55:40 +01:00
CONSTRAINTS_FIELDS,
2019-08-09 11:32:40 +02:00
LAZY_STATIC_PATHS,
STATIC_PATHS,
VIDEO_CATEGORIES,
VIDEO_LANGUAGES,
VIDEO_LICENCES,
VIDEO_PRIVACIES,
2019-04-11 11:33:44 +02:00
VIDEO_STATES,
WEBSERVER
} from '../../initializers/constants'
2017-12-14 17:38:41 +01:00
import { sendDeleteVideo } from '../../lib/activitypub/send'
2019-08-15 11:53:26 +02:00
import {
MChannel,
2019-08-20 13:52:49 +02:00
MChannelAccountDefault,
2019-08-15 11:53:26 +02:00
MChannelId,
MStreamingPlaylist,
MStreamingPlaylistFilesVideo,
2019-08-15 11:53:26 +02:00
MUserAccountId,
MUserId,
MVideo,
2019-08-15 11:53:26 +02:00
MVideoAccountLight,
2019-08-20 13:52:49 +02:00
MVideoAccountLightBlacklistAllFiles,
2019-08-21 14:31:57 +02:00
MVideoAP,
2019-08-15 11:53:26 +02:00
MVideoDetails,
MVideoFileVideo,
2019-08-21 14:31:57 +02:00
MVideoFormattable,
MVideoFormattableDetails,
2019-08-20 13:52:49 +02:00
MVideoForUser,
2019-08-15 11:53:26 +02:00
MVideoFullLight,
2020-03-05 15:04:57 +01:00
MVideoIdThumbnail,
MVideoImmutable,
2019-08-15 11:53:26 +02:00
MVideoThumbnail,
2019-08-22 10:46:54 +02:00
MVideoThumbnailBlacklist,
2019-08-21 14:31:57 +02:00
MVideoWithAllFiles,
MVideoWithFile,
2020-01-28 14:45:17 +01:00
MVideoWithRights
2020-06-18 10:45:25 +02:00
} from '../../types/models'
import { MThumbnail } from '../../types/models/video/thumbnail'
import { MVideoFile, MVideoFileStreamingPlaylistVideo } from '../../types/models/video/video-file'
2020-07-01 16:05:30 +02:00
import { VideoAbuseModel } from '../abuse/video-abuse'
import { AccountModel } from '../account/account'
import { AccountVideoRateModel } from '../account/account-video-rate'
2021-05-11 11:15:29 +02:00
import { ActorModel } from '../actor/actor'
import { ActorImageModel } from '../actor/actor-image'
2020-07-01 16:05:30 +02:00
import { VideoRedundancyModel } from '../redundancy/video-redundancy'
import { ServerModel } from '../server/server'
2021-02-18 10:15:11 +01:00
import { TrackerModel } from '../server/tracker'
import { VideoTrackerModel } from '../server/video-tracker'
2021-05-11 11:15:29 +02:00
import { UserModel } from '../user/user'
import { UserVideoHistoryModel } from '../user/user-video-history'
2020-07-01 16:05:30 +02:00
import { buildTrigramSearchIndex, buildWhereIdOrUUID, getVideoSort, isOutdated, throwIfNotValid } from '../utils'
import { ScheduleVideoUpdateModel } from './schedule-video-update'
import { TagModel } from './tag'
import { ThumbnailModel } from './thumbnail'
import { VideoBlacklistModel } from './video-blacklist'
import { VideoCaptionModel } from './video-caption'
import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } from './video-channel'
import { VideoCommentModel } from './video-comment'
import { VideoFileModel } from './video-file'
import {
videoFilesModelToFormattedJSON,
VideoFormattingJSONOptions,
videoModelToActivityPubObject,
videoModelToFormattedDetailsJSON,
videoModelToFormattedJSON
} from './video-format-utils'
import { VideoImportModel } from './video-import'
2020-11-02 15:43:44 +01:00
import { VideoLiveModel } from './video-live'
2020-07-01 16:05:30 +02:00
import { VideoPlaylistElementModel } from './video-playlist-element'
2020-03-09 14:44:44 +01:00
import { buildListQuery, BuildVideosQueryOptions, wrapForAPIResults } from './video-query-builder'
2020-07-01 16:05:30 +02:00
import { VideoShareModel } from './video-share'
import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
import { VideoTagModel } from './video-tag'
import { VideoViewModel } from './video-view'
2018-10-05 11:15:06 +02:00
export enum ScopeNames {
AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
FOR_API = 'FOR_API',
2018-01-04 11:19:16 +01:00
WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
2017-12-14 10:07:57 +01:00
WITH_TAGS = 'WITH_TAGS',
2021-02-18 10:15:11 +01:00
WITH_TRACKERS = 'WITH_TRACKERS',
WITH_WEBTORRENT_FILES = 'WITH_WEBTORRENT_FILES',
2018-08-14 09:08:47 +02:00
WITH_SCHEDULED_UPDATE = 'WITH_SCHEDULED_UPDATE',
2018-10-05 11:15:06 +02:00
WITH_BLACKLISTED = 'WITH_BLACKLISTED',
2019-01-29 08:37:25 +01:00
WITH_USER_HISTORY = 'WITH_USER_HISTORY',
WITH_STREAMING_PLAYLISTS = 'WITH_STREAMING_PLAYLISTS',
WITH_USER_ID = 'WITH_USER_ID',
WITH_IMMUTABLE_ATTRIBUTES = 'WITH_IMMUTABLE_ATTRIBUTES',
2020-11-02 15:43:44 +01:00
WITH_THUMBNAILS = 'WITH_THUMBNAILS',
WITH_LIVE = 'WITH_LIVE'
2017-12-14 10:07:57 +01:00
}
2019-07-31 15:57:32 +02:00
export type ForAPIOptions = {
ids?: number[]
2019-02-26 10:55:40 +01:00
videoPlaylistId?: number
2019-07-31 15:57:32 +02:00
withAccountBlockerIds?: number[]
}
2019-07-31 15:57:32 +02:00
export type AvailableForListIDsOptions = {
serverAccountId: number
2018-12-05 14:36:05 +01:00
followerActorId: number
includeLocalVideos: boolean
2019-02-26 10:55:40 +01:00
2019-07-31 15:57:32 +02:00
attributesType?: 'none' | 'id' | 'all'
2019-04-24 17:19:00 +02:00
filter?: VideoFilter
categoryOneOf?: number[]
nsfw?: boolean
licenceOneOf?: number[]
languageOneOf?: string[]
tagsOneOf?: string[]
tagsAllOf?: string[]
2019-02-26 10:55:40 +01:00
withFiles?: boolean
2019-02-26 10:55:40 +01:00
accountId?: number
2018-07-20 14:35:18 +02:00
videoChannelId?: number
2019-02-26 10:55:40 +01:00
videoPlaylistId?: number
2018-08-31 17:18:13 +02:00
trendingDays?: number
2019-08-15 11:53:26 +02:00
user?: MUserAccountId
historyOfUser?: MUserId
baseWhere?: WhereOptions[]
2018-07-20 14:35:18 +02:00
}
2019-04-23 09:50:57 +02:00
@Scopes(() => ({
[ScopeNames.WITH_IMMUTABLE_ATTRIBUTES]: {
attributes: [ 'id', 'url', 'uuid', 'remote' ]
},
2020-01-31 16:56:52 +01:00
[ScopeNames.FOR_API]: (options: ForAPIOptions) => {
2020-12-08 14:30:29 +01:00
const include: Includeable[] = [
{
model: VideoChannelModel.scope({
method: [
VideoChannelScopeNames.SUMMARY, {
withAccount: true,
withAccountBlockerIds: options.withAccountBlockerIds
} as SummaryOptions
]
}),
required: true
},
{
attributes: [ 'type', 'filename' ],
model: ThumbnailModel,
required: false
}
]
const query: FindOptions = {}
2019-07-31 15:57:32 +02:00
if (options.ids) {
query.where = {
id: {
2020-01-31 16:56:52 +01:00
[Op.in]: options.ids
2019-07-31 15:57:32 +02:00
}
}
}
2019-02-26 10:55:40 +01:00
if (options.videoPlaylistId) {
2020-12-08 14:30:29 +01:00
include.push({
2019-02-26 10:55:40 +01:00
model: VideoPlaylistElementModel.unscoped(),
2019-03-12 11:40:42 +01:00
required: true,
where: {
videoPlaylistId: options.videoPlaylistId
}
2019-02-26 10:55:40 +01:00
})
}
2020-12-08 14:30:29 +01:00
query.include = include
return query
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_THUMBNAILS]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: ThumbnailModel,
required: false
}
]
},
2020-11-02 15:43:44 +01:00
[ScopeNames.WITH_LIVE]: {
include: [
{
2020-11-03 15:33:30 +01:00
model: VideoLiveModel.unscoped(),
2020-11-02 15:43:44 +01:00
required: false
}
]
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_USER_ID]: {
2019-01-29 08:37:25 +01:00
include: [
{
attributes: [ 'accountId' ],
2019-04-23 09:50:57 +02:00
model: VideoChannelModel.unscoped(),
2019-01-29 08:37:25 +01:00
required: true,
include: [
{
attributes: [ 'userId' ],
2019-04-23 09:50:57 +02:00
model: AccountModel.unscoped(),
2019-01-29 08:37:25 +01:00
required: true
}
]
}
2019-04-23 09:50:57 +02:00
]
2019-01-29 08:37:25 +01:00
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_ACCOUNT_DETAILS]: {
2017-12-14 10:07:57 +01:00
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoChannelModel.unscoped(),
2017-12-14 10:07:57 +01:00
required: true,
include: [
2018-01-11 14:30:27 +01:00
{
attributes: {
exclude: [ 'privateKey', 'publicKey' ]
},
2019-04-23 09:50:57 +02:00
model: ActorModel.unscoped(),
2018-01-18 17:44:04 +01:00
required: true,
include: [
{
attributes: [ 'host' ],
2019-04-23 09:50:57 +02:00
model: ServerModel.unscoped(),
2018-01-18 17:44:04 +01:00
required: false
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel.unscoped(),
as: 'Avatar',
required: false
2018-01-18 17:44:04 +01:00
}
]
2018-01-11 14:30:27 +01:00
},
2017-12-14 10:07:57 +01:00
{
2019-04-23 09:50:57 +02:00
model: AccountModel.unscoped(),
2017-12-14 10:07:57 +01:00
required: true,
include: [
{
2019-04-23 09:50:57 +02:00
model: ActorModel.unscoped(),
2018-01-11 14:30:27 +01:00
attributes: {
exclude: [ 'privateKey', 'publicKey' ]
},
2017-12-14 17:38:41 +01:00
required: true,
include: [
{
2018-01-18 17:44:04 +01:00
attributes: [ 'host' ],
2019-04-23 09:50:57 +02:00
model: ServerModel.unscoped(),
2017-12-14 17:38:41 +01:00
required: false
2018-02-16 11:19:54 +01:00
},
{
2021-04-06 11:35:56 +02:00
model: ActorImageModel.unscoped(),
as: 'Avatar',
2018-02-16 11:19:54 +01:00
required: false
2017-12-14 17:38:41 +01:00
}
]
2017-12-14 10:07:57 +01:00
}
]
}
]
}
2019-04-23 09:50:57 +02:00
]
2017-12-14 10:07:57 +01:00
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_TAGS]: {
2019-04-23 09:50:57 +02:00
include: [ TagModel ]
2017-12-14 10:07:57 +01:00
},
2021-02-18 10:15:11 +01:00
[ScopeNames.WITH_TRACKERS]: {
include: [
{
attributes: [ 'id', 'url' ],
model: TrackerModel
}
]
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_BLACKLISTED]: {
2018-08-14 09:08:47 +02:00
include: [
{
2019-08-15 11:53:26 +02:00
attributes: [ 'id', 'reason', 'unfederated' ],
2019-04-23 09:50:57 +02:00
model: VideoBlacklistModel,
2018-08-14 09:08:47 +02:00
required: false
}
]
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_WEBTORRENT_FILES]: (withRedundancies = false) => {
2019-01-29 08:37:25 +01:00
let subInclude: any[] = []
if (withRedundancies === true) {
subInclude = [
{
attributes: [ 'fileUrl' ],
model: VideoRedundancyModel.unscoped(),
required: false
}
]
}
return {
include: [
{
model: VideoFileModel,
2021-02-25 11:17:53 +01:00
separate: true,
2019-01-29 08:37:25 +01:00
required: false,
include: subInclude
}
]
}
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_STREAMING_PLAYLISTS]: (withRedundancies = false) => {
const subInclude: IncludeOptions[] = [
{
model: VideoFileModel,
required: false
}
]
2019-01-29 08:37:25 +01:00
if (withRedundancies === true) {
subInclude.push({
attributes: [ 'fileUrl' ],
model: VideoRedundancyModel.unscoped(),
required: false
})
2019-01-29 08:37:25 +01:00
}
return {
include: [
{
model: VideoStreamingPlaylistModel.unscoped(),
required: false,
2021-02-25 11:17:53 +01:00
separate: true,
2019-01-29 08:37:25 +01:00
include: subInclude
}
]
}
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_SCHEDULED_UPDATE]: {
include: [
{
2019-04-23 09:50:57 +02:00
model: ScheduleVideoUpdateModel.unscoped(),
required: false
}
]
2018-10-05 11:15:06 +02:00
},
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_USER_HISTORY]: (userId: number) => {
2018-10-05 11:15:06 +02:00
return {
include: [
{
attributes: [ 'currentTime' ],
model: UserVideoHistoryModel.unscoped(),
required: false,
where: {
userId
}
}
]
}
2017-12-14 10:07:57 +01:00
}
2019-04-23 09:50:57 +02:00
}))
2017-12-12 17:53:50 +01:00
@Table({
tableName: 'video',
2020-01-28 14:45:17 +01:00
indexes: [
buildTrigramSearchIndex('video_name_trigram', 'name'),
{ fields: [ 'createdAt' ] },
{
fields: [
{ name: 'publishedAt', order: 'DESC' },
{ name: 'id', order: 'ASC' }
]
},
{ fields: [ 'duration' ] },
2021-03-03 11:24:16 +01:00
{
fields: [
{ name: 'views', order: 'DESC' },
{ name: 'id', order: 'ASC' }
]
},
2020-01-28 14:45:17 +01:00
{ fields: [ 'channelId' ] },
{
fields: [ 'originallyPublishedAt' ],
where: {
originallyPublishedAt: {
[Op.ne]: null
}
}
},
{
fields: [ 'category' ], // We don't care videos with an unknown category
where: {
category: {
[Op.ne]: null
}
}
},
{
fields: [ 'licence' ], // We don't care videos with an unknown licence
where: {
licence: {
[Op.ne]: null
}
}
},
{
fields: [ 'language' ], // We don't care videos with an unknown language
where: {
language: {
[Op.ne]: null
}
}
},
{
fields: [ 'nsfw' ], // Most of the videos are not NSFW
where: {
nsfw: true
}
},
{
fields: [ 'remote' ], // Only index local videos
where: {
remote: false
}
},
{
fields: [ 'uuid' ],
unique: true
},
{
fields: [ 'url' ],
unique: true
}
]
2017-12-12 17:53:50 +01:00
})
2021-05-12 14:09:04 +02:00
export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> {
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Default(DataType.UUIDV4)
@IsUUID(4)
@Column(DataType.UUID)
uuid: string
@AllowNull(false)
@Is('VideoName', value => throwIfNotValid(value, isVideoNameValid, 'name'))
@Column
name: string
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoCategory', value => throwIfNotValid(value, isVideoCategoryValid, 'category', true))
2017-12-12 17:53:50 +01:00
@Column
category: number
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoLicence', value => throwIfNotValid(value, isVideoLicenceValid, 'licence', true))
2017-12-12 17:53:50 +01:00
@Column
licence: number
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoLanguage', value => throwIfNotValid(value, isVideoLanguageValid, 'language', true))
2018-04-23 14:39:52 +02:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
language: string
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
@Column
2020-06-16 14:13:01 +02:00
privacy: VideoPrivacy
2017-12-12 17:53:50 +01:00
@AllowNull(false)
2018-01-03 10:12:36 +01:00
@Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
2017-12-12 17:53:50 +01:00
@Column
nsfw: boolean
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description', true))
2017-12-12 17:53:50 +01:00
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
description: string
@AllowNull(true)
@Default(null)
2019-04-18 11:28:17 +02:00
@Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support', true))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
support: string
2017-12-12 17:53:50 +01:00
@AllowNull(false)
@Is('VideoDuration', value => throwIfNotValid(value, isVideoDurationValid, 'duration'))
@Column
duration: number
@AllowNull(false)
@Default(0)
@IsInt
@Min(0)
@Column
views: number
@AllowNull(false)
@Default(0)
@IsInt
@Min(0)
@Column
likes: number
@AllowNull(false)
@Default(0)
@IsInt
@Min(0)
@Column
dislikes: number
@AllowNull(false)
@Column
remote: boolean
@AllowNull(false)
@Default(false)
@Column
isLive: boolean
@AllowNull(false)
2017-12-12 17:53:50 +01:00
@Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
url: string
2018-01-03 10:12:36 +01:00
@AllowNull(false)
@Column
commentsEnabled: boolean
@AllowNull(false)
@Column
downloadEnabled: boolean
@AllowNull(false)
@Column
waitTranscoding: boolean
@AllowNull(false)
@Default(null)
@Is('VideoState', value => throwIfNotValid(value, isVideoStateValid, 'state'))
@Column
state: VideoState
2017-12-12 17:53:50 +01:00
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@AllowNull(false)
2019-04-18 11:28:17 +02:00
@Default(DataType.NOW)
@Column
publishedAt: Date
2019-02-11 14:41:55 +01:00
@AllowNull(true)
@Default(null)
2019-01-12 14:41:45 +01:00
@Column
originallyPublishedAt: Date
2017-12-12 17:53:50 +01:00
@ForeignKey(() => VideoChannelModel)
@Column
channelId: number
@BelongsTo(() => VideoChannelModel, {
2016-12-11 21:50:51 +01:00
foreignKey: {
2017-12-14 17:38:41 +01:00
allowNull: true
2016-12-11 21:50:51 +01:00
},
2018-04-25 10:21:38 +02:00
hooks: true
2016-12-11 21:50:51 +01:00
})
2017-12-12 17:53:50 +01:00
VideoChannel: VideoChannelModel
2016-12-24 16:59:17 +01:00
2017-12-12 17:53:50 +01:00
@BelongsToMany(() => TagModel, {
2016-12-24 16:59:17 +01:00
foreignKey: 'videoId',
2017-12-12 17:53:50 +01:00
through: () => VideoTagModel,
onDelete: 'CASCADE'
2016-12-24 16:59:17 +01:00
})
2017-12-12 17:53:50 +01:00
Tags: TagModel[]
2017-01-04 20:59:23 +01:00
2021-02-18 10:15:11 +01:00
@BelongsToMany(() => TrackerModel, {
foreignKey: 'videoId',
through: () => VideoTrackerModel,
onDelete: 'CASCADE'
})
Trackers: TrackerModel[]
@HasMany(() => ThumbnailModel, {
foreignKey: {
name: 'videoId',
allowNull: true
},
hooks: true,
onDelete: 'cascade'
})
Thumbnails: ThumbnailModel[]
2019-02-26 10:55:40 +01:00
@HasMany(() => VideoPlaylistElementModel, {
foreignKey: {
name: 'videoId',
2019-07-31 15:57:32 +02:00
allowNull: true
2019-02-26 10:55:40 +01:00
},
2019-07-31 15:57:32 +02:00
onDelete: 'set null'
2019-02-26 10:55:40 +01:00
})
VideoPlaylistElements: VideoPlaylistElementModel[]
2017-12-12 17:53:50 +01:00
@HasMany(() => VideoAbuseModel, {
2017-01-04 20:59:23 +01:00
foreignKey: {
name: 'videoId',
allowNull: true
2017-01-04 20:59:23 +01:00
},
onDelete: 'set null'
2017-01-04 20:59:23 +01:00
})
2017-12-12 17:53:50 +01:00
VideoAbuses: VideoAbuseModel[]
2017-12-12 17:53:50 +01:00
@HasMany(() => VideoFileModel, {
foreignKey: {
name: 'videoId',
allowNull: true
},
2018-09-11 16:27:07 +02:00
hooks: true,
onDelete: 'cascade'
})
2017-12-12 17:53:50 +01:00
VideoFiles: VideoFileModel[]
2017-11-21 18:23:10 +01:00
2019-01-29 08:37:25 +01:00
@HasMany(() => VideoStreamingPlaylistModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
hooks: true,
onDelete: 'cascade'
})
VideoStreamingPlaylists: VideoStreamingPlaylistModel[]
2017-12-12 17:53:50 +01:00
@HasMany(() => VideoShareModel, {
2017-11-21 18:23:10 +01:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2017-12-12 17:53:50 +01:00
VideoShares: VideoShareModel[]
2017-11-23 16:55:13 +01:00
2017-12-12 17:53:50 +01:00
@HasMany(() => AccountVideoRateModel, {
2017-11-23 16:55:13 +01:00
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
2017-12-12 17:53:50 +01:00
AccountVideoRates: AccountVideoRateModel[]
2016-11-11 15:20:03 +01:00
2017-12-28 11:16:08 +01:00
@HasMany(() => VideoCommentModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade',
hooks: true
2017-12-28 11:16:08 +01:00
})
VideoComments: VideoCommentModel[]
2018-08-31 17:18:13 +02:00
@HasMany(() => VideoViewModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
2018-10-05 11:15:06 +02:00
onDelete: 'cascade'
2018-08-31 17:18:13 +02:00
})
VideoViews: VideoViewModel[]
2018-10-05 11:15:06 +02:00
@HasMany(() => UserVideoHistoryModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
UserVideoHistories: UserVideoHistoryModel[]
@HasOne(() => ScheduleVideoUpdateModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
ScheduleVideoUpdate: ScheduleVideoUpdateModel
2018-08-13 16:57:13 +02:00
@HasOne(() => VideoBlacklistModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
VideoBlacklist: VideoBlacklistModel
2020-10-27 16:06:24 +01:00
@HasOne(() => VideoLiveModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade'
})
VideoLive: VideoLiveModel
@HasOne(() => VideoImportModel, {
foreignKey: {
name: 'videoId',
allowNull: true
},
onDelete: 'set null'
})
VideoImport: VideoImportModel
2018-07-12 19:02:00 +02:00
@HasMany(() => VideoCaptionModel, {
foreignKey: {
name: 'videoId',
allowNull: false
},
onDelete: 'cascade',
hooks: true,
2020-01-31 16:56:52 +01:00
['separate' as any]: true
2018-07-12 19:02:00 +02:00
})
VideoCaptions: VideoCaptionModel[]
@BeforeDestroy
2019-08-15 11:53:26 +02:00
static async sendDelete (instance: MVideoAccountLight, options) {
2021-03-09 16:10:52 +01:00
if (!instance.isOwned()) return undefined
2021-03-09 16:10:52 +01:00
// Lazy load channels
if (!instance.VideoChannel) {
instance.VideoChannel = await instance.$get('VideoChannel', {
include: [
ActorModel,
AccountModel
],
transaction: options.transaction
}) as MChannelAccountDefault
}
2021-03-09 16:10:52 +01:00
return sendDeleteVideo(instance, options.transaction)
}
2018-04-25 10:21:38 +02:00
@BeforeDestroy
2018-07-12 19:02:00 +02:00
static async removeFiles (instance: VideoModel) {
const tasks: Promise<any>[] = []
2016-11-11 15:20:03 +01:00
2018-07-30 17:02:40 +02:00
logger.info('Removing files of video %s.', instance.url)
2018-04-25 10:21:38 +02:00
2017-12-12 17:53:50 +01:00
if (instance.isOwned()) {
if (!Array.isArray(instance.VideoFiles)) {
instance.VideoFiles = await instance.$get('VideoFiles')
}
2017-12-12 17:53:50 +01:00
// Remove physical files and torrents
instance.VideoFiles.forEach(file => {
tasks.push(instance.removeFile(file))
tasks.push(file.removeTorrent())
2017-12-12 17:53:50 +01:00
})
2019-01-29 08:37:25 +01:00
// Remove playlists file
2020-01-24 16:48:05 +01:00
if (!Array.isArray(instance.VideoStreamingPlaylists)) {
instance.VideoStreamingPlaylists = await instance.$get('VideoStreamingPlaylists')
}
for (const p of instance.VideoStreamingPlaylists) {
tasks.push(instance.removeStreamingPlaylistFiles(p))
}
2017-12-12 17:53:50 +01:00
}
2018-04-25 10:21:38 +02:00
// Do not wait video deletion because we could be in a transaction
Promise.all(tasks)
2018-09-03 18:05:12 +02:00
.catch(err => {
logger.error('Some errors when removing files of video %s in before destroy hook.', instance.uuid, { err })
})
2018-04-25 10:21:38 +02:00
return undefined
2017-12-12 17:53:50 +01:00
}
2016-11-11 15:20:03 +01:00
@BeforeDestroy
static stopLiveIfNeeded (instance: VideoModel) {
if (!instance.isLive) return
2020-11-04 14:16:57 +01:00
logger.info('Stopping live of video %s after video deletion.', instance.uuid)
return LiveManager.Instance.stopSessionOf(instance.id)
}
@BeforeDestroy
static invalidateCache (instance: VideoModel) {
ModelCache.Instance.invalidateCache('video', instance.id)
}
@BeforeDestroy
static async saveEssentialDataToAbuses (instance: VideoModel, options) {
const tasks: Promise<any>[] = []
if (!Array.isArray(instance.VideoAbuses)) {
instance.VideoAbuses = await instance.$get('VideoAbuses')
if (instance.VideoAbuses.length === 0) return undefined
}
2020-07-07 10:57:04 +02:00
logger.info('Saving video abuses details of video %s.', instance.url)
2021-03-09 16:10:52 +01:00
if (!instance.Trackers) instance.Trackers = await instance.$get('Trackers', { transaction: options.transaction })
const details = instance.toFormattedDetailsJSON()
for (const abuse of instance.VideoAbuses) {
abuse.deletedVideo = details
tasks.push(abuse.save({ transaction: options.transaction }))
}
Promise.all(tasks)
.catch(err => {
logger.error('Some errors when saving details of video %s in its abuses before destroy hook.', instance.uuid, { err })
})
return undefined
}
static listLocal (): Promise<MVideo[]> {
const query = {
where: {
remote: false
}
}
return VideoModel.findAll(query)
}
2017-12-14 17:38:41 +01:00
static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
2017-12-12 17:53:50 +01:00
function getRawQuery (select: string) {
const queryVideo = 'SELECT ' + select + ' FROM "video" AS "Video" ' +
'INNER JOIN "videoChannel" AS "VideoChannel" ON "VideoChannel"."id" = "Video"."channelId" ' +
2017-12-14 17:38:41 +01:00
'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
'WHERE "Account"."actorId" = ' + actorId
2017-12-12 17:53:50 +01:00
const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
2017-12-14 17:38:41 +01:00
'WHERE "VideoShare"."actorId" = ' + actorId
2017-12-12 17:53:50 +01:00
return `(${queryVideo}) UNION (${queryVideoShare})`
}
2017-12-12 17:53:50 +01:00
const rawQuery = getRawQuery('"Video"."id"')
const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
const query = {
distinct: true,
offset: start,
limit: count,
2020-05-05 14:08:07 +02:00
order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ] as any), // FIXME: sequelize typings
2017-12-12 17:53:50 +01:00
where: {
id: {
2020-01-31 16:56:52 +01:00
[Op.in]: Sequelize.literal('(' + rawQuery + ')')
},
[Op.or]: getPrivaciesForFederation()
2017-12-12 17:53:50 +01:00
},
include: [
2018-07-12 19:02:00 +02:00
{
2021-04-08 15:04:14 +02:00
attributes: [ 'filename', 'language', 'fileUrl' ],
2018-07-12 19:02:00 +02:00
model: VideoCaptionModel.unscoped(),
required: false
},
2017-12-12 17:53:50 +01:00
{
attributes: [ 'id', 'url' ],
model: VideoShareModel.unscoped(),
2017-12-12 17:53:50 +01:00
required: false,
2018-05-28 12:13:00 +02:00
// We only want videos shared by this actor
where: {
2020-01-31 16:56:52 +01:00
[Op.and]: [
2018-05-28 12:13:00 +02:00
{
id: {
2020-01-31 16:56:52 +01:00
[Op.not]: null
2018-05-28 12:13:00 +02:00
}
},
{
actorId
}
]
},
2017-12-14 17:38:41 +01:00
include: [
{
attributes: [ 'id', 'url' ],
model: ActorModel.unscoped()
2017-12-14 17:38:41 +01:00
}
]
2017-12-12 17:53:50 +01:00
},
{
model: VideoChannelModel.unscoped(),
2017-12-12 17:53:50 +01:00
required: true,
include: [
{
attributes: [ 'name' ],
model: AccountModel.unscoped(),
required: true,
include: [
{
2018-05-28 12:13:00 +02:00
attributes: [ 'id', 'url', 'followersUrl' ],
model: ActorModel.unscoped(),
required: true
}
]
},
{
2018-05-28 12:13:00 +02:00
attributes: [ 'id', 'url', 'followersUrl' ],
model: ActorModel.unscoped(),
2017-12-12 17:53:50 +01:00
required: true
}
]
},
2020-11-02 15:43:44 +01:00
{
model: VideoStreamingPlaylistModel.unscoped(),
required: false,
include: [
{
model: VideoFileModel,
required: false
}
]
},
2020-11-06 11:22:12 +01:00
VideoLiveModel.unscoped(),
2017-12-12 17:53:50 +01:00
VideoFileModel,
TagModel
2017-12-12 17:53:50 +01:00
]
}
2017-12-12 17:53:50 +01:00
return Bluebird.all([
2019-04-23 09:50:57 +02:00
VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findAll(query),
VideoModel.sequelize.query<{ total: string }>(rawCountQuery, { type: QueryTypes.SELECT })
2017-12-12 17:53:50 +01:00
]).then(([ rows, totals ]) => {
// totals: totalVideos + totalVideoShares
let totalVideos = 0
let totalVideoShares = 0
2020-01-31 16:56:52 +01:00
if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
2017-12-12 17:53:50 +01:00
const total = totalVideos + totalVideoShares
return {
data: rows,
total: total
}
})
}
2021-05-28 13:05:59 +02:00
static async listPublishedLiveUUIDs () {
2020-11-13 14:36:30 +01:00
const options = {
2021-05-28 13:05:59 +02:00
attributes: [ 'uuid' ],
2020-11-13 14:36:30 +01:00
where: {
isLive: true,
2021-05-26 12:03:44 +02:00
remote: false,
2020-11-13 14:36:30 +01:00
state: VideoState.PUBLISHED
}
}
2020-12-08 14:30:29 +01:00
const result = await VideoModel.findAll(options)
2021-05-28 13:05:59 +02:00
return result.map(v => v.uuid)
2020-11-13 14:36:30 +01:00
}
2021-01-20 15:28:34 +01:00
static listUserVideosForApi (options: {
accountId: number
start: number
count: number
sort: string
isLive?: boolean
search?: string
2021-01-20 15:28:34 +01:00
}) {
const { accountId, start, count, sort, search, isLive } = options
2021-01-20 15:28:34 +01:00
2019-04-23 09:50:57 +02:00
function buildBaseQuery (): FindOptions {
const where: WhereOptions = {}
if (search) {
where.name = {
[Op.iLike]: '%' + search + '%'
}
}
if (isLive) {
where.isLive = isLive
}
const baseQuery = {
2019-04-23 09:50:57 +02:00
offset: start,
limit: count,
where,
2019-04-23 09:50:57 +02:00
order: getVideoSort(sort),
include: [
{
model: VideoChannelModel,
required: true,
include: [
{
model: AccountModel,
where: {
id: accountId
},
required: true
}
]
}
]
}
return baseQuery
2017-12-12 17:53:50 +01:00
}
2017-10-16 10:05:49 +02:00
2019-04-23 09:50:57 +02:00
const countQuery = buildBaseQuery()
const findQuery = buildBaseQuery()
const findScopes: (string | ScopeOptions)[] = [
2019-04-26 10:20:58 +02:00
ScopeNames.WITH_SCHEDULED_UPDATE,
ScopeNames.WITH_BLACKLISTED,
ScopeNames.WITH_THUMBNAILS
]
2019-04-23 09:50:57 +02:00
return Promise.all([
VideoModel.count(countQuery),
2019-08-20 13:52:49 +02:00
VideoModel.scope(findScopes).findAll<MVideoForUser>(findQuery)
2019-04-23 09:50:57 +02:00
]).then(([ count, rows ]) => {
return {
2019-08-20 13:52:49 +02:00
data: rows,
2019-04-23 09:50:57 +02:00
total: count
}
})
2017-12-12 17:53:50 +01:00
}
2018-04-24 17:05:32 +02:00
static async listForApi (options: {
2020-01-31 16:56:52 +01:00
start: number
count: number
sort: string
2020-01-31 16:56:52 +01:00
nsfw: boolean
filter?: VideoFilter
isLive?: boolean
2020-01-31 16:56:52 +01:00
includeLocalVideos: boolean
withFiles: boolean
2020-01-31 16:56:52 +01:00
categoryOneOf?: number[]
licenceOneOf?: number[]
languageOneOf?: string[]
tagsOneOf?: string[]
tagsAllOf?: string[]
2020-01-31 16:56:52 +01:00
accountId?: number
videoChannelId?: number
2018-12-05 14:36:05 +01:00
followerActorId?: number
2020-01-31 16:56:52 +01:00
videoPlaylistId?: number
2020-01-31 16:56:52 +01:00
trendingDays?: number
2020-01-31 16:56:52 +01:00
user?: MUserAccountId
historyOfUser?: MUserId
2020-01-08 14:15:16 +01:00
countVideos?: boolean
search?: string
2020-01-08 14:15:16 +01:00
}) {
if ((options.filter === 'all-local' || options.filter === 'all') && !options.user.hasRight(UserRight.SEE_ALL_VIDEOS)) {
throw new Error('Try to filter all-local but no user has not the see all videos right')
}
2020-03-05 15:04:57 +01:00
const trendingDays = options.sort.endsWith('trending')
? CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
: undefined
let trendingAlgorithm
if (options.sort.endsWith('hot')) trendingAlgorithm = 'hot'
if (options.sort.endsWith('best')) trendingAlgorithm = 'best'
const serverActor = await getServerActor()
2018-12-05 14:36:05 +01:00
// followerActorId === null has a meaning, so just check undefined
2020-03-05 15:04:57 +01:00
const followerActorId = options.followerActorId !== undefined
? options.followerActorId
: serverActor.id
const queryOptions = {
2020-03-05 15:04:57 +01:00
start: options.start,
count: options.count,
sort: options.sort,
2018-12-05 14:36:05 +01:00
followerActorId,
serverAccountId: serverActor.Account.id,
nsfw: options.nsfw,
isLive: options.isLive,
categoryOneOf: options.categoryOneOf,
licenceOneOf: options.licenceOneOf,
languageOneOf: options.languageOneOf,
tagsOneOf: options.tagsOneOf,
tagsAllOf: options.tagsAllOf,
filter: options.filter,
withFiles: options.withFiles,
accountId: options.accountId,
videoChannelId: options.videoChannelId,
2019-02-26 10:55:40 +01:00
videoPlaylistId: options.videoPlaylistId,
2018-08-31 17:18:13 +02:00
includeLocalVideos: options.includeLocalVideos,
user: options.user,
historyOfUser: options.historyOfUser,
trendingDays,
trendingAlgorithm,
search: options.search
2018-04-24 17:05:32 +02:00
}
2020-03-05 15:04:57 +01:00
return VideoModel.getAvailableForApi(queryOptions, options.countVideos)
}
2018-07-20 18:31:49 +02:00
static async searchAndPopulateAccountAndServer (options: {
includeLocalVideos: boolean
search?: string
2018-07-20 18:31:49 +02:00
start?: number
count?: number
sort?: string
startDate?: string // ISO 8601
endDate?: string // ISO 8601
originallyPublishedStartDate?: string
originallyPublishedEndDate?: string
2018-07-20 18:31:49 +02:00
nsfw?: boolean
isLive?: boolean
2018-07-20 18:31:49 +02:00
categoryOneOf?: number[]
licenceOneOf?: number[]
languageOneOf?: string[]
tagsOneOf?: string[]
tagsAllOf?: string[]
durationMin?: number // seconds
durationMax?: number // seconds
2020-01-31 16:56:52 +01:00
user?: MUserAccountId
filter?: VideoFilter
2018-07-20 18:31:49 +02:00
}) {
const serverActor = await getServerActor()
const queryOptions = {
2018-12-05 14:36:05 +01:00
followerActorId: serverActor.id,
serverAccountId: serverActor.Account.id,
includeLocalVideos: options.includeLocalVideos,
nsfw: options.nsfw,
isLive: options.isLive,
categoryOneOf: options.categoryOneOf,
licenceOneOf: options.licenceOneOf,
languageOneOf: options.languageOneOf,
tagsOneOf: options.tagsOneOf,
2018-10-05 11:15:06 +02:00
tagsAllOf: options.tagsAllOf,
user: options.user,
filter: options.filter,
2020-03-05 15:04:57 +01:00
start: options.start,
count: options.count,
sort: options.sort,
2020-03-05 15:04:57 +01:00
startDate: options.startDate,
endDate: options.endDate,
2020-03-05 15:04:57 +01:00
originallyPublishedStartDate: options.originallyPublishedStartDate,
originallyPublishedEndDate: options.originallyPublishedEndDate,
durationMin: options.durationMin,
durationMax: options.durationMax,
search: options.search
2018-04-24 17:05:32 +02:00
}
2020-03-05 15:04:57 +01:00
return VideoModel.getAvailableForApi(queryOptions)
}
2020-10-28 15:24:40 +01:00
static countLocalLives () {
const options = {
where: {
remote: false,
isLive: true,
state: {
[Op.ne]: VideoState.LIVE_ENDED
}
2020-10-28 15:24:40 +01:00
}
}
return VideoModel.count(options)
}
static countVideosUploadedByUserSince (userId: number, since: Date) {
const options = {
include: [
{
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
model: AccountModel.unscoped(),
required: true,
include: [
{
model: UserModel.unscoped(),
required: true,
where: {
id: userId
}
}
]
}
]
}
],
where: {
createdAt: {
[Op.gte]: since
}
}
}
return VideoModel.unscoped().count(options)
}
2020-10-28 15:24:40 +01:00
static countLivesOfAccount (accountId: number) {
const options = {
where: {
remote: false,
isLive: true,
state: {
[Op.ne]: VideoState.LIVE_ENDED
}
2020-10-28 15:24:40 +01:00
},
include: [
{
required: true,
model: VideoChannelModel.unscoped(),
where: {
accountId
}
}
]
}
return VideoModel.count(options)
}
2020-12-08 14:30:29 +01:00
static load (id: number | string, t?: Transaction): Promise<MVideoThumbnail> {
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
const options = {
where,
transaction: t
2017-12-12 17:53:50 +01:00
}
2017-10-16 10:05:49 +02:00
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
2017-12-12 17:53:50 +01:00
}
2017-10-16 10:05:49 +02:00
2020-12-08 14:30:29 +01:00
static loadWithBlacklist (id: number | string, t?: Transaction): Promise<MVideoThumbnailBlacklist> {
2019-08-22 10:46:54 +02:00
const where = buildWhereIdOrUUID(id)
const options = {
where,
transaction: t
}
return VideoModel.scope([
ScopeNames.WITH_THUMBNAILS,
ScopeNames.WITH_BLACKLISTED
]).findOne(options)
}
2020-12-08 14:30:29 +01:00
static loadImmutableAttributes (id: number | string, t?: Transaction): Promise<MVideoImmutable> {
const fun = () => {
const query = {
where: buildWhereIdOrUUID(id),
transaction: t
}
return VideoModel.scope(ScopeNames.WITH_IMMUTABLE_ATTRIBUTES).findOne(query)
}
return ModelCache.Instance.doCache({
cacheType: 'load-video-immutable-id',
key: '' + id,
deleteKey: 'video',
fun
})
}
2020-12-08 14:30:29 +01:00
static loadWithRights (id: number | string, t?: Transaction): Promise<MVideoWithRights> {
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
2019-01-29 08:37:25 +01:00
const options = {
where,
transaction: t
}
return VideoModel.scope([
ScopeNames.WITH_BLACKLISTED,
2021-02-25 11:17:53 +01:00
ScopeNames.WITH_USER_ID
]).findOne(options)
2019-01-29 08:37:25 +01:00
}
2020-12-08 14:30:29 +01:00
static loadOnlyId (id: number | string, t?: Transaction): Promise<MVideoIdThumbnail> {
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
2017-12-12 17:53:50 +01:00
const options = {
attributes: [ 'id' ],
where,
transaction: t
2017-12-12 17:53:50 +01:00
}
2017-10-24 19:41:09 +02:00
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
}
2020-12-08 14:30:29 +01:00
static loadWithFiles (id: number | string, t?: Transaction, logging?: boolean): Promise<MVideoWithAllFiles> {
2019-08-09 15:04:36 +02:00
const where = buildWhereIdOrUUID(id)
const query = {
where,
transaction: t,
logging
}
return VideoModel.scope([
ScopeNames.WITH_WEBTORRENT_FILES,
ScopeNames.WITH_STREAMING_PLAYLISTS,
ScopeNames.WITH_THUMBNAILS
2019-08-09 15:04:36 +02:00
]).findOne(query)
2017-12-12 17:53:50 +01:00
}
2017-10-24 19:41:09 +02:00
2020-12-08 14:30:29 +01:00
static loadByUUID (uuid: string): Promise<MVideoThumbnail> {
2017-12-20 11:05:10 +01:00
const options = {
where: {
uuid
}
}
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
2017-12-20 11:05:10 +01:00
}
2020-12-08 14:30:29 +01:00
static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoThumbnail> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
where: {
url
2018-09-19 11:16:23 +02:00
},
transaction
}
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(query)
2018-09-19 11:16:23 +02:00
}
2020-12-08 14:30:29 +01:00
static loadByUrlImmutableAttributes (url: string, transaction?: Transaction): Promise<MVideoImmutable> {
const fun = () => {
const query: FindOptions = {
where: {
url
},
transaction
}
return VideoModel.scope(ScopeNames.WITH_IMMUTABLE_ATTRIBUTES).findOne(query)
}
return ModelCache.Instance.doCache({
cacheType: 'load-video-immutable-url',
key: url,
deleteKey: 'video',
fun
})
}
2020-12-08 14:30:29 +01:00
static loadByUrlAndPopulateAccount (url: string, transaction?: Transaction): Promise<MVideoAccountLightBlacklistAllFiles> {
2019-04-18 11:28:17 +02:00
const query: FindOptions = {
2018-09-19 11:16:23 +02:00
where: {
url
},
transaction
}
2019-01-29 08:37:25 +01:00
return VideoModel.scope([
ScopeNames.WITH_ACCOUNT_DETAILS,
ScopeNames.WITH_WEBTORRENT_FILES,
ScopeNames.WITH_STREAMING_PLAYLISTS,
2019-08-15 11:53:26 +02:00
ScopeNames.WITH_THUMBNAILS,
ScopeNames.WITH_BLACKLISTED
2019-01-29 08:37:25 +01:00
]).findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadAndPopulateAccountAndServerAndTags (id: number | string, t?: Transaction, userId?: number): Promise<MVideoFullLight> {
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
2017-12-12 17:53:50 +01:00
const options = {
2019-04-23 09:50:57 +02:00
order: [ [ 'Tags', 'name', 'ASC' ] ] as any,
where,
transaction: t
2017-12-12 17:53:50 +01:00
}
2017-10-31 11:52:52 +01:00
2019-04-23 09:50:57 +02:00
const scopes: (string | ScopeOptions)[] = [
2018-10-05 11:15:06 +02:00
ScopeNames.WITH_TAGS,
ScopeNames.WITH_BLACKLISTED,
2019-01-29 08:37:25 +01:00
ScopeNames.WITH_ACCOUNT_DETAILS,
ScopeNames.WITH_SCHEDULED_UPDATE,
ScopeNames.WITH_WEBTORRENT_FILES,
ScopeNames.WITH_STREAMING_PLAYLISTS,
2020-11-02 15:43:44 +01:00
ScopeNames.WITH_THUMBNAILS,
ScopeNames.WITH_LIVE
2019-01-29 08:37:25 +01:00
]
if (userId) {
2019-04-23 09:50:57 +02:00
scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] })
2019-01-29 08:37:25 +01:00
}
return VideoModel
.scope(scopes)
.findOne(options)
}
2019-07-19 17:30:41 +02:00
static loadForGetAPI (parameters: {
2020-01-31 16:56:52 +01:00
id: number | string
t?: Transaction
2019-07-19 17:30:41 +02:00
userId?: number
2020-12-08 14:30:29 +01:00
}): Promise<MVideoDetails> {
2019-07-19 17:30:41 +02:00
const { id, t, userId } = parameters
2019-02-26 10:55:40 +01:00
const where = buildWhereIdOrUUID(id)
2019-01-29 08:37:25 +01:00
const options = {
2019-04-18 11:28:17 +02:00
order: [ [ 'Tags', 'name', 'ASC' ] ] as any, // FIXME: sequelize typings
2019-01-29 08:37:25 +01:00
where,
transaction: t
}
2019-04-23 09:50:57 +02:00
const scopes: (string | ScopeOptions)[] = [
2019-01-29 08:37:25 +01:00
ScopeNames.WITH_TAGS,
ScopeNames.WITH_BLACKLISTED,
2018-10-05 11:15:06 +02:00
ScopeNames.WITH_ACCOUNT_DETAILS,
2019-01-29 08:37:25 +01:00
ScopeNames.WITH_SCHEDULED_UPDATE,
ScopeNames.WITH_THUMBNAILS,
2020-11-02 15:43:44 +01:00
ScopeNames.WITH_LIVE,
2021-02-18 10:15:11 +01:00
ScopeNames.WITH_TRACKERS,
{ method: [ ScopeNames.WITH_WEBTORRENT_FILES, true ] },
2019-04-23 09:50:57 +02:00
{ method: [ ScopeNames.WITH_STREAMING_PLAYLISTS, true ] }
2018-10-05 11:15:06 +02:00
]
if (userId) {
2019-04-23 09:50:57 +02:00
scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] })
2018-10-05 11:15:06 +02:00
}
2017-12-14 10:07:57 +01:00
return VideoModel
2018-10-05 11:15:06 +02:00
.scope(scopes)
2017-12-28 11:16:08 +01:00
.findOne(options)
}
2018-02-28 18:04:46 +01:00
static async getStats () {
const totalLocalVideos = await VideoModel.count({
where: {
remote: false
}
})
let totalLocalVideoViews = await VideoModel.sum('views', {
where: {
remote: false
}
})
2020-03-13 13:43:26 +01:00
2018-02-28 18:04:46 +01:00
// Sequelize could return null...
if (!totalLocalVideoViews) totalLocalVideoViews = 0
2020-03-13 13:43:26 +01:00
const { total: totalVideos } = await VideoModel.listForApi({
start: 0,
count: 0,
sort: '-publishedAt',
nsfw: buildNSFWFilter(),
includeLocalVideos: true,
withFiles: false
})
2018-02-28 18:04:46 +01:00
return {
totalLocalVideos,
totalLocalVideoViews,
totalVideos
}
}
2018-08-29 16:26:25 +02:00
static incrementViews (id: number, views: number) {
return VideoModel.increment('views', {
by: views,
where: {
id
}
})
}
static updateRatesOf (videoId: number, type: VideoRateType, t: Transaction) {
const field = type === 'like'
? 'likes'
: 'dislikes'
const rawQuery = `UPDATE "video" SET "${field}" = ` +
'(' +
'SELECT COUNT(id) FROM "accountVideoRate" WHERE "accountVideoRate"."videoId" = "video"."id" AND type = :rateType' +
') ' +
'WHERE "video"."id" = :videoId'
return AccountVideoRateModel.sequelize.query(rawQuery, {
transaction: t,
replacements: { videoId, rateType: type },
type: QueryTypes.UPDATE
})
}
static checkVideoHasInstanceFollow (videoId: number, followerActorId: number) {
// Instances only share videos
const query = 'SELECT 1 FROM "videoShare" ' +
2020-01-31 16:56:52 +01:00
'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
2020-06-09 15:59:35 +02:00
'WHERE "actorFollow"."actorId" = $followerActorId AND "actorFollow"."state" = \'accepted\' AND "videoShare"."videoId" = $videoId ' +
2020-01-31 16:56:52 +01:00
'LIMIT 1'
const options = {
2019-10-21 14:50:55 +02:00
type: QueryTypes.SELECT as QueryTypes.SELECT,
bind: { followerActorId, videoId },
raw: true
}
return VideoModel.sequelize.query(query, options)
.then(results => results.length === 1)
}
2019-08-15 11:53:26 +02:00
static bulkUpdateSupportField (videoChannel: MChannel, t: Transaction) {
const options = {
where: {
channelId: videoChannel.id
},
transaction: t
}
return VideoModel.update({ support: videoChannel.support }, options)
}
2020-12-08 14:30:29 +01:00
static getAllIdsFromChannel (videoChannel: MChannelId): Promise<number[]> {
const query = {
attributes: [ 'id' ],
where: {
channelId: videoChannel.id
}
}
return VideoModel.findAll(query)
2020-01-31 16:56:52 +01:00
.then(videos => videos.map(v => v.id))
}
2018-08-30 14:58:00 +02:00
// threshold corresponds to how many video the field should have to be returned
2018-09-14 11:52:23 +02:00
static async getRandomFieldSamples (field: 'category' | 'channelId', threshold: number, count: number) {
const serverActor = await getServerActor()
2018-12-05 14:36:05 +01:00
const followerActorId = serverActor.id
2018-09-14 11:52:23 +02:00
2020-03-05 15:04:57 +01:00
const queryOptions: BuildVideosQueryOptions = {
attributes: [ `"${field}"` ],
group: `GROUP BY "${field}"`,
having: `HAVING COUNT("${field}") >= ${threshold}`,
start: 0,
sort: 'random',
count,
serverAccountId: serverActor.Account.id,
2018-12-05 14:36:05 +01:00
followerActorId,
2020-03-05 15:04:57 +01:00
includeLocalVideos: true
2018-09-14 11:52:23 +02:00
}
2021-05-12 14:09:04 +02:00
const { query, replacements } = buildListQuery(VideoModel.sequelize, queryOptions)
2018-08-30 14:58:00 +02:00
2020-03-05 15:04:57 +01:00
return this.sequelize.query<any>(query, { replacements, type: QueryTypes.SELECT })
.then(rows => rows.map(r => r[field]))
2018-08-30 14:58:00 +02:00
}
2018-09-14 09:57:21 +02:00
static buildTrendingQuery (trendingDays: number) {
return {
attributes: [],
subQuery: false,
model: VideoViewModel,
required: false,
where: {
startDate: {
2020-01-31 16:56:52 +01:00
[Op.gte]: new Date(new Date().getTime() - (24 * 3600 * 1000) * trendingDays)
2018-09-14 09:57:21 +02:00
}
}
}
}
2018-10-05 11:15:06 +02:00
private static async getAvailableForApi (
2020-03-05 15:04:57 +01:00
options: BuildVideosQueryOptions,
2018-10-05 11:15:06 +02:00
countVideos = true
2020-06-05 10:42:36 +02:00
): Promise<ResultList<VideoModel>> {
2020-03-09 14:44:44 +01:00
function getCount () {
if (countVideos !== true) return Promise.resolve(undefined)
2018-09-03 18:05:12 +02:00
2020-03-09 14:44:44 +01:00
const countOptions = Object.assign({}, options, { isCount: true })
2021-05-12 14:09:04 +02:00
const { query: queryCount, replacements: replacementsCount } = buildListQuery(VideoModel.sequelize, countOptions)
2020-03-09 14:44:44 +01:00
return VideoModel.sequelize.query<any>(queryCount, { replacements: replacementsCount, type: QueryTypes.SELECT })
.then(rows => rows.length !== 0 ? rows[0].total : 0)
}
function getModels () {
2020-03-13 13:43:26 +01:00
if (options.count === 0) return Promise.resolve([])
2021-05-12 14:09:04 +02:00
const { query, replacements, order } = buildListQuery(VideoModel.sequelize, options)
2020-03-09 14:44:44 +01:00
const queryModels = wrapForAPIResults(query, replacements, options, order)
return VideoModel.sequelize.query<any>(queryModels, { replacements, type: QueryTypes.SELECT, nest: true })
.then(rows => VideoModel.buildAPIResult(rows))
}
const [ count, rows ] = await Promise.all([ getCount(), getModels() ])
return {
data: rows,
total: count
}
}
2020-03-09 14:44:44 +01:00
private static buildAPIResult (rows: any[]) {
2020-08-24 16:11:37 +02:00
const videosMemo: { [ id: number ]: VideoModel } = {}
const videoStreamingPlaylistMemo: { [ id: number ]: VideoStreamingPlaylistModel } = {}
2020-03-09 14:44:44 +01:00
const thumbnailsDone = new Set<number>()
const historyDone = new Set<number>()
const videoFilesDone = new Set<number>()
const videos: VideoModel[] = []
const avatarKeys = [ 'id', 'filename', 'fileUrl', 'onDisk', 'createdAt', 'updatedAt' ]
const actorKeys = [ 'id', 'preferredUsername', 'url', 'serverId', 'avatarId' ]
const serverKeys = [ 'id', 'host' ]
2021-01-27 16:42:13 +01:00
const videoFileKeys = [
'id',
'createdAt',
'updatedAt',
'resolution',
'size',
'extname',
'filename',
'fileUrl',
'torrentFilename',
'torrentUrl',
2021-01-27 16:42:13 +01:00
'infoHash',
'fps',
'videoId',
'videoStreamingPlaylistId'
]
const videoStreamingPlaylistKeys = [ 'id', 'type', 'playlistUrl' ]
2020-03-09 14:44:44 +01:00
const videoKeys = [
'id',
'uuid',
'name',
'category',
'licence',
'language',
'privacy',
'nsfw',
'description',
'support',
'duration',
'views',
'likes',
'dislikes',
'remote',
2020-12-16 14:19:43 +01:00
'isLive',
2020-03-09 14:44:44 +01:00
'url',
'commentsEnabled',
'downloadEnabled',
'waitTranscoding',
'state',
'publishedAt',
'originallyPublishedAt',
'channelId',
'createdAt',
'updatedAt'
]
2021-02-05 17:08:47 +01:00
const buildOpts = { raw: true }
2020-03-09 14:44:44 +01:00
function buildActor (rowActor: any) {
const avatarModel = rowActor.Avatar.id !== null
2021-04-06 11:35:56 +02:00
? new ActorImageModel(pick(rowActor.Avatar, avatarKeys), buildOpts)
2020-03-09 14:44:44 +01:00
: null
2019-03-05 10:58:44 +01:00
2020-03-09 14:44:44 +01:00
const serverModel = rowActor.Server.id !== null
2021-02-05 17:08:47 +01:00
? new ServerModel(pick(rowActor.Server, serverKeys), buildOpts)
2020-03-09 14:44:44 +01:00
: null
2019-03-05 10:58:44 +01:00
2021-02-05 17:08:47 +01:00
const actorModel = new ActorModel(pick(rowActor, actorKeys), buildOpts)
2020-03-09 14:44:44 +01:00
actorModel.Avatar = avatarModel
actorModel.Server = serverModel
return actorModel
2019-03-05 10:58:44 +01:00
}
2020-03-09 14:44:44 +01:00
for (const row of rows) {
2020-08-24 16:11:37 +02:00
if (!videosMemo[row.id]) {
2020-03-09 14:44:44 +01:00
// Build Channel
const channel = row.VideoChannel
2021-02-05 17:08:47 +01:00
const channelModel = new VideoChannelModel(pick(channel, [ 'id', 'name', 'description', 'actorId' ]), buildOpts)
2020-03-09 14:44:44 +01:00
channelModel.Actor = buildActor(channel.Actor)
const account = row.VideoChannel.Account
2021-02-05 17:08:47 +01:00
const accountModel = new AccountModel(pick(account, [ 'id', 'name' ]), buildOpts)
2020-03-09 14:44:44 +01:00
accountModel.Actor = buildActor(account.Actor)
channelModel.Account = accountModel
const videoModel = new VideoModel(pick(row, videoKeys), buildOpts)
2020-03-09 14:44:44 +01:00
videoModel.VideoChannel = channelModel
videoModel.UserVideoHistories = []
videoModel.Thumbnails = []
videoModel.VideoFiles = []
2020-08-24 16:11:37 +02:00
videoModel.VideoStreamingPlaylists = []
2020-03-09 14:44:44 +01:00
2020-08-24 16:11:37 +02:00
videosMemo[row.id] = videoModel
2020-03-09 14:44:44 +01:00
// Don't take object value to have a sorted array
videos.push(videoModel)
}
2020-08-24 16:11:37 +02:00
const videoModel = videosMemo[row.id]
2020-03-09 14:44:44 +01:00
if (row.userVideoHistory?.id && !historyDone.has(row.userVideoHistory.id)) {
2021-02-05 17:08:47 +01:00
const historyModel = new UserVideoHistoryModel(pick(row.userVideoHistory, [ 'id', 'currentTime' ]), buildOpts)
2020-03-09 14:44:44 +01:00
videoModel.UserVideoHistories.push(historyModel)
historyDone.add(row.userVideoHistory.id)
}
if (row.Thumbnails?.id && !thumbnailsDone.has(row.Thumbnails.id)) {
2021-02-05 17:08:47 +01:00
const thumbnailModel = new ThumbnailModel(pick(row.Thumbnails, [ 'id', 'type', 'filename' ]), buildOpts)
2020-03-09 14:44:44 +01:00
videoModel.Thumbnails.push(thumbnailModel)
thumbnailsDone.add(row.Thumbnails.id)
}
if (row.VideoFiles?.id && !videoFilesDone.has(row.VideoFiles.id)) {
2021-02-05 17:08:47 +01:00
const videoFileModel = new VideoFileModel(pick(row.VideoFiles, videoFileKeys), buildOpts)
2020-03-09 14:44:44 +01:00
videoModel.VideoFiles.push(videoFileModel)
videoFilesDone.add(row.VideoFiles.id)
}
2020-08-24 16:11:37 +02:00
if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) {
2021-02-05 17:08:47 +01:00
const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys), buildOpts)
2020-08-24 16:11:37 +02:00
streamingPlaylist.VideoFiles = []
videoModel.VideoStreamingPlaylists.push(streamingPlaylist)
videoStreamingPlaylistMemo[streamingPlaylist.id] = streamingPlaylist
}
if (row.VideoStreamingPlaylists?.VideoFiles?.id && !videoFilesDone.has(row.VideoStreamingPlaylists.VideoFiles.id)) {
const streamingPlaylist = videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]
2021-02-05 17:08:47 +01:00
const videoFileModel = new VideoFileModel(pick(row.VideoStreamingPlaylists.VideoFiles, videoFileKeys), buildOpts)
2020-08-24 16:11:37 +02:00
streamingPlaylist.VideoFiles.push(videoFileModel)
videoFilesDone.add(row.VideoStreamingPlaylists.VideoFiles.id)
}
2020-03-09 14:44:44 +01:00
}
2019-03-05 10:58:44 +01:00
2020-03-09 14:44:44 +01:00
return videos
}
2018-03-13 10:24:28 +01:00
static getCategoryLabel (id: number) {
2020-01-31 16:56:52 +01:00
return VIDEO_CATEGORIES[id] || 'Misc'
2018-03-19 10:24:12 +01:00
}
static getLicenceLabel (id: number) {
2020-01-31 16:56:52 +01:00
return VIDEO_LICENCES[id] || 'Unknown'
2018-03-19 10:24:12 +01:00
}
static getLanguageLabel (id: string) {
2020-01-31 16:56:52 +01:00
return VIDEO_LANGUAGES[id] || 'Unknown'
2018-03-19 10:24:12 +01:00
}
static getPrivacyLabel (id: number) {
2020-01-31 16:56:52 +01:00
return VIDEO_PRIVACIES[id] || 'Unknown'
}
static getStateLabel (id: number) {
2020-01-31 16:56:52 +01:00
return VIDEO_STATES[id] || 'Unknown'
}
2019-07-23 12:04:15 +02:00
isBlacklisted () {
return !!this.VideoBlacklist
}
2019-07-31 15:57:32 +02:00
isBlocked () {
2020-06-17 10:55:40 +02:00
return this.VideoChannel.Account.Actor.Server?.isBlocked() || this.VideoChannel.Account.isBlocked()
2019-07-31 15:57:32 +02:00
}
2020-01-31 16:56:52 +01:00
getQualityFileBy<T extends MVideoWithFile> (this: T, fun: (files: MVideoFile[], it: (file: MVideoFile) => number) => MVideoFile) {
2021-01-21 15:58:17 +01:00
// We first transcode to WebTorrent format, so try this array first
if (Array.isArray(this.VideoFiles) && this.VideoFiles.length !== 0) {
const file = fun(this.VideoFiles, file => file.resolution)
return Object.assign(file, { Video: this })
}
// No webtorrent files, try with streaming playlist files
if (Array.isArray(this.VideoStreamingPlaylists) && this.VideoStreamingPlaylists.length !== 0) {
const streamingPlaylistWithVideo = Object.assign(this.VideoStreamingPlaylists[0], { Video: this })
const file = fun(streamingPlaylistWithVideo.VideoFiles, file => file.resolution)
return Object.assign(file, { VideoStreamingPlaylist: streamingPlaylistWithVideo })
}
return undefined
2017-11-09 17:51:58 +01:00
}
2020-01-31 16:56:52 +01:00
getMaxQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
return this.getQualityFileBy(maxBy)
}
2020-01-31 16:56:52 +01:00
getMinQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
return this.getQualityFileBy(minBy)
}
2020-01-31 16:56:52 +01:00
getWebTorrentFile<T extends MVideoWithFile> (this: T, resolution: number): MVideoFileVideo {
2019-08-01 14:19:18 +02:00
if (Array.isArray(this.VideoFiles) === false) return undefined
const file = this.VideoFiles.find(f => f.resolution === resolution)
if (!file) return undefined
return Object.assign(file, { Video: this })
2019-08-01 14:19:18 +02:00
}
hasWebTorrentFiles () {
return Array.isArray(this.VideoFiles) === true && this.VideoFiles.length !== 0
}
2021-06-08 17:29:45 +02:00
async addAndSaveThumbnail (thumbnail: MThumbnail, transaction?: Transaction) {
2019-04-23 09:50:57 +02:00
thumbnail.videoId = this.id
const savedThumbnail = await thumbnail.save({ transaction })
if (Array.isArray(this.Thumbnails) === false) this.Thumbnails = []
// Already have this thumbnail, skip
2019-04-23 09:50:57 +02:00
if (this.Thumbnails.find(t => t.id === savedThumbnail.id)) return
2019-04-23 09:50:57 +02:00
this.Thumbnails.push(savedThumbnail)
}
2019-04-23 09:50:57 +02:00
getMiniature () {
if (Array.isArray(this.Thumbnails) === false) return undefined
2019-04-23 09:50:57 +02:00
return this.Thumbnails.find(t => t.type === ThumbnailType.MINIATURE)
}
hasPreview () {
return !!this.getPreview()
}
getPreview () {
if (Array.isArray(this.Thumbnails) === false) return undefined
return this.Thumbnails.find(t => t.type === ThumbnailType.PREVIEW)
2017-12-12 17:53:50 +01:00
}
2016-12-29 19:07:05 +01:00
2017-12-12 17:53:50 +01:00
isOwned () {
return this.remote === false
2017-10-30 10:16:27 +01:00
}
2018-12-26 10:36:24 +01:00
getWatchStaticPath () {
return '/w/' + this.uuid
2018-12-26 10:36:24 +01:00
}
2018-07-12 19:02:00 +02:00
getEmbedStaticPath () {
2017-12-12 17:53:50 +01:00
return '/videos/embed/' + this.uuid
}
2017-11-09 17:51:58 +01:00
2019-04-23 09:50:57 +02:00
getMiniatureStaticPath () {
const thumbnail = this.getMiniature()
if (!thumbnail) return null
return join(STATIC_PATHS.THUMBNAILS, thumbnail.filename)
2017-11-09 17:51:58 +01:00
}
2018-07-12 19:02:00 +02:00
getPreviewStaticPath () {
const preview = this.getPreview()
if (!preview) return null
// We use a local cache, so specify our cache endpoint instead of potential remote URL
2019-08-09 11:32:40 +02:00
return join(LAZY_STATIC_PATHS.PREVIEWS, preview.filename)
2017-12-12 17:53:50 +01:00
}
2019-08-21 14:31:57 +02:00
toFormattedJSON (this: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
return videoModelToFormattedJSON(this, options)
}
2019-08-21 14:31:57 +02:00
toFormattedDetailsJSON (this: MVideoFormattableDetails): VideoDetails {
return videoModelToFormattedDetailsJSON(this)
}
2021-02-18 11:22:35 +01:00
getFormattedVideoFilesJSON (includeMagnet = true): VideoFile[] {
2021-01-27 16:42:13 +01:00
let files: VideoFile[] = []
2020-08-24 16:11:37 +02:00
if (Array.isArray(this.VideoFiles)) {
2021-02-18 11:22:35 +01:00
const result = videoFilesModelToFormattedJSON(this, this.VideoFiles, includeMagnet)
2021-01-27 16:42:13 +01:00
files = files.concat(result)
2020-08-24 16:11:37 +02:00
}
for (const p of (this.VideoStreamingPlaylists || [])) {
2021-02-18 11:22:35 +01:00
const result = videoFilesModelToFormattedJSON(this, p.VideoFiles, includeMagnet)
2021-01-27 16:42:13 +01:00
files = files.concat(result)
2020-08-24 16:11:37 +02:00
}
2021-01-27 16:42:13 +01:00
return files
2017-12-12 17:53:50 +01:00
}
2017-11-09 17:51:58 +01:00
2020-09-17 13:59:02 +02:00
toActivityPubObject (this: MVideoAP): VideoObject {
return videoModelToActivityPubObject(this)
2017-12-12 17:53:50 +01:00
}
getTruncatedDescription () {
if (!this.description) return null
const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
return peertubeTruncate(this.description, { length: maxLength })
}
getMaxQualityResolution () {
const file = this.getMaxQualityFile()
const videoOrPlaylist = file.getVideoOrStreamingPlaylist()
const originalFilePath = getVideoFilePath(videoOrPlaylist, file)
2017-11-10 14:34:45 +01:00
2018-02-27 15:57:28 +01:00
return getVideoFileResolution(originalFilePath)
2017-12-12 17:53:50 +01:00
}
2017-11-10 14:34:45 +01:00
getDescriptionAPIPath () {
2017-12-12 17:53:50 +01:00
return `/api/${API_VERSION}/videos/${this.uuid}/description`
2016-12-11 21:50:51 +01:00
}
getHLSPlaylist (): MStreamingPlaylistFilesVideo {
2019-08-09 15:04:36 +02:00
if (!this.VideoStreamingPlaylists) return undefined
const playlist = this.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
playlist.Video = this
return playlist
2019-08-09 15:04:36 +02:00
}
setHLSPlaylist (playlist: MStreamingPlaylist) {
const toAdd = [ playlist ] as [ VideoStreamingPlaylistModel ]
2018-12-04 17:08:55 +01:00
if (Array.isArray(this.VideoStreamingPlaylists) === false || this.VideoStreamingPlaylists.length === 0) {
this.VideoStreamingPlaylists = toAdd
return
}
this.VideoStreamingPlaylists = this.VideoStreamingPlaylists
2020-01-31 16:56:52 +01:00
.filter(s => s.type !== VideoStreamingPlaylistType.HLS)
.concat(toAdd)
}
removeFile (videoFile: MVideoFile, isRedundancy = false) {
const filePath = getVideoFilePath(this, videoFile, isRedundancy)
2018-08-27 16:23:34 +02:00
return remove(filePath)
2018-08-02 17:48:50 +02:00
.catch(err => logger.warn('Cannot delete file %s.', filePath, { err }))
2016-12-11 21:50:51 +01:00
}
2020-01-24 16:48:05 +01:00
async removeStreamingPlaylistFiles (streamingPlaylist: MStreamingPlaylist, isRedundancy = false) {
2019-11-21 12:16:27 +01:00
const directoryPath = getHLSDirectory(this, isRedundancy)
2019-01-29 08:37:25 +01:00
2020-01-24 16:48:05 +01:00
await remove(directoryPath)
if (isRedundancy !== true) {
2020-01-31 16:56:52 +01:00
const streamingPlaylistWithFiles = streamingPlaylist as MStreamingPlaylistFilesVideo
2020-01-24 16:48:05 +01:00
streamingPlaylistWithFiles.Video = this
if (!Array.isArray(streamingPlaylistWithFiles.VideoFiles)) {
streamingPlaylistWithFiles.VideoFiles = await streamingPlaylistWithFiles.$get('VideoFiles')
}
// Remove physical files and torrents
await Promise.all(
streamingPlaylistWithFiles.VideoFiles.map(file => file.removeTorrent())
2020-01-24 16:48:05 +01:00
)
}
2019-01-29 08:37:25 +01:00
}
2018-08-22 16:15:35 +02:00
isOutdated () {
if (this.isOwned()) return false
2019-03-19 14:13:53 +01:00
return isOutdated(this, ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL)
2018-08-22 16:15:35 +02:00
}
2019-12-12 15:47:47 +01:00
hasPrivacyForFederation () {
return isPrivacyForFederation(this.privacy)
2019-12-12 15:47:47 +01:00
}
2020-11-04 14:16:57 +01:00
hasStateForFederation () {
return isStateForFederation(this.state)
}
2019-12-12 15:47:47 +01:00
isNewVideo (newPrivacy: VideoPrivacy) {
return this.hasPrivacyForFederation() === false && isPrivacyForFederation(newPrivacy) === true
2019-12-12 15:47:47 +01:00
}
setAsRefreshed () {
return setAsUpdated('video', this.id)
}
2019-12-12 15:47:47 +01:00
requiresAuth () {
return this.privacy === VideoPrivacy.PRIVATE || this.privacy === VideoPrivacy.INTERNAL || !!this.VideoBlacklist
}
setPrivacy (newPrivacy: VideoPrivacy) {
if (this.privacy === VideoPrivacy.PRIVATE && newPrivacy !== VideoPrivacy.PRIVATE) {
this.publishedAt = new Date()
}
this.privacy = newPrivacy
}
isConfidential () {
return this.privacy === VideoPrivacy.PRIVATE ||
this.privacy === VideoPrivacy.UNLISTED ||
this.privacy === VideoPrivacy.INTERNAL
}
async publishIfNeededAndSave (t: Transaction) {
if (this.state !== VideoState.PUBLISHED) {
this.state = VideoState.PUBLISHED
this.publishedAt = new Date()
await this.save({ transaction: t })
2016-12-24 16:59:17 +01:00
return true
}
return false
}
2021-02-18 10:15:11 +01:00
getBandwidthBits (videoFile: MVideoFile) {
return Math.ceil((videoFile.size * 8) / this.duration)
2018-09-11 16:27:07 +02:00
}
2021-02-18 10:15:11 +01:00
getTrackerUrls () {
if (this.isOwned()) {
return [
WEBSERVER.URL + '/tracker/announce',
WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket'
]
}
2019-01-29 08:37:25 +01:00
2021-02-18 10:15:11 +01:00
return this.Trackers.map(t => t.url)
2019-01-29 08:37:25 +01:00
}
}