<?php /* Copyright (C) 2014-2015 Deciso B.V. Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ require_once("guiconfig.inc"); require_once("captiveportal.inc"); require_once("services.inc"); require_once("pfsense-utils.inc"); require_once("interfaces.inc"); $cpzone = $_GET['zone']; if (isset($_POST['zone'])) $cpzone = $_POST['zone']; if ($_GET['act'] == "del" && !empty($cpzone)) { captiveportal_disconnect_client($_GET['id']); header("Location: status_captiveportal.php?zone={$cpzone}"); exit; } $pgtitle = array(gettext("Status: Captive portal")); $shortcut_section = "captiveportal"; if (!is_array($config['captiveportal'])) $config['captiveportal'] = array(); $a_cp =& $config['captiveportal']; if (count($a_cp) == 1) $cpzone = current(array_keys($a_cp)); include("head.inc"); ?> <?php flush(); function clientcmp($a, $b) { global $order; return strcmp($a[$order], $b[$order]); } if (!empty($cpzone)) { $cpdb_handle = new OPNsense\CaptivePortal\DB($cpzone); $cpclient_handle = new OPNsense\CaptivePortal\CPClient(); $order = ""; if ($_GET['order']) { if ($_GET['order'] == "ip") $order = "ip"; else if ($_GET['order'] == "mac") $order = "mac"; else if ($_GET['order'] == "user") $order = "username"; } $cpdb = $cpdb_handle->listClients(array(),"and",array($order) ) ; if ($_GET['showact']) { $accounting_info = $cpclient_handle->listAccounting(); } else { $accounting_info = array() ; } } else { $cpdb = array() ; } // Load MAC-Manufacturer table $mac_man = load_mac_manufacturer_table(); ?> <body> <?php include("fbegin.inc"); ?> <section class="page-content-main"> <div class="container-fluid"> <div class="row"> <section class="col-xs-12"> <?php if (!empty($cpzone) && isset($config['voucher'][$cpzone]['enable'])): ?> <?php $tab_array = array(); $tab_array[] = array(gettext("Active Users"), true, "status_captiveportal.php?zone={$cpzone}"); $tab_array[] = array(gettext("Active Vouchers"), false, "status_captiveportal_vouchers.php?zone={$cpzone}"); $tab_array[] = array(gettext("Voucher Rolls"), false, "status_captiveportal_voucher_rolls.php?zone={$cpzone}"); $tab_array[] = array(gettext("Test Vouchers"), false, "status_captiveportal_test.php?zone={$cpzone}"); $tab_array[] = array(gettext("Expire Vouchers"), false, "status_captiveportal_expire.php?zone={$cpzone}"); display_top_tabs($tab_array); ?> <?php endif; ?> <div class="tab-content content-box col-xs-12"> <div class="container-fluid"> <form action="<?=$_SERVER['REQUEST_URI'];?>" method="post" name="iform" id="iform"> <div class="table-responsive"> <table class="table table-striped table-sort"> <tr> <td width="20%" class="vncell" valign="top"> <br /><?=gettext("Captive Portal Zone"); ?><br/><br /> </td> <td class="vncell" width="30%" align="center"> <?php if (count($a_cp) > 1) { ?> <form action="status_captiveportal.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <select name="zone" class="formselect" onchange="document.form1.submit()"> <option value="">none</option> <?php foreach ($a_cp as $cpkey => $cp) { echo "<option value=\"{$cpkey}\" "; if ($cpzone == $cpkey) echo "selected=\"selected\""; echo ">" . htmlspecialchars($cp['zone']) . "</option>\n"; } ?> </select> <br /> </form> <?php } else echo $a_cp[$cpzone]['zone']; ?> </td> <td colspan="6" width="50%"></td> </tr> <tr><td colspan="6"><br /></td></tr> <?php if (!empty($cpzone)): ?> <tr> <td colspan="7" valign="top" class="listtopic"><?=gettext("Captiveportal status");?></td> </tr> <tr> <td class="listhdrr"><a href="?zone=<?=$cpzone?>&order=ip&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("IP address");?></a></td> <td class="listhdrr"><a href="?zone=<?=$cpzone?>&order=mac&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("MAC address");?></a></td> <td class="listhdrr"><a href="?zone=<?=$cpzone?>&order=user&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("Username");?></a></td> <?php if ($_GET['showact']): ?> <td class="listhdrr"><a href="?zone=<?=$cpzone?>&order=start&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("Session start");?></a></td> <td class="listhdr"><a href="?zone=<?=$cpzone?>&order=lastact&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("Last activity");?></a></td> <?php else: ?> <td class="listhdr" colspan="2"><a href="?zone=<?=$cpzone?>&order=start&showact=<?=htmlspecialchars($_GET['showact']);?>"><?=gettext("Session start");?></a></td> <?php endif; ?> <td class="list sort_ignore"></td> </tr> <?php foreach ($cpdb as $cpent): ?> <tr> <td class="listlr"><?=$cpent->ip;?></td> <td class="listr"> <?php $mac=trim($cpent->mac); if (!empty($mac)) { $mac_hi = strtoupper($mac[0] . $mac[1] . $mac[3] . $mac[4] . $mac[6] . $mac[7]); print htmlentities($mac); if(isset($mac_man[$mac_hi])){ print "<br /><font size=\"-2\"><i>{$mac_man[$mac_hi]}</i></font>"; } } ?> </td> <td class="listr"><?=htmlspecialchars($cpent->username);?> </td> <td class="listr"><?=htmlspecialchars(date("m/d/Y H:i:s", $cpent->allow_time));?></td> <?php if ($_GET['showact']): if ( array_key_exists($cpent->ip,$accounting_info) ) $last_act = $accounting_info[$cpent->ip]['last_accessed'] ; else $last_act=0; ?> <td class="listr"><?php if ($last_act != 0) echo htmlspecialchars(date("m/d/Y H:i:s", $last_act));?></td> <?php else: ?> <td class="listr" colspan="2"></td> <?php endif; ?> <td valign="middle" class="list nowrap"> <a class="btn btn-default btn-xs" href="?zone=<?=$cpzone;?>&order=<?=$_GET['order'];?>&showact=<?=htmlspecialchars($_GET['showact']);?>&act=del&id=<?=$cpent->sessionid;?>" onclick="return confirm('<?=gettext("Do you really want to disconnect this client?");?>')" title="<?=gettext("Disconnect");?>"><span class="glyphicon glyphicon-remove"></span></a> </td> </tr> <?php endforeach; endif; ?> </table> </div> </form> <form action="status_captiveportal.php" method="get" style="margin: 14px;"> <input type="hidden" name="order" value="<?=htmlspecialchars($_GET['order']);?>" /> <?php if (!empty($cpzone)): ?> <?php if ($_GET['showact']): ?> <input type="hidden" name="showact" value="0" /> <input type="submit" class="btn btn-primary" value="<?=gettext("Don't show last activity");?>" /> <?php else: ?> <input type="hidden" name="showact" value="1" /> <input type="submit" class="btn btn-primary" value="<?=gettext("Show last activity");?>" /> <?php endif; ?> <input type="hidden" name="zone" value="<?=htmlspecialchars($cpzone);?>" /> <?php endif; ?> </form> </div> </div> </section> </div> </div> </section> <?php include("foot.inc"); ?>