diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-28 10:56:13 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-28 10:56:13 +0200 |
commit | 5ce1208a0a57d566b5b1fd57ec291a7d053ebaf0 (patch) | |
tree | 5d2484446fa2e277a4ec15fd36a1c6a55c12e519 /scripts/prune-storage.ts | |
parent | 07524e229fa88a0d01af9d52ce124760f8ca5fa4 (diff) | |
download | PeerTube-5ce1208a0a57d566b5b1fd57ec291a7d053ebaf0.tar.gz PeerTube-5ce1208a0a57d566b5b1fd57ec291a7d053ebaf0.tar.zst PeerTube-5ce1208a0a57d566b5b1fd57ec291a7d053ebaf0.zip |
Improve prune script
Diffstat (limited to 'scripts/prune-storage.ts')
-rwxr-xr-x | scripts/prune-storage.ts | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/scripts/prune-storage.ts b/scripts/prune-storage.ts index b00f20934..4088fa700 100755 --- a/scripts/prune-storage.ts +++ b/scripts/prune-storage.ts | |||
@@ -4,6 +4,7 @@ import { CONFIG } from '../server/initializers/constants' | |||
4 | import { VideoModel } from '../server/models/video/video' | 4 | import { VideoModel } from '../server/models/video/video' |
5 | import { initDatabaseModels } from '../server/initializers' | 5 | import { initDatabaseModels } from '../server/initializers' |
6 | import { remove, readdir } from 'fs-extra' | 6 | import { remove, readdir } from 'fs-extra' |
7 | import { VideoRedundancyModel } from '../server/models/redundancy/video-redundancy' | ||
7 | 8 | ||
8 | run() | 9 | run() |
9 | .then(() => process.exit(0)) | 10 | .then(() => process.exit(0)) |
@@ -15,16 +16,23 @@ run() | |||
15 | async function run () { | 16 | async function run () { |
16 | await initDatabaseModels(true) | 17 | await initDatabaseModels(true) |
17 | 18 | ||
18 | const storageToPrune = [ | 19 | const storageOnlyOwnedToPrune = [ |
19 | CONFIG.STORAGE.VIDEOS_DIR, | 20 | CONFIG.STORAGE.VIDEOS_DIR, |
20 | CONFIG.STORAGE.PREVIEWS_DIR, | ||
21 | CONFIG.STORAGE.THUMBNAILS_DIR, | ||
22 | CONFIG.STORAGE.TORRENTS_DIR | 21 | CONFIG.STORAGE.TORRENTS_DIR |
23 | ] | 22 | ] |
24 | 23 | ||
24 | const storageForAllToPrune = [ | ||
25 | CONFIG.STORAGE.PREVIEWS_DIR, | ||
26 | CONFIG.STORAGE.THUMBNAILS_DIR | ||
27 | ] | ||
28 | |||
25 | let toDelete: string[] = [] | 29 | let toDelete: string[] = [] |
26 | for (const directory of storageToPrune) { | 30 | for (const directory of storageOnlyOwnedToPrune) { |
27 | toDelete = toDelete.concat(await pruneDirectory(directory)) | 31 | toDelete = toDelete.concat(await pruneDirectory(directory, true)) |
32 | } | ||
33 | |||
34 | for (const directory of storageForAllToPrune) { | ||
35 | toDelete = toDelete.concat(await pruneDirectory(directory, false)) | ||
28 | } | 36 | } |
29 | 37 | ||
30 | if (toDelete.length === 0) { | 38 | if (toDelete.length === 0) { |
@@ -48,17 +56,27 @@ async function run () { | |||
48 | } | 56 | } |
49 | } | 57 | } |
50 | 58 | ||
51 | async function pruneDirectory (directory: string) { | 59 | async function pruneDirectory (directory: string, onlyOwned = false) { |
52 | const files = await readdir(directory) | 60 | const files = await readdir(directory) |
53 | 61 | ||
54 | const toDelete: string[] = [] | 62 | const toDelete: string[] = [] |
55 | for (const file of files) { | 63 | for (const file of files) { |
56 | const uuid = getUUIDFromFilename(file) | 64 | const uuid = getUUIDFromFilename(file) |
57 | let video: VideoModel | 65 | let video: VideoModel |
66 | let localRedundancy: boolean | ||
58 | 67 | ||
59 | if (uuid) video = await VideoModel.loadByUUIDWithFile(uuid) | 68 | if (uuid) { |
69 | video = await VideoModel.loadByUUIDWithFile(uuid) | ||
70 | localRedundancy = await VideoRedundancyModel.isLocalByVideoUUIDExists(uuid) | ||
71 | } | ||
60 | 72 | ||
61 | if (!uuid || !video) toDelete.push(join(directory, file)) | 73 | if ( |
74 | !uuid || | ||
75 | !video || | ||
76 | (onlyOwned === true && (video.isOwned() === false && localRedundancy === false)) | ||
77 | ) { | ||
78 | toDelete.push(join(directory, file)) | ||
79 | } | ||
62 | } | 80 | } |
63 | 81 | ||
64 | return toDelete | 82 | return toDelete |
@@ -80,7 +98,8 @@ async function askConfirmation () { | |||
80 | properties: { | 98 | properties: { |
81 | confirm: { | 99 | confirm: { |
82 | type: 'string', | 100 | type: 'string', |
83 | description: 'Are you sure you want to delete these files? Please check carefully', | 101 | description: 'These following unused files can be deleted, but please check your backups first (bugs happen).' + |
102 | ' Can we delete these files?', | ||
84 | default: 'n', | 103 | default: 'n', |
85 | required: true | 104 | required: true |
86 | } | 105 | } |