Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
http: make http.get() accept a URL
Browse files Browse the repository at this point in the history
http.get() now accepts either a URL (as a string) or an options object.
  • Loading branch information
adammw authored and bnoordhuis committed May 16, 2012
1 parent 05b81f3 commit 4099d1e
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 11 deletions.
18 changes: 7 additions & 11 deletions doc/api/http.markdown
Expand Up @@ -446,8 +446,10 @@ followed by `response.end()`.
## http.request(options, callback)

Node maintains several connections per server to make HTTP requests.
This function allows one to transparently issue requests. `options` align
with [url.parse()](url.html#url.parse).
This function allows one to transparently issue requests.

`options` can be an object or a string. If `options` is a string, it is
automatically parsed with [url.parse()](url.html#url.parse).

Options:

Expand Down Expand Up @@ -528,18 +530,12 @@ There are a few special headers that should be noted.
## http.get(options, callback)

Since most requests are GET requests without bodies, Node provides this
convenience method. The only difference between this method and `http.request()` is
that it sets the method to GET and calls `req.end()` automatically.
convenience method. The only difference between this method and `http.request()`
is that it sets the method to GET and calls `req.end()` automatically.

Example:

var options = {
host: 'www.google.com',
port: 80,
path: '/index.html'
};

http.get(options, function(res) {
http.get("http://www.google.com/index.html", function(res) {
console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
console.log("Got error: " + e.message);
Expand Down
5 changes: 5 additions & 0 deletions lib/http.js
Expand Up @@ -22,6 +22,7 @@
var util = require('util');
var net = require('net');
var stream = require('stream');
var url = require('url');
var EventEmitter = require('events').EventEmitter;
var FreeList = require('freelist').FreeList;
var HTTPParser = process.binding('http_parser').HTTPParser;
Expand Down Expand Up @@ -1571,6 +1572,10 @@ ClientRequest.prototype.clearTimeout = function(cb) {
};

exports.request = function(options, cb) {
if (typeof options === 'string') {
options = url.parse(options);
}

if (options.protocol && options.protocol !== 'http:') {
throw new Error('Protocol:' + options.protocol + ' not supported.');
}
Expand Down
44 changes: 44 additions & 0 deletions test/simple/test-http-client-get-url.js
@@ -0,0 +1,44 @@
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

var common = require('../common');
var assert = require('assert');
var http = require('http');

var seen_req = false;

var server = http.createServer(function(req, res) {
assert.equal('GET', req.method);
assert.equal('/foo?bar', req.url);
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('hello\n');
res.end();
server.close();
seen_req = true;
});

server.listen(common.PORT, function() {
http.get('http://127.0.0.1:' + common.PORT + '/foo?bar');
});

process.on('exit', function() {
assert(seen_req);
});

0 comments on commit 4099d1e

Please sign in to comment.