Init commit
This commit is contained in:
133
server/scripts/create-move-video-storage-job.ts
Normal file
133
server/scripts/create-move-video-storage-job.ts
Normal file
@@ -0,0 +1,133 @@
|
||||
import { createCommand } from '@commander-js/extra-typings'
|
||||
import { FileStorage, FileStorageType, VideoState } from '@peertube/peertube-models'
|
||||
import { toCompleteUUID } from '@server/helpers/custom-validators/misc.js'
|
||||
import { CONFIG } from '@server/initializers/config.js'
|
||||
import { initDatabaseModels } from '@server/initializers/database.js'
|
||||
import { JobQueue } from '@server/lib/job-queue/index.js'
|
||||
import { hasVideoResourcesToBeMoved } from '@server/lib/move-storage/shared/move-video.js'
|
||||
import { moveToExternalStorageState, moveToFileSystemState } from '@server/lib/video-state.js'
|
||||
import { VideoModel } from '@server/models/video/video.js'
|
||||
import { MVideoFullLight } from '@server/types/models/index.js'
|
||||
|
||||
const program = createCommand()
|
||||
.description('Move videos to another storage.')
|
||||
.option('-v, --video <videoUUID>', 'Move a specific video')
|
||||
.option('-a, --all-videos', 'Migrate all videos')
|
||||
.option('-o, --to-object-storage', 'Move videos in object storage')
|
||||
.option('-f, --to-file-system', 'Move videos to file system')
|
||||
.option('--force', 'Force the migration even if the video is already in a "Moving" state')
|
||||
.parse(process.argv)
|
||||
|
||||
const options = program.opts()
|
||||
|
||||
if (!options.toObjectStorage && !options.toFileSystem) {
|
||||
console.error('You need to choose where to send video files using --to-object-storage or --to-file-system.')
|
||||
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)
|
||||
process.exit(-1)
|
||||
})
|
||||
|
||||
async function run () {
|
||||
await initDatabaseModels(true)
|
||||
|
||||
JobQueue.Instance.init()
|
||||
|
||||
let ids: number[] = []
|
||||
|
||||
if (options.video) {
|
||||
const video = await VideoModel.load(toCompleteUUID(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)
|
||||
}
|
||||
|
||||
if (video.isLive) {
|
||||
console.error('Cannot process live video')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
if (
|
||||
options.force !== true &&
|
||||
(video.state === VideoState.TO_MOVE_TO_EXTERNAL_STORAGE || video.state === VideoState.TO_MOVE_TO_FILE_SYSTEM)
|
||||
) {
|
||||
console.error('This video is already being moved to external storage/file system')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
ids.push(video.id)
|
||||
} else {
|
||||
ids = await VideoModel.listLocalIds()
|
||||
}
|
||||
|
||||
for (const id of ids) {
|
||||
const videoFull = await VideoModel.loadFull(id)
|
||||
if (videoFull.isLive) continue
|
||||
|
||||
if (options.toObjectStorage) {
|
||||
await createMoveJobIfNeeded({
|
||||
video: videoFull,
|
||||
targetStorage: FileStorage.OBJECT_STORAGE,
|
||||
handler: () => moveToExternalStorageState({ video: videoFull, isNewVideo: false, transaction: undefined })
|
||||
})
|
||||
|
||||
continue
|
||||
}
|
||||
|
||||
if (options.toFileSystem) {
|
||||
await createMoveJobIfNeeded({
|
||||
video: videoFull,
|
||||
targetStorage: FileStorage.FILE_SYSTEM,
|
||||
|
||||
handler: () => moveToFileSystemState({ video: videoFull, isNewVideo: false, transaction: undefined })
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async function createMoveJobIfNeeded (options: {
|
||||
video: MVideoFullLight
|
||||
targetStorage: FileStorageType
|
||||
|
||||
handler: () => Promise<any>
|
||||
}) {
|
||||
const { video, targetStorage, handler } = options
|
||||
|
||||
if (await hasVideoResourcesToBeMoved(video, targetStorage)) {
|
||||
const type = targetStorage === FileStorage.OBJECT_STORAGE
|
||||
? 'to object storage'
|
||||
: 'to file system'
|
||||
|
||||
console.log(`Moving ${type} video ${video.name}`)
|
||||
|
||||
const success = await handler()
|
||||
|
||||
if (!success) {
|
||||
console.error(
|
||||
`Cannot create move ${type} for ${video.name}: job creation may have failed or there may be pending transcoding jobs for this video`
|
||||
)
|
||||
} else {
|
||||
console.log(`Created job ${type} for ${video.name}.`)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user