]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tools/peertube-get-access-token.ts
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tools / peertube-get-access-token.ts
1 import { registerTSPaths } from '../helpers/register-ts-paths'
2 registerTSPaths()
3
4 import { program } from 'commander'
5 import { assignToken, buildServer } from './cli'
6
7 program
8 .option('-u, --url <url>', 'Server url')
9 .option('-n, --username <username>', 'Username')
10 .option('-p, --password <token>', 'Password')
11 .parse(process.argv)
12
13 const options = program.opts()
14
15 if (
16 !options.url ||
17 !options.username ||
18 !options.password
19 ) {
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.')
23
24 process.exit(-1)
25 }
26
27 const server = buildServer(options.url)
28
29 assignToken(server, options.username, options.password)
30 .then(() => {
31 console.log(server.accessToken)
32 process.exit(0)
33 })
34 .catch(err => {
35 console.error(err)
36 process.exit(-1)
37 })