Module: WEBrick::HTTPAuth::UserDB
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb
Overview
User database mixin for HTTPAuth. This mixin dispatches user record access to the underlying auth_type for this database.
Instance Attribute Summary collapse
-
#auth_type ⇒ Object
The authentication type.
Instance Method Summary collapse
-
#get_passwd(realm, user, reload_db = false) ⇒ Object
Retrieves a password in
realm
foruser
for the auth_type of this database. -
#make_passwd(realm, user, pass) ⇒ Object
Creates an obscured password in
realm
withuser
andpassword
using the auth_type of this database. -
#set_passwd(realm, user, pass) ⇒ Object
Sets a password in
realm
withuser
andpassword
for the auth_type of this database.
Instance Attribute Details
#auth_type ⇒ Object
The authentication type.
WEBrick::HTTPAuth::BasicAuth or WEBrick::HTTPAuth::DigestAuth are built-in.
26 27 28 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb', line 26 def auth_type @auth_type end |
Instance Method Details
#get_passwd(realm, user, reload_db = false) ⇒ Object
Retrieves a password in realm
for user
for the auth_type of this database. reload_db
is a dummy value.
48 49 50 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb', line 48 def get_passwd(realm, user, reload_db=false) make_passwd(realm, user, self[user]) end |
#make_passwd(realm, user, pass) ⇒ Object
Creates an obscured password in realm
with user
and password
using the auth_type of this database.
32 33 34 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb', line 32 def make_passwd(realm, user, pass) @auth_type::make_passwd(realm, user, pass) end |
#set_passwd(realm, user, pass) ⇒ Object
Sets a password in realm
with user
and password
for the auth_type of this database.
40 41 42 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/webrick-1.7.0/lib/webrick/httpauth/userdb.rb', line 40 def set_passwd(realm, user, pass) self[user] = pass end |