-
Notifications
You must be signed in to change notification settings - Fork 960
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d0c4f5
commit e885c18
Showing
10 changed files
with
195 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
module HTTParty | ||
module Logger | ||
class ApacheLogger #:nodoc: | ||
TAG_NAME = HTTParty.name | ||
|
||
attr_accessor :level, :logger, :current_time | ||
|
||
def initialize(logger, level) | ||
@logger = logger | ||
@level = level.to_sym | ||
end | ||
|
||
def format(request, response) | ||
@current_time ||= Time.new.strftime("%Y-%m-%d %H:%M:%S.%L %z") | ||
http_method = request.http_method.name.split("::").last.upcase | ||
path = request.path.to_s | ||
content_length = response['Content-Length'] | ||
|
||
print(response.code, content_length, http_method, path) | ||
end | ||
|
||
def print(code, content_length, http_method, path) | ||
@logger.send @level, "[#{TAG_NAME}] [#{@current_time}] #{code} \"#{http_method} #{path}\" #{content_length || "-"} " | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
module HTTParty | ||
module Logger | ||
class CurlLogger #:nodoc: | ||
TAG_NAME = HTTParty.name | ||
|
||
attr_accessor :level, :logger, :current_time | ||
|
||
def initialize(logger, level) | ||
@logger = logger | ||
@level = level.to_sym | ||
end | ||
|
||
def format(request, response) | ||
@messages = [] | ||
@current_time ||= Time.new.strftime("%Y-%m-%d %H:%M:%S.%L %z") | ||
http_method = request.http_method.name.split("::").last.upcase | ||
path = request.path.to_s | ||
|
||
print_outgoing "#{http_method} #{path}" | ||
if request.options[:headers] && request.options[:headers].size > 0 | ||
request.options[:headers].each do |k, v| | ||
print_outgoing "#{k}: #{v}" | ||
end | ||
end | ||
|
||
print_outgoing "" | ||
print_incoming "HTTP/#{response.http_version} #{response.code}" | ||
|
||
headers = response.respond_to?(:headers) ? response.headers : response | ||
response.each_header do |response_header| | ||
print_incoming "#{response_header.capitalize}: #{headers[response_header]}" | ||
end | ||
|
||
print_incoming "\n#{response.body}" | ||
|
||
@logger.send @level, @messages.join("\n") | ||
end | ||
|
||
def print_outgoing(line) | ||
@messages << print(">", line) | ||
end | ||
|
||
def print_incoming(line) | ||
@messages << print("<", line) | ||
end | ||
|
||
def print(direction, line) | ||
"[#{TAG_NAME}] [#{@current_time}] #{direction} #{line}" | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
require 'httparty/logger/apache_logger' | ||
require 'httparty/logger/curl_logger' | ||
|
||
module HTTParty | ||
module Logger | ||
def self.build(logger, level, formatter) | ||
level ||= :info | ||
format ||= :apache | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
lucasuyezu
Author
Contributor
|
||
|
||
case formatter | ||
when :curl | ||
Logger::CurlLogger.new(logger, level) | ||
else | ||
Logger::ApacheLogger.new(logger, level) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')) | ||
|
||
describe HTTParty::Logger::ApacheLogger do | ||
describe "#format" do | ||
it "formats a response in a style that resembles apache's access log" do | ||
request_time = Time.new.strftime("%Y-%m-%d %H:%M:%S.%L %z") | ||
log_message = "[HTTParty] [#{request_time}] 302 \"GET http://my.domain.com/my_path\" - " | ||
|
||
request_double = double( | ||
:http_method => Net::HTTP::Get, | ||
:path => "http://my.domain.com/my_path" | ||
) | ||
response_double = double( | ||
:code => 302, | ||
:[] => nil | ||
) | ||
|
||
logger_double = double | ||
logger_double.should_receive(:info).with(log_message) | ||
|
||
subject = described_class.new(logger_double, :info) | ||
subject.current_time = request_time | ||
subject.format(request_double, response_double) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')) | ||
|
||
describe HTTParty::Logger::CurlLogger do | ||
describe "#format" do | ||
it "formats a response in a style that resembles a -v curl" do | ||
request_time = Time.new.strftime("%Y-%m-%d %H:%M:%S.%L %z") | ||
|
||
logger_double = double | ||
logger_double.should_receive(:info).with( | ||
/\[HTTParty\] \[#{request_time}\] > GET http:\/\/localhost\n/) | ||
|
||
subject = described_class.new(logger_double, :info) | ||
subject.current_time = request_time | ||
|
||
stub_http_response_with("google.html") | ||
|
||
response = HTTParty::Request.new.perform | ||
subject.format(response.request, response) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'spec_helper')) | ||
|
||
describe HTTParty::Logger do | ||
describe ".build" do | ||
subject { HTTParty::Logger } | ||
|
||
it "defaults level to :info" do | ||
logger_double = double() | ||
subject.build(logger_double, nil, nil).level.should == :info | ||
end | ||
|
||
it "defaults format to :apache" do | ||
logger_double = double() | ||
subject.build(logger_double, nil, nil).should be_an_instance_of(HTTParty::Logger::ApacheLogger) | ||
end | ||
|
||
it "builds :curl style logger" do | ||
logger_double = double() | ||
subject.build(logger_double, nil, :curl).should be_an_instance_of(HTTParty::Logger::CurlLogger) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This line doesn't do anything correct?