forked from glpi-project/glpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
213 lines (191 loc) · 8.16 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
/**
* ---------------------------------------------------------------------
*
* GLPI - Gestionnaire Libre de Parc Informatique
*
* http://glpi-project.org
*
* @copyright 2015-2024 Teclib' and contributors.
* @copyright 2003-2014 by the INDEPNET Development Team.
* @licence https://www.gnu.org/licenses/gpl-3.0.html
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* ---------------------------------------------------------------------
*/
// Check PHP version not to have trouble
// Need to be the very fist step before any include
if (
version_compare(PHP_VERSION, '8.2.0', '<') ||
version_compare(PHP_VERSION, '8.3.999', '>')
) {
die('PHP version must be between 8.2 and 8.3.');
}
use Glpi\Application\View\TemplateRenderer;
use Glpi\Plugin\Hooks;
/**
* @var array $CFG_GLPI
* @var array $PLUGIN_HOOKS
*/
global $CFG_GLPI, $PLUGIN_HOOKS;
//Load GLPI constants
define('GLPI_ROOT', __DIR__);
include(GLPI_ROOT . "/inc/based_config.php");
// If config_db doesn't exist -> start installation
if (!file_exists(GLPI_CONFIG_DIR . "/config_db.php")) {
if (file_exists(GLPI_ROOT . '/install/install.php')) {
Html::redirect("install/install.php");
} else {
// Init session (required by header display logic)
Session::setPath();
Session::start();
Session::loadLanguage('', false);
// Prevent inclusion of debug informations in footer, as they are based on vars that are not initialized here.
$_SESSION['glpi_use_mode'] = Session::NORMAL_MODE;
// no translation
$title_text = 'GLPI seems to not be configured properly.';
$missing_conf_text = sprintf('Database configuration file "%s" is missing.', GLPI_CONFIG_DIR . '/config_db.php');
$hint_text = 'You have to either restart the install process, either restore this file.';
Html::nullHeader('Missing configuration');
echo '<div class="container-fluid mb-4">';
echo '<div class="row justify-content-center">';
echo '<div class="col-xl-6 col-lg-7 col-md-9 col-sm-12">';
echo '<h2>' . $title_text . '</h2>';
echo '<p class="mt-2 mb-n2 alert alert-warning">';
echo $missing_conf_text;
echo ' ';
echo $hint_text;
echo '</p>';
echo '</div>';
echo '</div>';
echo '</div>';
Html::nullFooter();
}
die();
} else {
include(GLPI_ROOT . "/inc/includes.php");
//Try to detect GLPI agent calls
$rawdata = file_get_contents("php://input");
if (!isset($_POST['totp_code']) && !empty($rawdata) && $_SERVER['REQUEST_METHOD'] == 'POST') {
include_once(GLPI_ROOT . '/front/inventory.php');
die();
}
Session::checkCookieSecureConfig();
$_SESSION["glpicookietest"] = 'testcookie';
// For compatibility reason
if (isset($_GET["noCAS"])) {
$_GET["noAUTO"] = $_GET["noCAS"];
}
if (!isset($_GET["noAUTO"])) {
Auth::redirectIfAuthenticated();
}
$redirect = $_GET['redirect'] ?? '';
Auth::checkAlternateAuthSystems(true, $redirect);
$errors = [];
if (isset($_GET['error']) && $redirect !== '') {
switch ($_GET['error']) {
case 1: // cookie error
$errors[] = __('You must accept cookies to reach this application');
break;
case 2: // GLPI_SESSION_DIR not writable
$errors[] = __('Logins are not possible at this time. Please contact your administrator.');
break;
case 3:
$errors[] = __('Your session has expired. Please log in again.');
break;
}
}
// redirect to ticket
if ($redirect !== '') {
Toolbox::manageRedirect($redirect);
}
if (count($errors)) {
TemplateRenderer::getInstance()->display('pages/login_error.html.twig', [
'errors' => $errors,
'login_url' => $CFG_GLPI["root_doc"] . '/front/logout.php?noAUTO=1&redirect=' . str_replace("?", "&", $redirect),
]);
} else {
if (isset($_SESSION['mfa_pre_auth'], $_POST['skip_mfa'])) {
Html::redirect($CFG_GLPI['root_doc'] . '/front/login.php?skip_mfa=1');
}
if (isset($_SESSION['mfa_pre_auth'])) {
if (isset($_GET['mfa_setup'])) {
if (isset($_POST['secret'], $_POST['totp_code'])) {
$code = is_array($_POST['totp_code']) ? implode('', $_POST['totp_code']) : $_POST['totp_code'];
$totp = new \Glpi\Security\TOTPManager();
if (Session::validateIDOR($_POST) && ($algorithm = $totp->verifyCodeForSecret($code, $_POST['secret'])) !== false) {
$totp->setSecretForUser((int)$_SESSION['mfa_pre_auth']['user']['id'], $_POST['secret'], $algorithm);
} else {
Session::addMessageAfterRedirect(__s('Invalid code'), false, ERROR);
}
Html::redirect(Preference::getSearchURL());
} else {
// Login started. 2FA needs configured.
$totp = new \Glpi\Security\TOTPManager();
$totp->showTOTPSetupForm((int)$_SESSION['mfa_pre_auth']['user']['id']);
}
} else {
// Login started. Need to ask for the TOTP code.
$totp = new \Glpi\Security\TOTPManager();
$totp->showTOTPPrompt((int) $_SESSION['mfa_pre_auth']['user']['id']);
}
} else {
// Random number for html id/label
$rand = mt_rand();
// Regular login
TemplateRenderer::getInstance()->display('pages/login.html.twig', [
'rand' => $rand,
'card_bg_width' => true,
'lang' => $CFG_GLPI["languages"][$_SESSION['glpilanguage']][3],
'title' => __('Authentication'),
'noAuto' => $_GET["noAUTO"] ?? 0,
'redirect' => $redirect,
'text_login' => $CFG_GLPI['text_login'],
'namfield' => ($_SESSION['namfield'] = uniqid('fielda')),
'pwdfield' => ($_SESSION['pwdfield'] = uniqid('fieldb')),
'rmbfield' => ($_SESSION['rmbfield'] = uniqid('fieldc')),
'show_lost_password' => $CFG_GLPI["notifications_mailing"]
&& countElementsInTable('glpi_notifications', [
'itemtype' => 'User',
'event' => 'passwordforget',
'is_active' => 1
]),
'languages_dropdown' => Dropdown::showLanguages('language', [
'display' => false,
'rand' => $rand,
'display_emptychoice' => true,
'emptylabel' => __('Default (from user profile)'),
'width' => '100%'
]),
'right_panel' => strlen($CFG_GLPI['text_login']) > 0
|| count($PLUGIN_HOOKS[Hooks::DISPLAY_LOGIN] ?? []) > 0
|| $CFG_GLPI["use_public_faq"],
'auth_dropdown_login' => Auth::dropdownLogin(false, $rand),
'copyright_message' => Html::getCopyrightMessage(false)
]);
}
}
}
// call cron
if (!GLPI_DEMO_MODE) {
CronTask::callCronForce();
}
echo "</body></html>";