c2d50b6c0a5277ee08f71426f6354edd39ecb3a7
[platform/upstream/nodejs.git] / deps / npm / node_modules / npm-registry-client / index.js
1
2 // utilities for working with the js-registry site.
3
4 module.exports = RegClient
5
6 var fs = require('fs')
7 , url = require('url')
8 , path = require('path')
9 , CouchLogin = require('couch-login')
10 , npmlog
11
12 try {
13   npmlog = require("npmlog")
14 } catch (er) {
15   npmlog = { error: noop, warn: noop, info: noop,
16              verbose: noop, silly: noop, http: noop,
17              pause: noop, resume: noop }
18 }
19
20 function noop () {}
21
22 function RegClient (conf) {
23   // accept either a plain-jane object, or a npmconf object
24   // with a "get" method.
25   if (typeof conf.get !== 'function') {
26     var data = conf
27     conf = { get: function (k) { return data[k] }
28            , set: function (k, v) { data[k] = v }
29            , del: function (k) { delete data[k] } }
30   }
31
32   this.conf = conf
33
34   // if provided, then the registry needs to be a url.
35   // if it's not provided, then we're just using the cache only.
36   var registry = conf.get('registry')
37   if (registry) {
38     registry = url.parse(registry)
39     if (!registry.protocol) throw new Error(
40       'Invalid registry: ' + registry.url)
41     registry = registry.href
42     if (registry.slice(-1) !== '/') {
43       registry += '/'
44     }
45     this.conf.set('registry', registry)
46   } else {
47     registry = null
48   }
49
50   if (!conf.get('cache')) throw new Error("Cache dir is required")
51
52   var auth = this.conf.get('_auth')
53   var alwaysAuth = this.conf.get('always-auth')
54   if (auth && !alwaysAuth && registry) {
55     // if we're always authing, then we just send the
56     // user/pass on every thing.  otherwise, create a
57     // session, and use that.
58     var token = this.conf.get('_token')
59     this.couchLogin = new CouchLogin(registry, token)
60     this.couchLogin.proxy = this.conf.get('proxy')
61     this.couchLogin.strictSSL = this.conf.get('strict-ssl')
62     this.couchLogin.ca = this.conf.get('ca')
63   }
64
65   this.log = conf.log || conf.get('log') || npmlog
66 }
67
68 require('fs').readdirSync(__dirname + "/lib").forEach(function (f) {
69   if (!f.match(/\.js$/)) return
70   RegClient.prototype[f.replace(/\.js$/, '')] = require('./lib/' + f)
71 })