PeerTube/server/tools/peertube-get-access-token.ts

51 lines
1.1 KiB
TypeScript
Raw Normal View History

import { registerTSPaths } from '../helpers/register-ts-paths'
registerTSPaths()
2017-09-07 17:58:09 +02:00
import * as program from 'commander'
2019-06-13 11:09:38 +02:00
import { getClient, Server, serverLogin } from '../../shared/extra-utils'
2017-09-07 17:58:09 +02:00
program
.option('-u, --url <url>', 'Server url')
.option('-n, --username <username>', 'Username')
.option('-p, --password <token>', 'Password')
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = program.opts()
2017-09-07 17:58:09 +02:00
if (
2021-02-03 09:33:05 +01:00
!options.url ||
!options.username ||
!options.password
2017-09-07 17:58:09 +02:00
) {
2021-02-03 09:33:05 +01:00
if (!options.url) console.error('--url field is required.')
if (!options.username) console.error('--username field is required.')
if (!options.password) console.error('--password field is required.')
2019-06-13 11:09:38 +02:00
process.exit(-1)
2017-09-07 17:58:09 +02:00
}
2021-02-03 09:33:05 +01:00
getClient(options.url)
2017-09-07 17:58:09 +02:00
.then(res => {
const server = {
2021-02-03 09:33:05 +01:00
url: options.url,
user: {
2021-02-03 09:33:05 +01:00
username: options.username,
password: options.password
2019-06-13 11:09:38 +02:00
},
client: {
2019-06-13 11:09:38 +02:00
id: res.body.client_id,
secret: res.body.client_secret
}
} as Server
2017-09-07 17:58:09 +02:00
2017-12-28 14:29:57 +01:00
return serverLogin(server)
2017-09-07 17:58:09 +02:00
})
.then(accessToken => {
console.log(accessToken)
process.exit(0)
})
.catch(err => {
console.error(err)
process.exit(-1)
})