2018-09-11 10:27:07 -04:00
|
|
|
import { AbstractScheduler } from './abstract-scheduler'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { CONFIG, JOB_TTL, REDUNDANCY } from '../../initializers'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { logger } from '../../helpers/logger'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { VideosRedundancy } from '../../../shared/models/redundancy'
|
2018-09-11 10:27:07 -04:00
|
|
|
import { VideoRedundancyModel } from '../../models/redundancy/video-redundancy'
|
|
|
|
import { VideoFileModel } from '../../models/video/video-file'
|
|
|
|
import { downloadWebTorrentVideo } from '../../helpers/webtorrent'
|
|
|
|
import { join } from 'path'
|
|
|
|
import { rename } from 'fs-extra'
|
|
|
|
import { getServerActor } from '../../helpers/utils'
|
|
|
|
import { sendCreateCacheFile, sendUpdateCacheFile } from '../activitypub/send'
|
|
|
|
import { VideoModel } from '../../models/video/video'
|
|
|
|
import { getVideoCacheFileActivityPubUrl } from '../activitypub/url'
|
2018-09-24 07:07:33 -04:00
|
|
|
import { removeVideoRedundancy } from '../redundancy'
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
export class VideosRedundancyScheduler extends AbstractScheduler {
|
|
|
|
|
|
|
|
private static instance: AbstractScheduler
|
|
|
|
private executing = false
|
|
|
|
|
2018-09-19 10:21:09 -04:00
|
|
|
protected schedulerIntervalMs = CONFIG.REDUNDANCY.VIDEOS.CHECK_INTERVAL
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
super()
|
|
|
|
}
|
|
|
|
|
|
|
|
async execute () {
|
|
|
|
if (this.executing) return
|
|
|
|
|
|
|
|
this.executing = true
|
|
|
|
|
2018-09-19 10:12:07 -04:00
|
|
|
for (const obj of CONFIG.REDUNDANCY.VIDEOS.STRATEGIES) {
|
2018-09-24 07:07:33 -04:00
|
|
|
logger.info('Running redundancy scheduler for strategy %s.', obj.strategy)
|
2018-09-21 03:41:05 -04:00
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
try {
|
2018-09-14 05:05:38 -04:00
|
|
|
const videoToDuplicate = await this.findVideoToDuplicate(obj)
|
2018-09-11 10:27:07 -04:00
|
|
|
if (!videoToDuplicate) continue
|
|
|
|
|
|
|
|
const videoFiles = videoToDuplicate.VideoFiles
|
|
|
|
videoFiles.forEach(f => f.Video = videoToDuplicate)
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
await this.purgeCacheIfNeeded(obj, videoFiles)
|
|
|
|
|
|
|
|
if (await this.isTooHeavy(obj, videoFiles)) {
|
|
|
|
logger.info('Video %s is too big for our cache, skipping.', videoToDuplicate.url)
|
2018-09-11 10:27:07 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info('Will duplicate video %s in redundancy scheduler "%s".', videoToDuplicate.url, obj.strategy)
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
await this.createVideoRedundancy(obj, videoFiles)
|
2018-09-11 10:27:07 -04:00
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot run videos redundancy %s.', obj.strategy, { err })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
await this.extendsLocalExpiration()
|
|
|
|
|
|
|
|
await this.purgeRemoteExpired()
|
2018-09-19 10:21:09 -04:00
|
|
|
|
|
|
|
this.executing = false
|
|
|
|
}
|
|
|
|
|
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
private async extendsLocalExpiration () {
|
|
|
|
const expired = await VideoRedundancyModel.listLocalExpired()
|
|
|
|
|
|
|
|
for (const redundancyModel of expired) {
|
|
|
|
try {
|
|
|
|
const redundancy = CONFIG.REDUNDANCY.VIDEOS.STRATEGIES.find(s => s.strategy === redundancyModel.strategy)
|
|
|
|
await this.extendsExpirationOf(redundancyModel, redundancy.minLifetime)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot extend expiration of %s video from our redundancy system.', this.buildEntryLogId(redundancyModel))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
private async purgeRemoteExpired () {
|
|
|
|
const expired = await VideoRedundancyModel.listRemoteExpired()
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
for (const redundancyModel of expired) {
|
2018-09-11 10:27:07 -04:00
|
|
|
try {
|
2018-09-24 07:07:33 -04:00
|
|
|
await removeVideoRedundancy(redundancyModel)
|
2018-09-11 10:27:07 -04:00
|
|
|
} catch (err) {
|
2018-09-24 07:07:33 -04:00
|
|
|
logger.error('Cannot remove redundancy %s from our redundancy system.', this.buildEntryLogId(redundancyModel))
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
private findVideoToDuplicate (cache: VideosRedundancy) {
|
|
|
|
if (cache.strategy === 'most-views') {
|
|
|
|
return VideoRedundancyModel.findMostViewToDuplicate(REDUNDANCY.VIDEOS.RANDOMIZED_FACTOR)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cache.strategy === 'trending') {
|
|
|
|
return VideoRedundancyModel.findTrendingToDuplicate(REDUNDANCY.VIDEOS.RANDOMIZED_FACTOR)
|
|
|
|
}
|
2018-09-14 03:57:21 -04:00
|
|
|
|
2018-09-14 05:05:38 -04:00
|
|
|
if (cache.strategy === 'recently-added') {
|
2018-09-14 05:52:23 -04:00
|
|
|
const minViews = cache.minViews
|
2018-09-14 05:05:38 -04:00
|
|
|
return VideoRedundancyModel.findRecentlyAddedToDuplicate(REDUNDANCY.VIDEOS.RANDOMIZED_FACTOR, minViews)
|
|
|
|
}
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
private async createVideoRedundancy (redundancy: VideosRedundancy, filesToDuplicate: VideoFileModel[]) {
|
2018-09-11 10:27:07 -04:00
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
|
|
|
for (const file of filesToDuplicate) {
|
|
|
|
const existing = await VideoRedundancyModel.loadByFileId(file.id)
|
|
|
|
if (existing) {
|
2018-09-24 07:07:33 -04:00
|
|
|
await this.extendsExpirationOf(existing, redundancy.minLifetime)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// We need more attributes and check if the video still exists
|
|
|
|
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(file.Video.id)
|
|
|
|
if (!video) continue
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
logger.info('Duplicating %s - %d in videos redundancy with "%s" strategy.', video.url, file.resolution, redundancy.strategy)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
const { baseUrlHttp, baseUrlWs } = video.getBaseUrls()
|
|
|
|
const magnetUri = video.generateMagnetUri(file, baseUrlHttp, baseUrlWs)
|
|
|
|
|
|
|
|
const tmpPath = await downloadWebTorrentVideo({ magnetUri }, JOB_TTL['video-import'])
|
|
|
|
|
|
|
|
const destPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(file))
|
|
|
|
await rename(tmpPath, destPath)
|
|
|
|
|
|
|
|
const createdModel = await VideoRedundancyModel.create({
|
2018-09-24 07:07:33 -04:00
|
|
|
expiresOn: this.buildNewExpiration(redundancy.minLifetime),
|
2018-09-11 10:27:07 -04:00
|
|
|
url: getVideoCacheFileActivityPubUrl(file),
|
|
|
|
fileUrl: video.getVideoFileUrl(file, CONFIG.WEBSERVER.URL),
|
2018-09-24 07:07:33 -04:00
|
|
|
strategy: redundancy.strategy,
|
2018-09-11 10:27:07 -04:00
|
|
|
videoFileId: file.id,
|
|
|
|
actorId: serverActor.id
|
|
|
|
})
|
|
|
|
createdModel.VideoFile = file
|
|
|
|
|
|
|
|
await sendCreateCacheFile(serverActor, createdModel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
private async extendsExpirationOf (redundancy: VideoRedundancyModel, expiresAfterMs: number) {
|
|
|
|
logger.info('Extending expiration of %s.', redundancy.url)
|
|
|
|
|
|
|
|
const serverActor = await getServerActor()
|
|
|
|
|
|
|
|
redundancy.expiresOn = this.buildNewExpiration(expiresAfterMs)
|
|
|
|
await redundancy.save()
|
|
|
|
|
|
|
|
await sendUpdateCacheFile(serverActor, redundancy)
|
|
|
|
}
|
|
|
|
|
|
|
|
private async purgeCacheIfNeeded (redundancy: VideosRedundancy, filesToDuplicate: VideoFileModel[]) {
|
|
|
|
while (this.isTooHeavy(redundancy, filesToDuplicate)) {
|
|
|
|
const toDelete = await VideoRedundancyModel.loadOldestLocalThatAlreadyExpired(redundancy.strategy, redundancy.minLifetime)
|
|
|
|
if (!toDelete) return
|
|
|
|
|
|
|
|
await removeVideoRedundancy(toDelete)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async isTooHeavy (redundancy: VideosRedundancy, filesToDuplicate: VideoFileModel[]) {
|
|
|
|
const maxSize = redundancy.size - this.getTotalFileSizes(filesToDuplicate)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
const totalDuplicated = await VideoRedundancyModel.getTotalDuplicated(redundancy.strategy)
|
2018-09-11 10:27:07 -04:00
|
|
|
|
|
|
|
return totalDuplicated > maxSize
|
|
|
|
}
|
|
|
|
|
2018-09-24 07:07:33 -04:00
|
|
|
private buildNewExpiration (expiresAfterMs: number) {
|
|
|
|
return new Date(Date.now() + expiresAfterMs)
|
2018-09-11 10:27:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private buildEntryLogId (object: VideoRedundancyModel) {
|
|
|
|
return `${object.VideoFile.Video.url}-${object.VideoFile.resolution}`
|
|
|
|
}
|
|
|
|
|
|
|
|
private getTotalFileSizes (files: VideoFileModel[]) {
|
|
|
|
const fileReducer = (previous: number, current: VideoFileModel) => previous + current.size
|
|
|
|
|
|
|
|
return files.reduce(fileReducer, 0)
|
|
|
|
}
|
|
|
|
}
|