1
0
Fork 0

fix use of createDb

This commit is contained in:
lightling 2024-02-28 20:50:46 -05:00
parent b7a7f97a28
commit 2f023b919c
2 changed files with 9 additions and 5 deletions

View file

@ -42,7 +42,7 @@ const downloadDb = async () => {
if (err.toString().includes('ENOENT')) {
try {
log(ctx, 'Database was not yet present. Creating it now.');
await createDb();
await createDb(directory);
await tryReadDb();
} catch (err2) {
error(ctx, err2);

View file

@ -3,7 +3,7 @@ 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';
import { userSchema } from './lib/schema.js';
import { createDb, userSchema } from './lib/schema.js';
const ctx = 'downloadUser.js';
@ -29,14 +29,18 @@ const downloadUsers = async () => {
} catch (err) {
log(ctx, 'Using 1 thread');
}
try {
const tryReadDb = async () => {
let file = await readFile(`${directory}/db.json`, { encoding: 'utf8' });
db = JSON.parse(file);
}
try {
await tryReadDb();
} catch (err) {
if (err.toString().includes('ENOENT')) {
try {
db = [];
await writeFile(`${directory}/db.json`, JSON.stringify(db, null, 2));
log(ctx, 'Database was not yet present. Creating it now.');
await createDb(directory);
await tryReadDb();
} catch (err2) {
error(ctx, err2);
return;