PeerTube/scripts/reset-password.ts

59 lines
1.4 KiB
TypeScript
Raw Normal View History

2021-06-25 17:39:27 +02:00
import { program } from 'commander'
import { isUserPasswordValid } from '../server/helpers/custom-validators/users'
2020-05-07 14:58:24 +02:00
import { initDatabaseModels } from '../server/initializers/database'
2021-05-11 11:15:29 +02:00
import { UserModel } from '../server/models/user/user'
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) {
console.error('All parameters are mandatory.')
process.exit(-1)
}
2017-12-13 17:46:23 +01:00
initDatabaseModels(true)
.then(() => {
2021-02-03 09:33:05 +01:00
return UserModel.loadByUsername(options.user)
})
.then(user => {
if (!user) {
console.error('Unknown user.')
2017-09-07 15:27:35 +02:00
process.exit(-1)
}
const readline = require('readline')
const Writable = require('stream').Writable
const mutableStdout = new Writable({
2021-02-03 09:33:05 +01:00
write: function (_chunk, _encoding, callback) {
callback()
}
})
const rl = readline.createInterface({
input: process.stdin,
output: mutableStdout,
terminal: true
})
console.log('New password?')
rl.on('line', function (password) {
if (!isUserPasswordValid(password)) {
console.error('New password is invalid.')
process.exit(-1)
}
user.password = password
user.save()
.then(() => console.log('User password updated.'))
.catch(err => console.error(err))
.finally(() => process.exit(0))
})
})
2020-07-30 14:54:31 +02:00
.catch(err => {
console.error(err)
process.exit(-1)
})