]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tools/peertube-get-access-token.ts
Introduce login command
[github/Chocobozzz/PeerTube.git] / server / tools / peertube-get-access-token.ts
CommitLineData
2aaa1a3f
C
1import { registerTSPaths } from '../helpers/register-ts-paths'
2registerTSPaths()
3
12152aa0 4import { program } from 'commander'
078f17e6 5import { getAccessToken } from '../../shared/extra-utils'
8df87ce7
C
6
7program
8 .option('-u, --url <url>', 'Server url')
9 .option('-n, --username <username>', 'Username')
10 .option('-p, --password <token>', 'Password')
11 .parse(process.argv)
12
ba5a8d89
C
13const options = program.opts()
14
8df87ce7 15if (
ba5a8d89
C
16 !options.url ||
17 !options.username ||
18 !options.password
8df87ce7 19) {
ba5a8d89
C
20 if (!options.url) console.error('--url field is required.')
21 if (!options.username) console.error('--username field is required.')
22 if (!options.password) console.error('--password field is required.')
1a12f66d 23
8704acf4 24 process.exit(-1)
8df87ce7
C
25}
26
078f17e6 27getAccessToken(options.url, options.username, options.password)
8df87ce7
C
28 .then(accessToken => {
29 console.log(accessToken)
30 process.exit(0)
31 })
32 .catch(err => {
33 console.error(err)
34 process.exit(-1)
35 })