From e1ab52d7ec7370a6f9f5937192d6003206af1ac0 Mon Sep 17 00:00:00 2001 From: kontrollanten <6680299+kontrollanten@users.noreply.github.com> Date: Tue, 9 Nov 2021 11:05:35 +0100 Subject: Add migrate-to-object-storage script (#4481) * 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 --- scripts/create-move-video-storage-job.ts | 86 ++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 scripts/create-move-video-storage-job.ts (limited to 'scripts/create-move-video-storage-job.ts') diff --git a/scripts/create-move-video-storage-job.ts b/scripts/create-move-video-storage-job.ts new file mode 100644 index 000000000..505bbd61b --- /dev/null +++ b/scripts/create-move-video-storage-job.ts @@ -0,0 +1,86 @@ +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}.`) + } +} -- cgit v1.2.3