Create clear.js

This commit is contained in:
Aleksandr Statciuk 2022-08-15 02:22:44 +03:00
parent aae44c9004
commit 6ad1f2e682
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
const { logger, parser, db, date } = require('../../core')
const { program } = require('commander')
const options = program
.option(
'-t, --threshold <threshold>',
'Number of days after which the stream should be deleted',
parser.parseNumber,
7
)
.option('--input-dir <input-dir>', 'Set path to input directory', 'streams')
.parse(process.argv)
.opts()
async function main() {
await db.streams.load()
const streams = await db.streams.all()
let total = 0
for (const stream of streams) {
if (
stream.status === 'error' &&
date.utc().diff(stream.updated_at, 'day') >= options.threshold
) {
total += await db.streams.remove({ url: stream.url }, { multi: true })
}
}
await db.streams.compact()
logger.info(`removed ${total} streams`)
}
main()