2020-01-31 10:56:52 -05:00
|
|
|
// eslint-disable @typescript-eslint/no-unnecessary-type-assertion
|
|
|
|
|
2019-10-21 11:13:07 -04:00
|
|
|
import { registerTSPaths } from '../helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
import * as program from 'commander'
|
|
|
|
import * as prompt from 'prompt'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { getNetrc, getSettings, writeSettings } from './cli'
|
2018-09-13 08:27:44 -04:00
|
|
|
import { isUserUsernameValid } from '../helpers/custom-validators/users'
|
2020-01-31 10:56:52 -05:00
|
|
|
import { getAccessToken } from '../../shared/extra-utils'
|
2020-01-28 05:07:23 -05:00
|
|
|
import * as CliTable3 from 'cli-table3'
|
2019-04-25 07:55:28 -04:00
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
async function delInstance (url: string) {
|
2019-04-25 07:55:28 -04:00
|
|
|
const [ settings, netrc ] = await Promise.all([ getSettings(), getNetrc() ])
|
2018-11-14 09:45:50 -05:00
|
|
|
|
2019-06-13 05:09:38 -04:00
|
|
|
const index = settings.remotes.indexOf(url)
|
|
|
|
settings.remotes.splice(index)
|
|
|
|
|
|
|
|
if (settings.default === index) settings.default = -1
|
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
await writeSettings(settings)
|
|
|
|
|
|
|
|
delete netrc.machines[url]
|
2019-04-25 07:55:28 -04:00
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
await netrc.save()
|
2018-09-13 08:27:44 -04:00
|
|
|
}
|
|
|
|
|
2019-06-13 05:09:38 -04:00
|
|
|
async function setInstance (url: string, username: string, password: string, isDefault: boolean) {
|
2019-04-25 07:55:28 -04:00
|
|
|
const [ settings, netrc ] = await Promise.all([ getSettings(), getNetrc() ])
|
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
if (settings.remotes.indexOf(url) === -1) {
|
|
|
|
settings.remotes.push(url)
|
|
|
|
}
|
2019-06-13 05:09:38 -04:00
|
|
|
|
|
|
|
if (isDefault || settings.remotes.length === 1) {
|
|
|
|
settings.default = settings.remotes.length - 1
|
|
|
|
}
|
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
await writeSettings(settings)
|
|
|
|
|
|
|
|
netrc.machines[url] = { login: username, password }
|
|
|
|
await netrc.save()
|
2018-09-13 08:27:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function isURLaPeerTubeInstance (url: string) {
|
2019-07-04 09:03:15 -04:00
|
|
|
return url.startsWith('http://') || url.startsWith('https://')
|
2018-09-13 08:27:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
program
|
|
|
|
.name('auth')
|
|
|
|
.usage('[command] [options]')
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('add')
|
|
|
|
.description('remember your accounts on remote instances for easier use')
|
|
|
|
.option('-u, --url <url>', 'Server url')
|
|
|
|
.option('-U, --username <username>', 'Username')
|
|
|
|
.option('-p, --password <token>', 'Password')
|
|
|
|
.option('--default', 'add the entry as the new default')
|
|
|
|
.action(options => {
|
|
|
|
prompt.override = options
|
|
|
|
prompt.start()
|
|
|
|
prompt.get({
|
|
|
|
properties: {
|
|
|
|
url: {
|
|
|
|
description: 'instance url',
|
|
|
|
conform: (value) => isURLaPeerTubeInstance(value),
|
2019-07-04 09:03:15 -04:00
|
|
|
message: 'It should be an URL (https://peertube.example.com)',
|
2018-09-13 08:27:44 -04:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
username: {
|
|
|
|
conform: (value) => isUserUsernameValid(value),
|
|
|
|
message: 'Name must be only letters, spaces, or dashes',
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
password: {
|
|
|
|
hidden: true,
|
|
|
|
replace: '*',
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 09:45:50 -05:00
|
|
|
}, async (_, result) => {
|
2019-07-11 11:23:24 -04:00
|
|
|
// Check credentials
|
|
|
|
try {
|
|
|
|
await getAccessToken(result.url, result.username, result.password)
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err.message)
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2019-06-13 05:09:38 -04:00
|
|
|
await setInstance(result.url, result.username, result.password, program['default'])
|
2018-11-14 09:45:50 -05:00
|
|
|
|
|
|
|
process.exit(0)
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('del <url>')
|
|
|
|
.description('unregisters a remote instance')
|
2018-11-14 09:45:50 -05:00
|
|
|
.action(async url => {
|
|
|
|
await delInstance(url)
|
|
|
|
|
|
|
|
process.exit(0)
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('list')
|
|
|
|
.description('lists registered remote instances')
|
2018-11-14 09:45:50 -05:00
|
|
|
.action(async () => {
|
2019-04-25 07:55:28 -04:00
|
|
|
const [ settings, netrc ] = await Promise.all([ getSettings(), getNetrc() ])
|
|
|
|
|
2020-01-28 05:07:23 -05:00
|
|
|
const table = new CliTable3({
|
2020-01-31 10:56:52 -05:00
|
|
|
head: [ 'instance', 'login' ],
|
|
|
|
colWidths: [ 30, 30 ]
|
|
|
|
}) as any
|
2019-04-25 07:55:28 -04:00
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
settings.remotes.forEach(element => {
|
2019-06-11 03:25:20 -04:00
|
|
|
if (!netrc.machines[element]) return
|
|
|
|
|
2018-11-14 09:45:50 -05:00
|
|
|
table.push([
|
|
|
|
element,
|
|
|
|
netrc.machines[element].login
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log(table.toString())
|
|
|
|
|
|
|
|
process.exit(0)
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
program
|
|
|
|
.command('set-default <url>')
|
|
|
|
.description('set an existing entry as default')
|
2018-11-14 09:45:50 -05:00
|
|
|
.action(async url => {
|
|
|
|
const settings = await getSettings()
|
2020-02-28 10:03:39 -05:00
|
|
|
const instanceExists = settings.remotes.includes(url)
|
2018-11-14 09:45:50 -05:00
|
|
|
|
|
|
|
if (instanceExists) {
|
|
|
|
settings.default = settings.remotes.indexOf(url)
|
|
|
|
await writeSettings(settings)
|
|
|
|
|
|
|
|
process.exit(0)
|
|
|
|
} else {
|
|
|
|
console.log('<url> is not a registered instance.')
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
program.on('--help', function () {
|
|
|
|
console.log(' Examples:')
|
|
|
|
console.log()
|
2019-07-25 06:03:13 -04:00
|
|
|
console.log(' $ peertube add -u https://peertube.cpy.re -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"')
|
|
|
|
console.log(' $ peertube add -u https://peertube.cpy.re -U root')
|
2018-09-13 08:27:44 -04:00
|
|
|
console.log(' $ peertube list')
|
2019-07-25 06:03:13 -04:00
|
|
|
console.log(' $ peertube del https://peertube.cpy.re')
|
2018-09-13 08:27:44 -04:00
|
|
|
console.log()
|
|
|
|
})
|
|
|
|
|
|
|
|
if (!process.argv.slice(2).length) {
|
|
|
|
program.outputHelp()
|
|
|
|
}
|
|
|
|
|
|
|
|
program.parse(process.argv)
|