123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?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 <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2023
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- //includes files
- require_once dirname(__DIR__, 2) . "/resources/require.php";
- require_once "resources/check_auth.php";
- require_once "resources/paging.php";
- //check permissions
- require_once "resources/check_auth.php";
- if (permission_exists('company_directory_view')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
-
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //get the http values and set them as variables
- $order_by = check_str($_REQUEST["order_by"]);
- $order = check_str($_REQUEST["order"]);
- //handle search term
- $search = check_str($_REQUEST["search"]);
- if (strlen($search) > 0) {
- $sql_mod = "and ( ";
- $sql_mod .= "e.extension ILIKE '%".$search."%' ";
- $sql_mod .= "or e.call_group ILIKE '%".$search."%' ";
- $sql_mod .= "or e.directory_last_name ILIKE '%".$search."%' ";
- $sql_mod .= "or e.directory_first_name ILIKE '%".$search."%' ";
- $sql_mod .= ") ";
- }
- if (strlen($order_by) < 1) {
- $order_by = "extension";
- $order = "ASC";
- }
- $domain_uuid = $_SESSION['domain_uuid'];
-
- //lookup the domain count
- $sql = "select count(*) as num_rows from v_extensions as e\n";
- $sql .= "WHERE domain_uuid = '$domain_uuid' and directory_visible = 'true' \n";
- $sql .= $sql_mod; //add search mod from above"
- $prep_statement = $db->prepare($sql);
- if ($prep_statement) {
- $prep_statement->execute();
- $row = $prep_statement->fetch(PDO::FETCH_ASSOC);
- $numeric_extension_count = $row['num_rows'];
- if (($db_type == "pgsql") or ($db_type == "mysql")) {
- $numeric_extension_count = $row['num_rows'];
- }
- }
- unset($prep_statement, $row);
- //prepare to page the results
- $rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
- $param = "&search=".$search;
- if (!isset($_GET['page'])) { $_GET['page'] = 0; }
- $_GET['page'] = check_str($_GET['page']);
- list($paging_controls_mini, $rows_per_page, $var_3) = paging($numeric_extension_count, $param, $rows_per_page, true); //top
- list($paging_controls, $rows_per_page, $var_3) = paging($numeric_extension_count, $param, $rows_per_page); //bottom
- $offset = $rows_per_page * $_GET['page'];
-
-
- //get all the counts from the database
- $sql = "SELECT \n";
- $sql .= "e.directory_first_name AS first_name, \n";
- $sql .= "e.directory_last_name AS last_name, \n";
- $sql .= "e.extension AS phone, \n";
- $sql .= "e.call_group AS group\n";
- $sql .= "FROM v_extensions as e \n";
- $sql .= "WHERE e.domain_uuid = '$domain_uuid' and e.directory_visible = 'true' \n";
- $sql .= $sql_mod; //add search mod from above
- $sql .= "ORDER BY ".$order_by." ".$order." \n";
- if ($export != "true") {$sql .= "limit $rows_per_page offset $offset ";}
- $database = new database;
- $directory = $database->select($sql, null, 'all');
- unset($database,$result);
- //set the headers
- header('Content-type: application/octet-binary');
- header("Content-Disposition: attachment; filename=company-directory_" . date("Y-m-d") . ".csv");
- //show the column names on the first line
- $z = 0;
- foreach($directory[1] as $key => $val) {
- if ($z == 0) {
- echo '"'.$key.'"';
- }
- else {
- echo ',"'.$key.'"';
- }
- $z++;
- }
- echo "\n";
-
- //add the values to the csv
- $x = 0;
-
- foreach($directory as $key => $row){
- echo '"'.$row['first_name'].'"';
- echo ',"'.$row['last_name'].'"';
- echo ',"'.$row['phone'].'"';
- echo ',"'.$row['group'].'"';
- echo "\n";
- $x++;
- }
- exit;
-
- ?>
|