1
0

index-full.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. $default_displayed=100;
  3. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/auth.php");
  4. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/languages/" . HTML_LANG . ".php");
  5. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php");
  6. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/datetimefilter.php");
  7. $default_sort='tin';
  8. $default_order='DESC';
  9. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/oufilter.php");
  10. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/sortfilter.php");
  11. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/gatefilter.php");
  12. print_reports_submenu($page_url);
  13. ?>
  14. <div id="cont">
  15. <form action="index-full.php" method="post">
  16. <?php echo WEB_cell_ou; ?>:&nbsp<?php print_ou_select($db_link,'ou',$rou); ?>
  17. <?php print_date_fields($date1,$date2,$date_shift); ?>
  18. <?php echo WEB_cell_gateway; ?>:&nbsp<?php print_gateway_select($db_link, 'gateway', $rgateway); ?>
  19. <?php print WEB_rows_at_page."&nbsp"; print_row_at_pages('rows',$displayed); ?>
  20. <input id='btn_filter' name='btn_filter' type="submit" value="<?php echo WEB_btn_show; ?>">
  21. </form>
  22. <?php
  23. $sort_sql=" ORDER BY tin DESC";
  24. if (!empty($sort_field) and !empty($order)) { $sort_sql = " ORDER BY $sort_field $order"; }
  25. $gateway_list = get_gateways($db_link);
  26. $trafSQL = "SELECT
  27. User_list.login,User_list.ou_id,User_auth.user_id, User_auth.ip, User_stats_full.auth_id,
  28. User_stats_full.router_id, SUM( byte_in ) AS tin, SUM( byte_out ) AS tout, MAX(ROUND(`pkt_in`/`step`)) as pin, MAX(ROUND(`pkt_out`/`step`)) as pout
  29. FROM User_stats_full,User_auth,User_list WHERE User_list.id=User_auth.user_id
  30. AND User_stats_full.auth_id = User_auth.id
  31. AND User_stats_full.timestamp>='$date1'
  32. AND User_stats_full.timestamp<'$date2'
  33. ";
  34. if ($rou !== 0) {
  35. $trafSQL = $trafSQL . " AND User_list.ou_id=$rou";
  36. }
  37. if ($rgateway == 0) {
  38. $trafSQL = $trafSQL . " GROUP by User_auth.id,User_stats_full.router_id";
  39. } else {
  40. $trafSQL = $trafSQL . " AND User_stats_full.router_id=$rgateway GROUP by User_auth.id,User_stats_full.router_id";
  41. }
  42. $countSQL = "SELECT Count(*) FROM ($trafSQL) A";
  43. $res = mysqli_query($db_link, $countSQL);
  44. $count_records = mysqli_fetch_array($res);
  45. $total=ceil($count_records[0]/$displayed);
  46. if ($page>$total) { $page=$total; }
  47. if ($page<1) { $page=1; }
  48. $start = ($page * $displayed) - $displayed;
  49. #set sort
  50. $trafSQL=$trafSQL ." $sort_sql LIMIT $start,$displayed";
  51. print_navigation($page_url,$page,$displayed,$count_records[0],$total);
  52. print "<br><br>\n";
  53. print "<table class=\"data\" cellspacing=\"1\" cellpadding=\"4\">\n";
  54. print "<tr align=\"center\">\n";
  55. print "<td ><b><a href=index-full.php?sort=login&order=$new_order>".WEB_cell_login."</a></b></td>\n";
  56. print "<td ><b><a href=index-full.php?sort=ip&order=$new_order>".WEB_cell_ip."</a></b></td>\n";
  57. print "<td ><b>".WEB_cell_gateway."</b></td>\n";
  58. print "<td ><b><a href=index-full.php?sort=tin&order=$new_order>".WEB_title_input."</a></b></td>\n";
  59. print "<td ><b><a href=index-full.php?sort=tout&order=$new_order>".WEB_title_output."<a></b></td>\n";
  60. print "<td ><b><a href=index-full.php?sort=pin&order=$new_order>".WEB_title_maxpktin."</a></b></td>\n";
  61. print "<td ><b><a href=index-full.php?sort=pout&order=$new_order>".WEB_title_maxpktout."<a></b></td>\n";
  62. print "</tr>\n";
  63. $total_in = 0;
  64. $total_out = 0;
  65. $traf = mysqli_query($db_link, $trafSQL);
  66. while (list ($s_login,$s_ou_id,$u_id,$s_ip,$s_auth_id, $s_router_id, $traf_day_in, $traf_day_out, $p_in, $p_out) = mysqli_fetch_array($traf)) {
  67. if ($traf_day_in + $traf_day_out ==0) { continue; }
  68. $total_in += $traf_day_in;
  69. $total_out += $traf_day_out;
  70. if (!empty($gateway_list[$s_router_id])) { $s_router = $gateway_list[$s_router_id]; } else { $s_router=''; }
  71. $cl = "data";
  72. if ($traf_day_out > 2 * $traf_day_in) { $cl = "nb"; }
  73. print "<tr align=center class=\"tr1\" onmouseover=\"className='tr2'\" onmouseout=\"className='tr1'\">\n";
  74. print "<td align=left class=\"$cl\">$s_login</td>\n";
  75. print "<td align=left class=\"$cl\"><a href=authday.php?id=$s_auth_id&date_start=$date1&date_stop=$date2>$s_ip</a></td>\n";
  76. print "<td align=left class=\"$cl\">$s_router</td>\n";
  77. print "<td class=\"$cl\">" . fbytes($traf_day_in) . "</td>\n";
  78. print "<td class=\"$cl\">" . fbytes($traf_day_out) . "</td>\n";
  79. print "<td class=\"$cl\">" . fpkts($p_in) . "</td>\n";
  80. print "<td class=\"$cl\">" . fpkts($p_out) . "</td>\n";
  81. print "</tr>\n";
  82. }
  83. print "<tr align=center class=\"tr1\" onmouseover=\"className='tr2'\" onmouseout=\"className='tr1'\">\n";
  84. print "<td class=\"data\" colspan=2><b>".WEB_title_itog."</b></td>\n";
  85. print "<td class=\"data\"><b></b></td>\n";
  86. print "<td class=\"data\"><b>" . fbytes($total_in) . "</b></td>\n";
  87. print "<td class=\"data\"><b>" . fbytes($total_out) . "</b></td>\n";
  88. print "<td class=\"data\"><b></b></td>\n";
  89. print "<td class=\"data\"><b></b></td>\n";
  90. print "</tr>\n";
  91. ?>
  92. </table>
  93. <?php
  94. print_navigation($page_url,$page,$displayed,$count_records[0],$total);
  95. ?>
  96. <script>
  97. document.getElementById('ou').addEventListener('change', function(event) {
  98. const buttonApply = document.getElementById('btn_filter');
  99. buttonApply.click();
  100. });
  101. document.getElementById('rows').addEventListener('change', function(event) {
  102. const buttonApply = document.getElementById('btn_filter');
  103. buttonApply.click();
  104. });
  105. document.getElementById('gateway').addEventListener('change', function(event) {
  106. const buttonApply = document.getElementById('btn_filter');
  107. buttonApply.click();
  108. });
  109. </script>
  110. <?php
  111. require_once ($_SERVER['DOCUMENT_ROOT']."/inc/footer.simple.php");
  112. ?>