2017-11-23 11:36:15 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { remove } from 'fs-extra'
|
2020-03-09 09:44:44 -04:00
|
|
|
import { maxBy, minBy, pick } 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'
|
2021-05-07 11:14:39 -04:00
|
|
|
import { setAsUpdated } from '@server/helpers/database-utils'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { buildNSFWFilter } from '@server/helpers/express-utils'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { getPrivaciesForFederation, isPrivacyForFederation, isStateForFederation } from '@server/helpers/video'
|
2020-11-02 09:43:44 -05:00
|
|
|
import { LiveManager } from '@server/lib/live-manager'
|
2021-02-16 10:25:53 -05:00
|
|
|
import { getHLSDirectory, getVideoFilePath } from '@server/lib/video-paths'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
|
|
|
import { ModelCache } from '@server/models/model-cache'
|
2021-05-12 08:09:04 -04:00
|
|
|
import { AttributesOnly } from '@shared/core-utils'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { VideoFile } from '@shared/models/videos/video-file.model'
|
|
|
|
import { ResultList, UserRight, VideoPrivacy, VideoState } from '../../../shared'
|
2020-09-17 07:59:02 -04:00
|
|
|
import { VideoObject } from '../../../shared/models/activitypub/objects'
|
2021-02-26 10:26:27 -05:00
|
|
|
import { Video, VideoDetails, VideoRateType } from '../../../shared/models/videos'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { ThumbnailType } from '../../../shared/models/videos/thumbnail.type'
|
2018-03-13 05:24:28 -04:00
|
|
|
import { VideoFilter } from '../../../shared/models/videos/video-query.type'
|
2020-07-01 10:05:30 -04:00
|
|
|
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'
|
2019-11-15 09:06:03 -05:00
|
|
|
import { isBooleanValid } from '../../helpers/custom-validators/misc'
|
2017-12-12 11:53:50 -05:00
|
|
|
import {
|
2018-01-26 09:49:57 -05:00
|
|
|
isVideoCategoryValid,
|
|
|
|
isVideoDescriptionValid,
|
|
|
|
isVideoDurationValid,
|
|
|
|
isVideoLanguageValid,
|
|
|
|
isVideoLicenceValid,
|
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'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
2018-08-22 10:15:35 -04:00
|
|
|
ACTIVITY_PUB,
|
2018-01-26 09:49:57 -05:00
|
|
|
API_VERSION,
|
2019-02-26 04:55:40 -05:00
|
|
|
CONSTRAINTS_FIELDS,
|
2019-08-09 05:32:40 -04:00
|
|
|
LAZY_STATIC_PATHS,
|
2018-01-26 09:49:57 -05:00
|
|
|
STATIC_PATHS,
|
|
|
|
VIDEO_CATEGORIES,
|
|
|
|
VIDEO_LANGUAGES,
|
|
|
|
VIDEO_LICENCES,
|
2018-06-14 12:06:56 -04:00
|
|
|
VIDEO_PRIVACIES,
|
2019-04-11 05:33:44 -04:00
|
|
|
VIDEO_STATES,
|
|
|
|
WEBSERVER
|
2019-04-11 08:26:41 -04:00
|
|
|
} 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,
|
2020-03-05 09:04:57 -05:00
|
|
|
MVideoIdThumbnail,
|
|
|
|
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,
|
|
|
|
MVideoWithFile,
|
2020-01-28 08:45:17 -05:00
|
|
|
MVideoWithRights
|
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-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'
|
|
|
|
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 09:43:44 -05:00
|
|
|
import { VideoLiveModel } from './video-live'
|
2020-07-01 10:05:30 -04:00
|
|
|
import { VideoPlaylistElementModel } from './video-playlist-element'
|
2020-03-09 09:44:44 -04:00
|
|
|
import { buildListQuery, BuildVideosQueryOptions, wrapForAPIResults } from './video-query-builder'
|
2020-07-01 10:05:30 -04: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 05:15:06 -04:00
|
|
|
|
2018-06-14 12:06:56 -04:00
|
|
|
export enum ScopeNames {
|
2018-08-31 03:53:07 -04:00
|
|
|
AVAILABLE_FOR_LIST_IDS = 'AVAILABLE_FOR_LIST_IDS',
|
|
|
|
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',
|
2021-02-18 04:15:11 -05:00
|
|
|
WITH_TRACKERS = 'WITH_TRACKERS',
|
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_USER_HISTORY = 'WITH_USER_HISTORY',
|
|
|
|
WITH_STREAMING_PLAYLISTS = 'WITH_STREAMING_PLAYLISTS',
|
2019-04-17 04:07:00 -04:00
|
|
|
WITH_USER_ID = 'WITH_USER_ID',
|
2020-02-04 09:45:41 -05:00
|
|
|
WITH_IMMUTABLE_ATTRIBUTES = 'WITH_IMMUTABLE_ATTRIBUTES',
|
2020-11-02 09:43:44 -05:00
|
|
|
WITH_THUMBNAILS = 'WITH_THUMBNAILS',
|
|
|
|
WITH_LIVE = 'WITH_LIVE'
|
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-07-31 09:57:32 -04:00
|
|
|
export type AvailableForListIDsOptions = {
|
2018-10-12 09:26:04 -04:00
|
|
|
serverAccountId: number
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId: number
|
2018-08-31 03:53:07 -04:00
|
|
|
includeLocalVideos: boolean
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2019-07-31 09:57:32 -04:00
|
|
|
attributesType?: 'none' | 'id' | 'all'
|
2019-04-24 11:19:00 -04:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
filter?: VideoFilter
|
|
|
|
categoryOneOf?: number[]
|
|
|
|
nsfw?: boolean
|
|
|
|
licenceOneOf?: number[]
|
|
|
|
languageOneOf?: string[]
|
|
|
|
tagsOneOf?: string[]
|
|
|
|
tagsAllOf?: string[]
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
withFiles?: boolean
|
2019-02-26 04:55:40 -05:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
accountId?: number
|
2018-07-20 08:35:18 -04:00
|
|
|
videoChannelId?: number
|
2019-02-26 04:55:40 -05:00
|
|
|
|
|
|
|
videoPlaylistId?: number
|
|
|
|
|
2018-08-31 11:18:13 -04:00
|
|
|
trendingDays?: number
|
2019-08-15 05:53:26 -04:00
|
|
|
user?: MUserAccountId
|
|
|
|
historyOfUser?: MUserId
|
2019-06-19 08:55:58 -04:00
|
|
|
|
|
|
|
baseWhere?: WhereOptions[]
|
2018-07-20 08:35:18 -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-11-02 09:43:44 -05:00
|
|
|
[ScopeNames.WITH_LIVE]: {
|
|
|
|
include: [
|
|
|
|
{
|
2020-11-03 09:33:30 -05:00
|
|
|
model: VideoLiveModel.unscoped(),
|
2020-11-02 09:43:44 -05:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_USER_ID]: {
|
2019-01-29 02:37:25 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'accountId' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoChannelModel.unscoped(),
|
2019-01-29 02:37:25 -05:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'userId' ],
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel.unscoped(),
|
2019-01-29 02:37:25 -05:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
]
|
2019-01-29 02:37:25 -05:00
|
|
|
},
|
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
|
|
|
},
|
2021-02-18 04:15:11 -05:00
|
|
|
[ScopeNames.WITH_TRACKERS]: {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'url' ],
|
|
|
|
model: TrackerModel
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
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)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('VideoCategory', value => throwIfNotValid(value, isVideoCategoryValid, 'category', true))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
category: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('VideoLicence', value => throwIfNotValid(value, isVideoLicenceValid, 'licence', true))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
licence: number
|
|
|
|
|
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('VideoLanguage', value => throwIfNotValid(value, isVideoLanguageValid, 'language', true))
|
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
|
|
|
},
|
2018-04-25 04:21:38 -04:00
|
|
|
hooks: true
|
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[]
|
|
|
|
|
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
|
2018-07-12 13:02:00 -04:00
|
|
|
static async removeFiles (instance: VideoModel) {
|
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)) {
|
2020-01-08 09:11:38 -05:00
|
|
|
instance.VideoFiles = await instance.$get('VideoFiles')
|
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 => {
|
|
|
|
tasks.push(instance.removeFile(file))
|
2021-02-16 10:25:53 -05:00
|
|
|
tasks.push(file.removeTorrent())
|
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)) {
|
|
|
|
instance.VideoStreamingPlaylists = await instance.$get('VideoStreamingPlaylists')
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2020-09-25 04:04:21 -04:00
|
|
|
return LiveManager.Instance.stopSessionOf(instance.id)
|
|
|
|
}
|
|
|
|
|
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)) {
|
|
|
|
instance.VideoAbuses = await instance.$get('VideoAbuses')
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
static listLocal (): Promise<MVideo[]> {
|
2018-10-08 10:50:56 -04:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
remote: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:25:53 -05:00
|
|
|
return VideoModel.findAll(query)
|
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,
|
2020-05-05 08:08:07 -04:00
|
|
|
order: getVideoSort('-createdAt', [ 'Tags', 'name', 'ASC' ] as any), // FIXME: sequelize typings
|
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
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static async listPublishedLiveIds () {
|
2020-11-13 08:36:30 -05:00
|
|
|
const options = {
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
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)
|
|
|
|
|
|
|
|
return result.map(v => v.id)
|
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-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-05-03 05:06:19 -04:00
|
|
|
const { accountId, 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 + '%'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isLive) {
|
|
|
|
where.isLive = isLive
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
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
|
|
|
filter?: VideoFilter
|
|
|
|
isLive?: boolean
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
includeLocalVideos: boolean
|
|
|
|
withFiles: 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-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
|
|
|
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId?: number
|
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
|
|
|
}) {
|
2020-11-18 09:29:38 -05:00
|
|
|
if ((options.filter === 'all-local' || options.filter === 'all') && !options.user.hasRight(UserRight.SEE_ALL_VIDEOS)) {
|
2018-10-12 09:26:04 -04:00
|
|
|
throw new Error('Try to filter all-local but no user has not the see all videos right')
|
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-02-02 06:59:41 -05:00
|
|
|
let trendingAlgorithm
|
|
|
|
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-12-05 08:36:05 -05:00
|
|
|
// followerActorId === null has a meaning, so just check undefined
|
2020-03-05 09:04:57 -05:00
|
|
|
const followerActorId = options.followerActorId !== undefined
|
|
|
|
? options.followerActorId
|
|
|
|
: serverActor.id
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
const queryOptions = {
|
2020-03-05 09:04:57 -05:00
|
|
|
start: options.start,
|
|
|
|
count: options.count,
|
|
|
|
sort: options.sort,
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId,
|
2018-10-12 09:26:04 -04:00
|
|
|
serverAccountId: serverActor.Account.id,
|
2018-08-31 03:53:07 -04:00
|
|
|
nsfw: options.nsfw,
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive: options.isLive,
|
2018-08-31 03:53:07 -04:00
|
|
|
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 04:55:40 -05:00
|
|
|
videoPlaylistId: options.videoPlaylistId,
|
2018-08-31 11:18:13 -04:00
|
|
|
includeLocalVideos: options.includeLocalVideos,
|
2018-10-12 09:26:04 -04:00
|
|
|
user: options.user,
|
2018-12-17 09:52:38 -05:00
|
|
|
historyOfUser: options.historyOfUser,
|
2021-01-13 03:16:15 -05:00
|
|
|
trendingDays,
|
2021-02-02 06:59:41 -05:00
|
|
|
trendingAlgorithm,
|
2021-01-13 03:16:15 -05:00
|
|
|
search: options.search
|
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: {
|
2018-08-16 09:25:20 -04:00
|
|
|
includeLocalVideos: boolean
|
2018-07-24 05:09:00 -04:00
|
|
|
search?: string
|
2018-07-20 12:31:49 -04:00
|
|
|
start?: number
|
|
|
|
count?: number
|
|
|
|
sort?: string
|
|
|
|
startDate?: string // ISO 8601
|
|
|
|
endDate?: string // ISO 8601
|
2018-11-27 12:57:02 -05:00
|
|
|
originallyPublishedStartDate?: string
|
|
|
|
originallyPublishedEndDate?: string
|
2018-07-20 12:31:49 -04:00
|
|
|
nsfw?: boolean
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive?: boolean
|
2018-07-20 12:31:49 -04:00
|
|
|
categoryOneOf?: number[]
|
|
|
|
licenceOneOf?: number[]
|
|
|
|
languageOneOf?: string[]
|
|
|
|
tagsOneOf?: string[]
|
|
|
|
tagsAllOf?: string[]
|
|
|
|
durationMin?: number // seconds
|
|
|
|
durationMax?: number // seconds
|
2020-01-31 10:56:52 -05:00
|
|
|
user?: MUserAccountId
|
2018-10-10 05:46:50 -04:00
|
|
|
filter?: VideoFilter
|
2018-07-20 12:31:49 -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 = {
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId: serverActor.id,
|
2018-10-12 09:26:04 -04:00
|
|
|
serverAccountId: serverActor.Account.id,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
includeLocalVideos: options.includeLocalVideos,
|
|
|
|
nsfw: options.nsfw,
|
2021-05-03 05:06:19 -04:00
|
|
|
isLive: options.isLive,
|
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
categoryOneOf: options.categoryOneOf,
|
|
|
|
licenceOneOf: options.licenceOneOf,
|
|
|
|
languageOneOf: options.languageOneOf,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2018-08-31 03:53:07 -04:00
|
|
|
tagsOneOf: options.tagsOneOf,
|
2018-10-05 05:15:06 -04:00
|
|
|
tagsAllOf: options.tagsAllOf,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2018-10-12 09:26:04 -04:00
|
|
|
user: options.user,
|
2019-06-19 08:55:58 -04:00
|
|
|
filter: options.filter,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
start: options.start,
|
|
|
|
count: options.count,
|
|
|
|
sort: options.sort,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
startDate: options.startDate,
|
|
|
|
endDate: options.endDate,
|
2021-05-03 05:06:19 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
originallyPublishedStartDate: options.originallyPublishedStartDate,
|
|
|
|
originallyPublishedEndDate: options.originallyPublishedEndDate,
|
|
|
|
|
|
|
|
durationMin: options.durationMin,
|
|
|
|
durationMax: options.durationMax,
|
|
|
|
|
|
|
|
search: options.search
|
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)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static load (id: number | string, t?: Transaction): Promise<MVideoThumbnail> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
2018-09-18 06:00:49 -04:00
|
|
|
const options = {
|
|
|
|
where,
|
|
|
|
transaction: t
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadWithBlacklist (id: number | string, t?: Transaction): Promise<MVideoThumbnailBlacklist> {
|
2019-08-22 04:46:54 -04:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
|
|
|
const options = {
|
|
|
|
where,
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.scope([
|
|
|
|
ScopeNames.WITH_THUMBNAILS,
|
|
|
|
ScopeNames.WITH_BLACKLISTED
|
|
|
|
]).findOne(options)
|
|
|
|
}
|
|
|
|
|
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 loadWithRights (id: number | string, t?: Transaction): Promise<MVideoWithRights> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
2019-01-29 02:37:25 -05:00
|
|
|
const options = {
|
|
|
|
where,
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope([
|
|
|
|
ScopeNames.WITH_BLACKLISTED,
|
2021-02-25 05:17:53 -05:00
|
|
|
ScopeNames.WITH_USER_ID
|
2019-04-17 04:07:00 -04:00
|
|
|
]).findOne(options)
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadOnlyId (id: number | string, t?: Transaction): Promise<MVideoIdThumbnail> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
2018-09-18 06:00:49 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const options = {
|
2018-09-18 06:00:49 -04:00
|
|
|
attributes: [ 'id' ],
|
|
|
|
where,
|
|
|
|
transaction: t
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
|
2018-09-18 06:00:49 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadWithFiles (id: number | string, t?: Transaction, logging?: boolean): Promise<MVideoWithAllFiles> {
|
2019-08-09 09:04:36 -04:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where,
|
|
|
|
transaction: t,
|
|
|
|
logging
|
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope([
|
2019-11-15 09:06:03 -05:00
|
|
|
ScopeNames.WITH_WEBTORRENT_FILES,
|
2019-04-17 04:07:00 -04:00
|
|
|
ScopeNames.WITH_STREAMING_PLAYLISTS,
|
|
|
|
ScopeNames.WITH_THUMBNAILS
|
2019-08-09 09:04:36 -04:00
|
|
|
]).findOne(query)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUUID (uuid: string): Promise<MVideoThumbnail> {
|
2017-12-20 05:05:10 -05:00
|
|
|
const options = {
|
|
|
|
where: {
|
|
|
|
uuid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(options)
|
2017-12-20 05:05:10 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoThumbnail> {
|
2019-04-18 05:28:17 -04:00
|
|
|
const query: FindOptions = {
|
2018-09-18 06:00:49 -04:00
|
|
|
where: {
|
|
|
|
url
|
2018-09-19 05:16:23 -04:00
|
|
|
},
|
|
|
|
transaction
|
2018-09-18 06:00:49 -04:00
|
|
|
}
|
|
|
|
|
2019-04-17 04:07:00 -04:00
|
|
|
return VideoModel.scope(ScopeNames.WITH_THUMBNAILS).findOne(query)
|
2018-09-19 05:16:23 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUrlAndPopulateAccount (url: string, transaction?: Transaction): Promise<MVideoAccountLightBlacklistAllFiles> {
|
2019-04-18 05:28:17 -04:00
|
|
|
const query: FindOptions = {
|
2018-09-19 05:16:23 -04:00
|
|
|
where: {
|
|
|
|
url
|
|
|
|
},
|
|
|
|
transaction
|
|
|
|
}
|
2018-09-18 06:00:49 -04:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
return VideoModel.scope([
|
|
|
|
ScopeNames.WITH_ACCOUNT_DETAILS,
|
2019-11-15 09:06:03 -05:00
|
|
|
ScopeNames.WITH_WEBTORRENT_FILES,
|
2019-04-17 04:07:00 -04:00
|
|
|
ScopeNames.WITH_STREAMING_PLAYLISTS,
|
2019-08-15 05:53:26 -04:00
|
|
|
ScopeNames.WITH_THUMBNAILS,
|
|
|
|
ScopeNames.WITH_BLACKLISTED
|
2019-01-29 02:37:25 -05:00
|
|
|
]).findOne(query)
|
2018-09-18 06:00:49 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadAndPopulateAccountAndServerAndTags (id: number | string, t?: Transaction, userId?: number): Promise<MVideoFullLight> {
|
2019-02-26 04:55:40 -05:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
2018-09-18 06:00:49 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const options = {
|
2019-04-23 03:50:57 -04:00
|
|
|
order: [ [ 'Tags', 'name', 'ASC' ] ] as any,
|
2018-09-18 06:00:49 -04:00
|
|
|
where,
|
2018-06-12 14:04:58 -04:00
|
|
|
transaction: t
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-31 06:52:52 -04:00
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
const scopes: (string | ScopeOptions)[] = [
|
2018-10-05 05:15:06 -04:00
|
|
|
ScopeNames.WITH_TAGS,
|
|
|
|
ScopeNames.WITH_BLACKLISTED,
|
2019-01-29 02:37:25 -05:00
|
|
|
ScopeNames.WITH_ACCOUNT_DETAILS,
|
|
|
|
ScopeNames.WITH_SCHEDULED_UPDATE,
|
2019-11-15 09:06:03 -05:00
|
|
|
ScopeNames.WITH_WEBTORRENT_FILES,
|
2019-04-17 04:07:00 -04:00
|
|
|
ScopeNames.WITH_STREAMING_PLAYLISTS,
|
2020-11-02 09:43:44 -05:00
|
|
|
ScopeNames.WITH_THUMBNAILS,
|
|
|
|
ScopeNames.WITH_LIVE
|
2019-01-29 02:37:25 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
if (userId) {
|
2019-04-23 03:50:57 -04:00
|
|
|
scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] })
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel
|
|
|
|
.scope(scopes)
|
|
|
|
.findOne(options)
|
|
|
|
}
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
static loadForGetAPI (parameters: {
|
2020-01-31 10:56:52 -05:00
|
|
|
id: number | string
|
|
|
|
t?: Transaction
|
2019-07-19 11:30:41 -04:00
|
|
|
userId?: number
|
2020-12-08 08:30:29 -05:00
|
|
|
}): Promise<MVideoDetails> {
|
2019-07-19 11:30:41 -04:00
|
|
|
const { id, t, userId } = parameters
|
2019-02-26 04:55:40 -05:00
|
|
|
const where = buildWhereIdOrUUID(id)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
const options = {
|
2019-04-18 05:28:17 -04:00
|
|
|
order: [ [ 'Tags', 'name', 'ASC' ] ] as any, // FIXME: sequelize typings
|
2019-01-29 02:37:25 -05:00
|
|
|
where,
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
const scopes: (string | ScopeOptions)[] = [
|
2019-01-29 02:37:25 -05:00
|
|
|
ScopeNames.WITH_TAGS,
|
|
|
|
ScopeNames.WITH_BLACKLISTED,
|
2018-10-05 05:15:06 -04:00
|
|
|
ScopeNames.WITH_ACCOUNT_DETAILS,
|
2019-01-29 02:37:25 -05:00
|
|
|
ScopeNames.WITH_SCHEDULED_UPDATE,
|
2019-04-17 04:07:00 -04:00
|
|
|
ScopeNames.WITH_THUMBNAILS,
|
2020-11-02 09:43:44 -05:00
|
|
|
ScopeNames.WITH_LIVE,
|
2021-02-18 04:15:11 -05:00
|
|
|
ScopeNames.WITH_TRACKERS,
|
2019-11-15 09:06:03 -05:00
|
|
|
{ method: [ ScopeNames.WITH_WEBTORRENT_FILES, true ] },
|
2019-04-23 03:50:57 -04:00
|
|
|
{ method: [ ScopeNames.WITH_STREAMING_PLAYLISTS, true ] }
|
2018-10-05 05:15:06 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
if (userId) {
|
2019-04-23 03:50:57 -04:00
|
|
|
scopes.push({ method: [ ScopeNames.WITH_USER_HISTORY, userId ] })
|
2018-10-05 05:15:06 -04:00
|
|
|
}
|
|
|
|
|
2017-12-14 04:07:57 -05:00
|
|
|
return VideoModel
|
2018-10-05 05:15:06 -04:00
|
|
|
.scope(scopes)
|
2017-12-28 05:16:08 -05:00
|
|
|
.findOne(options)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2020-03-13 08:43:26 -04:00
|
|
|
const { total: totalVideos } = await VideoModel.listForApi({
|
|
|
|
start: 0,
|
|
|
|
count: 0,
|
|
|
|
sort: '-publishedAt',
|
|
|
|
nsfw: buildNSFWFilter(),
|
|
|
|
includeLocalVideos: true,
|
|
|
|
withFiles: false
|
|
|
|
})
|
|
|
|
|
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}" = ` +
|
|
|
|
'(' +
|
|
|
|
'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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
static bulkUpdateSupportField (videoChannel: MChannel, t: Transaction) {
|
2019-05-31 10:30:11 -04:00
|
|
|
const options = {
|
|
|
|
where: {
|
|
|
|
channelId: videoChannel.id
|
|
|
|
},
|
|
|
|
transaction: t
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoModel.update({ support: videoChannel.support }, options)
|
|
|
|
}
|
|
|
|
|
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-12-05 08:36:05 -05:00
|
|
|
const followerActorId = serverActor.id
|
2018-09-14 05:52:23 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
const queryOptions: BuildVideosQueryOptions = {
|
|
|
|
attributes: [ `"${field}"` ],
|
|
|
|
group: `GROUP BY "${field}"`,
|
|
|
|
having: `HAVING COUNT("${field}") >= ${threshold}`,
|
|
|
|
start: 0,
|
|
|
|
sort: 'random',
|
|
|
|
count,
|
2018-10-15 10:43:14 -04:00
|
|
|
serverAccountId: serverActor.Account.id,
|
2018-12-05 08:36:05 -05:00
|
|
|
followerActorId,
|
2020-03-05 09:04:57 -05:00
|
|
|
includeLocalVideos: true
|
2018-09-14 05:52:23 -04:00
|
|
|
}
|
|
|
|
|
2021-05-12 08:09:04 -04:00
|
|
|
const { query, replacements } = buildListQuery(VideoModel.sequelize, queryOptions)
|
2018-08-30 08:58:00 -04:00
|
|
|
|
2020-03-05 09:04:57 -05:00
|
|
|
return this.sequelize.query<any>(query, { replacements, type: QueryTypes.SELECT })
|
|
|
|
.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 (
|
2020-03-05 09:04:57 -05:00
|
|
|
options: BuildVideosQueryOptions,
|
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-05-12 08:09:04 -04:00
|
|
|
const { query: queryCount, replacements: replacementsCount } = buildListQuery(VideoModel.sequelize, countOptions)
|
2019-06-19 08:55:58 -04:00
|
|
|
|
2020-03-09 09:44:44 -04: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 08:43:26 -04:00
|
|
|
if (options.count === 0) return Promise.resolve([])
|
|
|
|
|
2021-05-12 08:09:04 -04:00
|
|
|
const { query, replacements, order } = buildListQuery(VideoModel.sequelize, options)
|
2020-03-09 09:44:44 -04: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() ])
|
2018-08-31 03:53:07 -04:00
|
|
|
|
2020-01-08 05:36:37 -05:00
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
private static buildAPIResult (rows: any[]) {
|
2020-08-24 10:11:37 -04:00
|
|
|
const videosMemo: { [ id: number ]: VideoModel } = {}
|
|
|
|
const videoStreamingPlaylistMemo: { [ id: number ]: VideoStreamingPlaylistModel } = {}
|
2020-03-09 09:44:44 -04: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 10:42:13 -05:00
|
|
|
const videoFileKeys = [
|
|
|
|
'id',
|
|
|
|
'createdAt',
|
|
|
|
'updatedAt',
|
|
|
|
'resolution',
|
|
|
|
'size',
|
|
|
|
'extname',
|
2021-02-16 10:25:53 -05:00
|
|
|
'filename',
|
|
|
|
'fileUrl',
|
|
|
|
'torrentFilename',
|
|
|
|
'torrentUrl',
|
2021-01-27 10:42:13 -05:00
|
|
|
'infoHash',
|
|
|
|
'fps',
|
|
|
|
'videoId',
|
|
|
|
'videoStreamingPlaylistId'
|
|
|
|
]
|
|
|
|
const videoStreamingPlaylistKeys = [ 'id', 'type', 'playlistUrl' ]
|
2020-03-09 09:44:44 -04:00
|
|
|
const videoKeys = [
|
|
|
|
'id',
|
|
|
|
'uuid',
|
|
|
|
'name',
|
|
|
|
'category',
|
|
|
|
'licence',
|
|
|
|
'language',
|
|
|
|
'privacy',
|
|
|
|
'nsfw',
|
|
|
|
'description',
|
|
|
|
'support',
|
|
|
|
'duration',
|
|
|
|
'views',
|
|
|
|
'likes',
|
|
|
|
'dislikes',
|
|
|
|
'remote',
|
2020-12-16 08:19:43 -05:00
|
|
|
'isLive',
|
2020-03-09 09:44:44 -04:00
|
|
|
'url',
|
|
|
|
'commentsEnabled',
|
|
|
|
'downloadEnabled',
|
|
|
|
'waitTranscoding',
|
|
|
|
'state',
|
|
|
|
'publishedAt',
|
|
|
|
'originallyPublishedAt',
|
|
|
|
'channelId',
|
|
|
|
'createdAt',
|
|
|
|
'updatedAt'
|
|
|
|
]
|
2021-02-05 11:08:47 -05:00
|
|
|
const buildOpts = { raw: true }
|
2018-08-31 03:53:07 -04:00
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
function buildActor (rowActor: any) {
|
|
|
|
const avatarModel = rowActor.Avatar.id !== null
|
2021-04-06 05:35:56 -04:00
|
|
|
? new ActorImageModel(pick(rowActor.Avatar, avatarKeys), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
: null
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
const serverModel = rowActor.Server.id !== null
|
2021-02-05 11:08:47 -05:00
|
|
|
? new ServerModel(pick(rowActor.Server, serverKeys), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
: null
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2021-02-05 11:08:47 -05:00
|
|
|
const actorModel = new ActorModel(pick(rowActor, actorKeys), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
actorModel.Avatar = avatarModel
|
|
|
|
actorModel.Server = serverModel
|
|
|
|
|
|
|
|
return actorModel
|
2019-03-05 04:58:44 -05:00
|
|
|
}
|
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
for (const row of rows) {
|
2020-08-24 10:11:37 -04:00
|
|
|
if (!videosMemo[row.id]) {
|
2020-03-09 09:44:44 -04:00
|
|
|
// Build Channel
|
|
|
|
const channel = row.VideoChannel
|
2021-02-05 11:08:47 -05:00
|
|
|
const channelModel = new VideoChannelModel(pick(channel, [ 'id', 'name', 'description', 'actorId' ]), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
channelModel.Actor = buildActor(channel.Actor)
|
|
|
|
|
|
|
|
const account = row.VideoChannel.Account
|
2021-02-05 11:08:47 -05:00
|
|
|
const accountModel = new AccountModel(pick(account, [ 'id', 'name' ]), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
accountModel.Actor = buildActor(account.Actor)
|
|
|
|
|
|
|
|
channelModel.Account = accountModel
|
|
|
|
|
2021-02-08 04:51:10 -05:00
|
|
|
const videoModel = new VideoModel(pick(row, videoKeys), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
videoModel.VideoChannel = channelModel
|
|
|
|
|
|
|
|
videoModel.UserVideoHistories = []
|
|
|
|
videoModel.Thumbnails = []
|
|
|
|
videoModel.VideoFiles = []
|
2020-08-24 10:11:37 -04:00
|
|
|
videoModel.VideoStreamingPlaylists = []
|
2020-03-09 09:44:44 -04:00
|
|
|
|
2020-08-24 10:11:37 -04:00
|
|
|
videosMemo[row.id] = videoModel
|
2020-03-09 09:44:44 -04:00
|
|
|
// Don't take object value to have a sorted array
|
|
|
|
videos.push(videoModel)
|
|
|
|
}
|
|
|
|
|
2020-08-24 10:11:37 -04:00
|
|
|
const videoModel = videosMemo[row.id]
|
2020-03-09 09:44:44 -04:00
|
|
|
|
|
|
|
if (row.userVideoHistory?.id && !historyDone.has(row.userVideoHistory.id)) {
|
2021-02-05 11:08:47 -05:00
|
|
|
const historyModel = new UserVideoHistoryModel(pick(row.userVideoHistory, [ 'id', 'currentTime' ]), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
videoModel.UserVideoHistories.push(historyModel)
|
|
|
|
|
|
|
|
historyDone.add(row.userVideoHistory.id)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row.Thumbnails?.id && !thumbnailsDone.has(row.Thumbnails.id)) {
|
2021-02-05 11:08:47 -05:00
|
|
|
const thumbnailModel = new ThumbnailModel(pick(row.Thumbnails, [ 'id', 'type', 'filename' ]), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
videoModel.Thumbnails.push(thumbnailModel)
|
|
|
|
|
|
|
|
thumbnailsDone.add(row.Thumbnails.id)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (row.VideoFiles?.id && !videoFilesDone.has(row.VideoFiles.id)) {
|
2021-02-05 11:08:47 -05:00
|
|
|
const videoFileModel = new VideoFileModel(pick(row.VideoFiles, videoFileKeys), buildOpts)
|
2020-03-09 09:44:44 -04:00
|
|
|
videoModel.VideoFiles.push(videoFileModel)
|
|
|
|
|
|
|
|
videoFilesDone.add(row.VideoFiles.id)
|
|
|
|
}
|
2020-08-24 10:11:37 -04:00
|
|
|
|
|
|
|
if (row.VideoStreamingPlaylists?.id && !videoStreamingPlaylistMemo[row.VideoStreamingPlaylists.id]) {
|
2021-02-05 11:08:47 -05:00
|
|
|
const streamingPlaylist = new VideoStreamingPlaylistModel(pick(row.VideoStreamingPlaylists, videoStreamingPlaylistKeys), buildOpts)
|
2020-08-24 10:11:37 -04: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 11:08:47 -05:00
|
|
|
const videoFileModel = new VideoFileModel(pick(row.VideoStreamingPlaylists.VideoFiles, videoFileKeys), buildOpts)
|
2020-08-24 10:11:37 -04:00
|
|
|
streamingPlaylist.VideoFiles.push(videoFileModel)
|
|
|
|
|
|
|
|
videoFilesDone.add(row.VideoStreamingPlaylists.VideoFiles.id)
|
|
|
|
}
|
2020-03-09 09:44:44 -04:00
|
|
|
}
|
2019-03-05 04:58:44 -05:00
|
|
|
|
2020-03-09 09:44:44 -04:00
|
|
|
return videos
|
2018-08-31 03:53:07 -04:00
|
|
|
}
|
2018-03-13 05:24:28 -04:00
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
static getCategoryLabel (id: number) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return VIDEO_CATEGORIES[id] || 'Misc'
|
2018-03-19 05:24:12 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
static getLicenceLabel (id: number) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return VIDEO_LICENCES[id] || 'Unknown'
|
2018-03-19 05:24:12 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
static getLanguageLabel (id: string) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return VIDEO_LANGUAGES[id] || 'Unknown'
|
2018-03-19 05:24:12 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
static getPrivacyLabel (id: number) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return VIDEO_PRIVACIES[id] || 'Unknown'
|
2018-06-12 14:04:58 -04:00
|
|
|
}
|
2018-04-19 08:52:10 -04:00
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
static getStateLabel (id: number) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return VIDEO_STATES[id] || 'Unknown'
|
2018-04-19 08:52:10 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -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 = []
|
|
|
|
|
|
|
|
// Already have this thumbnail, skip
|
2019-04-23 03:50:57 -04:00
|
|
|
if (this.Thumbnails.find(t => t.id === savedThumbnail.id)) return
|
2019-04-17 04:07:00 -04:00
|
|
|
|
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-05-28 05:36:33 -04:00
|
|
|
return '/w/' + this.uuid
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2018-07-12 13:02:00 -04:00
|
|
|
getEmbedStaticPath () {
|
2017-12-12 11:53:50 -05:00
|
|
|
return '/videos/embed/' + this.uuid
|
|
|
|
}
|
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()
|
|
|
|
const originalFilePath = getVideoFilePath(videoOrPlaylist, file)
|
2017-11-10 08:34:45 -05:00
|
|
|
|
2018-02-27 09:57:28 -05: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)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
removeFile (videoFile: MVideoFile, isRedundancy = false) {
|
|
|
|
const filePath = getVideoFilePath(this, videoFile, isRedundancy)
|
2018-08-27 10:23:34 -04:00
|
|
|
return remove(filePath)
|
2018-08-02 11:48:50 -04:00
|
|
|
.catch(err => logger.warn('Cannot delete file %s.', filePath, { err }))
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-24 10:48:05 -05:00
|
|
|
async removeStreamingPlaylistFiles (streamingPlaylist: MStreamingPlaylist, isRedundancy = false) {
|
2019-11-21 06:16:27 -05:00
|
|
|
const directoryPath = getHLSDirectory(this, isRedundancy)
|
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
|
|
|
)
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2018-11-20 04:05:51 -05:00
|
|
|
setAsRefreshed () {
|
2021-05-07 11:14:39 -04:00
|
|
|
return setAsUpdated('video', this.id)
|
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
|
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
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 10:59:17 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return true
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2016-06-24 11:42:51 -04:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
return false
|
2017-05-01 13:09:55 -04:00
|
|
|
}
|
2017-10-19 08:58:28 -04:00
|
|
|
|
2021-02-18 04:15:11 -05:00
|
|
|
getBandwidthBits (videoFile: MVideoFile) {
|
|
|
|
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
|
|
|
}
|