2022-01-03 11:13:11 -05:00
|
|
|
import CliTable3 from 'cli-table3'
|
2021-06-25 11:48:27 -04:00
|
|
|
import { OptionValues, program } from 'commander'
|
2018-09-13 08:27:44 -04:00
|
|
|
import { isUserUsernameValid } from '../helpers/custom-validators/users'
|
2022-01-03 11:13:11 -05:00
|
|
|
import { assignToken, buildServer, getNetrc, getSettings, writeSettings } from './cli'
|
2021-08-27 08:32:44 -04:00
|
|
|
|
|
|
|
import prompt = require('prompt')
|
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() ])
|
|
|
|
|
2020-06-17 04:55:40 -04:00
|
|
|
if (settings.remotes.includes(url) === false) {
|
2018-11-14 09:45:50 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-12-30 05:26:24 -05:00
|
|
|
function stripExtraneousFromPeerTubeUrl (url: string) {
|
|
|
|
// Get everything before the 3rd /.
|
|
|
|
const urlLength = url.includes('/', 8)
|
|
|
|
? url.indexOf('/', 8)
|
|
|
|
: url.length
|
|
|
|
|
2022-01-20 03:33:49 -05:00
|
|
|
return url.substring(0, urlLength)
|
2020-12-30 05:26:24 -05:00
|
|
|
}
|
|
|
|
|
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')
|
2021-06-25 11:48:27 -04:00
|
|
|
.action((options: OptionValues) => {
|
2021-02-03 03:33:05 -05:00
|
|
|
/* eslint-disable no-import-assign */
|
2018-09-13 08:27:44 -04:00
|
|
|
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) => {
|
2020-12-27 10:13:11 -05:00
|
|
|
|
2019-07-11 11:23:24 -04:00
|
|
|
// Check credentials
|
|
|
|
try {
|
2020-12-27 10:13:11 -05:00
|
|
|
// Strip out everything after the domain:port.
|
2022-01-20 03:33:49 -05:00
|
|
|
// See https://github.com/Chocobozzz/PeerTube/issues/3520
|
2020-12-27 10:13:11 -05:00
|
|
|
result.url = stripExtraneousFromPeerTubeUrl(result.url)
|
|
|
|
|
2021-07-13 05:44:16 -04:00
|
|
|
const server = buildServer(result.url)
|
|
|
|
await assignToken(server, result.username, result.password)
|
2019-07-11 11:23:24 -04:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err.message)
|
|
|
|
process.exit(-1)
|
|
|
|
}
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
await setInstance(result.url, result.username, result.password, options.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
|
|
|
})
|
|
|
|
|
2021-02-03 03:33:05 -05:00
|
|
|
program.addHelpText('after', '\n\n Examples:\n\n' +
|
|
|
|
' $ peertube auth add -u https://peertube.cpy.re -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"\n' +
|
|
|
|
' $ peertube auth add -u https://peertube.cpy.re -U root\n' +
|
|
|
|
' $ peertube auth list\n' +
|
|
|
|
' $ peertube auth del https://peertube.cpy.re\n'
|
|
|
|
)
|
2018-09-13 08:27:44 -04:00
|
|
|
|
|
|
|
if (!process.argv.slice(2).length) {
|
|
|
|
program.outputHelp()
|
|
|
|
}
|
|
|
|
|
|
|
|
program.parse(process.argv)
|