var assert = require('assert') var toNerfDart = require('./nerf-dart.js') module.exports = setCredentialsByURI function setCredentialsByURI (uri, c) { assert(uri && typeof uri === 'string', 'registry URL is required') assert(c && typeof c === 'object', 'credentials are required') var nerfed = toNerfDart(uri) if (c.token) { this.set(nerfed + ':_authToken', c.token, 'user') this.del(nerfed + ':_password', 'user') this.del(nerfed + ':username', 'user') this.del(nerfed + ':email', 'user') this.del(nerfed + ':always-auth', 'user') } else if (c.username || c.password || c.email) { assert(c.username, 'must include username') assert(c.password, 'must include password') assert(c.email, 'must include email address') this.del(nerfed + ':_authToken', 'user') var encoded = Buffer.from(c.password, 'utf8').toString('base64') this.set(nerfed + ':_password', encoded, 'user') this.set(nerfed + ':username', c.username, 'user') this.set(nerfed + ':email', c.email, 'user') if (c.alwaysAuth !== undefined) { this.set(nerfed + ':always-auth', c.alwaysAuth, 'user') } else { this.del(nerfed + ':always-auth', 'user') } } else { throw new Error('No credentials to set.') } }
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 |
|