mirror of https://github.com/lukechilds/node.git
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.
23 lines
747 B
23 lines
747 B
|
|
module.exports = users
|
|
|
|
var npm = require("../../npm")
|
|
, registry = npm.registry
|
|
, containsSingleMatch = require("./contains-single-match.js")
|
|
, getCompletions = require("./get-completions.js")
|
|
, log = require("npmlog")
|
|
|
|
function users (args, index, cb) {
|
|
var name = (args.length + 1 === index) ? args[args.length - 1] : ""
|
|
if (name === undefined) name = ""
|
|
// use up-to 1 day stale cache. doesn't change much
|
|
log.warn("users completion", "About to fetch")
|
|
registry.get("/-/users", 24*60*60, function (er, d) {
|
|
log.warn("userdata", d)
|
|
log.warn("name", name)
|
|
if (er) return cb(er)
|
|
var remoteList = Object.keys(d)
|
|
, simpleMatches = getCompletions(name, remoteList)
|
|
return cb(null, simpleMatches)
|
|
})
|
|
}
|
|
|