refactor(bin): eliminate var
and use template string refactor string things
Signed-off-by: Erona <erona@loli.bz>
This commit is contained in:
parent
2f82e0c86a
commit
63626b1267
1 changed files with 16 additions and 15 deletions
|
@ -24,43 +24,44 @@ Usage: bin/manage_users [--pass password] (--add | --del) user-email
|
||||||
|
|
||||||
// Using an async function to be able to use await inside
|
// Using an async function to be able to use await inside
|
||||||
async function createUser(argv) {
|
async function createUser(argv) {
|
||||||
var existing_user = await models.User.findOne({where: {email: argv["add"]}});
|
const existing_user = await models.User.findOne({where: {email: argv["add"]}});
|
||||||
// Cannot create already-existing users
|
// Cannot create already-existing users
|
||||||
if(existing_user != undefined) {
|
if(existing_user != undefined) {
|
||||||
console.log("User with e-mail "+existing_user.email+" already exists! Aborting ...");
|
console.log(`User with e-mail ${existing_user.email} already exists! Aborting ...`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find whether we use cmdline or prompt password
|
// Find whether we use cmdline or prompt password
|
||||||
|
let pass;
|
||||||
if(argv["pass"] == undefined) {
|
if(argv["pass"] == undefined) {
|
||||||
var pass = readline.question("Password for "+argv["add"]+":", {hideEchoBack: true});
|
pass = readline.question(`Password for ${argv["add"]}:`, {hideEchoBack: true});
|
||||||
} else {
|
} else {
|
||||||
console.log("Using password from commandline...");
|
console.log("Using password from commandline...");
|
||||||
var pass = "" + argv["pass"];
|
pass = "" + argv["pass"];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Lets try to create, and check success
|
// Lets try to create, and check success
|
||||||
var ref = await models.User.create({email: argv["add"], password: pass});
|
const ref = await models.User.create({email: argv["add"], password: pass});
|
||||||
if(ref == undefined) {
|
if(ref == undefined) {
|
||||||
console.log("Could not create user with email "+argv["add"]);
|
console.log(`Could not create user with email ${argv["add"]}`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
} else
|
} else
|
||||||
console.log("Created user with email "+argv["add"]);
|
console.log(`Created user with email ${argv["add"]}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Using an async function to be able to use await inside
|
// Using an async function to be able to use await inside
|
||||||
async function deleteUser(argv) {
|
async function deleteUser(argv) {
|
||||||
// Cannot delete non-existing users
|
// Cannot delete non-existing users
|
||||||
var existing_user = await models.User.findOne({where: {email: argv["del"]}});
|
const existing_user = await models.User.findOne({where: {email: argv["del"]}});
|
||||||
if(existing_user == undefined) {
|
if(existing_user === undefined) {
|
||||||
console.log("User with e-mail "+argv["del"]+" does not exist, cannot delete");
|
console.log(`User with e-mail ${argv["del"]} does not exist, cannot delete`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sadly .destroy() does not return any success value with all
|
// Sadly .destroy() does not return any success value with all
|
||||||
// backends. See sequelize #4124
|
// backends. See sequelize #4124
|
||||||
await existing_user.destroy();
|
await existing_user.destroy();
|
||||||
console.log("Deleted user "+argv["del"]+" ...");
|
console.log(`Deleted user ${argv["del"]} ...`);
|
||||||
}
|
}
|
||||||
|
|
||||||
var options = {
|
var options = {
|
||||||
|
@ -69,11 +70,11 @@ var options = {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Perform commandline-parsing
|
// Perform commandline-parsing
|
||||||
var argv = minimist(process.argv.slice(2));
|
const argv = minimist(process.argv.slice(2));
|
||||||
|
|
||||||
var keys = Object.keys(options);
|
const keys = Object.keys(options);
|
||||||
var opts = keys.filter((key) => argv[key] !== undefined);
|
const opts = keys.filter((key) => argv[key] !== undefined);
|
||||||
var action = opts[0];
|
const action = opts[0];
|
||||||
|
|
||||||
// Check for options missing
|
// Check for options missing
|
||||||
if (opts.length === 0) {
|
if (opts.length === 0) {
|
||||||
|
|
Loading…
Reference in a new issue