ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

196 lines
4.6 KiB

  1. import applicationConfig from 'application-config'
  2. import { Netrc } from 'netrc-parser'
  3. import { join } from 'path'
  4. import { createLogger, format, transports } from 'winston'
  5. import { UserRole } from '@peertube/peertube-models'
  6. import { getAppNumber, isTestInstance, root } from '@peertube/peertube-node-utils'
  7. import { PeerTubeServer } from '@peertube/peertube-server-commands'
  8. export type CommonProgramOptions = {
  9. url?: string
  10. username?: string
  11. password?: string
  12. }
  13. let configName = 'PeerTube/CLI'
  14. if (isTestInstance()) configName += `-${getAppNumber()}`
  15. const config = applicationConfig(configName)
  16. const version: string = process.env.PACKAGE_VERSION
  17. async function getAdminTokenOrDie (server: PeerTubeServer, username: string, password: string) {
  18. const token = await server.login.getAccessToken(username, password)
  19. const me = await server.users.getMyInfo({ token })
  20. if (me.role.id !== UserRole.ADMINISTRATOR) {
  21. console.error('You must be an administrator.')
  22. process.exit(-1)
  23. }
  24. return token
  25. }
  26. interface Settings {
  27. remotes: any[]
  28. default: number
  29. }
  30. async function getSettings () {
  31. const defaultSettings: Settings = {
  32. remotes: [],
  33. default: -1
  34. }
  35. const data = await config.read() as Promise<Settings>
  36. return Object.keys(data).length === 0
  37. ? defaultSettings
  38. : data
  39. }
  40. async function getNetrc () {
  41. const netrc = isTestInstance()
  42. ? new Netrc(join(root(import.meta.url), 'test' + getAppNumber(), 'netrc'))
  43. : new Netrc()
  44. await netrc.load()
  45. return netrc
  46. }
  47. function writeSettings (settings: Settings) {
  48. return config.write(settings)
  49. }
  50. function deleteSettings () {
  51. return config.trash()
  52. }
  53. function getRemoteObjectOrDie (
  54. options: CommonProgramOptions,
  55. settings: Settings,
  56. netrc: Netrc
  57. ): { url: string, username: string, password: string } {
  58. function exitIfNoOptions (optionNames: string[], errorPrefix: string = '') {
  59. let exit = false
  60. for (const key of optionNames) {
  61. if (!options[key]) {
  62. if (exit === false && errorPrefix) console.error(errorPrefix)
  63. console.error(`--${key} field is required`)
  64. exit = true
  65. }
  66. }
  67. if (exit) process.exit(-1)
  68. }
  69. // If username or password are specified, both are mandatory
  70. if (options.username || options.password) {
  71. exitIfNoOptions([ 'username', 'password' ])
  72. }
  73. // If no available machines, url, username and password args are mandatory
  74. if (Object.keys(netrc.machines).length === 0) {
  75. exitIfNoOptions([ 'url', 'username', 'password' ], 'No account found in netrc')
  76. }
  77. if (settings.remotes.length === 0 || settings.default === -1) {
  78. exitIfNoOptions([ 'url' ], 'No default instance found')
  79. }
  80. let url: string = options.url
  81. let username: string = options.username
  82. let password: string = options.password
  83. if (!url && settings.default !== -1) url = settings.remotes[settings.default]
  84. const machine = netrc.machines[url]
  85. if ((!username || !password) && !machine) {
  86. console.error('Cannot find existing configuration for %s.', url)
  87. process.exit(-1)
  88. }
  89. if (!username && machine) username = machine.login
  90. if (!password && machine) password = machine.password
  91. return { url, username, password }
  92. }
  93. function listOptions (val: string) {
  94. return val.split(',')
  95. }
  96. function getServerCredentials (options: CommonProgramOptions) {
  97. return Promise.all([ getSettings(), getNetrc() ])
  98. .then(([ settings, netrc ]) => {
  99. return getRemoteObjectOrDie(options, settings, netrc)
  100. })
  101. }
  102. function buildServer (url: string) {
  103. return new PeerTubeServer({ url })
  104. }
  105. async function assignToken (server: PeerTubeServer, username: string, password: string) {
  106. const bodyClient = await server.login.getClient()
  107. const client = { id: bodyClient.client_id, secret: bodyClient.client_secret }
  108. const body = await server.login.login({ client, user: { username, password } })
  109. server.accessToken = body.access_token
  110. }
  111. function getLogger (logLevel = 'info') {
  112. const logLevels = {
  113. 0: 0,
  114. error: 0,
  115. 1: 1,
  116. warn: 1,
  117. 2: 2,
  118. info: 2,
  119. 3: 3,
  120. verbose: 3,
  121. 4: 4,
  122. debug: 4
  123. }
  124. const logger = createLogger({
  125. levels: logLevels,
  126. format: format.combine(
  127. format.splat(),
  128. format.simple()
  129. ),
  130. transports: [
  131. new (transports.Console)({
  132. level: logLevel
  133. })
  134. ]
  135. })
  136. return logger
  137. }
  138. // ---------------------------------------------------------------------------
  139. export {
  140. version,
  141. getLogger,
  142. getSettings,
  143. getNetrc,
  144. getRemoteObjectOrDie,
  145. writeSettings,
  146. deleteSettings,
  147. getServerCredentials,
  148. listOptions,
  149. getAdminTokenOrDie,
  150. buildServer,
  151. assignToken
  152. }