e1ab52d7ec
* add migrate-to-object-storage-script closes #4467 * add migrate-to-unique-playlist-filenames script * fix(migrate-to-unique-playlist-filenames): update master/segments256 run updateMasterHLSPlaylist and updateSha256VODSegments after file rename. * Improve move to object storage scripts * PR remarks Co-authored-by: Chocobozzz <me@florianbigard.com>
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import { registerTSPaths } from '../server/helpers/register-ts-paths'
|
|
registerTSPaths()
|
|
|
|
import { program } from 'commander'
|
|
import { VideoModel } from '@server/models/video/video'
|
|
import { initDatabaseModels } from '@server/initializers/database'
|
|
import { VideoStorage } from '@shared/models'
|
|
import { moveToExternalStorageState } from '@server/lib/video-state'
|
|
import { JobQueue } from '@server/lib/job-queue'
|
|
import { CONFIG } from '@server/initializers/config'
|
|
|
|
program
|
|
.description('Move videos to another storage.')
|
|
.option('-o, --to-object-storage', 'Move videos in object storage')
|
|
.option('-v, --video [videoUUID]', 'Move a specific video')
|
|
.option('-a, --all-videos', 'Migrate all videos')
|
|
.parse(process.argv)
|
|
|
|
const options = program.opts()
|
|
|
|
if (!options['toObjectStorage']) {
|
|
console.error('You need to choose where to send video files.')
|
|
process.exit(-1)
|
|
}
|
|
|
|
if (!options['video'] && !options['allVideos']) {
|
|
console.error('You need to choose which videos to move.')
|
|
process.exit(-1)
|
|
}
|
|
|
|
if (options['toObjectStorage'] && !CONFIG.OBJECT_STORAGE.ENABLED) {
|
|
console.error('Object storage is not enabled on this instance.')
|
|
process.exit(-1)
|
|
}
|
|
|
|
run()
|
|
.then(() => process.exit(0))
|
|
.catch(err => console.error(err))
|
|
|
|
async function run () {
|
|
await initDatabaseModels(true)
|
|
|
|
JobQueue.Instance.init(true)
|
|
|
|
let ids: number[] = []
|
|
|
|
if (options['video']) {
|
|
const video = await VideoModel.load(options['video'])
|
|
|
|
if (!video) {
|
|
console.error('Unknown video ' + options['video'])
|
|
process.exit(-1)
|
|
}
|
|
|
|
if (video.remote === true) {
|
|
console.error('Cannot process a remote video')
|
|
process.exit(-1)
|
|
}
|
|
|
|
ids.push(video.id)
|
|
} else {
|
|
ids = await VideoModel.listLocalIds()
|
|
}
|
|
|
|
for (const id of ids) {
|
|
const videoFull = await VideoModel.loadAndPopulateAccountAndServerAndTags(id)
|
|
|
|
const files = videoFull.VideoFiles || []
|
|
const hls = videoFull.getHLSPlaylist()
|
|
|
|
if (files.some(f => f.storage === VideoStorage.FILE_SYSTEM) || hls?.storage === VideoStorage.FILE_SYSTEM) {
|
|
console.log('Processing video %s.', videoFull.name)
|
|
|
|
const success = await moveToExternalStorageState(videoFull, false, undefined)
|
|
|
|
if (!success) {
|
|
console.error(
|
|
'Cannot create move job for %s: job creation may have failed or there may be pending transcoding jobs for this video',
|
|
videoFull.name
|
|
)
|
|
}
|
|
}
|
|
|
|
console.log(`Created move-to-object-storage job for ${videoFull.name}.`)
|
|
}
|
|
}
|