]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tools/cli.ts
Better auth args handling for peertube cli
[github/Chocobozzz/PeerTube.git] / server / tools / cli.ts
CommitLineData
078f17e6 1import { Command } from 'commander'
1a12f66d 2import { Netrc } from 'netrc-parser'
1a12f66d 3import { join } from 'path'
bda3b705 4import { createLogger, format, transports } from 'winston'
f8360396
C
5import { loadLanguages } from '@server/initializers/constants'
6import { root } from '@shared/core-utils'
7926c5f9 7import { UserRole } from '@shared/models'
f8360396 8import { PeerTubeServer } from '@shared/server-commands'
078f17e6 9import { VideoPrivacy } from '../../shared/models/videos'
06aad801 10import { getAppNumber, isTestInstance } from '../helpers/core-utils'
1a12f66d
C
11
12let configName = 'PeerTube/CLI'
13if (isTestInstance()) configName += `-${getAppNumber()}`
14
15const config = require('application-config')(configName)
8704acf4 16
f8360396 17const version = require(join(root(), 'package.json')).version
8704acf4 18
254d3579 19async function getAdminTokenOrDie (server: PeerTubeServer, username: string, password: string) {
89d241a7
C
20 const token = await server.login.getAccessToken(username, password)
21 const me = await server.users.getMyInfo({ token })
26fcf2ef
C
22
23 if (me.role !== UserRole.ADMINISTRATOR) {
24 console.error('You must be an administrator.')
25 process.exit(-1)
26 }
27
7926c5f9 28 return token
26fcf2ef
C
29}
30
8704acf4 31interface Settings {
a1587156 32 remotes: any[]
8704acf4
RK
33 default: number
34}
35
3d3bb238
C
36async function getSettings (): Promise<Settings> {
37 const defaultSettings = {
38 remotes: [],
39 default: -1
40 }
2b4dd7e2 41
3d3bb238 42 const data = await config.read()
2b4dd7e2 43
3d3bb238
C
44 return Object.keys(data).length === 0
45 ? defaultSettings
46 : data
8704acf4
RK
47}
48
2b4dd7e2 49async function getNetrc () {
1a12f66d
C
50 const Netrc = require('netrc-parser').Netrc
51
52 const netrc = isTestInstance()
53 ? new Netrc(join(root(), 'test' + getAppNumber(), 'netrc'))
54 : new Netrc()
55
2b4dd7e2
C
56 await netrc.load()
57
58 return netrc
59}
60
3d3bb238
C
61function writeSettings (settings: Settings) {
62 return config.write(settings)
1a12f66d
C
63}
64
65function deleteSettings () {
3d3bb238 66 return config.trash()
8704acf4
RK
67}
68
8d2be0ed 69function getRemoteObjectOrDie (
12152aa0 70 program: Command,
8d2be0ed
C
71 settings: Settings,
72 netrc: Netrc
73): { url: string, username: string, password: string } {
ba5a8d89
C
74 const options = program.opts()
75
4dfd57ae
C
76 const manualOptionMode = options.url || options.username || options.password
77
78 // Check parameters validity
79 if (manualOptionMode || settings.remotes.length === 0 || Object.keys(netrc.machines).length === 0) {
80 let exit = false
81
82 for (const key of [ 'url', 'username', 'password' ]) {
83 if (!options[key]) {
84 console.error(`--${key} field is required`)
85 exit = true
86 }
2b4dd7e2
C
87 }
88
4dfd57ae
C
89 if (exit) process.exit(-1)
90 }
91
92 if (!manualOptionMode) {
ba5a8d89
C
93 let url: string = options.url
94 let username: string = options.username
95 let password: string = options.password
2b4dd7e2 96
1a12f66d 97 if (!url && settings.default !== -1) url = settings.remotes[settings.default]
2b4dd7e2 98
9f167f12 99 const machine = netrc.machines[url]
1a12f66d
C
100
101 if (!username && machine) username = machine.login
102 if (!password && machine) password = machine.password
2b4dd7e2
C
103
104 return { url, username, password }
105 }
106
107 return {
ba5a8d89
C
108 url: options.url,
109 username: options.username,
110 password: options.password
2b4dd7e2
C
111 }
112}
8704acf4 113
12152aa0 114function buildCommonVideoOptions (command: Command) {
1205823f
C
115 function list (val) {
116 return val.split(',')
117 }
118
119 return command
120 .option('-n, --video-name <name>', 'Video name')
121 .option('-c, --category <category_number>', 'Category number')
122 .option('-l, --licence <licence_number>', 'Licence number')
123 .option('-L, --language <language_code>', 'Language ISO 639 code (fr or en...)')
124 .option('-t, --tags <tags>', 'Video tags', list)
125 .option('-N, --nsfw', 'Video is Not Safe For Work')
126 .option('-d, --video-description <description>', 'Video description')
127 .option('-P, --privacy <privacy_number>', 'Privacy')
128 .option('-C, --channel-name <channel_name>', 'Channel name')
bd65cf02 129 .option('--no-comments-enabled', 'Disable video comments')
1205823f 130 .option('-s, --support <support>', 'Video support text')
bd65cf02
C
131 .option('--no-wait-transcoding', 'Do not wait transcoding before publishing the video')
132 .option('--no-download-enabled', 'Disable video download')
bda3b705 133 .option('-v, --verbose <verbose>', 'Verbosity, from 0/\'error\' to 4/\'debug\'', 'info')
1205823f
C
134}
135
254d3579 136async function buildVideoAttributesFromCommander (server: PeerTubeServer, command: Command, defaultAttributes: any = {}) {
ba5a8d89
C
137 const options = command.opts()
138
6b226c32
C
139 const defaultBooleanAttributes = {
140 nsfw: false,
141 commentsEnabled: true,
142 downloadEnabled: true,
143 waitTranscoding: true
144 }
145
146 const booleanAttributes: { [id in keyof typeof defaultBooleanAttributes]: boolean } | {} = {}
1205823f 147
6b226c32 148 for (const key of Object.keys(defaultBooleanAttributes)) {
ba5a8d89
C
149 if (options[key] !== undefined) {
150 booleanAttributes[key] = options[key]
1205823f
C
151 } else if (defaultAttributes[key] !== undefined) {
152 booleanAttributes[key] = defaultAttributes[key]
153 } else {
6b226c32 154 booleanAttributes[key] = defaultBooleanAttributes[key]
1205823f
C
155 }
156 }
157
158 const videoAttributes = {
ba5a8d89
C
159 name: options.videoName || defaultAttributes.name,
160 category: options.category || defaultAttributes.category || undefined,
161 licence: options.licence || defaultAttributes.licence || undefined,
162 language: options.language || defaultAttributes.language || undefined,
163 privacy: options.privacy || defaultAttributes.privacy || VideoPrivacy.PUBLIC,
164 support: options.support || defaultAttributes.support || undefined,
165 description: options.videoDescription || defaultAttributes.description || undefined,
166 tags: options.tags || defaultAttributes.tags || undefined
1205823f
C
167 }
168
169 Object.assign(videoAttributes, booleanAttributes)
170
ba5a8d89 171 if (options.channelName) {
89d241a7 172 const videoChannel = await server.channels.get({ channelName: options.channelName })
1205823f
C
173
174 Object.assign(videoAttributes, { channelId: videoChannel.id })
175
176 if (!videoAttributes.support && videoChannel.support) {
177 Object.assign(videoAttributes, { support: videoChannel.support })
178 }
179 }
180
181 return videoAttributes
182}
183
12152aa0 184function getServerCredentials (program: Command) {
8d2be0ed 185 return Promise.all([ getSettings(), getNetrc() ])
a1587156
C
186 .then(([ settings, netrc ]) => {
187 return getRemoteObjectOrDie(program, settings, netrc)
188 })
8d2be0ed
C
189}
190
254d3579 191function buildServer (url: string) {
06aad801 192 loadLanguages()
254d3579 193 return new PeerTubeServer({ url })
078f17e6
C
194}
195
254d3579 196async function assignToken (server: PeerTubeServer, username: string, password: string) {
89d241a7 197 const bodyClient = await server.login.getClient()
d0a0fa42
C
198 const client = { id: bodyClient.client_id, secret: bodyClient.client_secret }
199
89d241a7 200 const body = await server.login.login({ client, user: { username, password } })
d0a0fa42
C
201
202 server.accessToken = body.access_token
203}
204
bda3b705
FL
205function getLogger (logLevel = 'info') {
206 const logLevels = {
207 0: 0,
208 error: 0,
209 1: 1,
210 warn: 1,
211 2: 2,
212 info: 2,
213 3: 3,
214 verbose: 3,
215 4: 4,
216 debug: 4
217 }
218
219 const logger = createLogger({
220 levels: logLevels,
221 format: format.combine(
222 format.splat(),
223 format.simple()
224 ),
225 transports: [
226 new (transports.Console)({
227 level: logLevel
228 })
229 ]
230 })
231
232 return logger
233}
234
8704acf4
RK
235// ---------------------------------------------------------------------------
236
237export {
238 version,
bda3b705 239 getLogger,
8704acf4 240 getSettings,
2b4dd7e2
C
241 getNetrc,
242 getRemoteObjectOrDie,
1a12f66d 243 writeSettings,
1205823f
C
244 deleteSettings,
245
8d2be0ed
C
246 getServerCredentials,
247
1205823f 248 buildCommonVideoOptions,
26fcf2ef
C
249 buildVideoAttributesFromCommander,
250
078f17e6 251 getAdminTokenOrDie,
d0a0fa42
C
252 buildServer,
253 assignToken
8704acf4 254}