-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
core.js
378 lines (320 loc) · 10.1 KB
/
core.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
const CC = require('config-chain').ConfigChain
const inherits = require('inherits')
const configDefs = require('./defaults.js')
const types = configDefs.types
const fs = require('fs')
const path = require('path')
const nopt = require('nopt')
const ini = require('ini')
const Umask = configDefs.Umask
const mkdirp = require('mkdirp-infer-owner')
const umask = require('../utils/umask')
const isWindows = require('../utils/is-windows.js')
const myUid = process.getuid && process.getuid()
const myGid = process.getgid && process.getgid()
const { promisify } = require('util')
const load = async (cli, builtin) => {
// clone the cli object that's passed in, so we don't mutate it
cli = { ...cli }
// check for a builtin if provided.
exports.usingBuiltin = !!builtin
const rc = exports.rootConf = new Conf()
if (builtin) {
rc.addFile(builtin, 'builtin')
} else {
rc.add({}, 'builtin')
}
return load_(builtin, rc, cli)
}
// XXX promisify this the rest of the way, and all the Conf class methods
const load_ = promisify(function load_ (builtin, rc, cli, cb) {
const defaults = configDefs.defaults
const conf = new Conf(rc)
conf.usingBuiltin = !!builtin
conf.add(cli, 'cli')
conf.addEnv()
conf.loadPrefix(er => {
if (er) return cb(er)
// If you're doing `npm --userconfig=~/foo.npmrc` then you'd expect
// that ~/.npmrc won't override the stuff in ~/foo.npmrc (or, indeed
// be used at all).
//
// However, if the cwd is ~, then ~/.npmrc is the home for the project
// config, and will override the userconfig.
//
// If you're not setting the userconfig explicitly, then it will be loaded
// twice, which is harmless but excessive. If you *are* setting the
// userconfig explicitly then it will override your explicit intent, and
// that IS harmful and unexpected.
//
// Solution: Do not load project config file that is the same as either
// the default or resolved userconfig value. npm will log a "verbose"
// message about this when it happens, but it is a rare enough edge case
// that we don't have to be super concerned about it.
const projectConf = path.resolve(conf.localPrefix, '.npmrc')
const defaultUserConfig = rc.get('userconfig')
const resolvedUserConfig = conf.get('userconfig')
if (!conf.get('global') &&
projectConf !== defaultUserConfig &&
projectConf !== resolvedUserConfig) {
conf.addFile(projectConf, 'project')
conf.once('load', afterPrefix)
} else {
conf.add({}, 'project')
afterPrefix()
}
})
function afterPrefix () {
conf.addFile(conf.get('userconfig'), 'user')
conf.once('error', cb)
conf.once('load', afterUser)
}
function afterUser () {
// globalconfig and globalignorefile defaults
// need to respond to the 'prefix' setting up to this point.
// Eg, `npm config get globalconfig --prefix ~/local` should
// return `~/local/etc/npmrc`
// annoying humans and their expectations!
if (conf.get('prefix')) {
const etc = path.resolve(conf.get('prefix'), 'etc')
defaults.globalconfig = path.resolve(etc, 'npmrc')
defaults.globalignorefile = path.resolve(etc, 'npmignore')
}
conf.addFile(conf.get('globalconfig'), 'global')
// move the builtin into the conf stack now.
conf.root = defaults
conf.add(rc.shift(), 'builtin')
conf.once('load', function () {
conf.loadExtras(afterExtras)
})
}
function afterExtras (er) {
if (er) return cb(er)
// warn about invalid bits.
validate(conf)
const cafile = conf.get('cafile')
if (cafile) {
return conf.loadCAFile(cafile, finalize)
}
finalize()
}
function finalize (er) {
if (er) {
return cb(er)
}
exports.loaded = conf
cb(er, conf)
}
})
// Basically the same as CC, but:
// 1. Always ini
// 2. Parses environment variable names in field values
// 3. Field values that start with ~/ are replaced with process.env.HOME
// 4. Can inherit from another Conf object, using it as the base.
inherits(Conf, CC)
function Conf (base) {
if (!(this instanceof Conf)) return new Conf(base)
CC.call(this)
if (base) {
if (base instanceof Conf) {
this.root = base.list[0] || base.root
} else {
this.root = base
}
} else {
this.root = configDefs.defaults
}
}
Conf.prototype.loadPrefix = require('./load-prefix.js')
Conf.prototype.loadCAFile = require('./load-cafile.js')
Conf.prototype.setUser = require('./set-user.js')
Conf.prototype.getCredentialsByURI = require('./get-credentials-by-uri.js')
Conf.prototype.setCredentialsByURI = require('./set-credentials-by-uri.js')
Conf.prototype.clearCredentialsByURI = require('./clear-credentials-by-uri.js')
Conf.prototype.loadExtras = function (cb) {
this.setUser(function (er) {
if (er) return cb(er)
// Without prefix, nothing will ever work
mkdirp(this.prefix).then(() => cb()).catch(cb)
}.bind(this))
}
Conf.prototype.save = function (where, cb) {
const target = this.sources[where]
if (!target || !(target.path || target.source) || !target.data) {
let er
if (where !== 'builtin') er = new Error('bad save target: ' + where)
if (cb) {
process.nextTick(() => cb(er))
return this
}
return this.emit('error', er)
}
if (target.source) {
const pref = target.prefix || ''
Object.keys(target.data).forEach(function (k) {
target.source[pref + k] = target.data[k]
})
if (cb) process.nextTick(cb)
return this
}
const data = ini.stringify(target.data)
const then = er => {
if (er) return done(er)
fs.chmod(target.path, mode, done)
}
const done = er => {
if (er) {
if (cb) return cb(er)
else return this.emit('error', er)
}
this._saving--
if (this._saving === 0) {
if (cb) cb()
this.emit('save')
}
}
this._saving++
const mode = where === 'user' ? 0o600 : 0o666
if (!data.trim()) {
// ignore the possible error (e.g. the file doesn't exist)
fs.unlink(target.path, () => done())
} else {
const dir = path.dirname(target.path)
mkdirp(dir).catch(then).then(() => {
fs.stat(dir, (er, st) => {
if (er) return then(er)
fs.writeFile(target.path, data, 'utf8', function (er) {
if (er) return then(er)
if (myUid === 0 && (myUid !== st.uid || myGid !== st.gid)) {
fs.chown(target.path, st.uid, st.gid, then)
} else {
then()
}
})
})
})
}
return this
}
Conf.prototype.addFile = function (file, name) {
name = name || file
var marker = { __source__: name }
this.sources[name] = { path: file, type: 'ini' }
this.push(marker)
this._await()
fs.readFile(file, 'utf8', function (er, data) {
// just ignore missing files.
if (er) return this.add({}, marker)
this.addString(data, file, 'ini', marker)
}.bind(this))
return this
}
// always ini files.
Conf.prototype.parse = function (content, file) {
return CC.prototype.parse.call(this, content, file, 'ini')
}
Conf.prototype.add = function (data, marker) {
try {
Object.keys(data).forEach(function (k) {
const newKey = envReplace(k)
const newField = parseField(data[k], newKey)
delete data[k]
data[newKey] = newField
})
} catch (e) {
this.emit('error', e)
return this
}
return CC.prototype.add.call(this, data, marker)
}
Conf.prototype.addEnv = function (env) {
env = env || process.env
var conf = {}
Object.keys(env)
.filter(function (k) { return k.match(/^npm_config_/i) })
.forEach(function (k) {
if (!env[k]) return
// leave first char untouched, even if
// it is a '_' - convert all other to '-'
var p = k.toLowerCase()
.replace(/^npm_config_/, '')
.replace(/(?!^)_/g, '-')
conf[p] = env[k]
})
return CC.prototype.addEnv.call(this, '', conf, 'env')
}
function parseField (f, k, listElement = false) {
if (typeof f !== 'string' && !(f instanceof String)) return f
// type can be an array or single thing.
const typeList = [].concat(types[k])
const isPath = typeList.includes(path)
const isBool = typeList.includes(Boolean)
const isString = typeList.includes(String)
const isUmask = typeList.includes(Umask)
const isNumber = typeList.includes(Number)
const isList = typeList.includes(Array) && !listElement
f = ('' + f).trim()
// list types get put in the environment separated by double-\n
// usually a single \n would suffice, but ca/cert configs can contain
// line breaks and multiple entries.
if (isList) {
return f.split('\n').map(field => parseField(field, k, true))
}
if (isBool && !isString && f === '') return true
switch (f) {
case 'true': return true
case 'false': return false
case 'null': return null
case 'undefined': return undefined
}
f = envReplace(f)
if (isPath) {
var homePattern = isWindows ? /^~(\/|\\)/ : /^~\//
if (f.match(homePattern) && process.env.HOME) {
f = path.resolve(process.env.HOME, f.substr(2))
}
f = path.resolve(f)
}
if (isUmask) f = umask.fromString(f)
if (isNumber && !isNaN(f)) f = +f
return f
}
function envReplace (f) {
if (typeof f !== 'string' || !f) return f
// replace any ${ENV} values with the appropriate environ.
var envExpr = /(\\*)\$\{([^}]+)\}/g
return f.replace(envExpr, function (orig, esc, name) {
esc = esc.length && esc.length % 2
if (esc) return orig
if (undefined === process.env[name]) {
throw new Error('Failed to replace env in config: ' + orig)
}
return process.env[name]
})
}
function validate (cl) {
// warn about invalid configs at every level.
cl.list.forEach(function (conf) {
nopt.clean(conf, configDefs.types)
})
nopt.clean(cl.root, configDefs.types)
}
exports.load = load
exports.Conf = Conf
exports.loaded = false
exports.rootConf = null
exports.usingBuiltin = false
exports.defs = configDefs
Object.defineProperty(exports, 'defaults', {
get: function () {
return configDefs.defaults
},
enumerable: true
})
Object.defineProperty(exports, 'types', {
get: function () {
return configDefs.types
},
enumerable: true
})
exports.validate = validate