edituser.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <?php
  2. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.php");
  3. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . $language . ".php");
  4. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/idfilter.php");
  5. global $default_user_id;
  6. global $hotspot_user_id;
  7. $msg_error = "";
  8. if (isset($_POST["edituser"])) {
  9. unset($new);
  10. unset($auth);
  11. $new[ou_id] = $_POST["f_ou"] * 1;
  12. $new[default_subnet] = trim($_POST["f_subnet"]);
  13. $new[filter_group_id] = $_POST["f_filter"]*1;
  14. $new[queue_id] = $_POST["f_queue"]*1;
  15. $range = cidrToRange($new[default_subnet]);
  16. if (ip2long($range[0]) == 0 or ip2long($range[1]) == 0 or ip2long($range[0]) == ip2long($range[1])) {
  17. $new[default_subnet] = '';
  18. }
  19. if ($default_user_id == $id or $hotspot_user_id == $id) {
  20. $new[enabled] = 0;
  21. $new[blocked] = 0;
  22. $new[day_quota] = 0;
  23. $new[month_quota] = 0;
  24. $auth[enabled] = 0;
  25. $auth[blocked] = 0;
  26. } else {
  27. $new[login] = trim($_POST["f_login"]);
  28. $new[fio] = trim($_POST["f_fio"]);
  29. $new[enabled] = $_POST["f_enabled"] * 1;
  30. $new[blocked] = $_POST["f_blocked"] * 1;
  31. $new[day_quota] = trim($_POST["f_perday"]) * 1;
  32. $new[month_quota] = trim($_POST["f_permonth"]) * 1;
  33. $auth[enabled] = $new[enabled];
  34. $auth[blocked] = $new[blocked];
  35. }
  36. $changes = get_diff_rec($db_link,"User_list","id='$id'", $new, 1);
  37. if (!empty($changes)) { LOG_WARNING($db_link,"Изменён пользователь id: $id. \r\nПрименено: $changes"); }
  38. update_record($db_link, "User_list", "id='$id'", $new);
  39. update_record($db_link, "User_auth", "user_id='" . $id . "'", $auth);
  40. header("Location: " . $_SERVER["REQUEST_URI"]);
  41. }
  42. if (isset($_POST["addauth"])) {
  43. $fip = substr(trim($_POST["newip"]), 0, 18);
  44. if (isset($_POST["newmac"])) { $fmac = mac_dotted(substr(trim($_POST["newmac"]), 0, 17)); }
  45. if ($fip) {
  46. if (checkValidIp($fip)) {
  47. $fid = new_auth($db_link, $fip, $fmac, $id);
  48. LOG_WARNING($db_link,"Создан новый адрес доступа: ip => $fip, mac => $fmac");
  49. if (isset($fid)) { header("location: /admin/users/editauth.php?id=$fid"); }
  50. header("Location: " . $_SERVER["REQUEST_URI"]);
  51. } else {
  52. $msg_error = "$msg_ip_error xxx.xxx.xxx.xxx/xx";
  53. }
  54. }
  55. header("Location: " . $_SERVER["REQUEST_URI"]);
  56. }
  57. if (isset($_POST["removeauth"])) {
  58. $auth_id = $_POST["f_auth_id"];
  59. while (list ($key, $val) = @each($auth_id)) {
  60. if ($val) {
  61. delete_record($db_link, 'connections', "auth_id=" . $val);
  62. delete_record($db_link, 'User_auth_alias', "auth_id=" . $val);
  63. $auth[deleted] = 1;
  64. $changes = get_diff_rec($db_link,"User_auth","id='$val'", '', 0);
  65. if (!empty($changes)) { LOG_WARNING($db_link,"Удалён адрес доступа: \r\n $changes"); }
  66. update_record($db_link, "User_auth", "id=" . $val, $auth);
  67. delete_record($db_link, "connections", "auth_id=" . $val);
  68. }
  69. }
  70. header("Location: " . $_SERVER["REQUEST_URI"]);
  71. }
  72. if (isset($_POST["ApplyForAll"])) {
  73. $auth_id = $_POST["f_auth_id"];
  74. $a_enabled = $_POST["a_enabled"] * 1;
  75. $a_day = $_POST["a_day_q"] * 1;
  76. $a_month = $_POST["a_month_q"] * 1;
  77. $a_queue = $_POST["a_queue_id"] * 1;
  78. $a_group = $_POST["a_group_id"] * 1;
  79. while (list ($key, $val) = @each($auth_id)) {
  80. if ($val) {
  81. unset($new);
  82. if ($default_user_id == $id or $hotspot_user_id == $id) {
  83. $new[enabled] = 0;
  84. $new[day_quota] = 0;
  85. $new[month_quota] = 0;
  86. $new[queue_id] = 0;
  87. $new[filter_group_id] = 0;
  88. } else {
  89. $new[enabled] = $a_enabled;
  90. $new[day_quota] = $a_day;
  91. $new[month_quota] = $a_month;
  92. $new[queue_id] = $a_queue;
  93. $new[filter_group_id] = $a_group;
  94. }
  95. $changes = get_diff_rec($db_link,"User_auth","id='$val'", $new, 1);
  96. if (!empty($changes)) { LOG_WARNING($db_link,"Изменён адрес доступа id: $val. Применено: $changes"); }
  97. update_record($db_link, "User_auth", "id='" . $val . "'", $new);
  98. }
  99. }
  100. header("Location: " . $_SERVER["REQUEST_URI"]);
  101. }
  102. if (isset($_POST["moveauth"]) and isset($_POST["new_parent"])) {
  103. $new_user_id = $_POST["new_parent"]*1;
  104. $auth_id = $_POST["f_auth_id"];
  105. if ($new_user_id <> $id) {
  106. $user_rec = get_record($db_link, 'User_list', "id=".$new_user_id);
  107. while (list ($key, $val) = @each($auth_id)) {
  108. if ($val) {
  109. $new[filter_group_id]=$user_rec[filter_group_id];
  110. $new[queue_id] = $user_rec[queue_id];
  111. $new[enabled] = $user_rec[enabled];
  112. $new[user_id] = $new_user_id;
  113. $changes = get_diff_rec($db_link,"User_auth","id='$val'", $new, 1);
  114. if (!empty($changes)) { LOG_WARNING($db_link,"Адрес доступа перемещён к другому пользователю id: $val ($user_rec[Login]). Применено: $changes"); }
  115. update_record($db_link, "User_auth", "id='" . $val . "'", $new);
  116. }
  117. }
  118. }
  119. header("Location: " . $_SERVER["REQUEST_URI"]);
  120. }
  121. if (isset($_POST['new_user'])) {
  122. $auth_id = $_POST["f_auth_id"];
  123. $save_traf = get_option($db_link, 23) * 1;
  124. while (list ($key, $val) = @each($auth_id)) {
  125. if ($val) {
  126. $flist = mysqli_query($db_link, "SELECT ip, comments, dns_name, dhcp_hostname from User_auth WHERE id=$val");
  127. list ($f_auth_ip, $f_auth_comments, $f_dns_name, $f_dhcp_name) = mysqli_fetch_array($flist);
  128. $ou_id = $_POST["f_new_ou"] * 1;
  129. if (!isset($ou_id)) { $ou_id = 0; }
  130. $login = $f_auth_ip;
  131. if (isset($f_auth_comments) and strlen($f_auth_comments) > 0) { $login = $f_auth_comments; }
  132. if (isset($f_dhcp_name) and strlen($f_dhcp_name) > 0) { $login = $f_dhcp_name; }
  133. if (isset($f_dns_name) and strlen($f_dns_name) > 0) { $login = $f_dns_name; }
  134. list ($l_id) = mysqli_fetch_array(mysqli_query($db_link, "Select id from User_list where LCase(Login)=LCase('$login') and deleted=0"));
  135. if (isset($l_id) and $l_id > 0) {
  136. // move auth
  137. $auth[user_id] = $l_id;
  138. $auth[save_traf] = $save_traf;
  139. update_record($db_link, "User_auth", "id='" . $val . "'", $auth);
  140. apply_auth_rule($db_link,$val,$l_id);
  141. $changes = get_diff_rec($db_link,"User_auth","id='$val'", $new, 0);
  142. if (!empty($changes)) { LOG_WARNING($db_link,"Изменён адрес доступа id: $val. Применено: $changes"); }
  143. } else {
  144. $new[Login] = $login;
  145. $new[ou_id] = $ou_id;
  146. insert_record($db_link, "User_list", $new);
  147. list ($l_id) = mysqli_fetch_array(mysqli_query($db_link, "Select id from User_list where Login='$login' and deleted=0 order by id DESC"));
  148. $auth[user_id] = $l_id;
  149. $auth[save_traf] = $save_traf;
  150. update_record($db_link, "User_auth", "id='" . $val . "'", $auth);
  151. $changes = get_diff_rec($db_link,"User_auth","id='$val'", '', 0);
  152. LOG_WARNING($db_link,"Создан новый пользователь из адреса доступа: Login => $login. Адрес доступа перемещён к созданному пользователю: $changes");
  153. }
  154. }
  155. }
  156. header("Location: " . $_SERVER["REQUEST_URI"]);
  157. }
  158. unset($_POST);
  159. $sSQL = "SELECT * FROM User_list WHERE id=$id";
  160. $user_info = get_record_sql($db_link, $sSQL);
  161. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php");
  162. ?>
  163. <div id="cont">
  164. <?php
  165. if ($msg_error) {
  166. print "<div id='msg'><b>$msg_error</b></div><br>\n";
  167. }
  168. ?>
  169. <form name="def" action="edituser.php?id=<?php echo $id; ?>" method="post">
  170. <input type="hidden" name="id" value=<? echo $id; ?>>
  171. <table class="data">
  172. <tr>
  173. <td><?php print $cell_login; ?></td>
  174. <td><?php print $cell_fio; ?></td>
  175. <td>Rule</td>
  176. <td>Фильтр</td>
  177. <td>Шейпер</td>
  178. </tr>
  179. <tr>
  180. <td><input type="text" name="f_login" value="<?php print $user_info[login]; ?>" size=25></td>
  181. <td><input type="text" name="f_fio" value="<?php print $user_info[fio]; ?>" size=25></td>
  182. <td><input type="text" name="f_subnet" value="<?php print $user_info[default_subnet]; ?>" size=20></td>
  183. <td><?php print_group_select($db_link, 'f_filter', $user_info[filter_group_id]); ?></td>
  184. <td><?php print_queue_select($db_link, 'f_queue', $user_info[queue_id]); ?></td>
  185. </tr>
  186. <tr>
  187. <td><?php print $cell_ou; ?></td>
  188. <td><?php print $cell_enabled; ?></td>
  189. <td><?php print $cell_blocked; ?></td>
  190. <td><?php print $cell_perday; ?></td>
  191. <td><?php print $cell_permonth; ?></td>
  192. </tr>
  193. <tr>
  194. <td><?php print_ou_select($db_link, 'f_ou', $user_info[ou_id]); ?></td>
  195. <td><?php print_qa_select('f_enabled', $user_info[enabled]); ?></td>
  196. <td><?php print_qa_select('f_blocked', $user_info[blocked]); ?></td>
  197. <td><input type="text" name="f_perday" value="<? echo $user_info[day_quota]; ?>" size=5></td>
  198. <td><input type="text" name="f_permonth" value="<? echo $user_info[month_quota]; ?>" size=5></td>
  199. </tr>
  200. <tr>
  201. <td><input type="submit" name="edituser" value=<?php print $btn_save; ?>></td>
  202. <td colspan=2>Created: <?php print $user_info[timestamp]; ?></td>
  203. <td><input value="Трафик за день" type="button" onclick="location.href='/admin/reports/userday.php?id=<? echo $id?>'"></td>
  204. </tr>
  205. </table>
  206. <br>
  207. <?
  208. if ($msg_error) {
  209. print "<div id='msg'><b>$msg_error</b></div><br>\n";
  210. }
  211. ?>
  212. <table class="data">
  213. <tr>
  214. <td>Для выделенных установить: Включен&nbsp<?php print_qa_select('a_enabled', 0); ?></td>
  215. <td>Фильтр&nbsp<?php print_group_select($db_link, 'a_group_id', 0); ?></td>
  216. <td>Шейпер&nbsp<?php print_queue_select($db_link, 'a_queue_id', 0); ?></td>
  217. <td>В день&nbsp<input type="text" name="a_day_q" value="0" size=5></td>
  218. <td>В месяц&nbsp<input type="text" name="a_month_q" value="0" size=5></td>
  219. <td>&nbsp<input type="submit" name="ApplyForAll" value="Apply"></td>
  220. </tr>
  221. <tr>
  222. <?php
  223. print "<td colspan=6>Переместить выделенных к пользователю "; print_login_select($db_link, 'new_parent', $id); print "<input type=\"submit\" name=\"moveauth\" value=".$btn_move.">"; print "</td>";
  224. print "</tr><tr>";
  225. print "<td colspan=4>Создать пользователей по выделению в группе "; print_ou_select($db_link, 'f_new_ou', $user_info[ou_id]); print "<button name='new_user'>Создать</button>\n"; print "</td>";
  226. print "<td colspan=2 align=\"right\">Удалить выделенных <input type=\"submit\" name=\"removeauth\" value=".$btn_remove.">";
  227. ?>
  228. </tr>
  229. </table>
  230. <br> <b>Список адресов доступа</b><br>
  231. <table class="data">
  232. <tr>
  233. <td class="data">Новый адрес доступа IP:&nbsp<input type=text name=newip value=""></td>
  234. <td class="data">Mac (необязательно):&nbsp<input type=text name=newmac value=""></td>
  235. <td class="data"><input type="submit" name="addauth" value="Добавить"></td>
  236. </tr>
  237. </table>
  238. <table class="data">
  239. <tr>
  240. <td class="data"><input type="checkbox" onClick="checkAll(this.checked);"></td>
  241. <td class="data"><?php print $cell_ip; ?></td>
  242. <td class="data"><?php print $cell_mac; ?></td>
  243. <td class="data"><?php print $cell_comment; ?></td>
  244. <td class="data"><?php print $cell_dns_name; ?></td>
  245. <td class="data"><?php print $cell_filter; ?></td>
  246. <td class="data"><?php print $cell_enabled; ?></td>
  247. <td class="data"><?php print $cell_shaper; ?></td>
  248. <td class="data"><?php print $cell_blocked; ?></td>
  249. <td class="data"><?php print $cell_perday; ?></td>
  250. <td class="data"><?php print $cell_permonth; ?></td>
  251. <td class="data"><?php print $cell_connection; ?></td>
  252. <td class="data">DHCP/ARP Event</td>
  253. <td class="data">Last Found</td>
  254. </tr>
  255. <?
  256. $order = 'order by ip_int';
  257. if ($id == $default_user_id or $id == $hotspot_user_id) { $order = 'order by last_found DESC,ip_int'; }
  258. $flist=get_records($db_link,'User_auth',"user_id=".$id." and deleted=0 ".$order);
  259. foreach ( $flist as $row ) {
  260. if ($row['dhcp_time'] == '0000-00-00 00:00:00') {
  261. $dhcp_str = '';
  262. } else {
  263. $dhcp_str = $row['dhcp_time'] . " (" . $row['dhcp_action'] . ")";
  264. }
  265. if ($row['last_found'] == '0000-00-00 00:00:00') {
  266. $row['last_found'] = '';
  267. }
  268. print "<tr align=center>\n";
  269. print "<td class=\"data\" style='padding:0'><input type=checkbox name=f_auth_id[] value=".$row['id']." ></td>\n";
  270. print "<td class=\"data\" align=left><a href=editauth.php?id=".$row['id'].">" . $row['ip'] . "</a></td>\n";
  271. print "<td class=\"data\" >" . expand_mac($db_link,$row['mac']) . "</td>\n";
  272. if (isset($row['dhcp_hostname']) and strlen($row['dhcp_hostname']) > 0) {
  273. print "<td class=\"data\" >".$row['comments']." [" . $row['dhcp_hostname'] . "]</td>\n";
  274. } else {
  275. print "<td class=\"data\" >".$row['comments']."</td>\n";
  276. }
  277. print "<td class=\"data\" >".$row['dns_name']."</td>\n";
  278. print "<td class=\"data\" >" . get_group($db_link, $row['filter_group_id']) . "</td>\n";
  279. print "<td class=\"data\" >" . get_qa($row['enabled']) . "</td>\n";
  280. print "<td class=\"data\" >" . get_queue($db_link, $row['queue_id']) . "</td>\n";
  281. print "<td class=\"data\" width=50>" . get_qa($row['blocked']) . "</td>\n";
  282. print "<td class=\"data\" >".$row['day_quota']."</td>\n";
  283. print "<td class=\"data\" >".$row['month_quota']."</td>\n";
  284. print "<td class=\"data\" >" . get_connection($db_link, $row['id']) . "</td>\n";
  285. print "<td class=\"data\" >" . $dhcp_str . "</td>\n";
  286. print "<td class=\"data\" >" . $row['last_found'] . "</td>\n";
  287. print "</tr>";
  288. }
  289. ?>
  290. </table>
  291. </form>
  292. <?
  293. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/footer.php");
  294. ?>