diff options
Diffstat (limited to 'deps/npm/lib/bugs.js')
-rw-r--r-- | deps/npm/lib/bugs.js | 60 |
1 files changed, 39 insertions, 21 deletions
diff --git a/deps/npm/lib/bugs.js b/deps/npm/lib/bugs.js index bcbf2bebb..be79ab30e 100644 --- a/deps/npm/lib/bugs.js +++ b/deps/npm/lib/bugs.js @@ -7,6 +7,9 @@ var npm = require("./npm.js") , registry = npm.registry , log = require("npmlog") , opener = require("opener") + , path = require("path") + , readJson = require("read-package-json") + , fs = require("fs") bugs.completion = function (opts, cb) { if (opts.conf.argv.remain.length > 2) return cb() @@ -16,28 +19,43 @@ bugs.completion = function (opts, cb) { } function bugs (args, cb) { - if (!args.length) return cb(bugs.usage) - var n = args[0].split("@").shift() + var n = args.length && args[0].split("@").shift() || '.' + fs.stat(n, function (er, s) { + if (er && er.code === "ENOENT") return callRegistry(n, cb) + else if (er) return cb (er) + if (!s.isDirectory()) return callRegistry(n, cb) + readJson(path.resolve(n, "package.json"), function(er, d) { + if (er) return cb(er) + getUrlAndOpen(d, cb) + }) + }) +} + +function getUrlAndOpen (d, cb) { + var bugs = d.bugs + , repo = d.repository || d.repositories + , url + if (bugs) { + url = (typeof url === "string") ? bugs : bugs.url + } else if (repo) { + if (Array.isArray(repo)) repo = repo.shift() + if (repo.hasOwnProperty("url")) repo = repo.url + log.verbose("repository", repo) + if (bugs && bugs.match(/^(https?:\/\/|git(:\/\/|@))github.com/)) { + url = bugs.replace(/^git(@|:\/\/)/, "https://") + .replace(/^https?:\/\/github.com:/, "https://github.com/") + .replace(/\.git$/, '')+"/issues" + } + } + if (!url) { + url = "https://npmjs.org/package/" + d.name + } + opener(url, { command: npm.config.get("browser") }, cb) +} + +function callRegistry (n, cb) { registry.get(n + "/latest", 3600, function (er, d) { if (er) return cb(er) - var bugs = d.bugs - , repo = d.repository || d.repositories - , url - if (bugs) { - url = (typeof bugs === "string") ? bugs : bugs.url - } else if (repo) { - if (Array.isArray(repo)) repo = repo.shift() - if (repo.hasOwnProperty("url")) repo = repo.url - log.verbose("repository", repo) - if (repo && repo.match(/^(https?:\/\/|git(:\/\/|@))github.com/)) { - url = repo.replace(/^git(@|:\/\/)/, "https://") - .replace(/^https?:\/\/github.com:/, "https://github.com/") - .replace(/\.git$/, '')+"/issues" - } - } - if (!url) { - url = "https://npmjs.org/package/" + d.name - } - opener(url, { command: npm.config.get("browser") }, cb) + getUrlAndOpen (d, cb) }) } |