fusionpbx/app/devices/devices.php

289 lines
11 KiB
PHP
Raw Normal View History

<?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.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
//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;
}
2015-09-05 06:23:01 +02:00
//additional includes
require_once "resources/header.php";
require_once "resources/paging.php";
//add multi-lingual support
$language = new text;
$text = $language->get();
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"]);
}
2015-09-05 06:19:11 +02:00
//get total devices count from the database
$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."%' ";
$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."%' ";
$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
$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 {
$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."%' ";
$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."%' ";
$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;
}
}
//show the content
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
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";
echo " </td>\n";
echo " <td align='right' nowrap='nowrap' valign='top'>\n";
echo " <form method='get' action=''>\n";
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";
}
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
}
}
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";
}
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";
}
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";
echo " </form>\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td colspan='2'>\n";
echo " ".$text['description-devices'];
echo " </td>\n";
echo " </tr>\n";
echo "</table>\n";
2018-02-20 01:28:40 +01:00
echo "<br />\n";
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
2017-12-09 20:08:08 +01:00
if ($_GET['show'] == "all" && permission_exists('device_all')) {
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param);
}
echo th_order_by('device_mac_address', $text['label-device_mac_address'], $order_by, $order);
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
}
echo th_order_by('device_vendor', $text['label-device_vendor'], $order_by, $order);
echo th_order_by('device_template', $text['label-device_template'], $order_by, $order);
echo th_order_by('device_enabled', $text['label-device_enabled'], $order_by, $order);
echo th_order_by('device_status', $text['label-device_status'], $order_by, $order);
echo th_order_by('device_description', $text['label-device_description'], $order_by, $order);
echo "<td class='list_control_icons'>\n";
if (permission_exists('device_add')) {
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";
}
}
else {
echo " &nbsp;\n";
}
echo "</td>\n";
echo "<tr>\n";
if (count($devices) > 0) {
2015-05-22 05:08:02 +02:00
foreach($devices as $row) {
$tr_link = (permission_exists('device_edit')) ? "href='device_edit.php?id=".$row['device_uuid']."'" : null;
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";
}
2018-02-20 01:28:40 +01:00
echo " <td valign='top' class='".$row_style[$c]."'>\n";
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']);
echo " </td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_label']."&nbsp;</td>\n";
2015-05-22 06:10:43 +02:00
if ($device_alternate) {
echo " <td valign='top' class='".$row_style[$c]."'>\n";
2015-05-22 06:10:43 +02:00
if (strlen($row['device_uuid_alternate']) > 0) {
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
}
echo " </td>\n";
2015-05-22 06:10:43 +02:00
}
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_vendor']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$row['device_template']."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".$text['label-'.$row['device_enabled']]."&nbsp;</td>\n";
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>&nbsp;</td>\n";
echo " <td valign='top' class='row_stylebg'>".$row['device_description']."&nbsp;</td>\n";
2018-02-20 01:28:40 +01:00
echo " <td class='list_control_icons'>\n";
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";
}
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";
}
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);
} //end if results
echo "<tr>\n";
echo "</table>\n";
echo "<br />\n";
echo $paging_controls."\n";
echo "<br /><br />\n";
//include the footer
require_once "resources/footer.php";
2015-03-07 23:51:32 +01:00
2015-12-09 23:01:35 +01:00
?>