NAME
Slovo::Controller::Auth - и миръ Его не позна.
DESCRIPTION
Slovo::Controller::Auth implements actions for authenticating users. It depends on functionality, provided by Mojolicious::Plugin::Authentication. All the routes' paths mentioned below are easily modifiable because they are described in lib/Slovo/resources/etc/routes.conf
thanks to Mojolicious::Plugin::RoutesConfig.
ACTIONS
Mojolicious::Plugin::Authentication implements the following actions.
form
Route: {get => '/входъ', to => 'auth#form', name => 'authform'}
.
Renders a login form. The password is never transmitted in plain text. A digest is prepared in the browser using JavaScript (see lib/Slovo/resources/templates/auth/form.html.ep
). The digest is sent and compared on the server side. The digest is different in every POST request.
under_management
This is a callback when user tries to acces a page under /управление
. If user is authenticated returns true. If not, returns false and redirects to "form".
sign_in
Route: {post => '/входъ', to => 'auth#sign_in', name => 'sign_in'}
.
Finds and logs in a user locally. On success redirects the user to the page from which it was redirected to the login page. On failure redirects again to the login page.
METHODS
Slovo::Controller::Auth inherits all methods from Slovo::Controller and implements the following new ones.
FUNCTIONS
Slovo::Controller::Auth implements the following functions executed or used by Mojolicious::Plugin::Authentication.
current_user_fn
Returns the name of the helper used for getting the properties of the current user. The name is user
. It is passed in configuration to Mojolicious::Plugin::Authentication to generate the helper with this name. This value must not be changed. Otherwise you will get runtime errors all over the place because $c->user
is used a lot.
load_user
This function is passed to Mojolicious::Plugin::Authentication as reference. See "USER-LOADING" in Mojolicious::Plugin::Authentication.
validate_user
This function is passed to Mojolicious::Plugin::Authentication as reference. See "USER-VALIDATION" in Mojolicious::Plugin::Authentication.