0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/npm/lib/whoami.js

44 lines
1.2 KiB
JavaScript
Raw Normal View History

var npm = require("./npm.js")
2014-09-24 23:41:07 +02:00
module.exports = whoami
whoami.usage = "npm whoami\n(just prints username according to given registry)"
2012-07-17 20:37:39 +02:00
function whoami (args, silent, cb) {
2014-09-24 23:41:07 +02:00
// FIXME: need tighter checking on this, but is a breaking change
if (typeof cb !== "function") {
cb = silent
silent = false
}
var registry = npm.config.get("registry")
if (!registry) return cb(new Error("no default registry set"))
function noUser () {
// At this point, if they have a credentials object, it doesn't have a
// token or auth in it. Probably just the default registry.
var msg = "Not authed. Run 'npm adduser'"
if (!silent) console.log(msg)
cb(null, msg)
}
var auth = npm.config.getCredentialsByURI(registry)
if (auth) {
if (auth.username) {
if (!silent) console.log(auth.username)
return process.nextTick(cb.bind(this, null, auth.username))
2014-09-24 23:41:07 +02:00
}
else if (auth.token) {
return npm.registry.whoami(registry, { auth : auth }, function (er, username) {
2014-09-24 23:41:07 +02:00
if (er) return cb(er)
if (!username) return noUser()
2014-09-24 23:41:07 +02:00
if (!silent) console.log(username)
cb(null, username)
})
}
}
process.nextTick(noUser)
}