2021-11-09 11:05:35 +01:00
|
|
|
import { program } from 'commander'
|
2023-07-31 14:34:36 +02:00
|
|
|
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'
|
2023-10-31 12:15:40 +01:00
|
|
|
import { moveToExternalStorageState, moveToFileSystemState } from '@server/lib/video-state.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { VideoModel } from '@server/models/video/video.js'
|
2024-02-12 10:47:52 +01:00
|
|
|
import { VideoState, FileStorage } from '@peertube/peertube-models'
|
2023-10-31 12:15:40 +01:00
|
|
|
import { MStreamingPlaylist, MVideoFile, MVideoFullLight } from '@server/types/models/index.js'
|
2021-11-09 11:05:35 +01:00
|
|
|
|
|
|
|
program
|
|
|
|
.description('Move videos to another storage.')
|
|
|
|
.option('-o, --to-object-storage', 'Move videos in object storage')
|
2023-10-31 12:15:40 +01:00
|
|
|
.option('-f, --to-file-system', 'Move videos to file system')
|
2021-11-09 11:05:35 +01:00
|
|
|
.option('-v, --video [videoUUID]', 'Move a specific video')
|
|
|
|
.option('-a, --all-videos', 'Migrate all videos')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
|
|
|
const options = program.opts()
|
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
if (!options['toObjectStorage'] && !options['toFileSystem']) {
|
|
|
|
console.error('You need to choose where to send video files using --to-object-storage or --to-file-system.')
|
2021-11-09 11:05:35 +01:00
|
|
|
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))
|
2023-06-02 15:18:39 +02:00
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
2021-11-09 11:05:35 +01:00
|
|
|
|
|
|
|
async function run () {
|
|
|
|
await initDatabaseModels(true)
|
|
|
|
|
2022-09-14 11:35:58 +02:00
|
|
|
JobQueue.Instance.init()
|
2021-11-09 11:05:35 +01:00
|
|
|
|
|
|
|
let ids: number[] = []
|
|
|
|
|
|
|
|
if (options['video']) {
|
2023-06-02 15:18:39 +02:00
|
|
|
const video = await VideoModel.load(toCompleteUUID(options['video']))
|
2021-11-09 11:05:35 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2021-12-17 14:55:12 +01:00
|
|
|
if (video.isLive) {
|
|
|
|
console.error('Cannot process live video')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
if (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')
|
2021-12-23 11:09:31 +01:00
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-11-09 11:05:35 +01:00
|
|
|
ids.push(video.id)
|
|
|
|
} else {
|
|
|
|
ids = await VideoModel.listLocalIds()
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const id of ids) {
|
2022-06-28 14:57:51 +02:00
|
|
|
const videoFull = await VideoModel.loadFull(id)
|
2023-03-07 11:53:06 +01:00
|
|
|
if (videoFull.isLive) continue
|
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
if (options['toObjectStorage']) {
|
|
|
|
await createMoveJobIfNeeded({
|
|
|
|
video: videoFull,
|
|
|
|
type: 'to object storage',
|
|
|
|
canProcessVideo: (files, hls) => {
|
2024-02-12 10:47:52 +01:00
|
|
|
return files.some(f => f.storage === FileStorage.FILE_SYSTEM) || hls?.storage === FileStorage.FILE_SYSTEM
|
2023-10-31 12:15:40 +01:00
|
|
|
},
|
|
|
|
handler: () => moveToExternalStorageState({ video: videoFull, isNewVideo: false, transaction: undefined })
|
|
|
|
})
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
2021-11-09 11:05:35 +01:00
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
if (options['toFileSystem']) {
|
|
|
|
await createMoveJobIfNeeded({
|
|
|
|
video: videoFull,
|
|
|
|
type: 'to file system',
|
2021-11-09 11:05:35 +01:00
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
canProcessVideo: (files, hls) => {
|
2024-02-12 10:47:52 +01:00
|
|
|
return files.some(f => f.storage === FileStorage.OBJECT_STORAGE) || hls?.storage === FileStorage.OBJECT_STORAGE
|
2023-10-31 12:15:40 +01:00
|
|
|
},
|
|
|
|
handler: () => moveToFileSystemState({ video: videoFull, isNewVideo: false, transaction: undefined })
|
|
|
|
})
|
2021-11-09 11:05:35 +01:00
|
|
|
}
|
2023-10-31 12:15:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function createMoveJobIfNeeded (options: {
|
|
|
|
video: MVideoFullLight
|
|
|
|
type: 'to object storage' | 'to file system'
|
2021-11-09 11:05:35 +01:00
|
|
|
|
2023-10-31 12:15:40 +01:00
|
|
|
canProcessVideo: (files: MVideoFile[], hls: MStreamingPlaylist) => boolean
|
|
|
|
handler: () => Promise<any>
|
|
|
|
}) {
|
|
|
|
const { video, type, canProcessVideo, handler } = options
|
|
|
|
|
|
|
|
const files = video.VideoFiles || []
|
|
|
|
const hls = video.getHLSPlaylist()
|
|
|
|
|
|
|
|
if (canProcessVideo(files, hls)) {
|
|
|
|
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}.`)
|
|
|
|
}
|
2021-11-09 11:05:35 +01:00
|
|
|
}
|
|
|
|
}
|