|
1 | 1 | #!/usr/bin/env node
|
2 | 2 |
|
3 | 3 | // First configure the logger so it does not spam the console
|
4 |
| -const logger = require("../lib/logger"); |
5 |
| -logger.transports.forEach((transport) => transport.level = "warning") |
| 4 | +const logger = require('../lib/logger') |
| 5 | +logger.transports.forEach((transport) => { |
| 6 | + transport.level = 'warning' |
| 7 | +}) |
6 | 8 |
|
7 |
| -const models = require("../lib/models/"); |
8 |
| -const readline = require("readline-sync"); |
9 |
| -const minimist = require("minimist"); |
| 9 | +const models = require('../lib/models/') |
| 10 | +const readline = require('readline-sync') |
| 11 | +const minimist = require('minimist') |
10 | 12 |
|
11 |
| -function showUsage(tips) { |
12 |
| - console.log(`${tips} |
| 13 | +function showUsage (tips) { |
| 14 | + console.log(`${tips} |
13 | 15 |
|
14 | 16 | Command-line utility to create users for email-signin.
|
15 |
| -
|
16 | 17 | Usage: bin/manage_users [--pass password] (--add | --del) user-email
|
17 |
| - Options: |
18 |
| - --add Add user with the specified user-email |
19 |
| - --del Delete user with specified user-email |
20 |
| - --reset Reset user password with specified user-email |
21 |
| - --pass Use password from cmdline rather than prompting |
22 |
| -`); |
23 |
| - process.exit(1); |
| 18 | + Options: |
| 19 | + --add\tAdd user with the specified user-email |
| 20 | + --del\tDelete user with specified user-email |
| 21 | + --reset\tReset user password with specified user-email |
| 22 | + --pass\tUse password from cmdline rather than prompting |
| 23 | +`) |
| 24 | + process.exit(1) |
24 | 25 | }
|
25 | 26 |
|
26 |
| -function getPass(argv, action) { |
27 |
| - // Find whether we use cmdline or prompt password |
28 |
| - if(typeof argv["pass"] !== 'string') { |
29 |
| - return readline.question(`Password for ${argv[action]}:`, {hideEchoBack: true}); |
30 |
| - } |
31 |
| - console.log("Using password from commandline..."); |
32 |
| - return argv["pass"]; |
| 27 | +function getPass (argv, action) { |
| 28 | + // Find whether we use cmdline or prompt password |
| 29 | + if (typeof argv['pass'] !== 'string') { |
| 30 | + return readline.question(`Password for ${argv[action]}:`, { hideEchoBack: true }) |
| 31 | + } |
| 32 | + console.log('Using password from commandline...') |
| 33 | + return argv['pass'] |
33 | 34 | }
|
34 | 35 |
|
35 | 36 | // Using an async function to be able to use await inside
|
36 |
| -async function createUser(argv) { |
37 |
| - const existing_user = await models.User.findOne({where: {email: argv["add"]}}); |
38 |
| - // Cannot create already-existing users |
39 |
| - if(existing_user != undefined) { |
40 |
| - console.log(`User with e-mail ${existing_user.email} already exists! Aborting ...`); |
41 |
| - process.exit(1); |
42 |
| - } |
43 |
| - |
44 |
| - const pass = getPass(argv, "add"); |
45 |
| - |
46 |
| - |
47 |
| - // Lets try to create, and check success |
48 |
| - const ref = await models.User.create({email: argv["add"], password: pass}); |
49 |
| - if(ref == undefined) { |
50 |
| - console.log(`Could not create user with email ${argv["add"]}`); |
51 |
| - process.exit(1); |
52 |
| - } else |
53 |
| - console.log(`Created user with email ${argv["add"]}`); |
| 37 | +async function createUser (argv) { |
| 38 | + const existingUser = await models.User.findOne({ where: { email: argv['add'] } }) |
| 39 | + // Cannot create already-existing users |
| 40 | + if (existingUser !== undefined) { |
| 41 | + console.log(`User with e-mail ${existingUser.email} already exists! Aborting ...`) |
| 42 | + process.exit(1) |
| 43 | + } |
| 44 | + |
| 45 | + const pass = getPass(argv, 'add') |
| 46 | + |
| 47 | + // Lets try to create, and check success |
| 48 | + const ref = await models.User.create({ email: argv['add'], password: pass }) |
| 49 | + if (ref === undefined) { |
| 50 | + console.log(`Could not create user with email ${argv['add']}`) |
| 51 | + process.exit(1) |
| 52 | + } else { console.log(`Created user with email ${argv['add']}`) } |
54 | 53 | }
|
55 | 54 |
|
56 | 55 | // Using an async function to be able to use await inside
|
57 |
| -async function deleteUser(argv) { |
58 |
| - // Cannot delete non-existing users |
59 |
| - const existing_user = await models.User.findOne({where: {email: argv["del"]}}); |
60 |
| - if(existing_user === undefined) { |
61 |
| - console.log(`User with e-mail ${argv["del"]} does not exist, cannot delete`); |
62 |
| - process.exit(1); |
63 |
| - } |
64 |
| - |
65 |
| - // Sadly .destroy() does not return any success value with all |
66 |
| - // backends. See sequelize #4124 |
67 |
| - await existing_user.destroy(); |
68 |
| - console.log(`Deleted user ${argv["del"]} ...`); |
| 56 | +async function deleteUser (argv) { |
| 57 | + // Cannot delete non-existing users |
| 58 | + const existingUser = await models.User.findOne({ where: { email: argv['del'] } }) |
| 59 | + if (existingUser === undefined) { |
| 60 | + console.log(`User with e-mail ${argv['del']} does not exist, cannot delete`) |
| 61 | + process.exit(1) |
| 62 | + } |
| 63 | + |
| 64 | + // Sadly .destroy() does not return any success value with all |
| 65 | + // backends. See sequelize #4124 |
| 66 | + await existingUser.destroy() |
| 67 | + console.log(`Deleted user ${argv['del']} ...`) |
69 | 68 | }
|
70 | 69 |
|
71 |
| - |
72 | 70 | // Using an async function to be able to use await inside
|
73 |
| -async function resetUser(argv) { |
74 |
| - const existing_user = await models.User.findOne({where: {email: argv["reset"]}}); |
75 |
| - // Cannot reset non-existing users |
76 |
| - if(existing_user == undefined) { |
77 |
| - console.log(`User with e-mail ${argv["reset"]} does not exist, cannot reset`); |
78 |
| - process.exit(1); |
79 |
| - } |
80 |
| - |
81 |
| - const pass = getPass(argv, "reset"); |
82 |
| - |
83 |
| - // set password and save |
84 |
| - existing_user.password = pass; |
85 |
| - await existing_user.save(); |
86 |
| - console.log(`User with email ${argv["reset"]} password has been reset`); |
| 71 | +async function resetUser (argv) { |
| 72 | + const existingUser = await models.User.findOne({ where: { email: argv['reset'] } }) |
| 73 | + // Cannot reset non-existing users |
| 74 | + if (existingUser === undefined) { |
| 75 | + console.log(`User with e-mail ${argv['reset']} does not exist, cannot reset`) |
| 76 | + process.exit(1) |
| 77 | + } |
| 78 | + |
| 79 | + const pass = getPass(argv, 'reset') |
| 80 | + |
| 81 | + // set password and save |
| 82 | + existingUser.password = pass |
| 83 | + await existingUser.save() |
| 84 | + console.log(`User with email ${argv['reset']} password has been reset`) |
87 | 85 | }
|
88 | 86 |
|
89 | 87 | const options = {
|
90 |
| - add: createUser, |
91 |
| - del: deleteUser, |
92 |
| - reset: resetUser, |
93 |
| -}; |
| 88 | + add: createUser, |
| 89 | + del: deleteUser, |
| 90 | + reset: resetUser |
| 91 | +} |
94 | 92 |
|
95 | 93 | // Perform commandline-parsing
|
96 |
| -const argv = minimist(process.argv.slice(2)); |
| 94 | +const argv = minimist(process.argv.slice(2)) |
97 | 95 |
|
98 |
| -const keys = Object.keys(options); |
99 |
| -const opts = keys.filter((key) => argv[key] !== undefined); |
100 |
| -const action = opts[0]; |
| 96 | +const keys = Object.keys(options) |
| 97 | +const opts = keys.filter((key) => argv[key] !== undefined) |
| 98 | +const action = opts[0] |
101 | 99 |
|
102 | 100 | // Check for options missing
|
103 | 101 | if (opts.length === 0) {
|
104 |
| - showUsage(`You did not specify either ${keys.map((key) => `--${key}`).join(' or ')}!`); |
| 102 | + showUsage(`You did not specify either ${keys.map((key) => `--${key}`).join(' or ')}!`) |
105 | 103 | }
|
106 | 104 |
|
107 | 105 | // Check if both are specified
|
108 | 106 | if (opts.length > 1) {
|
109 |
| - showUsage(`You cannot ${action.join(' and ')} at the same time!`); |
| 107 | + showUsage(`You cannot ${action.join(' and ')} at the same time!`) |
110 | 108 | }
|
111 | 109 | // Check if not string
|
112 | 110 | if (typeof argv[action] !== 'string') {
|
113 |
| - showUsage(`You must follow an email after --${action}`); |
| 111 | + showUsage(`You must follow an email after --${action}`) |
114 | 112 | }
|
115 | 113 |
|
116 | 114 | // Call respective processing functions
|
117 |
| -options[action](argv).then(function() { |
118 |
| - process.exit(0); |
119 |
| -}); |
| 115 | +options[action](argv).then(function () { |
| 116 | + process.exit(0) |
| 117 | +}) |
0 commit comments