Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Install: Use npmconf to get proxy config #616

Merged
merged 1 commit into from
Jan 11, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"mkdirp": "^0.5.0",
"mocha": "^2.0.1",
"nan": "^1.3.0",
"npmconf": "^2.1.1",
"object-assign": "^2.0.0",
"replace-ext": "0.0.1",
"request": "^2.48.0",
Expand Down
86 changes: 40 additions & 46 deletions scripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,70 +9,64 @@ var fs = require('fs'),
*
* @param {String} url
* @param {String} dest
* @param {function} cb
* @param {Function} cb
* @api private
*/

function download(url, dest, cb) {
var file = fs.createWriteStream(dest);
var options = { proxy: getProxy(), rejectUnauthorized: false };
var returnError = function(err) {
fs.unlink(dest);
cb(typeof err.message === 'string' ? err.message : err);
};
var req = request.get(url, options).on('response', function(response) {
if (response.statusCode < 200 || response.statusCode >= 300) {
returnError('Can not download file from ' + url);
return;
}
response.pipe(file);

file.on('finish', function() {
applyProxy({ rejectUnauthorized: false }, function(options) {
var returnError = function(err) {
fs.unlink(dest);
cb(typeof err.message === 'string' ? err.message : err);
};
var req = request.get(url, options).on('response', function(response) {
if (response.statusCode < 200 || response.statusCode >= 300) {
returnError('Can not download file from ' + url);
return;
}
response.pipe(file);

file.on('finish', function() {
file.close(cb);
});
}).on('error', returnError);
});
}).on('error', returnError);

req.end();
req.on('error', returnError);
req.end();
req.on('error', returnError);
});
}

/**
* Get proxy settings
* Get applyProxy settings
*
* @param {Object} options
* @param {Function} cb
* @api private
*/

function getProxy() {
var result = ['https-proxy', 'proxy', 'http-proxy'].filter(function(config) {
var proxy = exec('npm config get ' + config, {silent: true});

return proxy.code === 0 && validateProxyUrl(proxy.output.trim());
})[0];

if (result) {
return result;
}

var env = process.env;
return env.HTTPS_PROXY || env.https_proxy || env.HTTP_PROXY || env.http_proxy;
}
function applyProxy(options, cb) {
require('npmconf').load({}, function (er, conf) {
var getProxyFromEnv = true;
['https-proxy', 'proxy', 'http-proxy'].forEach(function(setting) {
var proxyUrl = conf.get(setting);

/**
* Validates Proxy URL
*
* @param {String} url
* @api private
*/
if(proxyUrl && proxyUrl === require('url').parse(proxyUrl)) {
options.proxy = proxyUrl;
getProxyFromEnv = false;
cb(options);
return;
}
});

function validateProxyUrl(url) {
if (/\n/.test(url)) {
url = url.replace(/\r?\n+/, '\n').split('\n');
url = url[url.length - 3].trim(); // get the second last element.
}
if(getProxyFromEnv) {
var env = process.env;
options.proxy = env.HTTPS_PROXY || env.https_proxy || env.HTTP_PROXY || env.http_proxy;

return url !== 'null' &&
url !== 'undefined' &&
url === require('url').parse(url);
cb(options);
}
});
}

/**
Expand Down