-
-
Notifications
You must be signed in to change notification settings - Fork 545
/
error.php
executable file
·112 lines (97 loc) · 3.69 KB
/
error.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
<?php
declare(strict_types=1);
/**
* Teampass - a collaborative passwords manager.
* ---
* This file is part of the TeamPass project.
*
* TeamPass 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, version 3 of the License.
*
* TeamPass 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/>.
*
* Certain components of this file may be under different licenses. For
* details, see the `licenses` directory or individual file headers.
* ---
* @file error.php
* @author Nils Laumaillé (nils@teampass.net)
* @copyright 2009-2024 Teampass.net
* @license GPL-3.0
* @see https://www.teampass.net
*/
use TeampassClasses\SessionManager\SessionManager;
use TeampassClasses\Language\Language;
use TeampassClasses\ConfigManager\ConfigManager;
// Load functions
require_once __DIR__.'/sources/main.functions.php';
// init
loadClasses('DB');
$session = SessionManager::getSession();
$lang = new Language($session->get('user-language') ?? 'english');
// Load config
$configManager = new ConfigManager();
$SETTINGS = $configManager->getAllSettings();
// Define Timezone
date_default_timezone_set(isset($SETTINGS['timezone']) === true ? $SETTINGS['timezone'] : 'UTC');
// Set header properties
header('Content-type: text/html; charset=utf-8');
header('Cache-Control: no-cache, no-store, must-revalidate');
// --------------------------------- //
if (
filter_input(INPUT_POST, 'session', FILTER_SANITIZE_FULL_SPECIAL_CHARS) !== null
&& filter_input(INPUT_POST, 'session', FILTER_SANITIZE_FULL_SPECIAL_CHARS) === 'expired'
) {
// Update table by deleting ID
if ($session->has('user-id') && null !== $session->get('user-id')) {
DB::update(
DB_PREFIX . 'users',
[
'key_tempo' => '',
],
'id=%i',
$session->get('user-id')
);
}
//Log into DB the user's disconnection
if (isset($SETTINGS['log_connections']) && (int) $SETTINGS['log_connections'] === 1) {
logEvents($SETTINGS, 'user_connection', 'disconnect', (string) $session->get('user-id'), $session->get('user-login'));
}
} else {
$errorCode = '';
if (@$session->get('system-error_code') === ERR_NOT_ALLOWED) {
$errorCode = 'ERROR NOT ALLOWED';
} elseif (@$session->get('system-error_code') === ERR_NOT_EXIST) {
$errorCode = 'ERROR NOT EXISTS';
} elseif (@$session->get('system-error_code') === ERR_SESS_EXPIRED) {
$errorCode = 'ERROR SESSION EXPIRED';
} elseif (@$session->get('system-error_code') === ERR_VALID_SESSION) {
$errorCode = 'ERROR NOT ALLOWED';
} ?>
<!-- Main content -->
<section class="content">
<div class="error-page" style="width:100%;">
<h2 class="headline text-danger">500</h2>
<div class="error-content">
<h3><i class="fas fa-warning text-danger"></i> Oops! <?php echo $errorCode; ?>.</h3>
<p>
For security reason, you have been disconnected. Click to <a href="./includes/core/logout.php?token=<?php echo $session->get('key'); ?>">log in</a>.
</p>
</div>
<!-- /.error-content -->
</div>
<!-- /.error-page -->
</section>
<!-- /.content -->
<?php
}
// erase session table
$session->invalidate();
die;
?>