Class: HTTPClient::BasicAuth

Inherits:
Object
  • Object
show all
Defined in:
lib/httpclient/auth.rb

Overview

Authentication filter for handling BasicAuth negotiation. Used in WWWAuth and ProxyAuth.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBasicAuth

Creates new BasicAuth filter.



211
212
213
214
215
216
# File 'lib/httpclient/auth.rb', line 211

def initialize
  @cred = nil
  @auth = {}
  @challengeable = {}
  @scheme = "Basic"
end

Instance Attribute Details

#schemeObject (readonly)

Authentication scheme.



208
209
210
# File 'lib/httpclient/auth.rb', line 208

def scheme
  @scheme
end

Instance Method Details

#challenge(uri, param_str) ⇒ Object

Challenge handler: remember URL for response.



251
252
253
254
# File 'lib/httpclient/auth.rb', line 251

def challenge(uri, param_str)
  @challengeable[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



239
240
241
242
243
244
245
246
247
248
# File 'lib/httpclient/auth.rb', line 239

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_challengeObject

Resets challenge state. Do not send ‘*Authorization’ header until the server sends ‘*Authentication’ again.



220
221
222
# File 'lib/httpclient/auth.rb', line 220

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).



226
227
228
229
230
231
232
233
# File 'lib/httpclient/auth.rb', line 226

def set(uri, user, passwd)
  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