« get me outta code hell

mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
path: root/list-cache.js
diff options
context:
space:
mode:
Diffstat (limited to 'list-cache.js')
-rw-r--r--list-cache.js33
1 files changed, 33 insertions, 0 deletions
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))
+}