Sha256: 93636094fc131dc1519d8da0d97fc3af15563434264a3ddfcf7e95e39483effa

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

require 'lib/em-proxy'

Proxy.start(:host => "0.0.0.0", :port => 80) do |conn|
  @start = Time.now
  @data = Hash.new("")

  conn.server :prod, :host => "127.0.0.1", :port => 81    # production, will render resposne
  conn.server :test, :host => "127.0.0.1", :port => 82     # testing, internal only

  conn.on_data do |data|
    # rewrite User-Agent
    data.gsub(/User-Agent: .*?\r\n/, 'User-Agent: em-proxy/0.1\r\n')
  end
 
  conn.on_response do |server, resp|
    # only render response from production
    @data[server] += resp
    resp if server == :prod
  end

  conn.on_finish do |name|
    p [:on_finish, name, Time.now - @start]
    p @data
  end
end

#
# ruby examples/appserver.rb 81
# ruby examples/appserver.rb 82
# ruby examples/line_interceptor.rb
# curl localhost
#
# > [:on_finish, 1.008561]
# > {:prod=>"HTTP/1.1 200 OK\r\nConnection: close\r\nDate: Fri, 01 May 2009 04:20:00 GMT\r\nContent-Type: text/plain\r\n\r\nhello world: 0",
#       :test=>"HTTP/1.1 200 OK\r\nConnection: close\r\nDate: Fri, 01 May 2009 04:20:00 GMT\r\nContent-Type: text/plain\r\n\r\nhello world: 1"}
#

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fizx-em-proxy-0.1.1 examples/duplex.rb