import { readFile, writeFile } from 'fs/promises'; import { getArg } from './lib/args.js'; import { getMany } from './lib/dl.js'; import { error, log } from './lib/log.js'; const ctx = 'downloadDb.js'; /** * Downloads all media possible for the users stored in db.json at the specified `--path`. * Useful for first run or for augmenting existing media * if it may be only partially archived in an uncertain state. * The db.json must be present in order for this to run, * as it will run for the users specified in the db.json and not the directories in the folder. */ const downloadDb = async () => { log(ctx, 'Grabbing db'); let directory = '', threadMax = 1, db; try { directory = getArg('path'); } catch (err) { error(ctx, err); return; } try { threadMax = getArg('threads'); log(ctx, `Using ${threadMax} threads`); } catch (err) { log(ctx, 'Using 1 thread'); } try { let file = await readFile(`${directory}/db.json`, { encoding: 'utf8' }); db = JSON.parse(file); } catch (err) { error(ctx, err); return; } let processes = db.map(entry => ({ ...entry, lastUpdated: Date.now(), logs: [], })); log(ctx, `Downloading media using //media for ${processes.length} users`); await getMany(processes, threadMax, directory, 'media'); log(ctx, 'Downloading media using /search'); await getMany(processes, threadMax, directory, 'search'); processes.forEach(entry => { entry.logs.forEach(log => { if (log.includes('NotFoundError')) { const strOut = `${entry.user} wasn't found: "${log.replace('\n', '')}". You may want to remove them from the db.json file or update their username.`; error(ctx, strOut); entry.lastError = strOut; } else if (log.includes('AuthorizationError')) { const strOut = `There was an authorization error for user ${entry.user}: "${log.replace('\n', '')}"`; error(ctx, strOut); entry.lastError = strOut; } }); }); log(ctx, 'Updating the db'); try { let updated = processes.map(entry => ({ user: entry.user, lastUpdated: entry.lastUpdated, lastError: entry.lastError, })); await writeFile(`${directory}/db.json`, JSON.stringify(updated, null, 2)); } catch (err) { error(ctx, err); return; } log(ctx, 'Done'); } downloadDb();