2019-10-21 11:13:07 -04:00
|
|
|
import { registerTSPaths } from '../server/helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
|
|
|
|
2017-06-12 15:06:32 -04:00
|
|
|
import * as program from 'commander'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { initDatabaseModels } from '../server/initializers/database'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { UserModel } from '../server/models/account/user'
|
2019-02-14 03:44:33 -05:00
|
|
|
import { isUserPasswordValid } from '../server/helpers/custom-validators/users'
|
2017-01-15 04:05:53 -05:00
|
|
|
|
|
|
|
program
|
|
|
|
.option('-u, --user [user]', 'User')
|
|
|
|
.parse(process.argv)
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
if (program['user'] === undefined) {
|
2017-01-15 04:05:53 -05:00
|
|
|
console.error('All parameters are mandatory.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2017-12-13 11:46:23 -05:00
|
|
|
initDatabaseModels(true)
|
2017-07-05 07:26:25 -04:00
|
|
|
.then(() => {
|
2017-12-12 11:53:50 -05:00
|
|
|
return UserModel.loadByUsername(program['user'])
|
2017-07-05 07:26:25 -04:00
|
|
|
})
|
|
|
|
.then(user => {
|
2017-01-15 04:05:53 -05:00
|
|
|
if (!user) {
|
2020-07-30 09:34:00 -04:00
|
|
|
console.error('Unknown user.')
|
2017-09-07 09:27:35 -04:00
|
|
|
process.exit(-1)
|
2017-01-15 04:05:53 -05:00
|
|
|
}
|
|
|
|
|
2017-01-23 16:50:29 -05:00
|
|
|
const readline = require('readline')
|
|
|
|
const Writable = require('stream').Writable
|
|
|
|
const mutableStdout = new Writable({
|
|
|
|
write: function (chunk, encoding, callback) {
|
|
|
|
callback()
|
2017-01-15 04:05:53 -05:00
|
|
|
}
|
2017-01-23 16:50:29 -05:00
|
|
|
})
|
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: mutableStdout,
|
|
|
|
terminal: true
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('New password?')
|
|
|
|
rl.on('line', function (password) {
|
2019-02-14 03:44:33 -05:00
|
|
|
if (!isUserPasswordValid(password)) {
|
|
|
|
console.error('New password is invalid.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2017-01-23 16:50:29 -05:00
|
|
|
user.password = password
|
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
user.save()
|
|
|
|
.then(() => console.log('User password updated.'))
|
|
|
|
.catch(err => console.error(err))
|
|
|
|
.finally(() => process.exit(0))
|
2017-01-15 04:05:53 -05:00
|
|
|
})
|
|
|
|
})
|
2020-07-30 08:54:31 -04:00
|
|
|
.catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(-1)
|
|
|
|
})
|