![]() |
![]()
| ![]() |
![]()
NAMEJifty::Plugin::Authentication::Password::Mixin::Model::User - password plugin user mixin model SYNOPSISpackage MyApp::Model::User; use Jifty::DBI::Schema; use MyApp::Record schema { # custom column definitions }; use Jifty::Plugin::User::Mixin::Model::User; # name, email, email_confirmed use Jifty::Plugin::Authentication::Password::Mixin::Model::User; # ^^ password, auth_token DESCRIPTIONThis mixin model is added to the application's account model for use with the password authentication plugin. This mixin should be used in combination with Jifty::Plugin::User::Mixin::Model::User. SCHEMAThis mixin adds the following columns to the model schema: auth_tokenThis is a unique identifier used when confirming a user's email account and recovering a lost password. passwordThis is the user's password. It will be stored in the database after being processed through Digest::MD5, so the password cannot be directly recovered from the database. METHODSregister_triggersAdds the triggers to the model this mixin is added to. password_is PASSWORDChecks if the user's password matches the provided PASSWORD. hashed_password_is HASH TOKENCheck if the given HASH is the result of hashing our (already salted and hashed) password with TOKEN. This can be used in cases where the pre-hashed password is sent during login as an additional security precaution (such as could be done via Javascript). validate_passwordMakes sure that the password is six characters long or longer, unless we have alternative means to authenticate. after_createThis trigger is added to the account model. It automatically sends a notification email to the user for password confirmation. See Jifty::Plugin::Authentication::Password::Notification::ConfirmEmail. has_alternative_authIf your model supports other means of authentication, you should have this method return true, so the "password" field can optionally be null and authentication with password is disabled in that case. after_set_passwordRegenerate authentication tokens on password change regenerate_auth_tokenGenerate a new auth_token for this user. This will invalidate any existing feed URLs. SEE ALSOJifty::Plugin::Authentication::Password, Jifty::Plugin::User::Mixin::Model LICENSEJifty is Copyright 2005-2010 Best Practical Solutions, LLC. Jifty is distributed under the same terms as Perl itself.
|