2021-06-25 17:39:27 +02:00
|
|
|
import { program } from 'commander'
|
2023-07-31 14:34:36 +02:00
|
|
|
import readline from 'readline'
|
|
|
|
import { Writable } from 'stream'
|
|
|
|
import { isUserPasswordValid } from '@server/helpers/custom-validators/users.js'
|
|
|
|
import { initDatabaseModels } from '@server/initializers/database.js'
|
|
|
|
import { UserModel } from '@server/models/user/user.js'
|
2017-01-15 10:05:53 +01:00
|
|
|
|
|
|
|
program
|
|
|
|
.option('-u, --user [user]', 'User')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
2021-02-03 09:33:05 +01:00
|
|
|
const options = program.opts()
|
|
|
|
|
|
|
|
if (options.user === undefined) {
|
2017-01-15 10:05:53 +01:00
|
|
|
console.error('All parameters are mandatory.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2017-12-13 17:46:23 +01:00
|
|
|
initDatabaseModels(true)
|
2017-07-05 13:26:25 +02:00
|
|
|
.then(() => {
|
2021-02-03 09:33:05 +01:00
|
|
|
return UserModel.loadByUsername(options.user)
|
2017-07-05 13:26:25 +02:00
|
|
|
})
|
|
|
|
.then(user => {
|
2017-01-15 10:05:53 +01:00
|
|
|
if (!user) {
|
2020-07-30 15:34:00 +02:00
|
|
|
console.error('Unknown user.')
|
2017-09-07 15:27:35 +02:00
|
|
|
process.exit(-1)
|
2017-01-15 10:05:53 +01:00
|
|
|
}
|
|
|
|
|
2017-01-23 22:50:29 +01:00
|
|
|
const mutableStdout = new Writable({
|
2021-02-03 09:33:05 +01:00
|
|
|
write: function (_chunk, _encoding, callback) {
|
2017-01-23 22:50:29 +01:00
|
|
|
callback()
|
2017-01-15 10:05:53 +01:00
|
|
|
}
|
2017-01-23 22:50:29 +01:00
|
|
|
})
|
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: mutableStdout,
|
|
|
|
terminal: true
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('New password?')
|
|
|
|
rl.on('line', function (password) {
|
2019-02-14 09:44:33 +01:00
|
|
|
if (!isUserPasswordValid(password)) {
|
|
|
|
console.error('New password is invalid.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2017-01-23 22:50:29 +01:00
|
|
|
user.password = password
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
user.save()
|
|
|
|
.then(() => console.log('User password updated.'))
|
|
|
|
.catch(err => console.error(err))
|
|
|
|
.finally(() => process.exit(0))
|
2017-01-15 10:05:53 +01:00
|
|
|
})
|
|
|
|
})
|
2020-07-30 14:54:31 +02:00
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|