Method: HTTPClient::BasicAuth#get
- Defined in:
- lib/httpclient/auth.rb
#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 |