mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
aab62b6bfe
Sigh.
28 lines
869 B
JavaScript
28 lines
869 B
JavaScript
const { stripIndents } = require('./_utils')
|
|
const utils = require('./../controllers/utilsController')
|
|
|
|
const cfpurge = {}
|
|
|
|
cfpurge.do = async () => {
|
|
const location = process.argv[1].replace(process.cwd() + '/', '')
|
|
const args = process.argv.slice(2)
|
|
if (!args.length || args.includes('--help') || args.includes('-h'))
|
|
return console.log(stripIndents(`
|
|
Purge Cloudflare's cache.
|
|
|
|
Usage:\nnode ${location} ...filename
|
|
|
|
filename:
|
|
Upload names separated by space (will automatically include their thumbs if available).
|
|
`))
|
|
|
|
const results = await utils.purgeCloudflareCache(args, true, true)
|
|
for (const result of results)
|
|
if (result.errors.length)
|
|
result.errors.forEach(error => console.error(`CF: ${error}`))
|
|
else
|
|
console.log(`URLs:\n${result.files.join('\n')}\n\nSuccess: ${result.success}`)
|
|
}
|
|
|
|
cfpurge.do()
|