This commit is contained in:
Flummi 2022-05-16 11:41:09 +00:00
parent 2447d62dac
commit 9100f64d81
2 changed files with 37 additions and 1 deletions

35
debug/adduser.mjs Normal file
View File

@ -0,0 +1,35 @@
import db from '../src/inc/sql.mjs';
import lib from '../src/inc/lib.mjs';
import readline from 'node:readline/promises';
import stream from 'stream';
const _args = process.argv[2];
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
const newuser = _args?.length ? _args : await rl.question('username: ');
const password = await rl.question('password: ');
const level = +(await rl.question('level (0-100): '));
rl.close();
if(!newuser.length || !password.length) {
console.log('nope lol');
process.exit();
}
const id = (await db`
insert into "user" ${
db({
login: newuser.toLowerCase(),
user: newuser,
password: await lib.hash(password),
level: level >= 0 && level <= 100 ? level : 0
})
}
returning id
`)[0]?.id;
console.log(`created new user ${newuser} with ID ${id}`);
process.exit();

View File

@ -9,7 +9,8 @@
"autotagger": "node --experimental-json-modules debug/autotagger.mjs",
"thumbnailer": "node --experimental-json-modules debug/thumbnailer.mjs",
"test": "node --experimental-json-modules debug/test.mjs",
"clean": "node --experimental-json-modules debug/clean.mjs"
"clean": "node --experimental-json-modules debug/clean.mjs",
"adduser": "node --experimental-json-modules debug/adduser.mjs"
},
"author": "Flummi",
"license": "MIT",