http.rb

Gem Version
Build Status
Code Climate
Coverage Status

About

http.rb is an easy-to-use client library for making requests from Ruby. It uses
a simple method chaining system for building requests, similar to Python’s Requests.

Under the hood, http.rb uses http_parser.rb, a fast HTTP parsing native
extension based on the Node.js parser and a Java port thereof. This library
isn’t just yet another wrapper around Net::HTTP. It implements the HTTP protocol
natively and outsources the parsing to native extensions.

Help and Discussion

If you need help or just want to talk about the http.rb,
visit the http.rb Google Group:

https://groups.google.com/forum/#!forum/httprb

You can join by email by sending a message to:

httprb+subscribe@googlegroups.com

If you believe you’ve found a bug, please report it at:

https://github.com/httprb/http.rb/issues

Installation

Add this line to your application’s Gemfile:

gem ‘http’

And then execute:

$ bundle

Or install it yourself as:

$ gem install http

Inside of your Ruby program do:

require ‘http’

…to pull it in as a dependency.

Documentation

Please see the http.rb wiki
for more detailed documentation and usage notes.

Basic Usage

Here’s some simple examples to get you started:

GET requests

>> HTTP.get('https://github.com').to_s
=> "> HTTP.get('https://github.com')
=> #"text/html; charset=UTF-8", "Date"=>"Fri, ...>
 => #"text/html; ...>

We can also obtain an HTTP::Response::Body object for this response:

>> HTTP.get('https://github.com').body
 => #

The response body can be streamed with HTTP::Response::Body#readpartial:

>> HTTP.get('https://github.com').body.readpartial
 => " {:foo => '42'})

Making GET requests with query string parameters is as simple.

HTTP.get('http://example.com/resource', :params => {:foo => 'bar'})

Want to POST with a specific body, JSON for instance?

HTTP.post('http://example.com/resource', :json => { :foo => '42' })

Or just a plain body?

HTTP.post('http://example.com/resource', :body => 'foo=42&bar=baz')

Posting a file?

HTTP.post('http://examplc.com/resource', :form => {
  :username => 'ixti',
  :avatar   => HTTP::FormData::File.new('/home/ixit/avatar.png')
})

It’s easy!

Proxy Support

Making request behind proxy is as simple as making them directly. Just specify
hostname (or IP address) of your proxy server and its port, and here you go:

HTTP.via('proxy-hostname.local', 8080)
  .get('http://example.com/resource')

Proxy needs authentication? No problem:

HTTP.via('proxy-hostname.local', 8080, 'username', 'password')
  .get('http://example.com/resource')

Adding Headers

The HTTP gem uses the concept of chaining to simplify requests. Let’s say
you want to get the latest commit of this library from GitHub in JSON format.
One way we could do this is by tacking a filename on the end of the URL:

HTTP.get('https://github.com/httprb/http.rb/commit/HEAD.json')

The GitHub API happens to support this approach, but really this is a bit of a
hack that makes it easy for people typing URLs into the address bars of
browsers to perform the act of content negotiation. Since we have access to
the full, raw power of HTTP, we can perform content negotiation the way HTTP
intends us to, by using the Accept header:

HTTP.with_headers(:accept => 'application/json').
  get('https://github.com/httprb/http.rb/commit/HEAD')

This requests JSON from GitHub. GitHub is smart enough to understand our
request and returns a response with Content-Type: application/json.

Shorter aliases exists for HTTP.with_headers:

HTTP.with(:accept => 'application/json').
  get('https://github.com/httprb/http.rb/commit/HEAD')

HTTP[:accept => 'application/json'].
  get('https://github.com/httprb/http.rb/commit/HEAD')

Authorization Header

With HTTP Basic Authentication using
a username and password:

HTTP.basic_auth(:user => 'user', :pass => 'pass')
# "Basic dXNlcjpwYXNz"}>

Or with plain as-is value:

HTTP.auth('Bearer VGhlIEhUVFAgR2VtLCBST0NLUw')
# "Bearer VGhlIEhUVFAgR2VtLCBST0NLUw"}>

And Chain all together!

HTTP.basic_auth(:user => 'user', :pass => 'pass')
  .with('Cookie' => '9wq3w')
  .get('https://example.com')

Content Negotiation

As important a concept as content negotiation is to HTTP, it sure should be easy,
right? But usually it’s not, and so we end up adding “.json” onto the ends of
our URLs because the existing mechanisms make it too hard. It should be easy:

HTTP.accept(:json).get('https://github.com/httprb/http.rb/commit/HEAD')

This adds the appropriate Accept header for retrieving a JSON response for the
given resource.

Celluloid::IO Support

http.rb makes it simple to make multiple concurrent HTTP requests from a
Celluloid::IO actor. Here’s a parallel HTTP fetcher combining http.rb with
Celluloid::IO:

require 'celluloid/io'
require 'http'

class HttpFetcher
  include Celluloid::IO

  def fetch(url)
    HTTP.get(url, socket_class: Celluloid::IO::TCPSocket)
  end
end

There’s a little more to it, but that’s the core idea!

Caching

http.rb provides caching of HTTP request (per
RFC 7234) when configured to do
so.

require 'http'

http = HTTP.with_cache(metastore:   "file:/var/cache/my-app-http/meta",
                       entitystore: "file:/var/cache/my-app-http/entity")

http.get("http://example.com/")   # makes request
http.get("http://example.com/")   # skips making request and returns
                                  # previously cached response

http.rb’s caching is backed by
rack-cache’s excellent storage subsystem. Any
storage URL supported by rack-cache is supported by http.rb’s cache.

Supported Ruby Versions

This library aims to support and is tested against the following Ruby
versions:

  • Ruby 1.9.3
  • Ruby 2.0.0
  • Ruby 2.1.x
  • Ruby 2.2.x
  • JRuby 1.7.x

If something doesn’t work on one of these versions, it’s a bug.

This library may inadvertently work (or seem to work) on other Ruby versions,
however support will only be provided for the versions listed above.

If you would like this library to support another Ruby version or
implementation, you may volunteer to be a maintainer. Being a maintainer
entails making sure all tests run and pass on that implementation. When
something breaks on your implementation, you will be responsible for providing
patches in a timely fashion. If critical issues for a particular implementation
exist at the time of a major release, support for that Ruby version may be
dropped.

Contributing to http.rb

  • Fork http.rb on GitHub
  • Make your changes
  • Ensure all tests pass (bundle exec rake)
  • Send a pull request
  • If we like them we’ll merge them
  • If we’ve accepted a patch, feel free to ask for commit access!

Copyright

Copyright © 2011-15 Tony Arcieri, Erik Michaels-Ober, Aleksey V. Zapparov.
See LICENSE.txt for further details.