Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bugs.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa66dc3e4195a37d943fff3487e8f2b6d8d401a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44

module.exports = bugs

bugs.usage = "npm bugs <pkgname>"

var exec = require("./utils/exec.js")
  , npm = require("./npm.js")
  , registry = npm.registry
  , log = require("npmlog")
  , opener = require("opener")

bugs.completion = function (opts, cb) {
  if (opts.conf.argv.remain.length > 2) return cb()
  registry.get("/-/short", 60000, function (er, list) {
    return cb(null, list || [])
  })
}

function bugs (args, cb) {
  if (!args.length) return cb(bugs.usage)
  var n = args[0].split("@").shift()
  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)
  })
}