404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.14.132.221: ~ $
var assert = require('assert')

var toNerfDart = require('./nerf-dart.js')

module.exports = getCredentialsByURI

function getCredentialsByURI (uri) {
  assert(uri && typeof uri === 'string', 'registry URL is required')
  var nerfed = toNerfDart(uri)
  var defnerf = toNerfDart(this.get('registry'))

  // hidden class micro-optimization
  var c = {
    scope: nerfed,
    token: undefined,
    password: undefined,
    username: undefined,
    email: undefined,
    auth: undefined,
    alwaysAuth: undefined
  }

  // used to override scope matching for tokens as well as legacy auth
  if (this.get(nerfed + ':always-auth') !== undefined) {
    var val = this.get(nerfed + ':always-auth')
    c.alwaysAuth = val === 'false' ? false : !!val
  } else if (this.get('always-auth') !== undefined) {
    c.alwaysAuth = this.get('always-auth')
  }

  if (this.get(nerfed + ':_authToken')) {
    c.token = this.get(nerfed + ':_authToken')
    // the bearer token is enough, don't confuse things
    return c
  }

  if (this.get(nerfed + ':-authtoken')) {
    c.token = this.get(nerfed + ':-authtoken')
    // the bearer token is enough, don't confuse things
    return c
  }

  // Handle the old-style _auth=<base64> style for the default
  // registry, if set.
  var authDef = this.get('_auth')
  var userDef = this.get('username')
  var passDef = this.get('_password')
  if (authDef && !(userDef && passDef)) {
    authDef = Buffer.from(authDef, 'base64').toString()
    authDef = authDef.split(':')
    userDef = authDef.shift()
    passDef = authDef.join(':')
  }

  if (this.get(nerfed + ':_password')) {
    c.password = Buffer.from(this.get(nerfed + ':_password'), 'base64').toString('utf8')
  } else if (nerfed === defnerf && passDef) {
    c.password = passDef
  }

  if (this.get(nerfed + ':username')) {
    c.username = this.get(nerfed + ':username')
  } else if (nerfed === defnerf && userDef) {
    c.username = userDef
  }

  if (this.get(nerfed + ':email')) {
    c.email = this.get(nerfed + ':email')
  } else if (this.get('email')) {
    c.email = this.get('email')
  }

  if (c.username && c.password) {
    c.auth = Buffer.from(c.username + ':' + c.password).toString('base64')
  }

  return c
}

Filemanager

Name Type Size Permission Actions
bin-links.js File 716 B 0644
clear-credentials-by-uri.js File 423 B 0644
cmd-list.js File 2.17 KB 0644
core.js File 10.9 KB 0644
defaults.js File 11.45 KB 0644
figgy-config.js File 2.31 KB 0644
gentle-fs.js File 687 B 0644
get-credentials-by-uri.js File 2.16 KB 0644
lifecycle.js File 851 B 0644
load-cafile.js File 682 B 0644
load-prefix.js File 1.3 KB 0644
nerf-dart.js File 471 B 0644
set-credentials-by-uri.js File 1.24 KB 0644
set-user.js File 758 B 0644