Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logout.js « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2762c1ba3e5fa81cb0d1d2952fe4fe67df756d6 (plain)
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
const eu = encodeURIComponent
const log = require('npmlog')
const getAuth = require('npm-registry-fetch/auth.js')
const npmFetch = require('npm-registry-fetch')
const npm = require('./npm.js')
const usageUtil = require('./utils/usage.js')

const usage = usageUtil(
  'logout',
  'npm logout [--registry=<url>] [--scope=<@scope>]'
)

const cmd = (args, cb) => logout(args).then(() => cb()).catch(cb)

const logout = async (args) => {
  const { registry, scope } = npm.flatOptions
  const regRef = scope ? `${scope}:registry` : 'registry'
  const reg = npm.flatOptions[regRef] || registry

  const auth = getAuth(reg, npm.flatOptions)

  if (auth.token) {
    log.verbose('logout', `clearing token for ${reg}`)
    await npmFetch(`/-/user/token/${eu(auth.token)}`, {
      ...npm.flatOptions,
      method: 'DELETE',
      ignoreBody: true,
    })
  } else if (auth.username || auth.password)
    log.verbose('logout', `clearing user credentials for ${reg}`)
  else {
    const msg = `not logged in to ${reg}, so can't log out!`
    throw Object.assign(new Error(msg), { code: 'ENEEDAUTH' })
  }

  if (scope)
    npm.config.delete(regRef, 'user')

  npm.config.clearCredentialsByURI(reg)

  await npm.config.save('user')
}

module.exports = Object.assign(cmd, { usage })