2020-12-08 08:30:29 -05:00
|
|
|
import { sample } from 'lodash'
|
2021-05-26 09:38:09 -04:00
|
|
|
import { literal, Op, QueryTypes, Transaction, WhereOptions } from 'sequelize'
|
2018-09-11 10:27:07 -04:00
|
|
|
import {
|
|
|
|
AllowNull,
|
2018-10-03 10:43:57 -04:00
|
|
|
BeforeDestroy,
|
2018-09-11 10:27:07 -04:00
|
|
|
BelongsTo,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
ForeignKey,
|
|
|
|
Is,
|
|
|
|
Model,
|
|
|
|
Scopes,
|
|
|
|
Table,
|
|
|
|
UpdatedAt
|
|
|
|
} from 'sequelize-typescript'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { getServerActor } from '@server/models/application/application'
|
2021-02-01 05:18:50 -05:00
|
|
|
import { MActor, MVideoForRedundancyAPI, MVideoRedundancy, MVideoRedundancyAP, MVideoRedundancyVideo } from '@server/types/models'
|
2020-01-10 04:11:28 -05:00
|
|
|
import {
|
2021-12-24 04:14:47 -05:00
|
|
|
CacheFileObject,
|
2020-01-10 04:11:28 -05:00
|
|
|
FileRedundancyInformation,
|
|
|
|
StreamingPlaylistRedundancyInformation,
|
2021-12-24 04:14:47 -05:00
|
|
|
VideoPrivacy,
|
|
|
|
VideoRedundanciesTarget,
|
|
|
|
VideoRedundancy,
|
|
|
|
VideoRedundancyStrategy,
|
|
|
|
VideoRedundancyStrategyWithManual
|
|
|
|
} from '@shared/models'
|
|
|
|
import { AttributesOnly } from '@shared/typescript-utils'
|
2020-12-08 08:30:29 -05:00
|
|
|
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 05:15:29 -04:00
|
|
|
import { ActorModel } from '../actor/actor'
|
2020-12-08 08:30:29 -05:00
|
|
|
import { ServerModel } from '../server/server'
|
|
|
|
import { getSort, getVideoSort, parseAggregateResult, throwIfNotValid } from '../utils'
|
2021-04-07 11:09:49 -04:00
|
|
|
import { ScheduleVideoUpdateModel } from '../video/schedule-video-update'
|
2020-12-08 08:30:29 -05: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 10:27:07 -04:00
|
|
|
|
|
|
|
export enum ScopeNames {
|
|
|
|
WITH_VIDEO = 'WITH_VIDEO'
|
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@Scopes(() => ({
|
2020-01-31 10:56:52 -05:00
|
|
|
[ScopeNames.WITH_VIDEO]: {
|
2018-09-11 10:27:07 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoFileModel,
|
2019-01-29 02:37:25 -05:00
|
|
|
required: false,
|
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoModel,
|
2019-01-29 02:37:25 -05:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoStreamingPlaylistModel,
|
2019-01-29 02:37:25 -05:00
|
|
|
required: false,
|
2018-09-11 10:27:07 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: VideoModel,
|
2018-09-11 10:27:07 -04:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
]
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
@Table({
|
|
|
|
tableName: 'videoRedundancy',
|
|
|
|
indexes: [
|
|
|
|
{
|
|
|
|
fields: [ 'videoFileId' ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: [ 'actorId' ]
|
|
|
|
},
|
2021-06-01 02:44:47 -04:00
|
|
|
{
|
|
|
|
fields: [ 'expiresOn' ]
|
|
|
|
},
|
2018-09-11 10:27:07 -04:00
|
|
|
{
|
|
|
|
fields: [ 'url' ],
|
|
|
|
unique: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
2021-05-12 08:09:04 -04:00
|
|
|
export class VideoRedundancyModel extends Model<Partial<AttributesOnly<VideoRedundancyModel>>> {
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
@AllowNull(true)
|
2018-09-11 10:27:07 -04: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 02:37:25 -05:00
|
|
|
allowNull: true
|
2018-09-11 10:27:07 -04:00
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoFile: VideoFileModel
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
@ForeignKey(() => VideoStreamingPlaylistModel)
|
|
|
|
@Column
|
|
|
|
videoStreamingPlaylistId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => VideoStreamingPlaylistModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: true
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoStreamingPlaylist: VideoStreamingPlaylistModel
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
@ForeignKey(() => ActorModel)
|
|
|
|
@Column
|
|
|
|
actorId: number
|
|
|
|
|
|
|
|
@BelongsTo(() => ActorModel, {
|
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
Actor: ActorModel
|
|
|
|
|
2018-10-03 10:43:57 -04:00
|
|
|
@BeforeDestroy
|
|
|
|
static async removeFile (instance: VideoRedundancyModel) {
|
2018-11-16 05:18:13 -05:00
|
|
|
if (!instance.isOwned()) return
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
if (instance.videoFileId) {
|
|
|
|
const videoFile = await VideoFileModel.loadWithVideo(instance.videoFileId)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
const logIdentifier = `${videoFile.Video.uuid}-${videoFile.resolution}`
|
|
|
|
logger.info('Removing duplicated video file %s.', logIdentifier)
|
2018-10-03 10:43:57 -04:00
|
|
|
|
2021-11-17 10:04:53 -05:00
|
|
|
videoFile.Video.removeWebTorrentFileAndTorrent(videoFile, true)
|
2021-07-23 05:20:00 -04:00
|
|
|
.catch(err => logger.error('Cannot delete %s files.', logIdentifier, { err }))
|
2019-01-29 02:37:25 -05: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 10:48:05 -05:00
|
|
|
videoStreamingPlaylist.Video.removeStreamingPlaylistFiles(videoStreamingPlaylist, true)
|
2020-01-31 10:56:52 -05:00
|
|
|
.catch(err => logger.error('Cannot delete video streaming playlist files of %s.', videoUUID, { err }))
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
2018-10-03 10:57:40 -04:00
|
|
|
|
|
|
|
return undefined
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
static async loadLocalByFileId (videoFileId: number): Promise<MVideoRedundancyVideo> {
|
2018-10-01 03:41:48 -04:00
|
|
|
const actor = await getServerActor()
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
const query = {
|
|
|
|
where: {
|
2018-10-01 03:41:48 -04:00
|
|
|
actorId: actor.id,
|
2018-09-11 10:27:07 -04:00
|
|
|
videoFileId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
|
|
|
|
}
|
|
|
|
|
2021-02-02 02:48:48 -05: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 05:53:26 -04:00
|
|
|
static async loadLocalByStreamingPlaylistId (videoStreamingPlaylistId: number): Promise<MVideoRedundancyVideo> {
|
2019-01-29 02:37:25 -05:00
|
|
|
const actor = await getServerActor()
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
actorId: actor.id,
|
|
|
|
videoStreamingPlaylistId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByIdWithVideo (id: number, transaction?: Transaction): Promise<MVideoRedundancyVideo> {
|
2020-01-10 04:11:28 -05:00
|
|
|
const query = {
|
|
|
|
where: { id },
|
|
|
|
transaction
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.scope(ScopeNames.WITH_VIDEO).findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUrl (url: string, transaction?: Transaction): Promise<MVideoRedundancy> {
|
2018-09-11 10:27:07 -04:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
url
|
2018-09-24 07:07:33 -04:00
|
|
|
},
|
|
|
|
transaction
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2018-09-28 04:56:13 -04:00
|
|
|
static async isLocalByVideoUUIDExists (uuid: string) {
|
|
|
|
const actor = await getServerActor()
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
raw: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
where: {
|
|
|
|
actorId: actor.id
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
attributes: [],
|
2018-09-28 04:56:13 -04:00
|
|
|
model: VideoFileModel,
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
attributes: [],
|
2018-09-28 04:56:13 -04:00
|
|
|
model: VideoModel,
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
uuid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.findOne(query)
|
2020-01-31 10:56:52 -05:00
|
|
|
.then(r => !!r)
|
2018-09-28 04:56:13 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static async getVideoSample (p: Promise<VideoModel[]>) {
|
2018-09-14 05:05:38 -04:00
|
|
|
const rows = await p
|
2019-08-13 04:22:54 -04:00
|
|
|
if (rows.length === 0) return undefined
|
|
|
|
|
2018-09-14 03:57:21 -04:00
|
|
|
const ids = rows.map(r => r.id)
|
|
|
|
const id = sample(ids)
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
return VideoModel.loadWithFiles(id, undefined, !isTestInstance())
|
2018-09-14 03:57:21 -04:00
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
static async findMostViewToDuplicate (randomizedFactor: number) {
|
2021-02-01 05:18:50 -05:00
|
|
|
const peertubeActor = await getServerActor()
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
// On VideoModel!
|
|
|
|
const query = {
|
2018-09-14 03:57:21 -04:00
|
|
|
attributes: [ 'id', 'views' ],
|
2018-09-11 10:27:07 -04:00
|
|
|
limit: randomizedFactor,
|
2018-09-14 03:57:21 -04:00
|
|
|
order: getVideoSort('-views'),
|
2018-09-25 12:05:54 -04:00
|
|
|
where: {
|
2020-11-06 08:33:31 -05:00
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2021-02-01 05:18:50 -05:00
|
|
|
isLive: false,
|
|
|
|
...this.buildVideoIdsForDuplication(peertubeActor)
|
2018-09-25 12:05:54 -04:00
|
|
|
},
|
2018-09-11 10:27:07 -04:00
|
|
|
include: [
|
2018-09-14 03:57:21 -04:00
|
|
|
VideoRedundancyModel.buildServerRedundancyInclude()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
|
2018-09-14 03:57:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static async findTrendingToDuplicate (randomizedFactor: number) {
|
2021-02-01 05:18:50 -05:00
|
|
|
const peertubeActor = await getServerActor()
|
|
|
|
|
2018-09-14 03:57:21 -04:00
|
|
|
// On VideoModel!
|
|
|
|
const query = {
|
|
|
|
attributes: [ 'id', 'views' ],
|
|
|
|
subQuery: false,
|
|
|
|
group: 'VideoModel.id',
|
|
|
|
limit: randomizedFactor,
|
|
|
|
order: getVideoSort('-trending'),
|
2018-09-25 12:05:54 -04:00
|
|
|
where: {
|
2020-11-06 08:33:31 -05:00
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2021-02-01 05:18:50 -05:00
|
|
|
isLive: false,
|
|
|
|
...this.buildVideoIdsForDuplication(peertubeActor)
|
2018-09-25 12:05:54 -04:00
|
|
|
},
|
2018-09-14 03:57:21 -04:00
|
|
|
include: [
|
|
|
|
VideoRedundancyModel.buildServerRedundancyInclude(),
|
|
|
|
|
|
|
|
VideoModel.buildTrendingQuery(CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS)
|
2018-09-11 10:27:07 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
|
|
|
|
}
|
|
|
|
|
|
|
|
static async findRecentlyAddedToDuplicate (randomizedFactor: number, minViews: number) {
|
2021-02-01 05:18:50 -05:00
|
|
|
const peertubeActor = await getServerActor()
|
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
// On VideoModel!
|
|
|
|
const query = {
|
|
|
|
attributes: [ 'id', 'publishedAt' ],
|
|
|
|
limit: randomizedFactor,
|
|
|
|
order: getVideoSort('-publishedAt'),
|
|
|
|
where: {
|
2018-09-25 12:05:54 -04:00
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
2020-11-06 08:33:31 -05:00
|
|
|
isLive: false,
|
2018-09-14 05:05:38 -04:00
|
|
|
views: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.gte]: minViews
|
2021-02-01 05:18:50 -05:00
|
|
|
},
|
|
|
|
...this.buildVideoIdsForDuplication(peertubeActor)
|
2018-09-14 05:05:38 -04:00
|
|
|
},
|
|
|
|
include: [
|
2021-04-07 11:09:49 -04:00
|
|
|
VideoRedundancyModel.buildServerRedundancyInclude(),
|
|
|
|
|
|
|
|
// Required by publishedAt sort
|
|
|
|
{
|
|
|
|
model: ScheduleVideoUpdateModel.unscoped(),
|
|
|
|
required: false
|
|
|
|
}
|
2018-09-14 05:05:38 -04:00
|
|
|
]
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
return VideoRedundancyModel.getVideoSample(VideoModel.unscoped().findAll(query))
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
static async loadOldestLocalExpired (strategy: VideoRedundancyStrategy, expiresAfterMs: number): Promise<MVideoRedundancyVideo> {
|
2018-09-24 07:07:33 -04:00
|
|
|
const expiredDate = new Date()
|
|
|
|
expiredDate.setMilliseconds(expiredDate.getMilliseconds() - expiresAfterMs)
|
|
|
|
|
|
|
|
const actor = await getServerActor()
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
actorId: actor.id,
|
|
|
|
strategy,
|
|
|
|
createdAt: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.lt]: expiredDate
|
2018-09-24 07:07:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findOne(query)
|
|
|
|
}
|
|
|
|
|
2021-08-26 05:01:59 -04:00
|
|
|
static async listLocalExpired (): Promise<MVideoRedundancyVideo[]> {
|
2018-09-24 07:07:33 -04:00
|
|
|
const actor = await getServerActor()
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
actorId: actor.id,
|
|
|
|
expiresOn: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.lt]: new Date()
|
2018-09-24 07:07:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
|
|
|
|
}
|
|
|
|
|
|
|
|
static async listRemoteExpired () {
|
|
|
|
const actor = await getServerActor()
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
const query = {
|
|
|
|
where: {
|
2018-09-24 07:07:33 -04:00
|
|
|
actorId: {
|
2019-04-23 03:50:57 -04:00
|
|
|
[Op.ne]: actor.id
|
2018-09-24 07:07:33 -04:00
|
|
|
},
|
2018-09-11 10:27:07 -04:00
|
|
|
expiresOn: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.lt]: new Date(),
|
|
|
|
[Op.ne]: null
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
return VideoRedundancyModel.scope([ ScopeNames.WITH_VIDEO ]).findAll(query)
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2018-09-28 04:07:05 -04:00
|
|
|
static async listLocalOfServer (serverId: number) {
|
|
|
|
const actor = await getServerActor()
|
2019-01-29 02:37:25 -05:00
|
|
|
const buildVideoInclude = () => ({
|
|
|
|
model: VideoModel,
|
|
|
|
required: true,
|
2018-09-28 04:07:05 -04:00
|
|
|
include: [
|
|
|
|
{
|
2019-01-29 02:37:25 -05:00
|
|
|
attributes: [],
|
|
|
|
model: VideoChannelModel.unscoped(),
|
2018-09-28 04:07:05 -04:00
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2019-01-29 02:37:25 -05:00
|
|
|
attributes: [],
|
|
|
|
model: ActorModel.unscoped(),
|
2018-09-28 04:07:05 -04:00
|
|
|
required: true,
|
2019-01-29 02:37:25 -05:00
|
|
|
where: {
|
|
|
|
serverId
|
|
|
|
}
|
2018-09-28 04:07:05 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2019-01-29 02:37:25 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
2021-08-26 04:00:12 -04:00
|
|
|
[Op.and]: [
|
|
|
|
{
|
|
|
|
actorId: actor.id
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[Op.or]: [
|
|
|
|
{
|
|
|
|
'$VideoStreamingPlaylist.id$': {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'$VideoFile.id$': {
|
|
|
|
[Op.ne]: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2019-01-29 02:37:25 -05:00
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2021-08-26 04:00:12 -04:00
|
|
|
model: VideoFileModel.unscoped(),
|
2019-01-29 02:37:25 -05:00
|
|
|
required: false,
|
|
|
|
include: [ buildVideoInclude() ]
|
|
|
|
},
|
|
|
|
{
|
2021-08-26 04:00:12 -04:00
|
|
|
model: VideoStreamingPlaylistModel.unscoped(),
|
2019-01-29 02:37:25 -05:00
|
|
|
required: false,
|
|
|
|
include: [ buildVideoInclude() ]
|
|
|
|
}
|
|
|
|
]
|
2018-09-28 04:07:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return VideoRedundancyModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
static listForApi (options: {
|
2020-01-31 10:56:52 -05:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
|
|
|
target: VideoRedundanciesTarget
|
2020-01-10 04:11:28 -05:00
|
|
|
strategy?: string
|
|
|
|
}) {
|
|
|
|
const { start, count, sort, target, strategy } = options
|
2020-01-31 10:56:52 -05:00
|
|
|
const redundancyWhere: WhereOptions = {}
|
|
|
|
const videosWhere: WhereOptions = {}
|
2020-01-10 04:11:28 -05: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 10:56:52 -05:00
|
|
|
[Op.or]: [
|
2020-01-10 04:11:28 -05:00
|
|
|
{
|
|
|
|
id: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.in]: literal(
|
2020-01-10 04:11:28 -05:00
|
|
|
'(' +
|
|
|
|
'SELECT "videoId" FROM "videoFile" ' +
|
|
|
|
'INNER JOIN "videoRedundancy" ON "videoRedundancy"."videoFileId" = "videoFile".id' +
|
|
|
|
redundancySqlSuffix +
|
|
|
|
')'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.in]: literal(
|
2020-01-10 04:11:28 -05: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,
|
2020-03-10 09:39:40 -04:00
|
|
|
model: VideoFileModel,
|
2020-01-10 04:11:28 -05:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoRedundancyModel.unscoped(),
|
|
|
|
required: false,
|
|
|
|
where: redundancyWhere
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
required: false,
|
|
|
|
model: VideoStreamingPlaylistModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoRedundancyModel.unscoped(),
|
|
|
|
required: false,
|
|
|
|
where: redundancyWhere
|
|
|
|
},
|
|
|
|
{
|
2020-03-10 09:39:40 -04:00
|
|
|
model: VideoFileModel,
|
2020-01-10 04:11:28 -05: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 08:57:59 -04:00
|
|
|
const actor = await getServerActor()
|
|
|
|
|
2021-02-01 05:18:50 -05: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 08:57:59 -04:00
|
|
|
}
|
|
|
|
|
2020-01-10 04:11:28 -05:00
|
|
|
static toFormattedJSONStatic (video: MVideoForRedundancyAPI): VideoRedundancy {
|
2020-01-31 10:56:52 -05:00
|
|
|
const filesRedundancies: FileRedundancyInformation[] = []
|
|
|
|
const streamingPlaylistsRedundancies: StreamingPlaylistRedundancyInformation[] = []
|
2020-01-10 04:11:28 -05: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 02:37:25 -05:00
|
|
|
getVideo () {
|
2021-02-03 03:57:47 -05:00
|
|
|
if (this.VideoFile?.Video) return this.VideoFile.Video
|
2019-01-29 02:37:25 -05:00
|
|
|
|
2021-02-03 03:57:47 -05:00
|
|
|
if (this.VideoStreamingPlaylist?.Video) return this.VideoStreamingPlaylist.Video
|
2020-12-17 03:23:57 -05:00
|
|
|
|
|
|
|
return undefined
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
2021-08-26 05:01:59 -04:00
|
|
|
getVideoUUID () {
|
|
|
|
const video = this.getVideo()
|
|
|
|
if (!video) return undefined
|
|
|
|
|
|
|
|
return video.uuid
|
|
|
|
}
|
|
|
|
|
2018-11-16 05:18:13 -05:00
|
|
|
isOwned () {
|
|
|
|
return !!this.strategy
|
|
|
|
}
|
|
|
|
|
2019-08-21 08:31:57 -04:00
|
|
|
toActivityPubObject (this: MVideoRedundancyAP): CacheFileObject {
|
2019-01-29 02:37:25 -05:00
|
|
|
if (this.VideoStreamingPlaylist) {
|
|
|
|
return {
|
|
|
|
id: this.url,
|
|
|
|
type: 'CacheFile' as 'CacheFile',
|
|
|
|
object: this.VideoStreamingPlaylist.Video.url,
|
2020-01-10 04:11:28 -05:00
|
|
|
expires: this.expiresOn ? this.expiresOn.toISOString() : null,
|
2019-01-29 02:37:25 -05:00
|
|
|
url: {
|
|
|
|
type: 'Link',
|
|
|
|
mediaType: 'application/x-mpegURL',
|
|
|
|
href: this.fileUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
return {
|
|
|
|
id: this.url,
|
|
|
|
type: 'CacheFile' as 'CacheFile',
|
|
|
|
object: this.VideoFile.Video.url,
|
2020-01-10 04:11:28 -05:00
|
|
|
expires: this.expiresOn ? this.expiresOn.toISOString() : null,
|
2018-09-11 10:27:07 -04:00
|
|
|
url: {
|
|
|
|
type: 'Link',
|
2020-01-31 10:56:52 -05:00
|
|
|
mediaType: MIMETYPES.VIDEO.EXT_MIMETYPE[this.VideoFile.extname] as any,
|
2018-09-11 10:27:07 -04:00
|
|
|
href: this.fileUrl,
|
|
|
|
height: this.VideoFile.resolution,
|
|
|
|
size: this.VideoFile.size,
|
|
|
|
fps: this.VideoFile.fps
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-14 03:57:21 -04:00
|
|
|
// Don't include video files we already duplicated
|
2021-02-01 05:18:50 -05:00
|
|
|
private static buildVideoIdsForDuplication (peertubeActor: MActor) {
|
2019-04-23 03:50:57 -04:00
|
|
|
const notIn = literal(
|
2018-09-11 10:27:07 -04:00
|
|
|
'(' +
|
2021-02-01 05:18:50 -05: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 10:27:07 -04:00
|
|
|
')'
|
|
|
|
)
|
2018-09-14 03:57:21 -04:00
|
|
|
|
|
|
|
return {
|
2021-02-01 05:18:50 -05:00
|
|
|
id: {
|
|
|
|
[Op.notIn]: notIn
|
2018-09-14 03:57:21 -04: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 10:27:07 -04:00
|
|
|
}
|
|
|
|
}
|