From 9c6be0ed315a53cd7d9a10e4c682f94afabd6c3d Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sat, 8 Sep 2007 17:14:54 +0000 Subject: HttpUtil: preserve authorization across redirects --- lib/rbot/core/utils/httputil.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/rbot') diff --git a/lib/rbot/core/utils/httputil.rb b/lib/rbot/core/utils/httputil.rb index 2b714527..11f3cb41 100644 --- a/lib/rbot/core/utils/httputil.rb +++ b/lib/rbot/core/utils/httputil.rb @@ -473,10 +473,14 @@ class HttpUtil headers = @headers.dup.merge(opts[:headers] || {}) headers['Range'] = opts[:range] if opts[:range] + headers['Authorization'] = opts[:auth_head] if opts[:auth_head] cached.setup_headers(headers) if cached && (req_class == Net::HTTP::Get) req = req_class.new(uri.request_uri, headers) - req.basic_auth(uri.user, uri.password) if uri.user && uri.password + if uri.user && uri.password + req.basic_auth(uri.user, uri.password) + opts[:auth_head] = req['Authorization'] + end req.body = opts[:body] if req_class == Net::HTTP::Post debug "prepared request: #{req.to_hash.inspect}" -- cgit v1.2.3