325 |
richard |
1 |
<?php
|
|
|
2 |
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
|
|
|
3 |
include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
|
|
|
4 |
else{
|
|
|
5 |
echo "<b>Could not include SQL library</b><br>\n";
|
|
|
6 |
exit();
|
|
|
7 |
}
|
1805 |
clement.si |
8 |
$link = da_sql_pconnect($config);
|
325 |
richard |
9 |
if ($link){
|
1805 |
clement.si |
10 |
$res = da_sql_query($link,$config,
|
325 |
richard |
11 |
"DELETE FROM $config[sql_reply_table] WHERE username = '$login';");
|
|
|
12 |
if ($res){
|
1805 |
clement.si |
13 |
$res = da_sql_query($link,$config,
|
325 |
richard |
14 |
"DELETE FROM $config[sql_check_table] WHERE username = '$login';");
|
|
|
15 |
if ($res){
|
1805 |
clement.si |
16 |
$res = da_sql_query($link,$config,
|
325 |
richard |
17 |
"DELETE FROM $config[sql_usergroup_table] WHERE username = '$login';");
|
|
|
18 |
if (!$res)
|
|
|
19 |
echo "<b>Error deleting user $login from user group table: " . da_sql_error($link,$config) . "</b><br>\n";
|
1805 |
clement.si |
20 |
if ($config['sql_use_user_info_table'] == 'true'){
|
|
|
21 |
$res = da_sql_query($link,$config,
|
325 |
richard |
22 |
"DELETE FROM $config[sql_user_info_table] WHERE username = '$login';");
|
2384 |
tom.houday |
23 |
if ($res) {
|
2226 |
richard |
24 |
echo "<b>$l_user $login $l_removed</b><br>\n";
|
2384 |
tom.houday |
25 |
|
|
|
26 |
if (preg_match('/^([a-fA-F0-9]{2}[:|\-]?){6}$/', $login)) {
|
|
|
27 |
$user_ip = exec('sudo chilli_query list | grep '.escapeshellarg($login)." | cut -d' ' -f2");
|
|
|
28 |
//on vérifie que l'@IP de l'@MAC est différente de celle de l'admin sur l'ACC
|
|
|
29 |
if ((!empty($user_ip)) && ($user_ip !== $_SERVER['REMOTE_ADDR'])) {
|
|
|
30 |
exec('sudo chilli_query logout '.escapeshellarg($login));
|
|
|
31 |
}
|
|
|
32 |
}
|
|
|
33 |
}
|
325 |
richard |
34 |
else
|
|
|
35 |
echo "<b>Error deleting user $login from user info table: " . da_sql_error($link,$config) . "</b><br>\n";
|
|
|
36 |
}
|
|
|
37 |
}
|
|
|
38 |
else
|
|
|
39 |
echo "<b>Error deleting user $login from check table: " . da_sql_error($link,$config) . "</b><br>\n";
|
|
|
40 |
}
|
|
|
41 |
else
|
|
|
42 |
echo "<b>Error deleting user $login from reply table: " . da_sql_error($link,$config) . "</b><br>\n";
|
|
|
43 |
}
|
|
|
44 |
else
|
|
|
45 |
echo "<b>Could not connect to SQL database</b><br>\n";
|
|
|
46 |
?>
|