2019-10-21 11:13:07 -04:00
|
|
|
import { registerTSPaths } from '../server/helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
|
|
|
|
2018-05-29 05:11:52 -04:00
|
|
|
import * as prompt from 'prompt'
|
|
|
|
import { join } from 'path'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { CONFIG } from '../server/initializers/config'
|
2018-05-29 05:11:52 -04:00
|
|
|
import { VideoModel } from '../server/models/video/video'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { initDatabaseModels } from '../server/initializers/database'
|
2019-08-09 09:04:36 -04:00
|
|
|
import { readdir, remove } from 'fs-extra'
|
2018-09-28 04:56:13 -04:00
|
|
|
import { VideoRedundancyModel } from '../server/models/redundancy/video-redundancy'
|
2019-08-09 09:04:36 -04:00
|
|
|
import * as Bluebird from 'bluebird'
|
2018-10-08 10:26:04 -04:00
|
|
|
import { getUUIDFromFilename } from '../server/helpers/utils'
|
2019-08-09 09:04:36 -04:00
|
|
|
import { ThumbnailModel } from '../server/models/video/thumbnail'
|
2021-05-11 05:15:29 -04:00
|
|
|
import { ActorImageModel } from '../server/models/actor/actor-image'
|
2019-08-15 05:56:54 -04:00
|
|
|
import { uniq, values } from 'lodash'
|
2021-02-12 10:23:19 -05:00
|
|
|
import { ThumbnailType } from '@shared/models'
|
2018-05-29 05:11:52 -04:00
|
|
|
|
|
|
|
run()
|
|
|
|
.then(() => process.exit(0))
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
|
|
|
|
async function run () {
|
2019-08-15 05:56:54 -04:00
|
|
|
const dirs = values(CONFIG.STORAGE)
|
|
|
|
|
|
|
|
if (uniq(dirs).length !== dirs.length) {
|
|
|
|
console.error('Cannot prune storage because you put multiple storage keys in the same directory.')
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2018-05-29 05:11:52 -04:00
|
|
|
await initDatabaseModels(true)
|
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
let toDelete: string[] = []
|
2018-05-29 05:11:52 -04:00
|
|
|
|
2021-04-28 02:56:08 -04:00
|
|
|
console.log('Detecting files to remove, it could take a while...')
|
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
toDelete = toDelete.concat(
|
|
|
|
await pruneDirectory(CONFIG.STORAGE.VIDEOS_DIR, doesVideoExist(true)),
|
|
|
|
await pruneDirectory(CONFIG.STORAGE.TORRENTS_DIR, doesVideoExist(true)),
|
2018-09-28 04:56:13 -04:00
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
await pruneDirectory(CONFIG.STORAGE.REDUNDANCY_DIR, doesRedundancyExist),
|
2018-09-28 04:56:13 -04:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
await pruneDirectory(CONFIG.STORAGE.PREVIEWS_DIR, doesThumbnailExist(true, ThumbnailType.PREVIEW)),
|
|
|
|
await pruneDirectory(CONFIG.STORAGE.THUMBNAILS_DIR, doesThumbnailExist(false, ThumbnailType.MINIATURE)),
|
2019-08-09 09:04:36 -04:00
|
|
|
|
2021-04-06 05:35:56 -04:00
|
|
|
await pruneDirectory(CONFIG.STORAGE.ACTOR_IMAGES, doesActorImageExist)
|
2019-08-09 09:04:36 -04:00
|
|
|
)
|
2018-05-29 05:11:52 -04:00
|
|
|
|
2018-12-06 03:46:22 -05:00
|
|
|
const tmpFiles = await readdir(CONFIG.STORAGE.TMP_DIR)
|
|
|
|
toDelete = toDelete.concat(tmpFiles.map(t => join(CONFIG.STORAGE.TMP_DIR, t)))
|
2018-12-06 03:42:45 -05:00
|
|
|
|
2018-05-29 05:11:52 -04:00
|
|
|
if (toDelete.length === 0) {
|
|
|
|
console.log('No files to delete.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Will delete %d files:\n\n%s\n\n', toDelete.length, toDelete.join('\n'))
|
|
|
|
|
|
|
|
const res = await askConfirmation()
|
|
|
|
if (res === true) {
|
|
|
|
console.log('Processing delete...\n')
|
|
|
|
|
|
|
|
for (const path of toDelete) {
|
2018-08-27 10:23:34 -04:00
|
|
|
await remove(path)
|
2018-05-29 05:11:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log('Done!')
|
|
|
|
} else {
|
|
|
|
console.log('Exiting without deleting files.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
type ExistFun = (file: string) => Promise<boolean>
|
|
|
|
async function pruneDirectory (directory: string, existFun: ExistFun) {
|
2018-08-27 10:23:34 -04:00
|
|
|
const files = await readdir(directory)
|
2018-05-29 05:11:52 -04:00
|
|
|
|
|
|
|
const toDelete: string[] = []
|
2019-08-09 09:04:36 -04:00
|
|
|
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) => {
|
2018-05-29 05:11:52 -04:00
|
|
|
const uuid = getUUIDFromFilename(file)
|
2021-06-11 08:09:33 -04:00
|
|
|
const video = await VideoModel.load(uuid)
|
2018-05-29 05:11:52 -04:00
|
|
|
|
2019-08-09 09:04:36 -04:00
|
|
|
return video && (keepOnlyOwned === false || video.isOwned())
|
|
|
|
}
|
|
|
|
}
|
2018-05-29 05:11:52 -04:00
|
|
|
|
2021-02-12 10:23:19 -05:00
|
|
|
function doesThumbnailExist (keepOnlyOwned: boolean, type: ThumbnailType) {
|
2019-08-09 09:04:36 -04:00
|
|
|
return async (file: string) => {
|
2021-02-16 02:50:40 -05:00
|
|
|
const thumbnail = await ThumbnailModel.loadByFilename(file, type)
|
2019-08-09 09:04:36 -04:00
|
|
|
if (!thumbnail) return false
|
|
|
|
|
|
|
|
if (keepOnlyOwned) {
|
|
|
|
const video = await VideoModel.load(thumbnail.videoId)
|
|
|
|
if (video.isOwned() === false) return false
|
2018-09-28 04:56:13 -04:00
|
|
|
}
|
2019-08-09 09:04:36 -04:00
|
|
|
|
|
|
|
return true
|
2018-05-29 05:11:52 -04:00
|
|
|
}
|
2019-08-09 09:04:36 -04:00
|
|
|
}
|
2018-05-29 05:11:52 -04:00
|
|
|
|
2021-04-06 05:35:56 -04:00
|
|
|
async function doesActorImageExist (file: string) {
|
|
|
|
const image = await ActorImageModel.loadByName(file)
|
2019-08-09 09:04:36 -04:00
|
|
|
|
2021-04-06 05:35:56 -04:00
|
|
|
return !!image
|
2019-08-09 09:04:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function doesRedundancyExist (file: string) {
|
|
|
|
const uuid = getUUIDFromFilename(file)
|
|
|
|
const video = await VideoModel.loadWithFiles(uuid)
|
|
|
|
|
|
|
|
if (!video) return false
|
|
|
|
|
|
|
|
const isPlaylist = file.includes('.') === false
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
const videoFile = video.getWebTorrentFile(resolution)
|
2019-08-09 09:04:36 -04:00
|
|
|
if (!videoFile) {
|
2019-11-15 09:06:03 -05:00
|
|
|
console.error('Cannot find webtorrent file of video %s - %d', video.url, resolution)
|
2019-08-09 09:04:36 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
const redundancy = await VideoRedundancyModel.loadLocalByFileId(videoFile.id)
|
|
|
|
return !!redundancy
|
2018-05-29 05:11:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function askConfirmation () {
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
prompt.start()
|
|
|
|
const schema = {
|
|
|
|
properties: {
|
|
|
|
confirm: {
|
|
|
|
type: 'string',
|
2018-09-28 04:56:13 -04:00
|
|
|
description: 'These following unused files can be deleted, but please check your backups first (bugs happen).' +
|
2018-12-05 11:44:36 -05:00
|
|
|
' Notice PeerTube must have been stopped when your ran this script.' +
|
2018-09-28 04:56:13 -04:00
|
|
|
' Can we delete these files?',
|
2018-05-29 05:11:52 -04:00
|
|
|
default: 'n',
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prompt.get(schema, function (err, result) {
|
|
|
|
if (err) return rej(err)
|
2020-07-30 08:54:31 -04:00
|
|
|
|
|
|
|
return res(result.confirm?.match(/y/) !== null)
|
2018-05-29 05:11:52 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|