X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fprune-storage.ts;h=bdfb335c61aeb7a28d4c74b94b510b7cf6aef3d4;hb=06af072d2df62c81da7ecab41ccbd31711be3f80;hp=b00f2093426ddcfac3f909afe9a8f5bdffc9606d;hpb=0491173a61aed66205c017e0d7e0503ea316c144;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/prune-storage.ts b/scripts/prune-storage.ts index b00f20934..bdfb335c6 100755 --- a/scripts/prune-storage.ts +++ b/scripts/prune-storage.ts @@ -1,9 +1,19 @@ +import { registerTSPaths } from '../server/helpers/register-ts-paths' +registerTSPaths() + import * as prompt from 'prompt' import { join } from 'path' -import { CONFIG } from '../server/initializers/constants' +import { CONFIG } from '../server/initializers/config' import { VideoModel } from '../server/models/video/video' -import { initDatabaseModels } from '../server/initializers' -import { remove, readdir } from 'fs-extra' +import { initDatabaseModels } from '../server/initializers/database' +import { readdir, remove } from 'fs-extra' +import { VideoRedundancyModel } from '../server/models/redundancy/video-redundancy' +import * as Bluebird from 'bluebird' +import { getUUIDFromFilename } from '../server/helpers/utils' +import { ThumbnailModel } from '../server/models/video/thumbnail' +import { ActorImageModel } from '../server/models/account/actor-image' +import { uniq, values } from 'lodash' +import { ThumbnailType } from '@shared/models' run() .then(() => process.exit(0)) @@ -13,19 +23,31 @@ run() }) async function run () { - await initDatabaseModels(true) + const dirs = values(CONFIG.STORAGE) - const storageToPrune = [ - CONFIG.STORAGE.VIDEOS_DIR, - CONFIG.STORAGE.PREVIEWS_DIR, - CONFIG.STORAGE.THUMBNAILS_DIR, - CONFIG.STORAGE.TORRENTS_DIR - ] + if (uniq(dirs).length !== dirs.length) { + console.error('Cannot prune storage because you put multiple storage keys in the same directory.') + process.exit(0) + } + + await initDatabaseModels(true) let toDelete: string[] = [] - for (const directory of storageToPrune) { - toDelete = toDelete.concat(await pruneDirectory(directory)) - } + + toDelete = toDelete.concat( + await pruneDirectory(CONFIG.STORAGE.VIDEOS_DIR, doesVideoExist(true)), + await pruneDirectory(CONFIG.STORAGE.TORRENTS_DIR, doesVideoExist(true)), + + await pruneDirectory(CONFIG.STORAGE.REDUNDANCY_DIR, doesRedundancyExist), + + await pruneDirectory(CONFIG.STORAGE.PREVIEWS_DIR, doesThumbnailExist(true, ThumbnailType.PREVIEW)), + await pruneDirectory(CONFIG.STORAGE.THUMBNAILS_DIR, doesThumbnailExist(false, ThumbnailType.MINIATURE)), + + await pruneDirectory(CONFIG.STORAGE.ACTOR_IMAGES, doesActorImageExist) + ) + + const tmpFiles = await readdir(CONFIG.STORAGE.TMP_DIR) + toDelete = toDelete.concat(tmpFiles.map(t => join(CONFIG.STORAGE.TMP_DIR, t))) if (toDelete.length === 0) { console.log('No files to delete.') @@ -48,29 +70,79 @@ async function run () { } } -async function pruneDirectory (directory: string) { +type ExistFun = (file: string) => Promise +async function pruneDirectory (directory: string, existFun: ExistFun) { const files = await readdir(directory) const toDelete: string[] = [] - for (const file of files) { + await Bluebird.map(files, async file => { + if (await existFun(file) !== true) { + toDelete.push(join(directory, file)) + } + }, { concurrency: 20 }) + + return toDelete +} + +function doesVideoExist (keepOnlyOwned: boolean) { + return async (file: string) => { const uuid = getUUIDFromFilename(file) - let video: VideoModel + const video = await VideoModel.loadByUUID(uuid) - if (uuid) video = await VideoModel.loadByUUIDWithFile(uuid) + return video && (keepOnlyOwned === false || video.isOwned()) + } +} + +function doesThumbnailExist (keepOnlyOwned: boolean, type: ThumbnailType) { + return async (file: string) => { + const thumbnail = await ThumbnailModel.loadByFilename(file, type) + if (!thumbnail) return false + + if (keepOnlyOwned) { + const video = await VideoModel.load(thumbnail.videoId) + if (video.isOwned() === false) return false + } - if (!uuid || !video) toDelete.push(join(directory, file)) + return true } +} - return toDelete +async function doesActorImageExist (file: string) { + const image = await ActorImageModel.loadByName(file) + + return !!image } -function getUUIDFromFilename (filename: string) { - const regex = /[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/ - const result = filename.match(regex) +async function doesRedundancyExist (file: string) { + const uuid = getUUIDFromFilename(file) + const video = await VideoModel.loadWithFiles(uuid) + + if (!video) return false - if (!result || Array.isArray(result) === false) return null + const isPlaylist = file.includes('.') === false - return result[0] + if (isPlaylist) { + const p = video.getHLSPlaylist() + if (!p) return false + + const redundancy = await VideoRedundancyModel.loadLocalByStreamingPlaylistId(p.id) + return !!redundancy + } + + const resolution = parseInt(file.split('-')[5], 10) + if (isNaN(resolution)) { + console.error('Cannot prune %s because we cannot guess guess the resolution.', file) + return true + } + + const videoFile = video.getWebTorrentFile(resolution) + if (!videoFile) { + console.error('Cannot find webtorrent file of video %s - %d', video.url, resolution) + return true + } + + const redundancy = await VideoRedundancyModel.loadLocalByFileId(videoFile.id) + return !!redundancy } async function askConfirmation () { @@ -80,7 +152,9 @@ async function askConfirmation () { properties: { confirm: { type: 'string', - description: 'Are you sure you want to delete these files? Please check carefully', + description: 'These following unused files can be deleted, but please check your backups first (bugs happen).' + + ' Notice PeerTube must have been stopped when your ran this script.' + + ' Can we delete these files?', default: 'n', required: true } @@ -88,7 +162,8 @@ async function askConfirmation () { } prompt.get(schema, function (err, result) { if (err) return rej(err) - return res(result.confirm && result.confirm.match(/y/) !== null) + + return res(result.confirm?.match(/y/) !== null) }) }) }