forked from lirantal/daloradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acct-maintenance-cleanup.php
259 lines (199 loc) · 9.76 KB
/
acct-maintenance-cleanup.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?php
/*
*********************************************************************************************************
* daloRADIUS - RADIUS Web Platform
* Copyright (C) 2007 - Liran Tal <[email protected]> All Rights Reserved.
*
* 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 2
* of the License, or (at your option) any later version.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************************************************
*
* Authors: Liran Tal <[email protected]>
* Miguel García <[email protected]>
* Filippo Lauria <[email protected]>
*
*********************************************************************************************************
*/
include("library/checklogin.php");
$operator = $_SESSION['operator_user'];
include('library/check_operator_perm.php');
include_once('library/config_read.php');
// init logging variables
$logAction = "";
$logDebugSQL = "";
$log = "visited page: ";
include_once("lang/main.php");
include("library/validation.php");
include("library/layout.php");
include('library/opendb.php');
// valid min/max dates
$sql = sprintf("SELECT DATE(MIN(acctstarttime)), DATE(MAX(acctstarttime)) FROM %s", $configValues['CONFIG_DB_TBL_RADACCT']);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
list($mindate, $maxdate) = $res->fetchrow();
// valid usernames
$sql = sprintf("SELECT DISTINCT(username) FROM %s ORDER BY username ASC", $configValues['CONFIG_DB_TBL_RADACCT']);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$valid_usernames = array();
while ($row = $res->fetchrow()) {
$valid_usernames[] = $row[0];
}
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
if (array_key_exists('csrf_token', $_POST) && isset($_POST['csrf_token']) && dalo_check_csrf_token($_POST['csrf_token'])) {
$username = (array_key_exists('username', $_POST) && !empty(trim($_POST['username'])) &&
in_array(trim($_POST['username']), $valid_usernames))
? trim($_POST['username']) : "";
$enddate = (array_key_exists('enddate', $_POST) && isset($_POST['enddate']) &&
preg_match(DATE_REGEX, $_POST['enddate'], $m) !== false &&
checkdate($m[2], $m[3], $m[1]))
? $_POST['enddate'] : "";
if (!empty($username)) {
$username_enc = htmlspecialchars($username, ENT_QUOTES, 'UTF-8');
$sql = sprintf("SELECT COUNT(radacctid) FROM %s WHERE username='%s' AND acctstoptime IS NULL",
$configValues['CONFIG_DB_TBL_RADACCT'], $dbSocket->escapeSimple($username));
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
$numrows = intval($res->fetchrow()[0]);
if ($numrows > 0) {
$sql = sprintf("UPDATE %s SET acctstoptime=NOW(), acctterminatecause='Admin-Reset'
WHERE username='%s' AND acctstoptime IS NULL",
$configValues['CONFIG_DB_TBL_RADACCT'],
$dbSocket->escapeSimple($username));
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql;\n";
if (!DB::isError($res)) {
$successMsg = "Cleaned up stale sessions for user: $username_enc";
$logAction .= "Successfully cleaned up stale sessions for username [$username] on page: ";
} else {
$failureMsg = "Cannot clean up stale sessions for user: $username_enc";
$logAction .= "$failureMsg page: ";
}
} else {
// nothing to delete
$failureMsg = "There are no stale sessions for user [$username_enc]";
$logAction .= "Cannot clean up stale sessions for user $username [no stale sessions for this user] on page: ";
}
} else if (!empty($enddate)) {
if ($enddate >= $mindate && $enddate <= $maxdate) {
// delete all stale sessions in the database that occur until $enddate
$sql = sprintf("DELETE FROM %s
WHERE acctstarttime < '%s'
AND (acctstoptime = '0000-00-00 00:00:00' OR acctstoptime IS NULL)",
$configValues['CONFIG_DB_TBL_RADACCT'], $enddate);
$res = $dbSocket->query($sql);
$logDebugSQL .= "$sql\n";
if (!DB::isError($res)) {
$successMsg = "Cleaned up stale sessions until date: $enddate";
$logAction .= "Successfully cleaned up stale sessions until date [$enddate] on page: ";
} else {
$failureMsg = "Cannot clean up stale sessions until date: $enddate";
$logAction .= "$failureMsg page: ";
}
} else {
// invalid
$failureMsg = "Cannot clean up stale sessions: $enddate is invalid";
$logAction .= "$failureMsg page: ";
}
} else {
// invalid
$failureMsg = "Cannot clean up stale sessions: provided empty/invalid username or ending date";
$logAction .= "$failureMsg page: ";
}
} else {
// csrf
$failureMsg = "CSRF token error";
$logAction .= "$failureMsg on page: ";
}
}
include('library/closedb.php');
// print HTML prologue
$extra_css = array(
// css tabs stuff
"css/tabs.css"
);
$extra_js = array(
// js tabs stuff
"library/javascript/tabs.js"
);
$title = t('Intro','acctmaintenancecleanup.php');
$help = t('helpPage','acctmaintenancecleanup');
print_html_prologue($title, $langCode, $extra_css, $extra_js);
include("menu-accounting-maintenance.php");
echo '<div id="contentnorightbar">';
print_title_and_help($title, $help);
include_once('include/management/actionMessages.php');
// set navbar stuff
$navkeys = array( 'CleanupRecordsByUsername', 'CleanupRecordsByDate', );
// print navbar controls
print_tab_header($navkeys);
$options = $valid_usernames;
array_unshift($options , '');
$input_descriptors0 = array();
$input_descriptors0[] = array(
'name' => 'username',
'type' => 'select',
'caption' => t('all','Username'),
'options' => $options,
'selected_value' => $username
);
$fieldset0_descriptor = array(
"title" => t('title','CleanupRecordsByUsername'),
"disabled" => (count($valid_usernames) == 0)
);
$input_descriptors1 = array();
$input_descriptors1[] = array(
'name' => 'enddate',
'caption' => t('all','CleanupSessions'),
'type' => 'date',
'value' => $enddate,
'min' => $mindate,
'max' => $maxdate,
);
$fieldset1_descriptor = array(
"title" => t('title','CleanupRecordsByDate'),
"disabled" => (count($valid_usernames) == 0)
);
open_form();
// open tab 0
open_tab($navkeys, 0, true);
open_fieldset($fieldset0_descriptor);
foreach ($input_descriptors0 as $input_descriptor) {
print_form_component($input_descriptor);
}
close_fieldset();
close_tab($navkeys, 0);
// open tab 1
open_tab($navkeys, 1);
open_fieldset($fieldset1_descriptor);
foreach ($input_descriptors1 as $input_descriptor) {
print_form_component($input_descriptor);
}
close_fieldset();
close_tab($navkeys, 1);
$input_descriptors2 = array();
$input_descriptors2[] = array(
"name" => "csrf_token",
"type" => "hidden",
"value" => dalo_csrf_token(),
);
$input_descriptors2[] = array(
"type" => "submit",
"name" => "submit",
"value" => t('buttons','apply')
);
foreach ($input_descriptors2 as $input_descriptor) {
print_form_component($input_descriptor);
}
close_form();
print_back_to_previous_page();
include('include/config/logging.php');
print_footer_and_html_epilogue();
?>