0.0
No commit activity in last 3 years
No release in over 3 years
A simple and modular rack middleware to track http requests
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

>= 0
 Project Readme

HTTP Tracker - A simple and modular rack middleware to track http requests

Instalation

gem install http_tracker

Description

HTTPTracker provides a simple interface to add trackers that inspect the requests made to your web application.

Usage

Define a tracker using HTTPTracker::Manager and configure the middleware in your framework of choice. (There are some sinatra examples in the examples directory.)

Dummy Tracker

HTTPTracker::Manager.add(:my_tracker) do
  def valid?(env)
    # This tracker will only execute if the valid method returns true
    # The implemenation of this method is obligatory.
    true
  end
  
  def on_request(env)
    # This method can be thinked of as a callback and will run on_request
    # the rack call to @app.call(env)
    # You can set instance classes here and use them later in the on_response method.
  end

  def on_response(env, status, headers, body)
    # This method will run before @app.callback
    # You can use it to finalize your tracking logic, read variables set in #on_request,
    # save requests or responses status to a database, etc..
  end
end

Using classes as trackers

class MyTracker
  def initialize
  end

  def valid?(env)
  end

  def on_request(env)
  end

  def on_response(env, status, headers, body)
  end
end

HTTPTracker::Manager.add(:my_tracker, MyTracker)

Setting multiple trackers

HTTPTracker::Manager.add(:request_time) do
  def initialize
    @storage = initialize_my_storage
  end

  def valid?(env)
    true
  end

  def on_request(env)
    @start = Time.now
  end

  def on_response(env, status, headers, body)
    @storage.save({ :request_time => (Time.now - @start) })
  end
end

HTTPTracker::Manager.add(:admin_tracker) do
  def valid?(env)
    # Only track calls to the admins_controller
    env["PATH_INFO"] =~ /admins\//
  end

  def on_request(env)
    # Do stuff
  end

  def on_response(env, status, headers, body)
    # Do some other stuff
  end
end

More examples

Take a look at the examples directory.

Credits

HTTPTracker design is inspired by Warden http://github.com/hassox/warden

License

(The MIT License)

Copyright (c) 2011 Dalto Curvelano Junior

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.