2014-11-22 16:59:48 +01:00
|
|
|
'use strict';
|
|
|
|
|
2015-01-21 11:36:59 -05:00
|
|
|
const util = require('util');
|
2015-06-13 16:44:39 +00:00
|
|
|
const internalUtil = require('internal/util');
|
2015-09-17 04:15:29 +05:30
|
|
|
const EventEmitter = require('events');
|
2010-03-19 21:49:00 -07:00
|
|
|
|
|
|
|
|
2014-06-11 15:16:48 -04:00
|
|
|
exports.IncomingMessage = require('_http_incoming').IncomingMessage;
|
2013-01-07 20:33:56 -08:00
|
|
|
|
2010-03-19 19:22:04 -07:00
|
|
|
|
2015-01-21 11:36:59 -05:00
|
|
|
const common = require('_http_common');
|
2015-01-27 20:08:43 -08:00
|
|
|
exports.METHODS = common.methods.slice().sort();
|
2009-05-11 19:08:29 +02:00
|
|
|
|
2010-11-29 07:41:08 -08:00
|
|
|
|
2014-06-11 15:16:48 -04:00
|
|
|
exports.OutgoingMessage = require('_http_outgoing').OutgoingMessage;
|
2011-01-20 02:41:16 -08:00
|
|
|
|
|
|
|
|
2015-01-21 11:36:59 -05:00
|
|
|
const server = require('_http_server');
|
2013-04-11 16:00:19 -07:00
|
|
|
exports.ServerResponse = server.ServerResponse;
|
|
|
|
exports.STATUS_CODES = server.STATUS_CODES;
|
2009-07-14 18:31:50 +02:00
|
|
|
|
2010-11-29 07:41:08 -08:00
|
|
|
|
2015-01-21 11:36:59 -05:00
|
|
|
const agent = require('_http_agent');
|
|
|
|
const Agent = exports.Agent = agent.Agent;
|
2014-06-11 15:16:48 -04:00
|
|
|
exports.globalAgent = agent.globalAgent;
|
2011-07-26 00:15:15 +02:00
|
|
|
|
2015-01-21 11:36:59 -05:00
|
|
|
const client = require('_http_client');
|
|
|
|
const ClientRequest = exports.ClientRequest = client.ClientRequest;
|
2011-10-04 20:51:34 +02:00
|
|
|
|
|
|
|
exports.request = function(options, cb) {
|
2014-02-25 14:15:02 -08:00
|
|
|
return new ClientRequest(options, cb);
|
2011-02-04 15:14:58 -08:00
|
|
|
};
|
|
|
|
|
2011-10-04 20:51:34 +02:00
|
|
|
exports.get = function(options, cb) {
|
2014-02-25 14:15:02 -08:00
|
|
|
var req = exports.request(options, cb);
|
|
|
|
req.end();
|
|
|
|
return req;
|
2011-10-04 20:51:34 +02:00
|
|
|
};
|
2011-02-04 15:14:58 -08:00
|
|
|
|
2013-04-11 16:00:19 -07:00
|
|
|
exports._connectionListener = server._connectionListener;
|
2015-01-21 11:36:59 -05:00
|
|
|
const Server = exports.Server = server.Server;
|
2010-11-29 07:41:08 -08:00
|
|
|
|
2010-12-01 18:07:20 -08:00
|
|
|
exports.createServer = function(requestListener) {
|
2010-03-19 19:22:04 -07:00
|
|
|
return new Server(requestListener);
|
2009-07-14 18:31:50 +02:00
|
|
|
};
|
2009-05-18 19:33:05 +02:00
|
|
|
|
2010-11-29 07:41:08 -08:00
|
|
|
|
2011-10-04 20:51:34 +02:00
|
|
|
// Legacy Interface
|
2009-06-26 18:30:55 +02:00
|
|
|
|
2011-10-04 20:51:34 +02:00
|
|
|
function Client(port, host) {
|
2012-01-28 23:13:42 -05:00
|
|
|
if (!(this instanceof Client)) return new Client(port, host);
|
2012-06-12 21:53:08 +02:00
|
|
|
EventEmitter.call(this);
|
|
|
|
|
2011-10-04 20:51:34 +02:00
|
|
|
host = host || 'localhost';
|
|
|
|
port = port || 80;
|
|
|
|
this.host = host;
|
|
|
|
this.port = port;
|
|
|
|
this.agent = new Agent({ host: host, port: port, maxSockets: 1 });
|
2011-01-20 02:41:16 -08:00
|
|
|
}
|
2011-10-04 20:51:34 +02:00
|
|
|
util.inherits(Client, EventEmitter);
|
|
|
|
Client.prototype.request = function(method, path, headers) {
|
2011-01-20 02:41:16 -08:00
|
|
|
var self = this;
|
2011-10-04 20:51:34 +02:00
|
|
|
var options = {};
|
|
|
|
options.host = self.host;
|
|
|
|
options.port = self.port;
|
|
|
|
if (method[0] === '/') {
|
|
|
|
headers = path;
|
|
|
|
path = method;
|
|
|
|
method = 'GET';
|
|
|
|
}
|
|
|
|
options.method = method;
|
|
|
|
options.path = path;
|
|
|
|
options.headers = headers;
|
|
|
|
options.agent = self.agent;
|
|
|
|
var c = new ClientRequest(options);
|
|
|
|
c.on('error', function(e) {
|
|
|
|
self.emit('error', e);
|
2011-07-26 00:21:52 +02:00
|
|
|
});
|
2012-02-18 15:01:35 -08:00
|
|
|
// The old Client interface emitted 'end' on socket end.
|
2011-10-04 20:51:34 +02:00
|
|
|
// This doesn't map to how we want things to operate in the future
|
|
|
|
// but it will get removed when we remove this legacy interface.
|
|
|
|
c.on('socket', function(s) {
|
|
|
|
s.on('end', function() {
|
2012-10-11 15:53:11 -07:00
|
|
|
if (self._decoder) {
|
|
|
|
var ret = self._decoder.end();
|
|
|
|
if (ret)
|
|
|
|
self.emit('data', ret);
|
|
|
|
}
|
2011-10-04 20:51:34 +02:00
|
|
|
self.emit('end');
|
2011-07-26 00:21:52 +02:00
|
|
|
});
|
2011-10-04 20:51:34 +02:00
|
|
|
});
|
2010-03-19 19:22:04 -07:00
|
|
|
return c;
|
2010-05-26 17:59:55 -07:00
|
|
|
};
|
|
|
|
|
2015-06-13 16:44:39 +00:00
|
|
|
exports.Client = internalUtil.deprecate(Client, 'http.Client is deprecated.');
|
2012-01-28 23:13:42 -05:00
|
|
|
|
2015-06-13 16:44:39 +00:00
|
|
|
exports.createClient = internalUtil.deprecate(function(port, host) {
|
2011-10-04 20:51:34 +02:00
|
|
|
return new Client(port, host);
|
2015-06-13 16:44:39 +00:00
|
|
|
}, 'http.createClient is deprecated. Use http.request instead.');
|