From 6993905eaf1714de40babae53f5154238cde1172 Mon Sep 17 00:00:00 2001 From: Florrie Date: Mon, 12 Nov 2018 13:47:36 -0400 Subject: Add simple list-cache debug tool It's not really practical for use right now. Well, more like I haven't figured out *what* the "ordinary use" is. --- list-cache.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 list-cache.js diff --git a/list-cache.js b/list-cache.js new file mode 100644 index 0000000..71dbbcc --- /dev/null +++ b/list-cache.js @@ -0,0 +1,33 @@ +const { Base64 } = require('js-base64') +const fs = require('fs') +const util = require('util') +const downloaders = require('./downloaders') +const ansi = require('./tui-lib/util/ansi') + +const readdir = util.promisify(fs.readdir) + +async function main(args) { + const dlPath = downloaders.rootCacheDir + const type = args[0] || null + + async function list(dir) { + console.log(await readdir(dir)) + } + + if (!type) { + console.log('No type specified. Pass one of the following as an argument:', (await readdir(dlPath)).join(', ')) + return + } + + console.log(`${ansi.setAttributes([ansi.A_BRIGHT])}Downloads of type "${type}"${ansi.resetAttributes()}`) + for (const entry of await readdir(dlPath + '/' + type)) { + const files = await readdir(`${dlPath}/${type}/${entry}`) + console.log(` ${Base64.decode(entry)}: ${ansi.setAttributes([ansi.A_BRIGHT])}${files.join(', ')} ${ansi.resetAttributes()}${ansi.setAttributes([ansi.A_DIM])}(${type}/${entry})${ansi.resetAttributes()}`) + } +} + +module.exports = main + +if (require.main === module) { + main(process.argv.slice(2)).catch(err => console.error(err)) +} -- cgit 1.3.0-6-gf8a5