baacc67e357556f6c4ce9f5cac265f8a6722ec7a
[kivitendo-erp.git] / SL / Dispatcher / AuthHandler / Admin.pm
1 package SL::Dispatcher::AuthHandler::Admin;
2
3 use strict;
4 use parent qw(Rose::Object);
5
6 use SL::Layout::Dispatcher;
7
8 sub handle {
9   my ($self, %params) = @_;
10
11   %::myconfig = ();
12
13   return 1 if  $::auth->get_api_token_cookie;
14   return 1 if  $::form->{'{AUTH}admin_password'} && ($::auth->authenticate_root($::form->{'{AUTH}admin_password'})            == $::auth->OK());
15   return 1 if !$::form->{'{AUTH}admin_password'} && ($::auth->authenticate_root($::auth->get_session_value('admin_password')) == $::auth->OK());
16   return 1 if $params{action} eq 'login';
17
18   $::request->{layout} = SL::Layout::Dispatcher->new(style => 'admin');
19
20   $::auth->punish_wrong_login;
21   $::auth->delete_session_value('admin_password');
22   SL::Dispatcher::show_error('admin/adminlogin', 'password');
23
24   return 0;
25 }
26
27 1;