177 lines
5.4 KiB
PHP
177 lines
5.4 KiB
PHP
<?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>
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2016
|
|
the Initial Developer. 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";
|
|
require_once "resources/paging.php";
|
|
|
|
//check permissions
|
|
if (permission_exists('device_export')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get();
|
|
|
|
//define the functions
|
|
function array2csv(array &$array) {
|
|
if (count($array) == 0) {
|
|
return null;
|
|
}
|
|
ob_start();
|
|
$df = fopen("php://output", 'w');
|
|
fputcsv($df, array_keys(reset($array)));
|
|
foreach ($array as $row) {
|
|
fputcsv($df, $row);
|
|
}
|
|
fclose($df);
|
|
return ob_get_clean();
|
|
}
|
|
|
|
function download_send_headers($filename) {
|
|
// disable caching
|
|
$now = gmdate("D, d M Y H:i:s");
|
|
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
|
|
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
|
|
header("Last-Modified: {$now} GMT");
|
|
|
|
// force download
|
|
header("Content-Type: application/force-download");
|
|
header("Content-Type: application/octet-stream");
|
|
header("Content-Type: application/download");
|
|
|
|
// disposition / encoding on response body
|
|
header("Content-Disposition: attachment;filename={$filename}");
|
|
header("Content-Transfer-Encoding: binary");
|
|
}
|
|
|
|
|
|
//define possible columns in the array
|
|
$allowed_columns[] = 'device_uuid';
|
|
$allowed_columns[] = 'domain_uuid';
|
|
$allowed_columns[] = 'device_mac_address';
|
|
$allowed_columns[] = 'device_label';
|
|
$allowed_columns[] = 'device_template';
|
|
$allowed_columns[] = 'device_description';
|
|
|
|
//get the devices and send them as output
|
|
$column_group = $_REQUEST["column_group"];
|
|
if (is_array($column_group) && @sizeof($column_group) != 0) {
|
|
|
|
//validate the token
|
|
$token = new token;
|
|
if (!$token->validate($_SERVER['PHP_SELF'])) {
|
|
message::add($text['message-invalid_token'],'negative');
|
|
header('Location: device_download.php');
|
|
exit;
|
|
}
|
|
|
|
//validate columns
|
|
foreach ($column_group as $index => $column_name) {
|
|
if (!in_array($column_name, $allowed_columns)) {
|
|
unset($column_group[$index]);
|
|
}
|
|
}
|
|
|
|
//iterate columns
|
|
if (is_array($column_group) && @sizeof($column_group) != 0) {
|
|
$column_names = implode(", ", $column_group);
|
|
$sql = "select ".$column_names." from v_devices ";
|
|
$sql .= " where domain_uuid = :domain_uuid ";
|
|
$parameters['domain_uuid'] = $domain_uuid;
|
|
$database = new database;
|
|
$devices = $database->select($sql, $parameters, 'all');
|
|
unset($sql, $parameters, $column_names);
|
|
//print_r($extensions);
|
|
|
|
if (is_array($devices) && @sizeof($devices) != 0) {
|
|
download_send_headers("data_export_".date("Y-m-d").".csv");
|
|
echo array2csv($devices);
|
|
exit;
|
|
}
|
|
}
|
|
unset($column_group);
|
|
}
|
|
|
|
//create token
|
|
$object = new token;
|
|
$token = $object->create($_SERVER['PHP_SELF']);
|
|
|
|
//include the header
|
|
$document['title'] = $text['title-device_export'];
|
|
require_once "resources/header.php";
|
|
|
|
//show the content
|
|
echo "<form method='post' name='frm'>\n";
|
|
|
|
echo "<div class='action_bar sub'>\n";
|
|
echo " <div class='heading'><b>".$text['header-device_export']."</b></div>\n";
|
|
echo " <div class='actions'>\n";
|
|
echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'link'=>'devices.php']);
|
|
echo button::create(['type'=>'submit','label'=>$text['button-export'],'icon'=>$_SESSION['theme']['button_icon_export'],'style'=>'margin-left: 15px;']);
|
|
echo " </div>\n";
|
|
echo " <div style='clear: both;'></div>\n";
|
|
echo "</div>\n";
|
|
|
|
echo "<table class='list'>\n";
|
|
echo "<tr class='list-header'>\n";
|
|
echo " <th class='checkbox'>\n";
|
|
echo " <input type='checkbox' id='checkbox_all' name='checkbox_all' onclick='list_all_toggle();' ".($allowed_columns ?: "style='visibility: hidden;'").">\n";
|
|
echo " </th>\n";
|
|
echo " <th>".$text['label-column_name']."</th>\n";
|
|
echo " <th>".$text['label-description']."</th>\n";
|
|
echo "</tr>\n";
|
|
|
|
if (is_array($allowed_columns) && @sizeof($allowed_columns) != 0) {
|
|
$x = 0;
|
|
foreach ($allowed_columns as $column_name) {
|
|
echo "<tr class='list-row' href='".$list_row_url."'>\n";
|
|
echo " <td class='checkbox'>\n";
|
|
echo " <input type='checkbox' name='column_group[]' id='checkbox_".$x."' value=\"".$column_name."\" onclick=\"if (!this.checked) { document.getElementById('checkbox_all').checked = false; }\">\n";
|
|
echo " </td>\n";
|
|
echo " <td>".$column_name."</td>";
|
|
echo " <td class='description overflow hide-sm-dn'> </td>";
|
|
echo "</tr>";
|
|
$x++;
|
|
}
|
|
}
|
|
|
|
echo "</table>\n";
|
|
echo "<br />\n";
|
|
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|
|
echo "</form>\n";
|
|
|
|
//include the footer
|
|
require_once "resources/footer.php";
|
|
|
|
?>
|