PeerTube/server/models/redundancy/video-redundancy.ts

792 lines
21 KiB
TypeScript
Raw Normal View History

2020-12-08 14:30:29 +01:00
import { sample } from 'lodash'
2021-05-26 15:38:09 +02:00
import { literal, Op, QueryTypes, Transaction, WhereOptions } from 'sequelize'
2018-09-11 16:27:07 +02:00
import {
AllowNull,
2018-10-03 16:43:57 +02:00
BeforeDestroy,
2018-09-11 16:27:07 +02:00
BelongsTo,
Column,
CreatedAt,
DataType,
ForeignKey,
Is,
Model,
Scopes,
Table,
UpdatedAt
} from 'sequelize-typescript'
2020-12-08 14:30:29 +01:00
import { getServerActor } from '@server/models/application/application'
2021-02-01 11:18:50 +01:00
import { MActor, MVideoForRedundancyAPI, MVideoRedundancy, MVideoRedundancyAP, MVideoRedundancyVideo } from '@server/types/models'
2021-05-12 14:09:04 +02:00
import { AttributesOnly } from '@shared/core-utils'
2020-01-10 10:11:28 +01:00
import { VideoRedundanciesTarget } from '@shared/models/redundancy/video-redundancies-filters.model'
import {
FileRedundancyInformation,
StreamingPlaylistRedundancyInformation,
VideoRedundancy
} from '@shared/models/redundancy/video-redundancy.model'
2020-12-08 14:30:29 +01:00
import { CacheFileObject, VideoPrivacy } from '../../../shared'
import { VideoRedundancyStrategy, VideoRedundancyStrategyWithManual } from '../../../shared/models/redundancy'
import { isTestInstance } from '../../helpers/core-utils'
import { isActivityPubUrlValid, isUrlValid } from '../../helpers/custom-validators/activitypub/misc'
import { logger } from '../../helpers/logger'
import { CONFIG } from '../../initializers/config'
import { CONSTRAINTS_FIELDS, MIMETYPES } from '../../initializers/constants'
2021-05-11 11:15:29 +02:00
import { ActorModel } from '../actor/actor'
2020-12-08 14:30:29 +01:00
import { ServerModel } from '../server/server'
import { getSort, getVideoSort, parseAggregateResult, throwIfNotValid } from '../utils'
2021-04-07 17:09:49 +02:00
import { ScheduleVideoUpdateModel } from '../video/schedule-video-update'
2020-12-08 14:30:29 +01:00
import { VideoModel } from '../video/video'
import { VideoChannelModel } from '../video/video-channel'
import { VideoFileModel } from '../video/video-file'
import { VideoStreamingPlaylistModel } from '../video/video-streaming-playlist'
2018-09-11 16:27:07 +02:00
export enum ScopeNames {
WITH_VIDEO = 'WITH_VIDEO'
}
2019-04-23 09:50:57 +02:00
@Scopes(() => ({
2020-01-31 16:56:52 +01:00
[ScopeNames.WITH_VIDEO]: {
2018-09-11 16:27:07 +02:00
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoFileModel,
2019-01-29 08:37:25 +01:00
required: false,
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoModel,
2019-01-29 08:37:25 +01:00
required: true
}
]
},
{
2019-04-23 09:50:57 +02:00
model: VideoStreamingPlaylistModel,
2019-01-29 08:37:25 +01:00
required: false,
2018-09-11 16:27:07 +02:00
include: [
{
2019-04-23 09:50:57 +02:00
model: VideoModel,
2018-09-11 16:27:07 +02:00
required: true
}
]
}
2019-04-23 09:50:57 +02:00
]
2018-09-11 16:27:07 +02:00
}
2019-04-23 09:50:57 +02:00
}))
2018-09-11 16:27:07 +02:00
@Table({
tableName: 'videoRedundancy',
indexes: [
{
fields: [ 'videoFileId' ]
},
{
fields: [ 'actorId' ]
},
2021-06-01 08:44:47 +02:00
{
fields: [ 'expiresOn' ]
},
2018-09-11 16:27:07 +02:00
{
fields: [ 'url' ],
unique: true
}
]
})
2021-05-12 14:09:04 +02:00
export class VideoRedundancyModel extends Model<Partial<AttributesOnly<VideoRedundancyModel>>> {
2018-09-11 16:27:07 +02:00
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
2020-01-10 10:11:28 +01:00
@AllowNull(true)
2018-09-11 16:27:07 +02:00
@Column
expiresOn: Date
@AllowNull(false)
@Is('VideoRedundancyFileUrl', value => throwIfNotValid(value, isUrlValid, 'fileUrl'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS_REDUNDANCY.URL.max))
fileUrl: string
@AllowNull(false)
@Is('VideoRedundancyUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEOS_REDUNDANCY.URL.max))
url: string
@AllowNull(true)
@Column
strategy: string // Only used by us
@ForeignKey(() => VideoFileModel)
@Column
videoFileId: number
@BelongsTo(() => VideoFileModel, {
foreignKey: {
2019-01-29 08:37:25 +01:00
allowNull: true
2018-09-11 16:27:07 +02:00
},
onDelete: 'cascade'
})
VideoFile: VideoFileModel
2019-01-29 08:37:25 +01:00
@ForeignKey(() => VideoStreamingPlaylistModel)
@Column
videoStreamingPlaylistId: number
@BelongsTo(() => VideoStreamingPlaylistModel, {
foreignKey: {
allowNull: true
},
onDelete: 'cascade'
})
VideoStreamingPlaylist: VideoStreamingPlaylistModel
2018-09-11 16:27:07 +02:00
@ForeignKey(() => ActorModel)
@Column
actorId: number
@BelongsTo(() => ActorModel, {
foreignKey: {
allowNull: false
},
onDelete: 'cascade'
})
Actor: ActorModel
2018-10-03 16:43:57 +02:00
@BeforeDestroy
static async removeFile (instance: VideoRedundancyModel) {
2018-11-16 11:18:13 +01:00
if (!instance.isOwned()) return
2018-09-11 16:27:07 +02:00
2019-01-29 08:37:25 +01:00
if (instance.videoFileId) {
const videoFile = await VideoFileModel.loadWithVideo(instance.videoFileId)
2018-09-11 16:27:07 +02:00
2019-01-29 08:37:25 +01:00
const logIdentifier = `${videoFile.Video.uuid}-${videoFile.resolution}`
logger.info('Removing duplicated video file %s.', logIdentifier)
2018-10-03 16:43:57 +02:00
2021-07-23 11:20:00 +02:00
videoFile.Video.removeFileAndTorrent(videoFile, true)
.catch(err => logger.error('Cannot delete %s files.', logIdentifier, { err }))
2019-01-29 08:37:25 +01:00
}
if (instance.videoStreamingPlaylistId) {
const videoStreamingPlaylist = await VideoStreamingPlaylistModel.loadWithVideo(instance.videoStreamingPlaylistId)
const videoUUID = videoStreamingPlaylist.Video.uuid
logger.info('Removing duplicated video streaming playlist %s.', videoUUID)
2020-01-24 16:48:05 +01:00
videoStreamingPlaylist.Video.removeStreamingPlaylistFiles(videoStreamingPlaylist, true)
2020-01-31 16:56:52 +01:00
.catch(err => logger.error('Cannot delete video streaming playlist files of %s.', videoUUID, { err }))
2019-01-29 08:37:25 +01:00
}
return undefined
2018-09-11 16:27:07 +02:00
}
2019-08-15 11:53:26 +02:00
static async loadLocalByFileId (videoFileId: number): Promise<MVideoRedundancyVideo> {
const actor = await getServerActor()
2018-09-11 16:27:07 +02:00
const query = {
where: {
actorId: actor.id,
2018-09-11 16:27:07 +02:00
videoFileId
}
}
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
}
2021-02-02 08:48:48 +01:00
static async listLocalByVideoId (videoId: number): Promise<MVideoRedundancyVideo[]> {
const actor = await getServerActor()
const queryStreamingPlaylist = {
where: {
actorId: actor.id
},
include: [
{
model: VideoStreamingPlaylistModel.unscoped(),
required: true,
include: [
{
model: VideoModel.unscoped(),
required: true,
where: {
id: videoId
}
}
]
}
]
}
const queryFiles = {
where: {
actorId: actor.id
},
include: [
{
model: VideoFileModel,
required: true,
include: [
{
model: VideoModel,
required: true,
where: {
id: videoId
}
}
]
}
]
}
return Promise.all([
VideoRedundancyModel.findAll(queryStreamingPlaylist),
VideoRedundancyModel.findAll(queryFiles)
]).then(([ r1, r2 ]) => r1.concat(r2))
}
2019-08-15 11:53:26 +02:00
static async loadLocalByStreamingPlaylistId (videoStreamingPlaylistId: number): Promise<MVideoRedundancyVideo> {
2019-01-29 08:37:25 +01:00
const actor = await getServerActor()
const query = {
where: {
actorId: actor.id,
videoStreamingPlaylistId
}
}
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByIdWithVideo (id: number, transaction?: Transaction): Promise<MVideoRedundancyVideo> {
2020-01-10 10:11:28 +01:00
const query = {
where: { id },
transaction
}
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
}
2020-12-08 14:30:29 +01:00
static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoRedundancy> {
2018-09-11 16:27:07 +02:00
const query = {
where: {
url
},
transaction
2018-09-11 16:27:07 +02:00
}
return VideoRedundancyModel.findOne(query)
}
2018-09-28 10:56:13 +02:00
static async isLocalByVideoUUIDExists (uuid: string) {
const actor = await getServerActor()
const query = {
raw: true,
attributes: [ 'id' ],
where: {
actorId: actor.id
},
include: [
{
2020-01-31 16:56:52 +01:00
attributes: [],
2018-09-28 10:56:13 +02:00
model: VideoFileModel,
required: true,
include: [
{
2020-01-31 16:56:52 +01:00
attributes: [],
2018-09-28 10:56:13 +02:00
model: VideoModel,
required: true,
where: {
uuid
}
}
]
}
]
}
return VideoRedundancyModel.findOne(query)
2020-01-31 16:56:52 +01:00
.then(r => !!r)
2018-09-28 10:56:13 +02:00
}
2020-12-08 14:30:29 +01:00
static async getVideoSample (p: Promise<VideoModel[]>) {
2018-09-14 11:05:38 +02:00
const rows = await p
2019-08-13 10:22:54 +02:00
if (rows.length === 0) return undefined
2018-09-14 09:57:21 +02:00
const ids = rows.map(r => r.id)
const id = sample(ids)
2019-01-29 08:37:25 +01:00
return VideoModel.loadWithFiles(id, undefined, !isTestInstance())
2018-09-14 09:57:21 +02:00
}
2018-09-11 16:27:07 +02:00
static async findMostViewToDuplicate (randomizedFactor: number) {
2021-02-01 11:18:50 +01:00
const peertubeActor = await getServerActor()
2018-09-11 16:27:07 +02:00
// On VideoModel!
const query = {
2018-09-14 09:57:21 +02:00
attributes: [ 'id', 'views' ],
2018-09-11 16:27:07 +02:00
limit: randomizedFactor,
2018-09-14 09:57:21 +02:00
order: getVideoSort('-views'),
2018-09-25 18:05:54 +02:00
where: {
2020-11-06 14:33:31 +01:00
privacy: VideoPrivacy.PUBLIC,
2021-02-01 11:18:50 +01:00
isLive: false,
...this.buildVideoIdsForDuplication(peertubeActor)
2018-09-25 18:05:54 +02:00
},
2018-09-11 16:27:07 +02:00
include: [
2018-09-14 09:57:21 +02:00
VideoRedundancyModel.buildServerRedundancyInclude()
]
}
2018-09-14 11:05:38 +02:00
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
2018-09-14 09:57:21 +02:00
}
static async findTrendingToDuplicate (randomizedFactor: number) {
2021-02-01 11:18:50 +01:00
const peertubeActor = await getServerActor()
2018-09-14 09:57:21 +02:00
// On VideoModel!
const query = {
attributes: [ 'id', 'views' ],
subQuery: false,
group: 'VideoModel.id',
limit: randomizedFactor,
order: getVideoSort('-trending'),
2018-09-25 18:05:54 +02:00
where: {
2020-11-06 14:33:31 +01:00
privacy: VideoPrivacy.PUBLIC,
2021-02-01 11:18:50 +01:00
isLive: false,
...this.buildVideoIdsForDuplication(peertubeActor)
2018-09-25 18:05:54 +02:00
},
2018-09-14 09:57:21 +02:00
include: [
VideoRedundancyModel.buildServerRedundancyInclude(),
VideoModel.buildTrendingQuery(CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS)
2018-09-11 16:27:07 +02:00
]
}
2018-09-14 11:05:38 +02:00
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
}
static async findRecentlyAddedToDuplicate (randomizedFactor: number, minViews: number) {
2021-02-01 11:18:50 +01:00
const peertubeActor = await getServerActor()
2018-09-14 11:05:38 +02:00
// On VideoModel!
const query = {
attributes: [ 'id', 'publishedAt' ],
limit: randomizedFactor,
order: getVideoSort('-publishedAt'),
where: {
2018-09-25 18:05:54 +02:00
privacy: VideoPrivacy.PUBLIC,
2020-11-06 14:33:31 +01:00
isLive: false,
2018-09-14 11:05:38 +02:00
views: {
2020-01-31 16:56:52 +01:00
[Op.gte]: minViews
2021-02-01 11:18:50 +01:00
},
...this.buildVideoIdsForDuplication(peertubeActor)
2018-09-14 11:05:38 +02:00
},
include: [
2021-04-07 17:09:49 +02:00
VideoRedundancyModel.buildServerRedundancyInclude(),
// Required by publishedAt sort
{
model: ScheduleVideoUpdateModel.unscoped(),
required: false
}
2018-09-14 11:05:38 +02:00
]
}
2018-09-11 16:27:07 +02:00
2018-09-14 11:05:38 +02:00
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
2018-09-11 16:27:07 +02:00
}
2019-08-15 11:53:26 +02:00
static async loadOldestLocalExpired (strategy: VideoRedundancyStrategy, expiresAfterMs: number): Promise<MVideoRedundancyVideo> {
const expiredDate = new Date()
expiredDate.setMilliseconds(expiredDate.getMilliseconds() - expiresAfterMs)
const actor = await getServerActor()
const query = {
where: {
actorId: actor.id,
strategy,
createdAt: {
2020-01-31 16:56:52 +01:00
[Op.lt]: expiredDate
}
}
}
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findOne(query)
}
2021-08-26 11:01:59 +02:00
static async listLocalExpired (): Promise<MVideoRedundancyVideo[]> {
const actor = await getServerActor()
const query = {
where: {
actorId: actor.id,
expiresOn: {
2020-01-31 16:56:52 +01:00
[Op.lt]: new Date()
}
}
}
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
}
static async listRemoteExpired () {
const actor = await getServerActor()
2018-09-11 16:27:07 +02:00
const query = {
where: {
actorId: {
2019-04-23 09:50:57 +02:00
[Op.ne]: actor.id
},
2018-09-11 16:27:07 +02:00
expiresOn: {
2020-01-31 16:56:52 +01:00
[Op.lt]: new Date(),
[Op.ne]: null
2018-09-11 16:27:07 +02:00
}
}
}
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
2018-09-11 16:27:07 +02:00
}
static async listLocalOfServer (serverId: number) {
const actor = await getServerActor()
2019-01-29 08:37:25 +01:00
const buildVideoInclude = () => ({
model: VideoModel,
required: true,
include: [
{
2019-01-29 08:37:25 +01:00
attributes: [],
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
2019-01-29 08:37:25 +01:00
attributes: [],
model: ActorModel.unscoped(),
required: true,
2019-01-29 08:37:25 +01:00
where: {
serverId
}
}
]
}
]
2019-01-29 08:37:25 +01:00
})
const query = {
where: {
[Op.and]: [
{
actorId: actor.id
},
{
[Op.or]: [
{
'$VideoStreamingPlaylist.id$': {
[Op.ne]: null
}
},
{
'$VideoFile.id$': {
[Op.ne]: null
}
}
]
}
]
2019-01-29 08:37:25 +01:00
},
include: [
{
model: VideoFileModel.unscoped(),
2019-01-29 08:37:25 +01:00
required: false,
include: [ buildVideoInclude() ]
},
{
model: VideoStreamingPlaylistModel.unscoped(),
2019-01-29 08:37:25 +01:00
required: false,
include: [ buildVideoInclude() ]
}
]
}
return VideoRedundancyModel.findAll(query)
}
2020-01-10 10:11:28 +01:00
static listForApi (options: {
2020-01-31 16:56:52 +01:00
start: number
count: number
sort: string
target: VideoRedundanciesTarget
2020-01-10 10:11:28 +01:00
strategy?: string
}) {
const { start, count, sort, target, strategy } = options
2020-01-31 16:56:52 +01:00
const redundancyWhere: WhereOptions = {}
const videosWhere: WhereOptions = {}
2020-01-10 10:11:28 +01:00
let redundancySqlSuffix = ''
if (target === 'my-videos') {
Object.assign(videosWhere, { remote: false })
} else if (target === 'remote-videos') {
Object.assign(videosWhere, { remote: true })
Object.assign(redundancyWhere, { strategy: { [Op.ne]: null } })
redundancySqlSuffix = ' AND "videoRedundancy"."strategy" IS NOT NULL'
}
if (strategy) {
Object.assign(redundancyWhere, { strategy: strategy })
}
const videoFilterWhere = {
[Op.and]: [
{
2020-01-31 16:56:52 +01:00
[Op.or]: [
2020-01-10 10:11:28 +01:00
{
id: {
2020-01-31 16:56:52 +01:00
[Op.in]: literal(
2020-01-10 10:11:28 +01:00
'(' +
'SELECT "videoId" FROM "videoFile" ' +
'INNER JOIN "videoRedundancy" ON "videoRedundancy"."videoFileId" = "videoFile".id' +
redundancySqlSuffix +
')'
)
}
},
{
id: {
2020-01-31 16:56:52 +01:00
[Op.in]: literal(
2020-01-10 10:11:28 +01:00
'(' +
'select "videoId" FROM "videoStreamingPlaylist" ' +
'INNER JOIN "videoRedundancy" ON "videoRedundancy"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id' +
redundancySqlSuffix +
')'
)
}
}
]
},
videosWhere
]
}
// /!\ On video model /!\
const findOptions = {
offset: start,
limit: count,
order: getSort(sort),
include: [
{
required: false,
model: VideoFileModel,
2020-01-10 10:11:28 +01:00
include: [
{
model: VideoRedundancyModel.unscoped(),
required: false,
where: redundancyWhere
}
]
},
{
required: false,
model: VideoStreamingPlaylistModel.unscoped(),
include: [
{
model: VideoRedundancyModel.unscoped(),
required: false,
where: redundancyWhere
},
{
model: VideoFileModel,
2020-01-10 10:11:28 +01:00
required: false
}
]
}
],
where: videoFilterWhere
}
// /!\ On video model /!\
const countOptions = {
where: videoFilterWhere
}
return Promise.all([
VideoModel.findAll(findOptions),
VideoModel.count(countOptions)
]).then(([ data, total ]) => ({ total, data }))
}
static async getStats (strategy: VideoRedundancyStrategyWithManual) {
2018-09-14 14:57:59 +02:00
const actor = await getServerActor()
2021-02-01 11:18:50 +01:00
const sql = `WITH "tmp" AS ` +
`(` +
`SELECT "videoFile"."size" AS "videoFileSize", "videoStreamingFile"."size" AS "videoStreamingFileSize", ` +
`"videoFile"."videoId" AS "videoFileVideoId", "videoStreamingPlaylist"."videoId" AS "videoStreamingVideoId"` +
`FROM "videoRedundancy" AS "videoRedundancy" ` +
`LEFT JOIN "videoFile" AS "videoFile" ON "videoRedundancy"."videoFileId" = "videoFile"."id" ` +
`LEFT JOIN "videoStreamingPlaylist" ON "videoRedundancy"."videoStreamingPlaylistId" = "videoStreamingPlaylist"."id" ` +
`LEFT JOIN "videoFile" AS "videoStreamingFile" ` +
`ON "videoStreamingPlaylist"."id" = "videoStreamingFile"."videoStreamingPlaylistId" ` +
`WHERE "videoRedundancy"."strategy" = :strategy AND "videoRedundancy"."actorId" = :actorId` +
`), ` +
`"videoIds" AS (` +
`SELECT "videoFileVideoId" AS "videoId" FROM "tmp" ` +
`UNION SELECT "videoStreamingVideoId" AS "videoId" FROM "tmp" ` +
`) ` +
`SELECT ` +
`COALESCE(SUM("videoFileSize"), '0') + COALESCE(SUM("videoStreamingFileSize"), '0') AS "totalUsed", ` +
`(SELECT COUNT("videoIds"."videoId") FROM "videoIds") AS "totalVideos", ` +
`COUNT(*) AS "totalVideoFiles" ` +
`FROM "tmp"`
return VideoRedundancyModel.sequelize.query<any>(sql, {
replacements: { strategy, actorId: actor.id },
type: QueryTypes.SELECT
}).then(([ row ]) => ({
totalUsed: parseAggregateResult(row.totalUsed),
totalVideos: row.totalVideos,
totalVideoFiles: row.totalVideoFiles
}))
2018-09-14 14:57:59 +02:00
}
2020-01-10 10:11:28 +01:00
static toFormattedJSONStatic (video: MVideoForRedundancyAPI): VideoRedundancy {
2020-01-31 16:56:52 +01:00
const filesRedundancies: FileRedundancyInformation[] = []
const streamingPlaylistsRedundancies: StreamingPlaylistRedundancyInformation[] = []
2020-01-10 10:11:28 +01:00
for (const file of video.VideoFiles) {
for (const redundancy of file.RedundancyVideos) {
filesRedundancies.push({
id: redundancy.id,
fileUrl: redundancy.fileUrl,
strategy: redundancy.strategy,
createdAt: redundancy.createdAt,
updatedAt: redundancy.updatedAt,
expiresOn: redundancy.expiresOn,
size: file.size
})
}
}
for (const playlist of video.VideoStreamingPlaylists) {
const size = playlist.VideoFiles.reduce((a, b) => a + b.size, 0)
for (const redundancy of playlist.RedundancyVideos) {
streamingPlaylistsRedundancies.push({
id: redundancy.id,
fileUrl: redundancy.fileUrl,
strategy: redundancy.strategy,
createdAt: redundancy.createdAt,
updatedAt: redundancy.updatedAt,
expiresOn: redundancy.expiresOn,
size
})
}
}
return {
id: video.id,
name: video.name,
url: video.url,
uuid: video.uuid,
redundancies: {
files: filesRedundancies,
streamingPlaylists: streamingPlaylistsRedundancies
}
}
}
2019-01-29 08:37:25 +01:00
getVideo () {
2021-02-03 09:57:47 +01:00
if (this.VideoFile?.Video) return this.VideoFile.Video
2019-01-29 08:37:25 +01:00
2021-02-03 09:57:47 +01:00
if (this.VideoStreamingPlaylist?.Video) return this.VideoStreamingPlaylist.Video
return undefined
2019-01-29 08:37:25 +01:00
}
2021-08-26 11:01:59 +02:00
getVideoUUID () {
const video = this.getVideo()
if (!video) return undefined
return video.uuid
}
2018-11-16 11:18:13 +01:00
isOwned () {
return !!this.strategy
}
2019-08-21 14:31:57 +02:00
toActivityPubObject (this: MVideoRedundancyAP): CacheFileObject {
2019-01-29 08:37:25 +01:00
if (this.VideoStreamingPlaylist) {
return {
id: this.url,
type: 'CacheFile' as 'CacheFile',
object: this.VideoStreamingPlaylist.Video.url,
2020-01-10 10:11:28 +01:00
expires: this.expiresOn ? this.expiresOn.toISOString() : null,
2019-01-29 08:37:25 +01:00
url: {
type: 'Link',
mediaType: 'application/x-mpegURL',
href: this.fileUrl
}
}
}
2018-09-11 16:27:07 +02:00
return {
id: this.url,
type: 'CacheFile' as 'CacheFile',
object: this.VideoFile.Video.url,
2020-01-10 10:11:28 +01:00
expires: this.expiresOn ? this.expiresOn.toISOString() : null,
2018-09-11 16:27:07 +02:00
url: {
type: 'Link',
2020-01-31 16:56:52 +01:00
mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[this.VideoFile.extname] as any,
2018-09-11 16:27:07 +02:00
href: this.fileUrl,
height: this.VideoFile.resolution,
size: this.VideoFile.size,
fps: this.VideoFile.fps
}
}
}
2018-09-14 09:57:21 +02:00
// Don't include video files we already duplicated
2021-02-01 11:18:50 +01:00
private static buildVideoIdsForDuplication (peertubeActor: MActor) {
2019-04-23 09:50:57 +02:00
const notIn = literal(
2018-09-11 16:27:07 +02:00
'(' +
2021-02-01 11:18:50 +01:00
`SELECT "videoFile"."videoId" AS "videoId" FROM "videoRedundancy" ` +
`INNER JOIN "videoFile" ON "videoFile"."id" = "videoRedundancy"."videoFileId" ` +
`WHERE "videoRedundancy"."actorId" = ${peertubeActor.id} ` +
`UNION ` +
`SELECT "videoStreamingPlaylist"."videoId" AS "videoId" FROM "videoRedundancy" ` +
`INNER JOIN "videoStreamingPlaylist" ON "videoStreamingPlaylist"."id" = "videoRedundancy"."videoStreamingPlaylistId" ` +
`WHERE "videoRedundancy"."actorId" = ${peertubeActor.id} ` +
2018-09-11 16:27:07 +02:00
')'
)
2018-09-14 09:57:21 +02:00
return {
2021-02-01 11:18:50 +01:00
id: {
[Op.notIn]: notIn
2018-09-14 09:57:21 +02:00
}
}
}
private static buildServerRedundancyInclude () {
return {
attributes: [],
model: VideoChannelModel.unscoped(),
required: true,
include: [
{
attributes: [],
model: ActorModel.unscoped(),
required: true,
include: [
{
attributes: [],
model: ServerModel.unscoped(),
required: true,
where: {
redundancyAllowed: true
}
}
]
}
]
}
2018-09-11 16:27:07 +02:00
}
}