Class: HTTPClient::DigestAuth
- Inherits:
-
Object
- Object
- HTTPClient::DigestAuth
- Defined in:
- lib/httpclient/auth.rb
Overview
Authentication filter for handling DigestAuth negotiation. Used in WWWAuth.
Instance Attribute Summary collapse
-
#scheme ⇒ Object
readonly
Authentication scheme.
Instance Method Summary collapse
-
#challenge(uri, param_str) ⇒ Object
Challenge handler: remember URL and challenge token for response.
-
#get(req) ⇒ Object
Response handler: returns credential.
-
#initialize ⇒ DigestAuth
constructor
Creates new DigestAuth 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?.
Constructor Details
#initialize ⇒ DigestAuth
Creates new DigestAuth filter.
292 293 294 295 296 297 298 |
# File 'lib/httpclient/auth.rb', line 292 def initialize @auth = {} @challenge = {} @set = false @nonce_count = 0 @scheme = "Digest" end |
Instance Attribute Details
#scheme ⇒ Object (readonly)
Authentication scheme.
289 290 291 |
# File 'lib/httpclient/auth.rb', line 289 def scheme @scheme end |
Instance Method Details
#challenge(uri, param_str) ⇒ Object
Challenge handler: remember URL and challenge token for response.
339 340 341 342 |
# File 'lib/httpclient/auth.rb', line 339 def challenge(uri, param_str) @challenge[uri] = parse_challenge_param(param_str) 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
325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/httpclient/auth.rb', line 325 def get(req) target_uri = req.header.request_uri param = Util.hash_find_value(@challenge) { |uri, v| Util.uri_part_of(target_uri, uri) } return nil unless param user, passwd = Util.hash_find_value(@auth) { |uri, auth_data| Util.uri_part_of(target_uri, uri) } return nil unless user calc_cred(req, user, passwd, param) end |
#reset_challenge ⇒ Object
Resets challenge state. Do not send ‘*Authorization’ header until the server sends ‘*Authentication’ again.
302 303 304 |
# File 'lib/httpclient/auth.rb', line 302 def reset_challenge @challenge.clear end |
#set(uri, user, passwd) ⇒ Object
Set authentication credential. uri == nil is ignored.
308 309 310 311 312 313 314 |
# File 'lib/httpclient/auth.rb', line 308 def set(uri, user, passwd) @set = true if uri uri = Util.uri_dirname(uri) @auth[uri] = [user, passwd] end end |
#set? ⇒ Boolean
have we marked this as set - ie that it’s valid to use in this context?
317 318 319 |
# File 'lib/httpclient/auth.rb', line 317 def set? @set == true end |