aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/reset-password.ts
blob: 50e11c69c0195fbe4b7d446e7c0864d0ae5e30d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import * as program from 'commander'

import { database as db } from '../server/initializers/database'

program
  .option('-u, --user [user]', 'User')
  .parse(process.argv)

if (program.user === undefined) {
  console.error('All parameters are mandatory.')
  process.exit(-1)
}

db.init(true, function () {
  db.User.loadByUsername(program.user, function (err, user) {
    if (err) {
      console.error(err)
      return
    }

    if (!user) {
      console.error('User unknown.')
      return
    }

    const readline = require('readline')
    const Writable = require('stream').Writable
    const mutableStdout = new Writable({
      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) {
      user.password = password

      user.save().asCallback(function (err) {
        if (err) {
          console.error(err)
        } else {
          console.log('User password updated.')
        }

        process.exit(0)
      })
    })
  })
})