fix use of createDb
This commit is contained in:
parent
b7a7f97a28
commit
2f023b919c
2 changed files with 9 additions and 5 deletions
|
@ -42,7 +42,7 @@ const downloadDb = async () => {
|
||||||
if (err.toString().includes('ENOENT')) {
|
if (err.toString().includes('ENOENT')) {
|
||||||
try {
|
try {
|
||||||
log(ctx, 'Database was not yet present. Creating it now.');
|
log(ctx, 'Database was not yet present. Creating it now.');
|
||||||
await createDb();
|
await createDb(directory);
|
||||||
await tryReadDb();
|
await tryReadDb();
|
||||||
} catch (err2) {
|
} catch (err2) {
|
||||||
error(ctx, err2);
|
error(ctx, err2);
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { readFile, writeFile } from 'fs/promises';
|
||||||
import { getArg } from './lib/args.js';
|
import { getArg } from './lib/args.js';
|
||||||
import { getMany } from './lib/dl.js';
|
import { getMany } from './lib/dl.js';
|
||||||
import { error, log } from './lib/log.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';
|
const ctx = 'downloadUser.js';
|
||||||
|
|
||||||
|
@ -29,14 +29,18 @@ const downloadUsers = async () => {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
log(ctx, 'Using 1 thread');
|
log(ctx, 'Using 1 thread');
|
||||||
}
|
}
|
||||||
try {
|
const tryReadDb = async () => {
|
||||||
let file = await readFile(`${directory}/db.json`, { encoding: 'utf8' });
|
let file = await readFile(`${directory}/db.json`, { encoding: 'utf8' });
|
||||||
db = JSON.parse(file);
|
db = JSON.parse(file);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
await tryReadDb();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err.toString().includes('ENOENT')) {
|
if (err.toString().includes('ENOENT')) {
|
||||||
try {
|
try {
|
||||||
db = [];
|
log(ctx, 'Database was not yet present. Creating it now.');
|
||||||
await writeFile(`${directory}/db.json`, JSON.stringify(db, null, 2));
|
await createDb(directory);
|
||||||
|
await tryReadDb();
|
||||||
} catch (err2) {
|
} catch (err2) {
|
||||||
error(ctx, err2);
|
error(ctx, err2);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue