aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/real-world/tools/get-access-token.js
blob: 483cefa952c3319699dd0b07342f69e473843304 (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
'use strict'

const program = require('commander')

const utilsClient = require('../../utils/clients')
const utilsLogin = require('../../utils/login')

program
  .option('-u, --url <url>', 'Server url')
  .option('-n, --username <username>', 'Username')
  .option('-p, --password <token>', 'Password')
  .parse(process.argv)

if (
  !program.url ||
  !program.username ||
  !program.password
) {
  throw new Error('All arguments are required.')
}

const server = {
  url: program.url,
  user: {
    username: program.username,
    password: program.password
  },
  client: {
    id: null,
    secret: null
  }
}

utilsClient.getClient(program.url, function (err, res) {
  if (err) throw err

  server.client.id = res.body.client_id
  server.client.secret = res.body.client_secret

  utilsLogin.loginAndGetAccessToken(server, function (err, accessToken) {
    if (err) throw err

    console.log(accessToken)
  })
})