summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/lib/dist-tags/fetch.js
blob: 69a126d1f45b4cfc7861cdc547b0261a7abeeabb (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
module.exports = fetch

var assert = require('assert')
var url = require('url')

var npa = require('npm-package-arg')

function fetch (uri, params, cb) {
  assert(typeof uri === 'string', 'must pass registry URI to distTags.fetch')
  assert(
    params && typeof params === 'object',
    'must pass params to distTags.fetch'
  )
  assert(typeof cb === 'function', 'must pass callback to distTags.fetch')

  assert(
    typeof params.package === 'string',
    'must pass package name to distTags.fetch'
  )
  assert(
    params.auth && typeof params.auth === 'object',
    'must pass auth to distTags.fetch'
  )

  var p = npa(params.package)
  var pkg = p.scope ? params.package.replace('/', '%2f') : params.package
  var rest = '-/package/' + pkg + '/dist-tags'

  var options = {
    method: 'GET',
    auth: params.auth
  }
  this.request(url.resolve(uri, rest), options, function (er, data) {
    if (data && typeof data === 'object') delete data._etag
    cb(er, data)
  })
}