mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
This has the side effect of forcing several other files to pull in the Fiber symbol explicitly.
132 lines
3.3 KiB
JavaScript
132 lines
3.3 KiB
JavaScript
Meteor.http = Meteor.http || {};
|
|
|
|
(function() {
|
|
|
|
var path = __meteor_bootstrap__.require('path');
|
|
var request = __meteor_bootstrap__.require('request');
|
|
var url_util = __meteor_bootstrap__.require('url');
|
|
var Future = __meteor_bootstrap__.require(path.join('fibers', 'future'));
|
|
|
|
|
|
Meteor.http.call = function(method, url, options, callback) {
|
|
|
|
////////// Process arguments //////////
|
|
|
|
if (! callback && typeof options === "function") {
|
|
// support (method, url, callback) argument list
|
|
callback = options;
|
|
options = null;
|
|
}
|
|
|
|
options = options || {};
|
|
|
|
method = (method || "").toUpperCase();
|
|
|
|
if (! /^https?:\/\//.test(url))
|
|
throw new Error("url must be absolute and start with http:// or https://");
|
|
|
|
var url_parts = url_util.parse(url);
|
|
|
|
var content = options.content;
|
|
if (options.data)
|
|
content = JSON.stringify(options.data);
|
|
|
|
|
|
var params_for_url, params_for_body;
|
|
if (content || method === "GET" || method === "HEAD")
|
|
params_for_url = options.params;
|
|
else
|
|
params_for_body = options.params;
|
|
|
|
var new_url = Meteor.http._buildUrl(
|
|
url_parts.protocol+"//"+url_parts.host+url_parts.pathname,
|
|
url_parts.search, options.query, params_for_url);
|
|
|
|
|
|
var headers = {};
|
|
|
|
if (options.auth) {
|
|
if (options.auth.indexOf(':') < 0)
|
|
throw new Error('auth option should be of the form "username:password"');
|
|
headers['Authorization'] = "Basic "+
|
|
(new Buffer(options.auth, "ascii")).toString("base64");
|
|
}
|
|
|
|
if (params_for_body) {
|
|
content = Meteor.http._encodeParams(params_for_body);
|
|
headers['Content-Type'] = "application/x-www-form-urlencoded";
|
|
}
|
|
|
|
_.extend(headers, options.headers || {});
|
|
|
|
////////// Callback wrapping //////////
|
|
|
|
var fut;
|
|
if (! callback) {
|
|
// Sync mode
|
|
fut = new Future;
|
|
callback = function(error, result) {
|
|
fut.ret(result);
|
|
};
|
|
} else {
|
|
// Async mode
|
|
// re-enter user code in a Fiber
|
|
callback = Meteor.bindEnvironment(callback, function(e) {
|
|
Meteor._debug("Exception in callback of Meteor.http.call", e.stack);
|
|
});
|
|
}
|
|
|
|
// wrap callback to always return a result object, and always
|
|
// have an 'error' property in result
|
|
callback = (function(callback) {
|
|
return function(error, result) {
|
|
result = result || {};
|
|
result.error = error;
|
|
callback(error, result);
|
|
};
|
|
})(callback);
|
|
|
|
// safety belt: only call the callback once.
|
|
callback = _.once(callback);
|
|
|
|
|
|
////////// Kickoff! //////////
|
|
|
|
var req_options = {
|
|
url: new_url,
|
|
method: method,
|
|
encoding: "utf8",
|
|
jar: false,
|
|
timeout: options.timeout,
|
|
body: content,
|
|
followRedirect: options.followRedirects,
|
|
headers: headers
|
|
};
|
|
|
|
request(req_options, function(error, res, body) {
|
|
var response = null;
|
|
|
|
if (! error) {
|
|
|
|
response = {};
|
|
response.statusCode = res.statusCode;
|
|
response.content = body;
|
|
response.headers = res.headers;
|
|
|
|
Meteor.http._populateData(response);
|
|
|
|
if (res.statusCode >= 400)
|
|
error = new Error("failed");
|
|
}
|
|
|
|
callback(error, response);
|
|
|
|
});
|
|
|
|
// If we're in sync mode, block and return the result.
|
|
if (fut)
|
|
return fut.wait();
|
|
};
|
|
|
|
})();
|