Class: HTTPClient::BasicAuth
- Inherits:
-
Object
- Object
- HTTPClient::BasicAuth
- Includes:
- Util
- Defined in:
- lib/httpclient/auth.rb
Overview
Authentication filter for handling BasicAuth negotiation. Used in WWWAuth and ProxyAuth.
Instance Attribute Summary collapse
-
#scheme ⇒ Object
readonly
Authentication scheme.
Instance Method Summary collapse
-
#challenge(uri, param_str = nil) ⇒ Object
Challenge handler: remember URL for response.
-
#get(req) ⇒ Object
Response handler: returns credential.
-
#initialize ⇒ BasicAuth
constructor
Creates new BasicAuth filter.
-
#reset_challenge ⇒ Object
Resets challenge state.
-
#set(uri, user, passwd) ⇒ Object
Set authentication credential.
-
#set? ⇒ Boolean
have we marked this as set - ie that it’s valid to use in this context?.
Methods included from Util
#argument_to_hash, #force_binary, hash_find_value, #https?, #keyword_argument, uri_dirname, uri_part_of, #urify
Constructor Details
#initialize ⇒ BasicAuth
Creates new BasicAuth filter.
231 232 233 234 235 236 237 |
# File 'lib/httpclient/auth.rb', line 231 def initialize @cred = nil @set = false @auth = {} @challengeable = {} @scheme = "Basic" end |
Instance Attribute Details
#scheme ⇒ Object (readonly)
Authentication scheme.
228 229 230 |
# File 'lib/httpclient/auth.rb', line 228 def scheme @scheme end |
Instance Method Details
#challenge(uri, param_str = nil) ⇒ Object
Challenge handler: remember URL for response.
278 279 280 281 |
# File 'lib/httpclient/auth.rb', line 278 def challenge(uri, param_str = nil) @challengeable[urify(uri)] = true true end |
#get(req) ⇒ Object
Response handler: returns credential. It sends cred only when a given uri is;
-
child page of challengeable(got *Authenticate before) uri and,
-
child page of defined credential
266 267 268 269 270 271 272 273 274 275 |
# File 'lib/httpclient/auth.rb', line 266 def get(req) target_uri = req.header.request_uri return nil unless @challengeable.find { |uri, ok| Util.uri_part_of(target_uri, uri) and ok } return @cred if @cred Util.hash_find_value(@auth) { |uri, cred| Util.uri_part_of(target_uri, uri) } end |
#reset_challenge ⇒ Object
Resets challenge state. Do not send ‘*Authorization’ header until the server sends ‘*Authentication’ again.
241 242 243 |
# File 'lib/httpclient/auth.rb', line 241 def reset_challenge @challengeable.clear end |
#set(uri, user, passwd) ⇒ Object
Set authentication credential. uri == nil for generic purpose (allow to use user/password for any URL).
247 248 249 250 251 252 253 254 255 |
# File 'lib/httpclient/auth.rb', line 247 def set(uri, user, passwd) @set = true if uri.nil? @cred = ["#{user}:#{passwd}"].pack('m').tr("\n", '') else uri = Util.uri_dirname(uri) @auth[uri] = ["#{user}:#{passwd}"].pack('m').tr("\n", '') end end |
#set? ⇒ Boolean
have we marked this as set - ie that it’s valid to use in this context?
258 259 260 |
# File 'lib/httpclient/auth.rb', line 258 def set? @set == true end |