2021-08-27 08:32:44 -04:00
|
|
|
import Bluebird from 'bluebird'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { remove } from 'fs-extra'
|
2021-06-10 02:53:32 -04:00
|
|
|
import { maxBy, minBy } from 'lodash'
|
2018-09-18 05:02:51 -04:00
|
|
|
import { join } from 'path'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { FindOptions, Includeable, IncludeOptions, Op, QueryTypes, ScopeOptions, Sequelize, Transaction, WhereOptions } from 'sequelize'
|
2017-12-12 11:53:50 -05:00
|
|
|
import {
|
2018-01-26 09:49:57 -05:00
|
|
|
AllowNull,
|
|
|
|
BeforeDestroy,
|
|
|
|
BelongsTo,
|
|
|
|
BelongsToMany,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
Default,
|
|
|
|
ForeignKey,
|
|
|
|
HasMany,
|
2018-06-14 12:06:56 -04:00
|
|
|
HasOne,
|
2018-01-26 09:49:57 -05:00
|
|
|
Is,
|
|
|
|
IsInt,
|
|
|
|
IsUUID,
|
|
|
|
Min,
|
|
|
|
Model,
|
|
|
|
Scopes,
|
|
|
|
Table,
|
2018-08-31 11:18:13 -04:00
|
|
|
UpdatedAt
|
2017-12-12 11:53:50 -05:00
|
|
|
} from 'sequelize-typescript'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { buildNSFWFilter } from '@server/helpers/express-utils'
|
2021-07-27 03:07:38 -04:00
|
|
|
import { uuidToShort } from '@server/helpers/uuid'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { getPrivaciesForFederation, isPrivacyForFederation, isStateForFederation } from '@server/helpers/video'
|
2021-06-16 09:14:41 -04:00
|
|
|
import { LiveManager } from '@server/lib/live/live-manager'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { removeHLSObjectStorage, removeWebTorrentObjectStorage } from '@server/lib/object-storage'
|
|
|
|
import { getHLSDirectory, getHLSRedundancyDirectory } from '@server/lib/paths'
|
|
|
|
import { VideoPathManager } from '@server/lib/video-path-manager'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
|
|
|
import { ModelCache } from '@server/models/model-cache'
|
2021-11-18 09:22:53 -05:00
|
|
|
import { AttributesOnly, buildVideoEmbedPath, buildVideoWatchPath, pick } from '@shared/core-utils'
|
2021-11-18 08:35:08 -05:00
|
|
|
import { VideoFile, VideoInclude } from '@shared/models'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { ResultList, UserRight, VideoPrivacy, VideoState } from '../../../shared'
|
2020-09-17 07:59:02 -04:00
|
|
|
import { VideoObject } from '../../../shared/models/activitypub/objects'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { Video, VideoDetails, VideoRateType, VideoStorage } from '../../../shared/models/videos'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { ThumbnailType } from '../../../shared/models/videos/thumbnail.type'
|
|
|
|
import { VideoStreamingPlaylistType } from '../../../shared/models/videos/video-streaming-playlist.type'
|
2019-07-15 03:22:57 -04:00
|
|
|
import { peertubeTruncate } from '../../helpers/core-utils'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
|
2021-10-20 04:04:06 -04:00
|
|
|
import { exists, isBooleanValid } from '../../helpers/custom-validators/misc'
|
2017-12-12 11:53:50 -05:00
|
|
|
import {
|
2018-01-26 09:49:57 -05:00
|
|
|
isVideoDescriptionValid,
|
|
|
|
isVideoDurationValid,
|
2019-02-26 04:55:40 -05:00
|
|
|
isVideoNameValid,
|
2018-06-14 12:06:56 -04:00
|
|
|
isVideoPrivacyValid,
|
|
|
|
isVideoStateValid,
|
2018-03-12 06:06:15 -04:00
|
|
|
isVideoSupportValid
|
2017-12-12 11:53:50 -05:00
|
|
|
} from '../../helpers/custom-validators/videos'
|
2020-11-20 11:16:55 -05:00
|
|
|
import { getVideoFileResolution } from '../../helpers/ffprobe-utils'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { logger } from '../../helpers/logger'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { CONFIG } from '../../initializers/config'
|
2021-06-11 08:45:58 -04:00
|
|
|
import { ACTIVITY_PUB, API_VERSION, CONSTRAINTS_FIELDS, LAZY_STATIC_PATHS, STATIC_PATHS, WEBSERVER } from '../../initializers/constants'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { sendDeleteVideo } from '../../lib/activitypub/send'
|
2019-08-15 05:53:26 -04:00
|
|
|
import {
|
|
|
|
MChannel,
|
2019-08-20 07:52:49 -04:00
|
|
|
MChannelAccountDefault,
|
2019-08-15 05:53:26 -04:00
|
|
|
MChannelId,
|
2019-11-15 09:06:03 -05:00
|
|
|
MStreamingPlaylist,
|
|
|
|
MStreamingPlaylistFilesVideo,
|
2019-08-15 05:53:26 -04:00
|
|
|
MUserAccountId,
|
|
|
|
MUserId,
|
2021-02-16 10:25:53 -05:00
|
|
|
MVideo,
|
2019-08-15 05:53:26 -04:00
|
|
|
MVideoAccountLight,
|
2019-08-20 07:52:49 -04:00
|
|
|
MVideoAccountLightBlacklistAllFiles,
|
2019-08-21 08:31:57 -04:00
|
|
|
MVideoAP,
|
2019-08-15 05:53:26 -04:00
|
|
|
MVideoDetails,
|
2019-11-15 09:06:03 -05:00
|
|
|
MVideoFileVideo,
|
2019-08-21 08:31:57 -04:00
|
|
|
MVideoFormattable,
|
|
|
|
MVideoFormattableDetails,
|
2019-08-20 07:52:49 -04:00
|
|
|
MVideoForUser,
|
2019-08-15 05:53:26 -04:00
|
|
|
MVideoFullLight,
|
2021-06-11 08:09:33 -04:00
|
|
|
MVideoId,
|
2020-03-05 09:04:57 -05:00
|
|
|
MVideoImmutable,
|
2019-08-15 05:53:26 -04:00
|
|
|
MVideoThumbnail,
|
2019-08-22 04:46:54 -04:00
|
|
|
MVideoThumbnailBlacklist,
|
2019-08-21 08:31:57 -04:00
|
|
|
MVideoWithAllFiles,
|
2021-06-11 08:09:33 -04:00
|
|
|
MVideoWithFile
|
2020-06-18 04:45:25 -04:00
|
|
|
} from '../../types/models'
|
|
|
|
import { MThumbnail } from '../../types/models/video/thumbnail'
|
2021-01-28 09:52:44 -05:00
|
|
|
import { MVideoFile, MVideoFileStreamingPlaylistVideo } from '../../types/models/video/video-file'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { VideoAbuseModel } from '../abuse/video-abuse'
|
|
|
|
import { AccountModel } from '../account/account'
|
|
|
|
import { AccountVideoRateModel } from '../account/account-video-rate'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorModel } from '../actor/actor'
|
|
|
|
import { ActorImageModel } from '../actor/actor-image'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { VideoRedundancyModel } from '../redundancy/video-redundancy'
|
|
|
|
import { ServerModel } from '../server/server'
|
2021-02-18 04:15:11 -05:00
|
|
|
import { TrackerModel } from '../server/tracker'
|
|
|
|
import { VideoTrackerModel } from '../server/video-tracker'
|
2021-07-28 04:32:40 -04:00
|
|
|
import { setAsUpdated } from '../shared'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { UserModel } from '../user/user'
|
|
|
|
import { UserVideoHistoryModel } from '../user/user-video-history'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { buildTrigramSearchIndex, buildWhereIdOrUUID, getVideoSort, isOutdated, throwIfNotValid } from '../utils'
|
2021-06-10 02:53:32 -04:00
|
|
|
import {
|
|
|
|
videoFilesModelToFormattedJSON,
|
|
|
|
VideoFormattingJSONOptions,
|
|
|
|
videoModelToActivityPubObject,
|
|
|
|
videoModelToFormattedDetailsJSON,
|
|
|
|
videoModelToFormattedJSON
|
|
|
|
} from './formatter/video-format-utils'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { ScheduleVideoUpdateModel } from './schedule-video-update'
|
2021-10-29 04:54:27 -04:00
|
|
|
import { VideoModelGetQueryBuilder } from './sql/video-model-get-query-builder'
|
2021-10-27 08:37:04 -04:00
|
|
|
import { BuildVideosListQueryOptions, DisplayOnlyForFollowerOptions, VideosIdListQueryBuilder } from './sql/videos-id-list-query-builder'
|
2021-06-10 02:53:32 -04:00
|
|
|
import { VideosModelListQueryBuilder } from './sql/videos-model-list-query-builder'
|
2020-07-01 10:05:30 -04:00
|
|
|
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 { VideoImportModel } from './video-import'
|
2021-08-17 02:26:20 -04:00
|
|
|
import { VideoJobInfoModel } from './video-job-info'
|
2020-11-02 09:43:44 -05:00
|
|
|
import { VideoLiveModel } from './video-live'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { VideoPlaylistElementModel } from './video-playlist-element'
|
|
|
|
import { VideoShareModel } from './video-share'
|
|
|
|
import { VideoStreamingPlaylistModel } from './video-streaming-playlist'
|
|
|
|
import { VideoTagModel } from './video-tag'
|
|
|
|
import { VideoViewModel } from './video-view'
|
2018-10-05 05:15:06 -04:00
|
|
|
|
2018-06-14 12:06:56 -04:00
|
|
|
export enum ScopeNames {
|
2018-08-31 03:53:07 -04:00
|
|
|
FOR_API = 'FOR_API',
|
2018-01-04 05:19:16 -05:00
|
|
|
WITH_ACCOUNT_DETAILS = 'WITH_ACCOUNT_DETAILS',
|
2017-12-14 04:07:57 -05:00
|
|
|
WITH_TAGS = 'WITH_TAGS',
|
2019-11-15 09:06:03 -05:00
|
|
|
WITH_WEBTORRENT_FILES = 'WITH_WEBTORRENT_FILES',
|
2018-08-14 03:08:47 -04:00
|
|
|
WITH_SCHEDULED_UPDATE = 'WITH_SCHEDULED_UPDATE',
|
2018-10-05 05:15:06 -04:00
|
|
|
WITH_BLACKLISTED = 'WITH_BLACKLISTED',
|
2019-01-29 02:37:25 -05:00
|
|
|
WITH_STREAMING_PLAYLISTS = 'WITH_STREAMING_PLAYLISTS',
|
2020-02-04 09:45:41 -05:00
|
|
|
WITH_IMMUTABLE_ATTRIBUTES = 'WITH_IMMUTABLE_ATTRIBUTES',
|
2021-06-11 08:45:58 -04:00
|
|
|
WITH_USER_HISTORY = 'WITH_USER_HISTORY',
|
|
|
|
WITH_THUMBNAILS = 'WITH_THUMBNAILS'
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
export type ForAPIOptions = {
|
|
|
|
ids?: number[]
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
videoPlaylistId?: number
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
withAccountBlockerIds?: number[]
|
2018-08-31 03:53:07 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@Scopes(() => ({
|
2020-02-04 09:45:41 -05:00
|
|
|
[ScopeNames.WITH_IMMUTABLE_ATTRIBUTES]: {
|
|
|
|
attributes: [ 'id', 'url', 'uuid', 'remote' ]
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.FOR_API]: (options: ForAPIOptions) => {
|
2020-12-08 08:30:29 -05: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 = {}
|
2018-08-31 03:53:07 -04:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
if (options.ids) {
|
|
|
|
query.where = {
|
|
|
|
id: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.in]: options.ids
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
if (options.videoPlaylistId) {
|
2020-12-08 08:30:29 -05:00
|
|
|
include.push({
|
2019-02-26 04:55:40 -05:00
|
|
|
model: VideoPlaylistElementModel.unscoped(),
|
2019-03-12 06:40:42 -04:00
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
videoPlaylistId: options.videoPlaylistId
|
|
|
|
}
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
query.include = include
|
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
return query
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_THUMBNAILS]: {
|
2019-04-17 04:07:00 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ThumbnailModel,
|
2019-04-17 04:07:00 -04:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_ACCOUNT_DETAILS]: {
|
2017-12-14 04:07:57 -05:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoChannelModel.unscoped(),
|
2017-12-14 04:07:57 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
2018-01-11 08:30:27 -05:00
|
|
|
{
|
|
|
|
attributes: {
|
|
|
|
exclude: [ 'privateKey', 'publicKey' ]
|
|
|
|
},
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel.unscoped(),
|
2018-01-18 11:44:04 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'host' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ServerModel.unscoped(),
|
2018-01-18 11:44:04 -05:00
|
|
|
required: false
|
2018-06-29 08:34:04 -04:00
|
|
|
},
|
|
|
|
{
|
2021-04-06 05:35:56 -04:00
|
|
|
model: ActorImageModel.unscoped(),
|
|
|
|
as: 'Avatar',
|
2018-06-29 08:34:04 -04:00
|
|
|
required: false
|
2018-01-18 11:44:04 -05:00
|
|
|
}
|
|
|
|
]
|
2018-01-11 08:30:27 -05:00
|
|
|
},
|
2017-12-14 04:07:57 -05:00
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel.unscoped(),
|
2017-12-14 04:07:57 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ActorModel.unscoped(),
|
2018-01-11 08:30:27 -05:00
|
|
|
attributes: {
|
|
|
|
exclude: [ 'privateKey', 'publicKey' ]
|
|
|
|
},
|
2017-12-14 11:38:41 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2018-01-18 11:44:04 -05:00
|
|
|
attributes: [ 'host' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ServerModel.unscoped(),
|
2017-12-14 11:38:41 -05:00
|
|
|
required: false
|
2018-02-16 05:19:54 -05:00
|
|
|
},
|
|
|
|
{
|
2021-04-06 05:35:56 -04:00
|
|
|
model: ActorImageModel.unscoped(),
|
|
|
|
as: 'Avatar',
|
2018-02-16 05:19:54 -05:00
|
|
|
required: false
|
2017-12-14 11:38:41 -05:00
|
|
|
}
|
|
|
|
]
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
]
|
2017-12-14 04:07:57 -05:00
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_TAGS]: {
|
2019-04-23 03:50:57 -04:00
|
|
|
include: [ TagModel ]
|
2017-12-14 04:07:57 -05:00
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_BLACKLISTED]: {
|
2018-08-14 03:08:47 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-08-15 05:53:26 -04:00
|
|
|
attributes: [ 'id', 'reason', 'unfederated' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoBlacklistModel,
|
2018-08-14 03:08:47 -04:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_WEBTORRENT_FILES]: (withRedundancies = false) => {
|
2019-01-29 02:37:25 -05:00
|
|
|
let subInclude: any[] = []
|
|
|
|
|
|
|
|
if (withRedundancies === true) {
|
|
|
|
subInclude = [
|
|
|
|
{
|
|
|
|
attributes: [ 'fileUrl' ],
|
|
|
|
model: VideoRedundancyModel.unscoped(),
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
include: [
|
|
|
|
{
|
2020-03-10 09:39:40 -04:00
|
|
|
model: VideoFileModel,
|
2021-02-25 05:17:53 -05:00
|
|
|
separate: true,
|
2019-01-29 02:37:25 -05:00
|
|
|
required: false,
|
|
|
|
include: subInclude
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_STREAMING_PLAYLISTS]: (withRedundancies = false) => {
|
2019-11-15 09:06:03 -05:00
|
|
|
const subInclude: IncludeOptions[] = [
|
|
|
|
{
|
2020-03-10 09:39:40 -04:00
|
|
|
model: VideoFileModel,
|
2019-11-15 09:06:03 -05:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
if (withRedundancies === true) {
|
2019-11-15 09:06:03 -05:00
|
|
|
subInclude.push({
|
|
|
|
attributes: [ 'fileUrl' ],
|
|
|
|
model: VideoRedundancyModel.unscoped(),
|
|
|
|
required: false
|
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoStreamingPlaylistModel.unscoped(),
|
|
|
|
required: false,
|
2021-02-25 05:17:53 -05:00
|
|
|
separate: true,
|
2019-01-29 02:37:25 -05:00
|
|
|
include: subInclude
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2018-06-15 10:52:15 -04:00
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_SCHEDULED_UPDATE]: {
|
2018-06-15 10:52:15 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: ScheduleVideoUpdateModel.unscoped(),
|
2018-06-15 10:52:15 -04:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
2018-10-05 05:15:06 -04:00
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_USER_HISTORY]: (userId: number) => {
|
2018-10-05 05:15:06 -04:00
|
|
|
return {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'currentTime' ],
|
|
|
|
model: UserVideoHistoryModel.unscoped(),
|
|
|
|
required: false,
|
|
|
|
where: {
|
|
|
|
userId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'video',
|
2020-01-28 08:45:17 -05:00
|
|
|
indexes: [
|
|
|
|
buildTrigramSearchIndex('video_name_trigram', 'name'),
|
|
|
|
|
|
|
|
{ fields: [ 'createdAt' ] },
|
|
|
|
{
|
|
|
|
fields: [
|
|
|
|
{ name: 'publishedAt', order: 'DESC' },
|
|
|
|
{ name: 'id', order: 'ASC' }
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{ fields: [ 'duration' ] },
|
2021-03-03 05:24:16 -05:00
|
|
|
{
|
|
|
|
fields: [
|
|
|
|
{ name: 'views', order: 'DESC' },
|
|
|
|
{ name: 'id', order: 'ASC' }
|
|
|
|
]
|
|
|
|
},
|
2020-01-28 08:45:17 -05: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 11:53:50 -05:00
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> {
|
2017-12-12 11:53:50 -05: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)
|
|
|
|
@Column
|
|
|
|
category: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
licence: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2018-04-23 08:39:52 -04:00
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.LANGUAGE.max))
|
|
|
|
language: string
|
2017-12-12 11:53:50 -05:00
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Is('VideoPrivacy', value => throwIfNotValid(value, isVideoPrivacyValid, 'privacy'))
|
|
|
|
@Column
|
2020-06-16 08:13:01 -04:00
|
|
|
privacy: VideoPrivacy
|
2017-12-12 11:53:50 -05:00
|
|
|
|
|
|
|
@AllowNull(false)
|
2018-01-03 04:12:36 -05:00
|
|
|
@Is('VideoNSFW', value => throwIfNotValid(value, isBooleanValid, 'NSFW boolean'))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
nsfw: boolean
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('VideoDescription', value => throwIfNotValid(value, isVideoDescriptionValid, 'description', true))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.DESCRIPTION.max))
|
|
|
|
description: string
|
|
|
|
|
2018-02-15 08:46:26 -05:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('VideoSupport', value => throwIfNotValid(value, isVideoSupportValid, 'support', true))
|
2018-02-15 08:46:26 -05:00
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.SUPPORT.max))
|
|
|
|
support: string
|
|
|
|
|
2017-12-12 11:53:50 -05: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)
|
2020-09-17 03:20:52 -04:00
|
|
|
@Default(false)
|
|
|
|
@Column
|
|
|
|
isLive: boolean
|
|
|
|
|
|
|
|
@AllowNull(false)
|
2017-12-12 11:53:50 -05:00
|
|
|
@Is('VideoUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
|
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS.URL.max))
|
|
|
|
url: string
|
|
|
|
|
2018-01-03 04:12:36 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
commentsEnabled: boolean
|
|
|
|
|
2018-10-06 13:17:21 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
2018-10-08 08:45:22 -04:00
|
|
|
downloadEnabled: boolean
|
2018-10-06 13:17:21 -04:00
|
|
|
|
2018-06-12 14:04:58 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
waitTranscoding: boolean
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(null)
|
|
|
|
@Is('VideoState', value => throwIfNotValid(value, isVideoStateValid, 'state'))
|
|
|
|
@Column
|
|
|
|
state: VideoState
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
2018-03-28 17:38:52 -04:00
|
|
|
@AllowNull(false)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Default(DataType.NOW)
|
2018-03-28 17:38:52 -04:00
|
|
|
@Column
|
|
|
|
publishedAt: Date
|
|
|
|
|
2019-02-11 08:41:55 -05:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-01-12 08:41:45 -05:00
|
|
|
@Column
|
|
|
|
originallyPublishedAt: Date
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@ForeignKey(() => VideoChannelModel)
|
|
|
|
@Column
|
|
|
|
channelId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoChannelModel, {
|
2016-12-11 15:50:51 -05:00
|
|
|
foreignKey: {
|
2017-12-14 11:38:41 -05:00
|
|
|
allowNull: true
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
2021-07-01 08:53:26 -04:00
|
|
|
onDelete: 'cascade'
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoChannel: VideoChannelModel
|
2016-12-24 10:59:17 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@BelongsToMany(() => TagModel, {
|
2016-12-24 10:59:17 -05:00
|
|
|
foreignKey: 'videoId',
|
2017-12-12 11:53:50 -05:00
|
|
|
through: () => VideoTagModel,
|
|
|
|
onDelete: 'CASCADE'
|
2016-12-24 10:59:17 -05:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
Tags: TagModel[]
|
2017-01-04 14:59:23 -05:00
|
|
|
|
2021-02-18 04:15:11 -05:00
|
|
|
@BelongsToMany(() => TrackerModel, {
|
|
|
|
foreignKey: 'videoId',
|
|
|
|
through: () => VideoTrackerModel,
|
|
|
|
onDelete: 'CASCADE'
|
|
|
|
})
|
|
|
|
Trackers: TrackerModel[]
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
@HasMany(() => ThumbnailModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
hooks: true,
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Thumbnails: ThumbnailModel[]
|
|
|
|
|
2019-02-26 04:55:40 -05:00
|
|
|
@HasMany(() => VideoPlaylistElementModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
2019-07-31 09:57:32 -04:00
|
|
|
allowNull: true
|
2019-02-26 04:55:40 -05:00
|
|
|
},
|
2019-07-31 09:57:32 -04:00
|
|
|
onDelete: 'set null'
|
2019-02-26 04:55:40 -05:00
|
|
|
})
|
|
|
|
VideoPlaylistElements: VideoPlaylistElementModel[]
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => VideoAbuseModel, {
|
2017-01-04 14:59:23 -05:00
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
2020-04-16 08:22:27 -04:00
|
|
|
allowNull: true
|
2017-01-04 14:59:23 -05:00
|
|
|
},
|
2020-04-16 08:22:27 -04:00
|
|
|
onDelete: 'set null'
|
2017-01-04 14:59:23 -05:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoAbuses: VideoAbuseModel[]
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => VideoFileModel, {
|
2017-08-25 05:36:23 -04:00
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
2019-11-15 09:06:03 -05:00
|
|
|
allowNull: true
|
2017-08-25 05:36:23 -04:00
|
|
|
},
|
2018-09-11 10:27:07 -04:00
|
|
|
hooks: true,
|
2017-08-25 05:36:23 -04:00
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoFiles: VideoFileModel[]
|
2017-11-21 12:23:10 -05:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
@HasMany(() => VideoStreamingPlaylistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
hooks: true,
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoStreamingPlaylists: VideoStreamingPlaylistModel[]
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => VideoShareModel, {
|
2017-11-21 12:23:10 -05:00
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoShares: VideoShareModel[]
|
2017-11-23 10:55:13 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => AccountVideoRateModel, {
|
2017-11-23 10:55:13 -05:00
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
AccountVideoRates: AccountVideoRateModel[]
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2017-12-28 05:16:08 -05:00
|
|
|
@HasMany(() => VideoCommentModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2018-01-18 04:53:54 -05:00
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
2017-12-28 05:16:08 -05:00
|
|
|
})
|
|
|
|
VideoComments: VideoCommentModel[]
|
|
|
|
|
2018-08-31 11:18:13 -04:00
|
|
|
@HasMany(() => VideoViewModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
2018-10-05 05:15:06 -04:00
|
|
|
onDelete: 'cascade'
|
2018-08-31 11:18:13 -04:00
|
|
|
})
|
|
|
|
VideoViews: VideoViewModel[]
|
|
|
|
|
2018-10-05 05:15:06 -04:00
|
|
|
@HasMany(() => UserVideoHistoryModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
UserVideoHistories: UserVideoHistoryModel[]
|
|
|
|
|
2018-06-14 12:06:56 -04:00
|
|
|
@HasOne(() => ScheduleVideoUpdateModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
ScheduleVideoUpdate: ScheduleVideoUpdateModel
|
|
|
|
|
2018-08-13 10:57:13 -04:00
|
|
|
@HasOne(() => VideoBlacklistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoBlacklist: VideoBlacklistModel
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
@HasOne(() => VideoLiveModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoLive: VideoLiveModel
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
@HasOne(() => VideoImportModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'set null'
|
|
|
|
})
|
|
|
|
VideoImport: VideoImportModel
|
|
|
|
|
2018-07-12 13:02:00 -04:00
|
|
|
@HasMany(() => VideoCaptionModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true,
|
2020-01-31 10:56:52 -05:00
|
|
|
['separate' as any]: true
|
2018-07-12 13:02:00 -04:00
|
|
|
})
|
|
|
|
VideoCaptions: VideoCaptionModel[]
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
@HasOne(() => VideoJobInfoModel, {
|
|
|
|
foreignKey: {
|
|
|
|
name: 'videoId',
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoJobInfo: VideoJobInfoModel
|
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
@BeforeDestroy
|
2019-08-15 05:53:26 -04:00
|
|
|
static async sendDelete (instance: MVideoAccountLight, options) {
|
2021-03-09 10:10:52 -05:00
|
|
|
if (!instance.isOwned()) return undefined
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2021-03-09 10:10:52 -05:00
|
|
|
// Lazy load channels
|
|
|
|
if (!instance.VideoChannel) {
|
|
|
|
instance.VideoChannel = await instance.$get('VideoChannel', {
|
|
|
|
include: [
|
|
|
|
ActorModel,
|
|
|
|
AccountModel
|
|
|
|
],
|
|
|
|
transaction: options.transaction
|
|
|
|
}) as MChannelAccountDefault
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
|
2021-03-09 10:10:52 -05:00
|
|
|
return sendDeleteVideo(instance, options.transaction)
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
|
2018-04-25 04:21:38 -04:00
|
|
|
@BeforeDestroy
|
2021-06-11 10:22:54 -04:00
|
|
|
static async removeFiles (instance: VideoModel, options) {
|
2018-01-18 04:53:54 -05:00
|
|
|
const tasks: Promise<any>[] = []
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2018-07-30 11:02:40 -04:00
|
|
|
logger.info('Removing files of video %s.', instance.url)
|
2018-04-25 04:21:38 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
if (instance.isOwned()) {
|
2018-01-18 04:53:54 -05:00
|
|
|
if (!Array.isArray(instance.VideoFiles)) {
|
2021-06-11 10:22:54 -04:00
|
|
|
instance.VideoFiles = await instance.$get('VideoFiles', { transaction: options.transaction })
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
// Remove physical files and torrents
|
|
|
|
instance.VideoFiles.forEach(file => {
|
2021-11-17 10:04:53 -05:00
|
|
|
tasks.push(instance.removeWebTorrentFileAndTorrent(file))
|
2017-12-12 11:53:50 -05:00
|
|
|
})
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
// Remove playlists file
|
2020-01-24 10:48:05 -05:00
|
|
|
if (!Array.isArray(instance.VideoStreamingPlaylists)) {
|
2021-06-11 10:22:54 -04:00
|
|
|
instance.VideoStreamingPlaylists = await instance.$get('VideoStreamingPlaylists', { transaction: options.transaction })
|
2020-01-24 10:48:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const p of instance.VideoStreamingPlaylists) {
|
|
|
|
tasks.push(instance.removeStreamingPlaylistFiles(p))
|
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-02 06:20:26 -04:00
|
|
|
|
2018-04-25 04:21:38 -04:00
|
|
|
// Do not wait video deletion because we could be in a transaction
|
|
|
|
Promise.all(tasks)
|
2018-09-03 12:05:12 -04:00
|
|
|
.catch(err => {
|
|
|
|
logger.error('Some errors when removing files of video %s in before destroy hook.', instance.uuid, { err })
|
|
|
|
})
|
2018-04-25 04:21:38 -04:00
|
|
|
|
|
|
|
return undefined
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2016-11-11 09:20:03 -05:00
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
@BeforeDestroy
|
|
|
|
static stopLiveIfNeeded (instance: VideoModel) {
|
|
|
|
if (!instance.isLive) return
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
logger.info('Stopping live of video %s after video deletion.', instance.uuid)
|
|
|
|
|
2021-06-11 10:22:54 -04:00
|
|
|
LiveManager.Instance.stopSessionOf(instance.id)
|
2020-09-25 04:04:21 -04:00
|
|
|
}
|
|
|
|
|
2020-02-04 09:00:47 -05:00
|
|
|
@BeforeDestroy
|
|
|
|
static invalidateCache (instance: VideoModel) {
|
|
|
|
ModelCache.Instance.invalidateCache('video', instance.id)
|
|
|
|
}
|
|
|
|
|
2020-04-16 08:22:27 -04:00
|
|
|
@BeforeDestroy
|
|
|
|
static async saveEssentialDataToAbuses (instance: VideoModel, options) {
|
|
|
|
const tasks: Promise<any>[] = []
|
|
|
|
|
|
|
|
if (!Array.isArray(instance.VideoAbuses)) {
|
2021-06-11 10:22:54 -04:00
|
|
|
instance.VideoAbuses = await instance.$get('VideoAbuses', { transaction: options.transaction })
|
2020-04-16 08:22:27 -04:00
|
|
|
|
|
|
|
if (instance.VideoAbuses.length === 0) return undefined
|
|
|
|
}
|
|
|
|
|
2020-07-07 04:57:04 -04:00
|
|
|
logger.info('Saving video abuses details of video %s.', instance.url)
|
|
|
|
|
2021-03-09 10:10:52 -05:00
|
|
|
if (!instance.Trackers) instance.Trackers = await instance.$get('Trackers', { transaction: options.transaction })
|
2020-04-17 04:47:22 -04:00
|
|
|
const details = instance.toFormattedDetailsJSON()
|
2020-04-16 08:22:27 -04:00
|
|
|
|
|
|
|
for (const abuse of instance.VideoAbuses) {
|
2020-04-20 05:20:12 -04:00
|
|
|
abuse.deletedVideo = details
|
|
|
|
tasks.push(abuse.save({ transaction: options.transaction }))
|
2020-04-16 08:22:27 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 10:22:54 -04:00
|
|
|
await Promise.all(tasks)
|
2020-04-16 08:22:27 -04:00
|
|
|
}
|
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
static listLocalIds (): Promise<number[]> {
|
2018-10-08 10:50:56 -04:00
|
|
|
const query = {
|
2021-11-09 05:05:35 -05:00
|
|
|
attributes: [ 'id' ],
|
|
|
|
raw: true,
|
2018-10-08 10:50:56 -04:00
|
|
|
where: {
|
|
|
|
remote: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
return VideoModel.findAll(query)
|
2021-11-09 05:05:35 -05:00
|
|
|
.then(rows => rows.map(r => r.id))
|
2018-10-08 10:50:56 -04:00
|
|
|
}
|
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
static listAllAndSharedByActorForOutbox (actorId: number, start: number, count: number) {
|
2017-12-12 11:53:50 -05: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 11:38:41 -05:00
|
|
|
'INNER JOIN "account" AS "Account" ON "Account"."id" = "VideoChannel"."accountId" ' +
|
|
|
|
'WHERE "Account"."actorId" = ' + actorId
|
2017-12-12 11:53:50 -05:00
|
|
|
const queryVideoShare = 'SELECT ' + select + ' FROM "videoShare" AS "VideoShare" ' +
|
|
|
|
'INNER JOIN "video" AS "Video" ON "Video"."id" = "VideoShare"."videoId" ' +
|
2017-12-14 11:38:41 -05:00
|
|
|
'WHERE "VideoShare"."actorId" = ' + actorId
|
2016-11-11 07:47:50 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return `(${queryVideo}) UNION (${queryVideoShare})`
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const rawQuery = getRawQuery('"Video"."id"')
|
|
|
|
const rawCountQuery = getRawQuery('COUNT("Video"."id") as "total"')
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
distinct: true,
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2021-10-22 10:39:37 -04:00
|
|
|
order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ]),
|
2017-12-12 11:53:50 -05:00
|
|
|
where: {
|
|
|
|
id: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.in]: Sequelize.literal('(' + rawQuery + ')')
|
2018-02-04 17:04:32 -05:00
|
|
|
},
|
2020-06-03 03:42:07 -04:00
|
|
|
[Op.or]: getPrivaciesForFederation()
|
2017-12-12 11:53:50 -05:00
|
|
|
},
|
|
|
|
include: [
|
2018-07-12 13:02:00 -04:00
|
|
|
{
|
2021-04-08 09:04:14 -04:00
|
|
|
attributes: [ 'filename', 'language', 'fileUrl' ],
|
2018-07-12 13:02:00 -04:00
|
|
|
model: VideoCaptionModel.unscoped(),
|
|
|
|
required: false
|
|
|
|
},
|
2017-12-12 11:53:50 -05:00
|
|
|
{
|
2018-02-04 16:40:37 -05:00
|
|
|
attributes: [ 'id', 'url' ],
|
2018-01-18 09:22:36 -05:00
|
|
|
model: VideoShareModel.unscoped(),
|
2017-12-12 11:53:50 -05:00
|
|
|
required: false,
|
2018-05-28 06:13:00 -04:00
|
|
|
// We only want videos shared by this actor
|
|
|
|
where: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.and]: [
|
2018-05-28 06:13:00 -04:00
|
|
|
{
|
|
|
|
id: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.not]: null
|
2018-05-28 06:13:00 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
actorId
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-12-14 11:38:41 -05:00
|
|
|
include: [
|
|
|
|
{
|
2018-01-18 09:22:36 -05:00
|
|
|
attributes: [ 'id', 'url' ],
|
|
|
|
model: ActorModel.unscoped()
|
2017-12-14 11:38:41 -05:00
|
|
|
}
|
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
},
|
|
|
|
{
|
2018-01-18 09:22:36 -05:00
|
|
|
model: VideoChannelModel.unscoped(),
|
2017-12-12 11:53:50 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2018-01-18 09:22:36 -05:00
|
|
|
attributes: [ 'name' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2018-05-28 06:13:00 -04:00
|
|
|
attributes: [ 'id', 'url', 'followersUrl' ],
|
2018-01-18 09:22:36 -05:00
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2018-05-28 06:13:00 -04:00
|
|
|
attributes: [ 'id', 'url', 'followersUrl' ],
|
2018-01-18 09:22:36 -05:00
|
|
|
model: ActorModel.unscoped(),
|
2017-12-12 11:53:50 -05:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-11-02 09:43:44 -05:00
|
|
|
{
|
|
|
|
model: VideoStreamingPlaylistModel.unscoped(),
|
|
|
|
required: false,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoFileModel,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-11-06 05:22:12 -05:00
|
|
|
VideoLiveModel.unscoped(),
|
2017-12-12 11:53:50 -05:00
|
|
|
VideoFileModel,
|
2018-01-18 09:22:36 -05:00
|
|
|
TagModel
|
2017-12-12 11:53:50 -05:00
|
|
|
]
|
|
|
|
}
|
2017-10-17 04:35:27 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return Bluebird.all([
|
2019-04-23 03:50:57 -04:00
|
|
|
VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findAll(query),
|
|
|
|
VideoModel.sequelize.query<{ total: string }>(rawCountQuery, { type: QueryTypes.SELECT })
|
2017-12-12 11:53:50 -05:00
|
|
|
]).then(([ rows, totals ]) => {
|
|
|
|
// totals: totalVideos + totalVideoShares
|
|
|
|
let totalVideos = 0
|
|
|
|
let totalVideoShares = 0
|
2020-01-31 10:56:52 -05:00
|
|
|
if (totals[0]) totalVideos = parseInt(totals[0].total, 10)
|
|
|
|
if (totals[1]) totalVideoShares = parseInt(totals[1].total, 10)
|
2017-12-12 11:53:50 -05:00
|
|
|
|
|
|
|
const total = totalVideos + totalVideoShares
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: total
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2021-05-28 07:05:59 -04:00
|
|
|
static async listPublishedLiveUUIDs () {
|
2020-11-13 08:36:30 -05:00
|
|
|
const options = {
|
2021-05-28 07:05:59 -04:00
|
|
|
attributes: [ 'uuid' ],
|
2020-11-13 08:36:30 -05:00
|
|
|
where: {
|
|
|
|
isLive: true,
|
2021-05-26 06:03:44 -04:00
|
|
|
remote: false,
|
2020-11-13 08:36:30 -05:00
|
|
|
state: VideoState.PUBLISHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
const result = await VideoModel.findAll(options)
|
|
|
|
|
2021-05-28 07:05:59 -04:00
|
|
|
return result.map(v => v.uuid)
|
2020-11-13 08:36:30 -05:00
|
|
|
}
|
|
|
|
|
2021-01-20 09:28:34 -05:00
|
|
|
static listUserVideosForApi (options: {
|
|
|
|
accountId: number
|
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
2021-10-20 03:05:43 -04:00
|
|
|
|
|
|
|
channelId?: number
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive?: boolean
|
2019-12-27 19:10:26 -05:00
|
|
|
search?: string
|
2021-01-20 09:28:34 -05:00
|
|
|
}) {
|
2021-10-20 03:05:43 -04:00
|
|
|
const { accountId, channelId, start, count, sort, search, isLive } = options
|
2021-01-20 09:28:34 -05:00
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
function buildBaseQuery (): FindOptions {
|
2021-05-03 05:06:19 -04:00
|
|
|
const where: WhereOptions = {}
|
|
|
|
|
|
|
|
if (search) {
|
|
|
|
where.name = {
|
|
|
|
[Op.iLike]: '%' + search + '%'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-20 04:04:06 -04:00
|
|
|
if (exists(isLive)) {
|
2021-05-03 05:06:19 -04:00
|
|
|
where.isLive = isLive
|
|
|
|
}
|
|
|
|
|
2021-10-20 03:05:43 -04:00
|
|
|
const channelWhere = channelId
|
|
|
|
? { id: channelId }
|
|
|
|
: {}
|
|
|
|
|
2021-05-03 05:06:19 -04:00
|
|
|
const baseQuery = {
|
2019-04-23 03:50:57 -04:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2021-05-03 05:06:19 -04:00
|
|
|
where,
|
2019-04-23 03:50:57 -04:00
|
|
|
order: getVideoSort(sort),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoChannelModel,
|
|
|
|
required: true,
|
2021-10-20 03:05:43 -04:00
|
|
|
where: channelWhere,
|
2019-04-23 03:50:57 -04:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: AccountModel,
|
|
|
|
where: {
|
|
|
|
id: accountId
|
|
|
|
},
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-12-27 19:10:26 -05:00
|
|
|
|
|
|
|
return baseQuery
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
const countQuery = buildBaseQuery()
|
|
|
|
const findQuery = buildBaseQuery()
|
|
|
|
|
2019-12-27 19:10:26 -05:00
|
|
|
const findScopes: (string | ScopeOptions)[] = [
|
2019-04-26 04:20:58 -04:00
|
|
|
ScopeNames.WITH_SCHEDULED_UPDATE,
|
|
|
|
ScopeNames.WITH_BLACKLISTED,
|
|
|
|
ScopeNames.WITH_THUMBNAILS
|
|
|
|
]
|
2019-04-23 03:50:57 -04:00
|
|
|
|
|
|
|
return Promise.all([
|
|
|
|
VideoModel.count(countQuery),
|
2019-08-20 07:52:49 -04:00
|
|
|
VideoModel.scope(findScopes).findAll<MVideoForUser>(findQuery)
|
2019-04-23 03:50:57 -04:00
|
|
|
]).then(([ count, rows ]) => {
|
|
|
|
return {
|
2019-08-20 07:52:49 -04:00
|
|
|
data: rows,
|
2019-04-23 03:50:57 -04:00
|
|
|
total: count
|
|
|
|
}
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2018-04-24 11:05:32 -04:00
|
|
|
static async listForApi (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
nsfw: boolean
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive?: boolean
|
2021-10-27 08:37:04 -04:00
|
|
|
isLocal?: boolean
|
|
|
|
include?: VideoInclude
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2021-10-29 04:54:27 -04:00
|
|
|
hasFiles?: boolean // default false
|
2021-11-03 06:32:41 -04:00
|
|
|
hasWebtorrentFiles?: boolean
|
|
|
|
hasHLSFiles?: boolean
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
categoryOneOf?: number[]
|
|
|
|
licenceOneOf?: number[]
|
|
|
|
languageOneOf?: string[]
|
|
|
|
tagsOneOf?: string[]
|
|
|
|
tagsAllOf?: string[]
|
2021-11-12 08:19:56 -05:00
|
|
|
privacyOneOf?: VideoPrivacy[]
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
accountId?: number
|
|
|
|
videoChannelId?: number
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2021-10-27 08:37:04 -04:00
|
|
|
displayOnlyForFollower: DisplayOnlyForFollowerOptions | null
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
videoPlaylistId?: number
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
trendingDays?: number
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
user?: MUserAccountId
|
|
|
|
historyOfUser?: MUserId
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-01-08 08:15:16 -05:00
|
|
|
countVideos?: boolean
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2021-01-13 03:16:15 -05:00
|
|
|
search?: string
|
2020-01-08 08:15:16 -05:00
|
|
|
}) {
|
2021-11-03 06:32:41 -04:00
|
|
|
VideoModel.throwIfPrivateIncludeWithoutUser(options.include, options.user)
|
2021-11-12 08:19:56 -05:00
|
|
|
VideoModel.throwIfPrivacyOneOfWithoutUser(options.privacyOneOf, options.user)
|
2018-10-10 05:46:50 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
const trendingDays = options.sort.endsWith('trending')
|
|
|
|
? CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS
|
|
|
|
: undefined
|
2021-07-29 05:54:38 -04:00
|
|
|
|
|
|
|
let trendingAlgorithm: string
|
2021-02-02 06:59:41 -05:00
|
|
|
if (options.sort.endsWith('hot')) trendingAlgorithm = 'hot'
|
|
|
|
if (options.sort.endsWith('best')) trendingAlgorithm = 'best'
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2018-10-12 09:26:04 -04:00
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
const queryOptions = {
|
2021-07-29 08:17:03 -04:00
|
|
|
...pick(options, [
|
|
|
|
'start',
|
|
|
|
'count',
|
|
|
|
'sort',
|
|
|
|
'nsfw',
|
|
|
|
'isLive',
|
|
|
|
'categoryOneOf',
|
|
|
|
'licenceOneOf',
|
|
|
|
'languageOneOf',
|
|
|
|
'tagsOneOf',
|
|
|
|
'tagsAllOf',
|
2021-11-12 08:19:56 -05:00
|
|
|
'privacyOneOf',
|
2021-10-27 08:37:04 -04:00
|
|
|
'isLocal',
|
|
|
|
'include',
|
|
|
|
'displayOnlyForFollower',
|
2021-10-29 04:54:27 -04:00
|
|
|
'hasFiles',
|
2021-07-29 08:17:03 -04:00
|
|
|
'accountId',
|
|
|
|
'videoChannelId',
|
|
|
|
'videoPlaylistId',
|
|
|
|
'user',
|
|
|
|
'historyOfUser',
|
2021-11-03 06:32:41 -04:00
|
|
|
'hasHLSFiles',
|
|
|
|
'hasWebtorrentFiles',
|
2021-07-29 08:17:03 -04:00
|
|
|
'search'
|
|
|
|
]),
|
|
|
|
|
2021-10-27 08:37:04 -04:00
|
|
|
serverAccountIdForBlock: serverActor.Account.id,
|
2021-01-13 03:16:15 -05:00
|
|
|
trendingDays,
|
2021-07-29 08:17:03 -04:00
|
|
|
trendingAlgorithm
|
2018-04-24 11:05:32 -04:00
|
|
|
}
|
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
return VideoModel.getAvailableForApi(queryOptions, options.countVideos)
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
|
2018-07-20 12:31:49 -04:00
|
|
|
static async searchAndPopulateAccountAndServer (options: {
|
2021-07-29 08:17:03 -04:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
2021-11-03 06:32:41 -04:00
|
|
|
|
2018-07-20 12:31:49 -04:00
|
|
|
nsfw?: boolean
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive?: boolean
|
2021-10-27 08:37:04 -04:00
|
|
|
isLocal?: boolean
|
|
|
|
include?: VideoInclude
|
2021-11-03 06:32:41 -04:00
|
|
|
|
2018-07-20 12:31:49 -04:00
|
|
|
categoryOneOf?: number[]
|
|
|
|
licenceOneOf?: number[]
|
|
|
|
languageOneOf?: string[]
|
|
|
|
tagsOneOf?: string[]
|
|
|
|
tagsAllOf?: string[]
|
2021-11-12 08:19:56 -05:00
|
|
|
privacyOneOf?: VideoPrivacy[]
|
2021-11-03 06:32:41 -04:00
|
|
|
|
|
|
|
displayOnlyForFollower: DisplayOnlyForFollowerOptions | null
|
|
|
|
|
|
|
|
user?: MUserAccountId
|
|
|
|
|
|
|
|
hasWebtorrentFiles?: boolean
|
|
|
|
hasHLSFiles?: boolean
|
|
|
|
|
|
|
|
search?: string
|
|
|
|
|
|
|
|
host?: string
|
|
|
|
startDate?: string // ISO 8601
|
|
|
|
endDate?: string // ISO 8601
|
|
|
|
originallyPublishedStartDate?: string
|
|
|
|
originallyPublishedEndDate?: string
|
|
|
|
|
2018-07-20 12:31:49 -04:00
|
|
|
durationMin?: number // seconds
|
|
|
|
durationMax?: number // seconds
|
2021-07-28 10:40:21 -04:00
|
|
|
uuids?: string[]
|
2018-07-20 12:31:49 -04:00
|
|
|
}) {
|
2021-11-03 06:32:41 -04:00
|
|
|
VideoModel.throwIfPrivateIncludeWithoutUser(options.include, options.user)
|
2021-11-12 08:19:56 -05:00
|
|
|
VideoModel.throwIfPrivacyOneOfWithoutUser(options.privacyOneOf, options.user)
|
2021-11-03 06:32:41 -04:00
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
const serverActor = await getServerActor()
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
const queryOptions = {
|
2021-07-29 08:17:03 -04:00
|
|
|
...pick(options, [
|
2021-10-27 08:37:04 -04:00
|
|
|
'include',
|
2021-07-29 08:17:03 -04:00
|
|
|
'nsfw',
|
|
|
|
'isLive',
|
|
|
|
'categoryOneOf',
|
|
|
|
'licenceOneOf',
|
|
|
|
'languageOneOf',
|
|
|
|
'tagsOneOf',
|
|
|
|
'tagsAllOf',
|
2021-11-12 08:19:56 -05:00
|
|
|
'privacyOneOf',
|
2021-07-29 08:17:03 -04:00
|
|
|
'user',
|
2021-10-27 08:37:04 -04:00
|
|
|
'isLocal',
|
2021-07-29 08:17:03 -04:00
|
|
|
'host',
|
|
|
|
'start',
|
|
|
|
'count',
|
|
|
|
'sort',
|
|
|
|
'startDate',
|
|
|
|
'endDate',
|
|
|
|
'originallyPublishedStartDate',
|
|
|
|
'originallyPublishedEndDate',
|
|
|
|
'durationMin',
|
|
|
|
'durationMax',
|
2021-11-03 06:32:41 -04:00
|
|
|
'hasHLSFiles',
|
|
|
|
'hasWebtorrentFiles',
|
2021-07-29 08:17:03 -04:00
|
|
|
'uuids',
|
2021-10-27 08:37:04 -04:00
|
|
|
'search',
|
|
|
|
'displayOnlyForFollower'
|
2021-07-29 08:17:03 -04:00
|
|
|
]),
|
2021-10-27 08:37:04 -04:00
|
|
|
serverAccountIdForBlock: serverActor.Account.id
|
2018-04-24 11:05:32 -04:00
|
|
|
}
|
2018-01-18 04:53:54 -05:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
return VideoModel.getAvailableForApi(queryOptions)
|
2018-01-18 04:53:54 -05:00
|
|
|
}
|
|
|
|
|
2020-10-28 10:24:40 -04:00
|
|
|
static countLocalLives () {
|
|
|
|
const options = {
|
|
|
|
where: {
|
|
|
|
remote: false,
|
2020-11-18 05:30:10 -05:00
|
|
|
isLive: true,
|
|
|
|
state: {
|
|
|
|
[Op.ne]: VideoState.LIVE_ENDED
|
|
|
|
}
|
2020-10-28 10:24:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.count(options)
|
|
|
|
}
|
|
|
|
|
2021-01-21 10:57:21 -05:00
|
|
|
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 10:24:40 -04:00
|
|
|
static countLivesOfAccount (accountId: number) {
|
|
|
|
const options = {
|
|
|
|
where: {
|
|
|
|
remote: false,
|
2020-11-26 08:08:31 -05:00
|
|
|
isLive: true,
|
|
|
|
state: {
|
|
|
|
[Op.ne]: VideoState.LIVE_ENDED
|
|
|
|
}
|
2020-10-28 10:24:40 -04:00
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
accountId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.count(options)
|
|
|
|
}
|
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
static load (id: number | string, transaction?: Transaction): Promise<MVideoThumbnail> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction, type: 'thumbnails' })
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
static loadWithBlacklist (id: number | string, transaction?: Transaction): Promise<MVideoThumbnailBlacklist> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2019-08-22 04:46:54 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction, type: 'thumbnails-blacklist' })
|
2019-08-22 04:46:54 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadImmutableAttributes (id: number | string, t?: Transaction): Promise<MVideoImmutable> {
|
2020-02-04 09:00:47 -05:00
|
|
|
const fun = () => {
|
2020-02-04 09:45:41 -05:00
|
|
|
const query = {
|
|
|
|
where: buildWhereIdOrUUID(id),
|
2020-02-04 09:00:47 -05:00
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2020-02-04 09:45:41 -05:00
|
|
|
return VideoModel.scope(ScopeNames.WITH_IMMUTABLE_ATTRIBUTES).findOne(query)
|
2020-02-04 09:00:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ModelCache.Instance.doCache({
|
2020-02-04 09:45:41 -05:00
|
|
|
cacheType: 'load-video-immutable-id',
|
2020-02-04 09:00:47 -05:00
|
|
|
key: '' + id,
|
|
|
|
deleteKey: 'video',
|
|
|
|
fun
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUrlImmutableAttributes (url: string, transaction?: Transaction): Promise<MVideoImmutable> {
|
2020-02-04 09:45:41 -05:00
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
static loadOnlyId (id: number | string, transaction?: Transaction): Promise<MVideoId> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2018-09-18 06:00:49 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction, type: 'id' })
|
2018-09-18 06:00:49 -04:00
|
|
|
}
|
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
static loadWithFiles (id: number | string, transaction?: Transaction, logging?: boolean): Promise<MVideoWithAllFiles> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2018-09-18 06:00:49 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction, type: 'all-files', logging })
|
|
|
|
}
|
2017-10-31 06:52:52 -04:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoThumbnail> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ url, transaction, type: 'thumbnails' })
|
|
|
|
}
|
|
|
|
|
|
|
|
static loadByUrlAndPopulateAccount (url: string, transaction?: Transaction): Promise<MVideoAccountLightBlacklistAllFiles> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2021-06-11 08:09:33 -04:00
|
|
|
|
|
|
|
return queryBuilder.queryVideo({ url, transaction, type: 'account-blacklist-files' })
|
|
|
|
}
|
|
|
|
|
|
|
|
static loadAndPopulateAccountAndServerAndTags (id: number | string, t?: Transaction, userId?: number): Promise<MVideoFullLight> {
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction: t, type: 'full-light', userId })
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
static loadForGetAPI (parameters: {
|
2020-01-31 10:56:52 -05:00
|
|
|
id: number | string
|
2021-06-11 03:57:19 -04:00
|
|
|
transaction?: Transaction
|
2019-07-19 11:30:41 -04:00
|
|
|
userId?: number
|
2020-12-08 08:30:29 -05:00
|
|
|
}): Promise<MVideoDetails> {
|
2021-06-11 03:57:19 -04:00
|
|
|
const { id, transaction, userId } = parameters
|
2021-10-29 04:54:27 -04:00
|
|
|
const queryBuilder = new VideoModelGetQueryBuilder(VideoModel.sequelize)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-06-11 08:09:33 -04:00
|
|
|
return queryBuilder.queryVideo({ id, transaction, type: 'api', userId })
|
2017-12-28 05:16:08 -05:00
|
|
|
}
|
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
static async getStats () {
|
|
|
|
const totalLocalVideos = await VideoModel.count({
|
|
|
|
where: {
|
|
|
|
remote: false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
let totalLocalVideoViews = await VideoModel.sum('views', {
|
|
|
|
where: {
|
|
|
|
remote: false
|
|
|
|
}
|
|
|
|
})
|
2020-03-13 08:43:26 -04:00
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
// Sequelize could return null...
|
|
|
|
if (!totalLocalVideoViews) totalLocalVideoViews = 0
|
|
|
|
|
2021-10-27 08:37:04 -04:00
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
2020-03-13 08:43:26 -04:00
|
|
|
const { total: totalVideos } = await VideoModel.listForApi({
|
|
|
|
start: 0,
|
|
|
|
count: 0,
|
|
|
|
sort: '-publishedAt',
|
|
|
|
nsfw: buildNSFWFilter(),
|
2021-10-27 08:37:04 -04:00
|
|
|
displayOnlyForFollower: {
|
|
|
|
actorId: serverActor.id,
|
|
|
|
orLocalVideos: true
|
2021-10-29 04:54:27 -04:00
|
|
|
}
|
2020-03-13 08:43:26 -04:00
|
|
|
})
|
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
return {
|
|
|
|
totalLocalVideos,
|
|
|
|
totalLocalVideoViews,
|
|
|
|
totalVideos
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 10:26:25 -04:00
|
|
|
static incrementViews (id: number, views: number) {
|
|
|
|
return VideoModel.increment('views', {
|
|
|
|
by: views,
|
|
|
|
where: {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-26 10:26:27 -05:00
|
|
|
static updateRatesOf (videoId: number, type: VideoRateType, t: Transaction) {
|
|
|
|
const field = type === 'like'
|
|
|
|
? 'likes'
|
|
|
|
: 'dislikes'
|
|
|
|
|
|
|
|
const rawQuery = `UPDATE "video" SET "${field}" = ` +
|
|
|
|
'(' +
|
2021-06-11 08:45:58 -04:00
|
|
|
'SELECT COUNT(id) FROM "accountVideoRate" WHERE "accountVideoRate"."videoId" = "video"."id" AND type = :rateType' +
|
2021-02-26 10:26:27 -05:00
|
|
|
') ' +
|
|
|
|
'WHERE "video"."id" = :videoId'
|
|
|
|
|
|
|
|
return AccountVideoRateModel.sequelize.query(rawQuery, {
|
|
|
|
transaction: t,
|
|
|
|
replacements: { videoId, rateType: type },
|
|
|
|
type: QueryTypes.UPDATE
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-11-16 09:02:48 -05:00
|
|
|
static checkVideoHasInstanceFollow (videoId: number, followerActorId: number) {
|
|
|
|
// Instances only share videos
|
|
|
|
const query = 'SELECT 1 FROM "videoShare" ' +
|
2020-01-31 10:56:52 -05:00
|
|
|
'INNER JOIN "actorFollow" ON "actorFollow"."targetActorId" = "videoShare"."actorId" ' +
|
2020-06-09 09:59:35 -04:00
|
|
|
'WHERE "actorFollow"."actorId" = $followerActorId AND "actorFollow"."state" = \'accepted\' AND "videoShare"."videoId" = $videoId ' +
|
2020-01-31 10:56:52 -05:00
|
|
|
'LIMIT 1'
|
2018-11-16 09:02:48 -05:00
|
|
|
|
|
|
|
const options = {
|
2019-10-21 08:50:55 -04:00
|
|
|
type: QueryTypes.SELECT as QueryTypes.SELECT,
|
2018-11-16 09:02:48 -05:00
|
|
|
bind: { followerActorId, videoId },
|
|
|
|
raw: true
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.sequelize.query(query, options)
|
|
|
|
.then(results => results.length === 1)
|
|
|
|
}
|
|
|
|
|
2021-06-11 08:45:58 -04:00
|
|
|
static bulkUpdateSupportField (ofChannel: MChannel, t: Transaction) {
|
2019-05-31 10:30:11 -04:00
|
|
|
const options = {
|
|
|
|
where: {
|
2021-06-11 08:45:58 -04:00
|
|
|
channelId: ofChannel.id
|
2019-05-31 10:30:11 -04:00
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2021-06-11 08:45:58 -04:00
|
|
|
return VideoModel.update({ support: ofChannel.support }, options)
|
2019-05-31 10:30:11 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static getAllIdsFromChannel (videoChannel: MChannelId): Promise<number[]> {
|
2019-05-31 10:30:11 -04:00
|
|
|
const query = {
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
where: {
|
|
|
|
channelId: videoChannel.id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.findAll(query)
|
2020-01-31 10:56:52 -05:00
|
|
|
.then(videos => videos.map(v => v.id))
|
2019-05-31 10:30:11 -04:00
|
|
|
}
|
|
|
|
|
2018-08-30 08:58:00 -04:00
|
|
|
// threshold corresponds to how many video the field should have to be returned
|
2018-09-14 05:52:23 -04:00
|
|
|
static async getRandomFieldSamples (field: 'category' | 'channelId', threshold: number, count: number) {
|
2018-10-15 10:43:14 -04:00
|
|
|
const serverActor = await getServerActor()
|
2018-09-14 05:52:23 -04:00
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
const queryOptions: BuildVideosListQueryOptions = {
|
2020-03-05 09:04:57 -05:00
|
|
|
attributes: [ `"${field}"` ],
|
|
|
|
group: `GROUP BY "${field}"`,
|
|
|
|
having: `HAVING COUNT("${field}") >= ${threshold}`,
|
|
|
|
start: 0,
|
|
|
|
sort: 'random',
|
|
|
|
count,
|
2021-10-27 08:37:04 -04:00
|
|
|
serverAccountIdForBlock: serverActor.Account.id,
|
|
|
|
displayOnlyForFollower: {
|
|
|
|
actorId: serverActor.id,
|
|
|
|
orLocalVideos: true
|
|
|
|
}
|
2018-09-14 05:52:23 -04:00
|
|
|
}
|
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
const queryBuilder = new VideosIdListQueryBuilder(VideoModel.sequelize)
|
2018-08-30 08:58:00 -04:00
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
return queryBuilder.queryVideoIds(queryOptions)
|
|
|
|
.then(rows => rows.map(r => r[field]))
|
2018-08-30 08:58:00 -04:00
|
|
|
}
|
|
|
|
|
2018-09-14 03:57:21 -04:00
|
|
|
static buildTrendingQuery (trendingDays: number) {
|
|
|
|
return {
|
|
|
|
attributes: [],
|
|
|
|
subQuery: false,
|
|
|
|
model: VideoViewModel,
|
|
|
|
required: false,
|
|
|
|
where: {
|
|
|
|
startDate: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.gte]: new Date(new Date().getTime() - (24 * 3600 * 1000) * trendingDays)
|
2018-09-14 03:57:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 05:15:06 -04:00
|
|
|
private static async getAvailableForApi (
|
2021-06-10 02:53:32 -04:00
|
|
|
options: BuildVideosListQueryOptions,
|
2018-10-05 05:15:06 -04:00
|
|
|
countVideos = true
|
2020-06-05 04:42:36 -04:00
|
|
|
): Promise<ResultList<VideoModel>> {
|
2020-03-09 09:44:44 -04:00
|
|
|
function getCount () {
|
|
|
|
if (countVideos !== true) return Promise.resolve(undefined)
|
2018-09-03 12:05:12 -04:00
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
const countOptions = Object.assign({}, options, { isCount: true })
|
2021-06-10 02:53:32 -04:00
|
|
|
const queryBuilder = new VideosIdListQueryBuilder(VideoModel.sequelize)
|
2019-06-19 08:55:58 -04:00
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
return queryBuilder.countVideoIds(countOptions)
|
2020-03-09 09:44:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getModels () {
|
2020-03-13 08:43:26 -04:00
|
|
|
if (options.count === 0) return Promise.resolve([])
|
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
const queryBuilder = new VideosModelListQueryBuilder(VideoModel.sequelize)
|
2020-03-09 09:44:44 -04:00
|
|
|
|
2021-06-10 02:53:32 -04:00
|
|
|
return queryBuilder.queryVideos(options)
|
2020-03-09 09:44:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const [ count, rows ] = await Promise.all([ getCount(), getModels() ])
|
2018-08-31 03:53:07 -04:00
|
|
|
|
2020-01-08 05:36:37 -05:00
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-03 06:32:41 -04:00
|
|
|
private static throwIfPrivateIncludeWithoutUser (include: VideoInclude, user: MUserAccountId) {
|
|
|
|
if (VideoModel.isPrivateInclude(include) && !user?.hasRight(UserRight.SEE_ALL_VIDEOS)) {
|
2021-11-12 08:19:56 -05:00
|
|
|
throw new Error('Try to filter all-local but user cannot see all videos')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static throwIfPrivacyOneOfWithoutUser (privacyOneOf: VideoPrivacy[], user: MUserAccountId) {
|
|
|
|
if (privacyOneOf && !user?.hasRight(UserRight.SEE_ALL_VIDEOS)) {
|
|
|
|
throw new Error('Try to choose video privacies but user cannot see all videos')
|
2021-11-03 06:32:41 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-29 04:54:27 -04:00
|
|
|
private static isPrivateInclude (include: VideoInclude) {
|
|
|
|
return include & VideoInclude.BLACKLISTED ||
|
|
|
|
include & VideoInclude.BLOCKED_OWNER ||
|
|
|
|
include & VideoInclude.NOT_PUBLISHED_STATE
|
|
|
|
}
|
|
|
|
|
2019-07-23 06:04:15 -04:00
|
|
|
isBlacklisted () {
|
|
|
|
return !!this.VideoBlacklist
|
|
|
|
}
|
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
isBlocked () {
|
2020-06-17 04:55:40 -04:00
|
|
|
return this.VideoChannel.Account.Actor.Server?.isBlocked() || this.VideoChannel.Account.isBlocked()
|
2019-07-31 09:57:32 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
getQualityFileBy<T extends MVideoWithFile> (this: T, fun: (files: MVideoFile[], it: (file: MVideoFile) => number) => MVideoFile) {
|
2021-01-21 09:58:17 -05:00
|
|
|
// We first transcode to WebTorrent format, so try this array first
|
2019-11-15 09:06:03 -05:00
|
|
|
if (Array.isArray(this.VideoFiles) && this.VideoFiles.length !== 0) {
|
2019-12-11 03:51:17 -05:00
|
|
|
const file = fun(this.VideoFiles, file => file.resolution)
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
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 })
|
|
|
|
|
2019-12-11 03:51:17 -05:00
|
|
|
const file = fun(streamingPlaylistWithVideo.VideoFiles, file => file.resolution)
|
2019-11-15 09:06:03 -05:00
|
|
|
return Object.assign(file, { VideoStreamingPlaylist: streamingPlaylistWithVideo })
|
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return undefined
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
getMaxQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
|
2019-12-11 03:51:17 -05:00
|
|
|
return this.getQualityFileBy(maxBy)
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
getMinQualityFile<T extends MVideoWithFile> (this: T): MVideoFileVideo | MVideoFileStreamingPlaylistVideo {
|
2019-12-11 03:51:17 -05:00
|
|
|
return this.getQualityFileBy(minBy)
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
getWebTorrentFile<T extends MVideoWithFile> (this: T, resolution: number): MVideoFileVideo {
|
2019-08-01 08:19:18 -04:00
|
|
|
if (Array.isArray(this.VideoFiles) === false) return undefined
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const file = this.VideoFiles.find(f => f.resolution === resolution)
|
|
|
|
if (!file) return undefined
|
|
|
|
|
|
|
|
return Object.assign(file, { Video: this })
|
2019-08-01 08:19:18 -04:00
|
|
|
}
|
|
|
|
|
2021-01-25 05:33:26 -05:00
|
|
|
hasWebTorrentFiles () {
|
|
|
|
return Array.isArray(this.VideoFiles) === true && this.VideoFiles.length !== 0
|
|
|
|
}
|
|
|
|
|
2021-06-08 11:29:45 -04:00
|
|
|
async addAndSaveThumbnail (thumbnail: MThumbnail, transaction?: Transaction) {
|
2019-04-23 03:50:57 -04:00
|
|
|
thumbnail.videoId = this.id
|
|
|
|
|
|
|
|
const savedThumbnail = await thumbnail.save({ transaction })
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
if (Array.isArray(this.Thumbnails) === false) this.Thumbnails = []
|
|
|
|
|
2021-11-10 09:13:56 -05:00
|
|
|
this.Thumbnails = this.Thumbnails.filter(t => t.id !== savedThumbnail.id)
|
2019-04-23 03:50:57 -04:00
|
|
|
this.Thumbnails.push(savedThumbnail)
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
getMiniature () {
|
2019-04-17 04:07:00 -04:00
|
|
|
if (Array.isArray(this.Thumbnails) === false) return undefined
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
return this.Thumbnails.find(t => t.type === ThumbnailType.MINIATURE)
|
2019-04-17 04:07:00 -04:00
|
|
|
}
|
|
|
|
|
2020-02-06 11:39:19 -05:00
|
|
|
hasPreview () {
|
|
|
|
return !!this.getPreview()
|
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
getPreview () {
|
|
|
|
if (Array.isArray(this.Thumbnails) === false) return undefined
|
|
|
|
|
|
|
|
return this.Thumbnails.find(t => t.type === ThumbnailType.PREVIEW)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2016-12-29 13:07:05 -05:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
isOwned () {
|
|
|
|
return this.remote === false
|
2017-10-30 05:16:27 -04:00
|
|
|
}
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
getWatchStaticPath () {
|
2021-07-27 03:07:38 -04:00
|
|
|
return buildVideoWatchPath({ shortUUID: uuidToShort(this.uuid) })
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2018-07-12 13:02:00 -04:00
|
|
|
getEmbedStaticPath () {
|
2021-07-26 09:04:37 -04:00
|
|
|
return buildVideoEmbedPath(this)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
getMiniatureStaticPath () {
|
|
|
|
const thumbnail = this.getMiniature()
|
2019-04-17 04:07:00 -04:00
|
|
|
if (!thumbnail) return null
|
|
|
|
|
|
|
|
return join(STATIC_PATHS.THUMBNAILS, thumbnail.filename)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
2017-05-02 16:02:27 -04:00
|
|
|
|
2018-07-12 13:02:00 -04:00
|
|
|
getPreviewStaticPath () {
|
2019-04-17 04:07:00 -04:00
|
|
|
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 05:32:40 -04:00
|
|
|
return join(LAZY_STATIC_PATHS.PREVIEWS, preview.filename)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-02 06:20:26 -04:00
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
toFormattedJSON (this: MVideoFormattable, options?: VideoFormattingJSONOptions): Video {
|
2018-09-18 05:02:51 -04:00
|
|
|
return videoModelToFormattedJSON(this, options)
|
2017-10-09 05:06:13 -04:00
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
toFormattedDetailsJSON (this: MVideoFormattableDetails): VideoDetails {
|
2018-09-18 05:02:51 -04:00
|
|
|
return videoModelToFormattedDetailsJSON(this)
|
2018-04-16 18:49:04 -04:00
|
|
|
}
|
|
|
|
|
2021-02-18 05:22:35 -05:00
|
|
|
getFormattedVideoFilesJSON (includeMagnet = true): VideoFile[] {
|
2021-01-27 10:42:13 -05:00
|
|
|
let files: VideoFile[] = []
|
2020-08-24 10:11:37 -04:00
|
|
|
|
|
|
|
if (Array.isArray(this.VideoFiles)) {
|
2021-02-18 05:22:35 -05:00
|
|
|
const result = videoFilesModelToFormattedJSON(this, this.VideoFiles, includeMagnet)
|
2021-01-27 10:42:13 -05:00
|
|
|
files = files.concat(result)
|
2020-08-24 10:11:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (const p of (this.VideoStreamingPlaylists || [])) {
|
2021-02-18 05:22:35 -05:00
|
|
|
const result = videoFilesModelToFormattedJSON(this, p.VideoFiles, includeMagnet)
|
2021-01-27 10:42:13 -05:00
|
|
|
files = files.concat(result)
|
2020-08-24 10:11:37 -04:00
|
|
|
}
|
|
|
|
|
2021-01-27 10:42:13 -05:00
|
|
|
return files
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2020-09-17 07:59:02 -04:00
|
|
|
toActivityPubObject (this: MVideoAP): VideoObject {
|
2018-09-18 05:02:51 -04:00
|
|
|
return videoModelToActivityPubObject(this)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
getTruncatedDescription () {
|
|
|
|
if (!this.description) return null
|
2017-08-25 05:36:23 -04:00
|
|
|
|
2018-03-21 10:00:58 -04:00
|
|
|
const maxLength = CONSTRAINTS_FIELDS.VIDEOS.TRUNCATED_DESCRIPTION.max
|
2019-10-21 03:48:21 -04:00
|
|
|
return peertubeTruncate(this.description, { length: maxLength })
|
2017-08-25 05:36:23 -04:00
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
getMaxQualityResolution () {
|
|
|
|
const file = this.getMaxQualityFile()
|
|
|
|
const videoOrPlaylist = file.getVideoOrStreamingPlaylist()
|
2017-11-10 08:34:45 -05:00
|
|
|
|
2021-11-18 08:35:08 -05:00
|
|
|
return VideoPathManager.Instance.makeAvailableVideoFile(file.withVideoOrPlaylist(videoOrPlaylist), originalFilePath => {
|
2021-08-17 02:26:20 -04:00
|
|
|
return getVideoFileResolution(originalFilePath)
|
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-11-10 08:34:45 -05:00
|
|
|
|
2018-09-19 04:16:44 -04:00
|
|
|
getDescriptionAPIPath () {
|
2017-12-12 11:53:50 -05:00
|
|
|
return `/api/${API_VERSION}/videos/${this.uuid}/description`
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
getHLSPlaylist (): MStreamingPlaylistFilesVideo {
|
2019-08-09 09:04:36 -04:00
|
|
|
if (!this.VideoStreamingPlaylists) return undefined
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const playlist = this.VideoStreamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
2021-11-09 05:05:35 -05:00
|
|
|
if (!playlist) return undefined
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
playlist.Video = this
|
|
|
|
|
|
|
|
return playlist
|
2019-08-09 09:04:36 -04:00
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
setHLSPlaylist (playlist: MStreamingPlaylist) {
|
|
|
|
const toAdd = [ playlist ] as [ VideoStreamingPlaylistModel ]
|
2018-12-04 11:08:55 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
if (Array.isArray(this.VideoStreamingPlaylists) === false || this.VideoStreamingPlaylists.length === 0) {
|
|
|
|
this.VideoStreamingPlaylists = toAdd
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.VideoStreamingPlaylists = this.VideoStreamingPlaylists
|
2020-01-31 10:56:52 -05:00
|
|
|
.filter(s => s.type !== VideoStreamingPlaylistType.HLS)
|
|
|
|
.concat(toAdd)
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|
|
|
|
|
2021-11-17 10:04:53 -05:00
|
|
|
removeWebTorrentFileAndTorrent (videoFile: MVideoFile, isRedundancy = false) {
|
2021-08-17 02:26:20 -04:00
|
|
|
const filePath = isRedundancy
|
|
|
|
? VideoPathManager.Instance.getFSRedundancyVideoFilePath(this, videoFile)
|
|
|
|
: VideoPathManager.Instance.getFSVideoFileOutputPath(this, videoFile)
|
2021-07-23 05:20:00 -04:00
|
|
|
|
|
|
|
const promises: Promise<any>[] = [ remove(filePath) ]
|
|
|
|
if (!isRedundancy) promises.push(videoFile.removeTorrent())
|
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
if (videoFile.storage === VideoStorage.OBJECT_STORAGE) {
|
|
|
|
promises.push(removeWebTorrentObjectStorage(videoFile))
|
|
|
|
}
|
|
|
|
|
2021-07-23 05:20:00 -04:00
|
|
|
return Promise.all(promises)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-24 10:48:05 -05:00
|
|
|
async removeStreamingPlaylistFiles (streamingPlaylist: MStreamingPlaylist, isRedundancy = false) {
|
2021-08-17 02:26:20 -04:00
|
|
|
const directoryPath = isRedundancy
|
|
|
|
? getHLSRedundancyDirectory(this)
|
|
|
|
: getHLSDirectory(this)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2020-01-24 10:48:05 -05:00
|
|
|
await remove(directoryPath)
|
|
|
|
|
|
|
|
if (isRedundancy !== true) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const streamingPlaylistWithFiles = streamingPlaylist as MStreamingPlaylistFilesVideo
|
2020-01-24 10:48:05 -05:00
|
|
|
streamingPlaylistWithFiles.Video = this
|
|
|
|
|
|
|
|
if (!Array.isArray(streamingPlaylistWithFiles.VideoFiles)) {
|
|
|
|
streamingPlaylistWithFiles.VideoFiles = await streamingPlaylistWithFiles.$get('VideoFiles')
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove physical files and torrents
|
|
|
|
await Promise.all(
|
2021-02-16 10:25:53 -05:00
|
|
|
streamingPlaylistWithFiles.VideoFiles.map(file => file.removeTorrent())
|
2020-01-24 10:48:05 -05:00
|
|
|
)
|
2021-08-17 02:26:20 -04:00
|
|
|
|
|
|
|
if (streamingPlaylist.storage === VideoStorage.OBJECT_STORAGE) {
|
2021-11-18 08:35:08 -05:00
|
|
|
await removeHLSObjectStorage(streamingPlaylist.withVideo(this))
|
2021-08-17 02:26:20 -04:00
|
|
|
}
|
2020-01-24 10:48:05 -05:00
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
2018-08-22 10:15:35 -04:00
|
|
|
isOutdated () {
|
|
|
|
if (this.isOwned()) return false
|
|
|
|
|
2019-03-19 09:13:53 -04:00
|
|
|
return isOutdated(this, ACTIVITY_PUB.VIDEO_REFRESH_INTERVAL)
|
2018-08-22 10:15:35 -04:00
|
|
|
}
|
|
|
|
|
2019-12-12 09:47:47 -05:00
|
|
|
hasPrivacyForFederation () {
|
2020-06-03 03:42:07 -04:00
|
|
|
return isPrivacyForFederation(this.privacy)
|
2019-12-12 09:47:47 -05:00
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
hasStateForFederation () {
|
|
|
|
return isStateForFederation(this.state)
|
|
|
|
}
|
|
|
|
|
2019-12-12 09:47:47 -05:00
|
|
|
isNewVideo (newPrivacy: VideoPrivacy) {
|
2020-06-03 03:42:07 -04:00
|
|
|
return this.hasPrivacyForFederation() === false && isPrivacyForFederation(newPrivacy) === true
|
2019-12-12 09:47:47 -05:00
|
|
|
}
|
|
|
|
|
2021-11-10 09:52:22 -05:00
|
|
|
setAsRefreshed (transaction?: Transaction) {
|
|
|
|
return setAsUpdated('video', this.id, transaction)
|
2018-11-20 04:05:51 -05:00
|
|
|
}
|
|
|
|
|
2019-12-12 09:47:47 -05: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
|
|
|
|
}
|
|
|
|
|
2021-10-08 09:34:07 -04:00
|
|
|
async setNewState (newState: VideoState, isNewVideo: boolean, transaction: Transaction) {
|
2021-08-17 02:26:20 -04:00
|
|
|
if (this.state === newState) throw new Error('Cannot use same state ' + newState)
|
|
|
|
|
|
|
|
this.state = newState
|
2016-12-24 10:59:17 -05:00
|
|
|
|
2021-10-08 09:34:07 -04:00
|
|
|
if (this.state === VideoState.PUBLISHED && isNewVideo) {
|
2021-08-17 02:26:20 -04:00
|
|
|
this.publishedAt = new Date()
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2021-08-17 02:26:20 -04:00
|
|
|
await this.save({ transaction })
|
2017-05-01 13:09:55 -04:00
|
|
|
}
|
2017-10-19 08:58:28 -04:00
|
|
|
|
2021-11-09 05:05:35 -05:00
|
|
|
getBandwidthBits (this: MVideo, videoFile: MVideoFile) {
|
2021-02-18 04:15:11 -05:00
|
|
|
return Math.ceil((videoFile.size * 8) / this.duration)
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2021-02-18 04:15:11 -05:00
|
|
|
getTrackerUrls () {
|
|
|
|
if (this.isOwned()) {
|
|
|
|
return [
|
|
|
|
WEBSERVER.URL + '/tracker/announce',
|
|
|
|
WEBSERVER.WS + '://' + WEBSERVER.HOSTNAME + ':' + WEBSERVER.PORT + '/tracker/socket'
|
|
|
|
]
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-02-18 04:15:11 -05:00
|
|
|
return this.Trackers.map(t => t.url)
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
2017-10-19 08:58:28 -04:00
|
|
|
}
|