Skip to content

Commit c48c991

Browse files
committed
feat: redact Authorization header from HTTP client debug output
1 parent 6887cdd commit c48c991

File tree

3 files changed

+53
-1
lines changed

3 files changed

+53
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
require 'delegate'
2+
3+
module Pact
4+
module Hal
5+
class AuthorizationHeaderRedactor < SimpleDelegator
6+
def puts(*args)
7+
__getobj__().puts(*redact_args(args))
8+
end
9+
10+
def print(*args)
11+
__getobj__().puts(*redact_args(args))
12+
end
13+
14+
def <<(*args)
15+
__getobj__().send(:<<, *redact_args(args))
16+
end
17+
18+
private
19+
20+
attr_reader :redactions
21+
22+
def redact_args(args)
23+
args.collect{ | s| redact(s) }
24+
end
25+
26+
def redact(string)
27+
return string unless string.is_a?(String)
28+
string.gsub(/Authorization: .*\\r\\n/, "Authorization: [redacted]\\r\\n")
29+
end
30+
end
31+
end
32+
end

lib/pact/hal/http_client.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'pact/retry'
2+
require 'pact/hal/authorization_header_redactor'
23
require 'net/http'
34

45
module Pact
@@ -47,7 +48,7 @@ def create_request uri, http_method, body = nil, headers = {}
4748
def perform_request request, uri
4849
response = Retry.until_true do
4950
http = Net::HTTP.new(uri.host, uri.port, :ENV)
50-
http.set_debug_output(Pact.configuration.output_stream) if verbose
51+
http.set_debug_output(output_stream) if verbose
5152
http.use_ssl = (uri.scheme == 'https')
5253
http.start do |http|
5354
http.request request
@@ -56,6 +57,10 @@ def perform_request request, uri
5657
Response.new(response)
5758
end
5859

60+
def output_stream
61+
AuthorizationHeaderRedactor.new(Pact.configuration.output_stream)
62+
end
63+
5964
class Response < SimpleDelegator
6065
def body
6166
bod = raw_body
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
require 'pact/hal/authorization_header_redactor'
2+
3+
module Pact
4+
module Hal
5+
describe AuthorizationHeaderRedactor do
6+
let(:stream) { StringIO.new }
7+
let(:stream_redactor) { AuthorizationHeaderRedactor.new(stream) }
8+
9+
it "redacts the authorizaton header" do
10+
stream_redactor << "\\r\\nAuthorization: Bearer TOKEN\\r\\n"
11+
expect(stream.string).to eq "\\r\\nAuthorization: [redacted]\\r\\n"
12+
end
13+
end
14+
end
15+
end

0 commit comments

Comments
 (0)