2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2015-03-07 23:51:32 +01:00
|
|
|
Copyright (C) 2008-2015 All Rights Reserved.
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2016-07-26 17:37:54 +02:00
|
|
|
|
|
|
|
|
//includes
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "resources/require.php";
|
|
|
|
|
require_once "resources/check_auth.php";
|
|
|
|
|
|
|
|
|
|
//check permissions
|
|
|
|
|
if (permission_exists('device_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
|
2015-09-05 06:23:01 +02:00
|
|
|
//additional includes
|
|
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
|
|
|
|
|
2013-05-23 10:18:12 +02:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2013-05-23 10:18:12 +02:00
|
|
|
|
2014-05-02 11:01:24 +02:00
|
|
|
//get the http values and set them as variables
|
|
|
|
|
$search = check_str($_GET["search"]);
|
|
|
|
|
if (isset($_GET["order_by"])) {
|
|
|
|
|
$order_by = check_str($_GET["order_by"]);
|
|
|
|
|
$order = check_str($_GET["order"]);
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
|
2015-09-05 06:19:11 +02:00
|
|
|
//get total devices count from the database
|
2016-07-26 17:37:54 +02:00
|
|
|
$sql = "select count(*) as num_rows from v_devices ";
|
|
|
|
|
$sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
$total_devices = $row['num_rows'];
|
|
|
|
|
}
|
|
|
|
|
unset($sql, $prep_statement, $row);
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
|
|
|
|
$sql = "select count(*) as num_rows from v_devices as d ";
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == "all" && permission_exists('device_all')) {
|
2015-09-05 06:19:11 +02:00
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "where ";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$sql .= "where (";
|
|
|
|
|
$sql .= " d.domain_uuid = '$domain_uuid' ";
|
|
|
|
|
if (permission_exists('device_all')) {
|
|
|
|
|
$sql .= " or d.domain_uuid is null ";
|
|
|
|
|
}
|
|
|
|
|
$sql .= ") ";
|
|
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "and ";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "(";
|
2018-03-01 09:06:59 +01:00
|
|
|
$sql .= " lower(d.device_mac_address) like '%".strtolower($search)."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= " or d.device_label like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_vendor like '%".$search."%' ";
|
2016-03-11 19:46:02 +01:00
|
|
|
$sql .= " or d.device_enabled like '%".$search."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= " or d.device_template like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_description like '%".$search."%' ";
|
2016-08-25 19:10:39 +02:00
|
|
|
$sql .= " or d.device_provisioned_method like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_provisioned_ip like '%".$search."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
|
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
2018-03-01 09:06:59 +01:00
|
|
|
$prep_statement->execute();
|
2015-09-05 06:19:11 +02:00
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if ($row['num_rows'] > 0) {
|
|
|
|
|
$num_rows = $row['num_rows'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$num_rows = '0';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
2016-03-29 07:02:11 +02:00
|
|
|
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == "all" && permission_exists('device_all')) {
|
|
|
|
|
$param = "&search=".$search."&show=all";
|
2015-12-09 23:01:35 +01:00
|
|
|
} else {
|
2017-05-23 17:23:35 +02:00
|
|
|
$param = "&search=".$search;
|
2015-12-09 23:01:35 +01:00
|
|
|
}
|
2015-09-05 06:19:11 +02:00
|
|
|
$page = $_GET['page'];
|
|
|
|
|
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
|
|
|
|
|
list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page);
|
|
|
|
|
$offset = $rows_per_page * $page;
|
|
|
|
|
|
|
|
|
|
//get the list
|
|
|
|
|
$sql = "select d.*, d2.device_label as alternate_label ";
|
|
|
|
|
$sql .= "from v_devices as d, v_devices as d2 ";
|
|
|
|
|
$sql .= "where ( ";
|
|
|
|
|
$sql .= " d.device_uuid_alternate = d2.device_uuid ";
|
|
|
|
|
$sql .= " or d.device_uuid_alternate is null and d.device_uuid = d2.device_uuid ";
|
|
|
|
|
$sql .= ") ";
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == "all" && permission_exists('device_all')) {
|
2015-09-05 06:19:11 +02:00
|
|
|
//echo __line__."<br \>\n";
|
|
|
|
|
} else {
|
|
|
|
|
$sql .= "and (";
|
|
|
|
|
$sql .= " d.domain_uuid = '$domain_uuid' ";
|
|
|
|
|
if (permission_exists('device_all')) {
|
|
|
|
|
$sql .= " or d.domain_uuid is null ";
|
|
|
|
|
}
|
|
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
|
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "and (";
|
2018-03-01 09:06:59 +01:00
|
|
|
$sql .= " lower(d.device_mac_address) like '%".strtolower($search)."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= " or d.device_label like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_vendor like '%".$search."%' ";
|
2016-03-11 19:46:02 +01:00
|
|
|
$sql .= " or d.device_enabled like '%".$search."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= " or d.device_template like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_description like '%".$search."%' ";
|
2016-08-25 19:10:39 +02:00
|
|
|
$sql .= " or d.device_provisioned_method like '%".$search."%' ";
|
|
|
|
|
$sql .= " or d.device_provisioned_ip like '%".$search."%' ";
|
2015-09-05 06:19:11 +02:00
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
|
|
|
|
if (strlen($order_by) == 0) {
|
|
|
|
|
$sql .= "order by d.device_label, d.device_description asc ";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$sql .= "order by $order_by $order ";
|
|
|
|
|
}
|
|
|
|
|
$sql .= "limit $rows_per_page offset $offset ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$devices = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
unset ($prep_statement, $sql);
|
|
|
|
|
|
|
|
|
|
//alternate_found
|
|
|
|
|
$device_alternate = false;
|
|
|
|
|
foreach($devices as $row) {
|
|
|
|
|
if (strlen($row['device_uuid_alternate']) > 0) {
|
|
|
|
|
$device_alternate = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-23 10:18:12 +02:00
|
|
|
//show the content
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <tr>\n";
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <td width='100%' align='left' valign='top'>\n";
|
|
|
|
|
echo " <b>".$text['header-devices']." (".$num_rows.")</b>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " <td align='right' nowrap='nowrap' valign='top'>\n";
|
|
|
|
|
echo " <form method='get' action=''>\n";
|
2015-03-29 03:33:56 +02:00
|
|
|
if (permission_exists('device_all')) {
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == 'all') {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='hidden' name='show' value='all'>\n";
|
2015-03-31 05:16:20 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-show_all']."' onclick=\"window.location='devices.php?show=all';\">\n";
|
2015-03-07 23:51:32 +01:00
|
|
|
}
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2016-08-01 01:48:50 +02:00
|
|
|
if (permission_exists('device_vendor_view')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-vendors']."' onclick=\"document.location.href='device_vendors.php';\">\n";
|
2016-08-01 01:48:50 +02:00
|
|
|
}
|
2015-02-15 01:40:39 +01:00
|
|
|
if (permission_exists('device_profile_view')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-profiles']."' onclick=\"document.location.href='device_profiles.php';\">\n";
|
2015-02-15 01:40:39 +01:00
|
|
|
}
|
2018-02-22 17:35:24 +01:00
|
|
|
if (permission_exists('device_import')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='button' class='btn' alt='".$text['button-import']."' onclick=\"window.location='/app/device_imports/device_imports.php'\" value='".$text['button-import']."'>\n";
|
2018-02-19 02:09:34 +01:00
|
|
|
}
|
2018-02-22 17:35:24 +01:00
|
|
|
if (permission_exists('device_export')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='button' class='btn' value='".$text['button-export']."' onclick=\"window.location.href='device_download.php'\">\n";
|
2018-02-20 01:17:45 +01:00
|
|
|
}
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <input type='text' class='txt' style='width: 150px; margin-left: 15px;' name='search' value='".$search."'>\n";
|
|
|
|
|
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>\n";
|
2015-02-15 01:33:56 +01:00
|
|
|
echo " </form>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
2016-07-26 17:37:54 +02:00
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td colspan='2'>\n";
|
|
|
|
|
echo " ".$text['description-devices'];
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo "</table>\n";
|
2018-02-20 01:28:40 +01:00
|
|
|
echo "<br />\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo "<tr>\n";
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == "all" && permission_exists('device_all')) {
|
2015-03-31 05:16:20 +02:00
|
|
|
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param);
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2015-03-07 22:51:02 +01:00
|
|
|
echo th_order_by('device_mac_address', $text['label-device_mac_address'], $order_by, $order);
|
2013-05-23 10:18:12 +02:00
|
|
|
echo th_order_by('device_label', $text['label-device_label'], $order_by, $order);
|
2015-05-22 06:10:43 +02:00
|
|
|
if ($device_alternate) {
|
2015-05-22 06:34:31 +02:00
|
|
|
echo th_order_by('device_template', $text['label-device_uuid_alternate'], $order_by, $order);
|
2015-05-22 06:10:43 +02:00
|
|
|
}
|
2014-01-04 00:11:42 +01:00
|
|
|
echo th_order_by('device_vendor', $text['label-device_vendor'], $order_by, $order);
|
2013-05-23 10:18:12 +02:00
|
|
|
echo th_order_by('device_template', $text['label-device_template'], $order_by, $order);
|
2016-03-11 19:46:02 +01:00
|
|
|
echo th_order_by('device_enabled', $text['label-device_enabled'], $order_by, $order);
|
2016-08-25 19:10:39 +02:00
|
|
|
echo th_order_by('device_status', $text['label-device_status'], $order_by, $order);
|
2013-05-23 10:18:12 +02:00
|
|
|
echo th_order_by('device_description', $text['label-device_description'], $order_by, $order);
|
2015-02-15 01:33:56 +01:00
|
|
|
echo "<td class='list_control_icons'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
if (permission_exists('device_add')) {
|
2015-03-22 09:17:04 +01:00
|
|
|
if ($_SESSION['limit']['devices']['numeric'] == '' || ($_SESSION['limit']['devices']['numeric'] != '' && $total_devices < $_SESSION['limit']['devices']['numeric'])) {
|
|
|
|
|
echo " <a href='device_edit.php' alt='".$text['button-add']."'>".$v_link_label_add."</a>\n";
|
|
|
|
|
}
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " \n";
|
|
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
|
2015-05-22 05:04:42 +02:00
|
|
|
if (count($devices) > 0) {
|
2015-05-22 05:08:02 +02:00
|
|
|
foreach($devices as $row) {
|
2014-06-21 10:52:47 +02:00
|
|
|
$tr_link = (permission_exists('device_edit')) ? "href='device_edit.php?id=".$row['device_uuid']."'" : null;
|
2014-06-21 09:04:04 +02:00
|
|
|
echo "<tr ".$tr_link.">\n";
|
2017-12-09 20:08:08 +01:00
|
|
|
if ($_GET['show'] == "all" && permission_exists('device_all')) {
|
2015-03-07 23:51:32 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$_SESSION['domains'][$row['domain_uuid']]['domain_name']."</td>\n";
|
2015-03-07 22:35:18 +01:00
|
|
|
}
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>\n";
|
2015-05-04 22:07:51 +02:00
|
|
|
echo (permission_exists('device_edit')) ? "<a href='device_edit.php?id=".$row['device_uuid']."'>".format_mac($row['device_mac_address'])."</a>" : format_mac($row['device_mac_address']);
|
2014-06-21 02:58:16 +02:00
|
|
|
echo " </td>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_label']." </td>\n";
|
2015-05-22 06:10:43 +02:00
|
|
|
if ($device_alternate) {
|
2015-05-22 06:14:04 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>\n";
|
2015-05-22 06:10:43 +02:00
|
|
|
if (strlen($row['device_uuid_alternate']) > 0) {
|
2015-05-24 09:14:11 +02:00
|
|
|
echo " <a href='device_edit.php?id=".$row['device_uuid_alternate']."' alt=''>".$row['alternate_label']."</a>\n";
|
2015-05-22 06:10:43 +02:00
|
|
|
}
|
2015-05-22 06:14:04 +02:00
|
|
|
echo " </td>\n";
|
2015-05-22 06:10:43 +02:00
|
|
|
}
|
2014-01-04 00:11:42 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_vendor']." </td>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_template']." </td>\n";
|
2016-03-11 19:46:02 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$text['label-'.$row['device_enabled']]." </td>\n";
|
2017-06-09 00:21:47 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_provisioned_date']." - ".$row['device_provisioned_method']." - <a href='http://".$row['device_provisioned_ip']."' target='_blank'>".$row['device_provisioned_ip']."</a> </td>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
echo " <td valign='top' class='row_stylebg'>".$row['device_description']." </td>\n";
|
2018-02-20 01:28:40 +01:00
|
|
|
echo " <td class='list_control_icons'>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
if (permission_exists('device_edit')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo "<a href='device_edit.php?id=".$row['device_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('device_delete')) {
|
2018-02-20 01:28:40 +01:00
|
|
|
echo "<a href='device_delete.php?id=".$row['device_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
} //end foreach
|
2015-05-22 05:08:02 +02:00
|
|
|
unset($sql, $devices, $row_count);
|
2013-05-23 10:18:12 +02:00
|
|
|
} //end if results
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2016-05-21 21:04:31 +02:00
|
|
|
echo "</table>\n";
|
|
|
|
|
echo "<br />\n";
|
|
|
|
|
|
|
|
|
|
echo $paging_controls."\n";
|
|
|
|
|
echo "<br /><br />\n";
|
2013-05-23 10:18:12 +02:00
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2015-03-07 23:51:32 +01:00
|
|
|
|
2015-12-09 23:01:35 +01:00
|
|
|
?>
|