|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* sysPass |
|
4
|
|
|
* |
|
5
|
|
|
* @author nuxsmin |
|
6
|
|
|
* @link https://syspass.org |
|
7
|
|
|
* @copyright 2012-2018, Rubén Domínguez nuxsmin@$syspass.org |
|
8
|
|
|
* |
|
9
|
|
|
* This file is part of sysPass. |
|
10
|
|
|
* |
|
11
|
|
|
* sysPass is free software: you can redistribute it and/or modify |
|
12
|
|
|
* it under the terms of the GNU General Public License as published by |
|
13
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
|
14
|
|
|
* (at your option) any later version. |
|
15
|
|
|
* |
|
16
|
|
|
* sysPass is distributed in the hope that it will be useful, |
|
17
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
18
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
19
|
|
|
* GNU General Public License for more details. |
|
20
|
|
|
* |
|
21
|
|
|
* You should have received a copy of the GNU General Public License |
|
22
|
|
|
* along with sysPass. If not, see <http://www.gnu.org/licenses/>. |
|
23
|
|
|
*/ |
|
24
|
|
|
|
|
25
|
|
|
namespace SP\Modules\Web\Controllers; |
|
26
|
|
|
|
|
27
|
|
|
use SP\Modules\Web\Controllers\Helpers\LayoutHelper; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Class IndexController |
|
31
|
|
|
* |
|
32
|
|
|
* @package SP\Modules\Web\Controllers |
|
33
|
|
|
*/ |
|
34
|
|
|
final class IndexController extends ControllerBase |
|
35
|
|
|
{ |
|
36
|
|
|
/** |
|
37
|
|
|
* Index action |
|
38
|
|
|
* |
|
39
|
|
|
* @throws \Psr\Container\ContainerExceptionInterface |
|
40
|
|
|
* @throws \Psr\Container\NotFoundExceptionInterface |
|
41
|
|
|
*/ |
|
42
|
|
|
public function indexAction() |
|
43
|
|
|
{ |
|
44
|
|
|
if ($this->session->isLoggedIn() === false |
|
45
|
|
|
|| $this->session->getAuthCompleted() === false |
|
46
|
|
|
) { |
|
47
|
|
|
$this->router->response() |
|
48
|
|
|
->redirect('index.php?r=login'); |
|
49
|
|
|
} else { |
|
50
|
|
|
$this->dic->get(LayoutHelper::class)->getFullLayout('main', $this->acl); |
|
51
|
|
|
|
|
52
|
|
|
$this->view(); |
|
53
|
|
|
} |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* @return void |
|
58
|
|
|
*/ |
|
59
|
|
|
protected function initialize() |
|
60
|
|
|
{ |
|
61
|
|
|
// TODO: Implement initialize() method. |
|
62
|
|
|
} |
|
63
|
|
|
} |