aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tools/peertube-auth.ts
blob: 33438811eed2037e35314f6052e1c2209d2afdc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import * as program from 'commander'
import * as prompt from 'prompt'
const Table = require('cli-table')
import { getSettings, writeSettings, netrc } from './cli'
import { isHostValid } from '../helpers/custom-validators/servers'
import { isUserUsernameValid } from '../helpers/custom-validators/users'

function delInstance (url: string) {
  return new Promise((res, rej): void => {
    getSettings()
      .then(async (settings) => {
        settings.remotes.splice(settings.remotes.indexOf(url))
        await writeSettings(settings)
        delete netrc.machines[url]
        netrc.save()
        res()
      })
      .catch(err => rej(err))
  })
}

async function setInstance (url: string, username: string, password: string) {
  return new Promise((res, rej): void => {
    getSettings()
      .then(async settings => {
        if (settings.remotes.indexOf(url) === -1) {
          settings.remotes.push(url)
        }
        await writeSettings(settings)
        netrc.machines[url] = { login: username, password }
        netrc.save()
        res()
      })
      .catch(err => rej(err))
  })
}

function isURLaPeerTubeInstance (url: string) {
  return isHostValid(url) || (url.includes('localhost'))
}

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),
          required: true
        },
        username: {
          conform: (value) => isUserUsernameValid(value),
          message: 'Name must be only letters, spaces, or dashes',
          required: true
        },
        password: {
          hidden: true,
          replace: '*',
          required: true
        }
      }
    }, (_, result) => {
      setInstance(result.url, result.username, result.password)
    })
  })

program
  .command('del <url>')
  .description('unregisters a remote instance')
  .action((url) => {
    delInstance(url)
  })

program
  .command('list')
  .description('lists registered remote instances')
  .action(() => {
    getSettings()
      .then(settings => {
        const table = new Table({
          head: ['instance', 'login'],
          colWidths: [30, 30]
        })
        netrc.loadSync()
        settings.remotes.forEach(element => {
          table.push([
            element,
            netrc.machines[element].login
          ])
        })

        console.log(table.toString())
      })
  })

program
  .command('set-default <url>')
  .description('set an existing entry as default')
  .action((url) => {
    getSettings()
      .then(settings => {
        const instanceExists = settings.remotes.indexOf(url) !== -1

        if (instanceExists) {
          settings.default = settings.remotes.indexOf(url)
          writeSettings(settings)
        } else {
          console.log('<url> is not a registered instance.')
          process.exit(-1)
        }
      })
  })

program.on('--help', function () {
  console.log('  Examples:')
  console.log()
  console.log('    $ peertube add -u peertube.cpy.re -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"')
  console.log('    $ peertube add -u peertube.cpy.re -U root')
  console.log('    $ peertube list')
  console.log('    $ peertube del peertube.cpy.re')
  console.log()
})

if (!process.argv.slice(2).length) {
  program.outputHelp()
}

program.parse(process.argv)