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
|
import * as program from 'commander'
import {
getClient,
serverLogin,
Server,
Client,
User
} from '../tests/utils/index'
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']
) {
if (!program['url']) console.error('--url field is required.')
if (!program['username']) console.error('--username field is required.')
if (!program['password']) console.error('--password field is required.')
process.exit(-1)
}
getClient(program.url)
.then(res => {
const server = {
url: program['url'],
user: {
username: program['username'],
password: program['password']
} as User,
client: {
id: res.body.client_id as string,
secret: res.body.client_secret as string
} as Client
} as Server
return serverLogin(server)
})
.then(accessToken => {
console.log(accessToken)
process.exit(0)
})
.catch(err => {
console.error(err)
process.exit(-1)
})
|