Portions created by the Initial Developer are Copyright (C) 2018 - 2019 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //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('call_recording_view')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //get the http post data if (is_array($_POST['call_recordings'])) { $action = $_POST['action']; $search = $_POST['search']; $call_recordings = $_POST['call_recordings']; } //process the http post data by action if ($action != '' && is_array($call_recordings) && @sizeof($call_recordings) != 0) { switch ($action) { case 'delete': if (permission_exists('call_recording_delete')) { $obj = new call_recordings; $obj->delete($call_recordings); } break; } //redirect the user header('Location: call_recordings.php'.($search != '' ? '?search='.urlencode($search) : null)); exit; } //get order and order by $order_by = $_GET["order_by"]; $order = $_GET["order"]; //add the search string if (isset($_GET["search"])) { $search = strtolower($_GET["search"]); $sql_search = "and ("; $sql_search .= " lower(call_recording_name) like :search "; $sql_search .= " or lower(call_recording_path) like :search "; $sql_search .= ") "; $parameters['search'] = '%'.$search.'%'; } //get the count $sql = "select count(call_recording_uuid) from v_call_recordings "; $sql .= "where domain_uuid = :domain_uuid "; if (isset($sql_search)) { $sql .= $sql_search; } $parameters['domain_uuid'] = $_SESSION['domain_uuid']; $database = new database; $num_rows = $database->select($sql, $parameters, 'column'); //prepare to page the results $rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50; $param = "&search=".$search; $page = $_GET['page']; if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; } list($paging_controls, $rows_per_page) = paging($num_rows, $param, $rows_per_page); list($paging_controls_mini, $rows_per_page) = paging($num_rows, $param, $rows_per_page, true); $offset = $rows_per_page * $page; //get the list $sql = str_replace('count(call_recording_uuid)', '*', $sql); $sql .= order_by($order_by, $order, 'call_recording_date', 'desc'); $sql .= limit_offset($rows_per_page, $offset); $database = new database; $call_recordings = $database->select($sql, $parameters, 'all'); unset($sql, $parameters); //create token $object = new token; $token = $object->create($_SERVER['PHP_SELF']); //include the header $document['title'] = $text['title-call_recordings']; require_once "resources/header.php"; //show the content echo "
\n"; echo "
".$text['title-call_recordings']." (".$num_rows.")
\n"; echo "
\n"; if (permission_exists('call_recording_download_add') && $call_recordings) { echo button::create(['type'=>'button','label'=>$text['button-download'],'icon'=>$_SESSION['theme']['button_icon_download'],'collapse'=>'hide-xs','onclick'=>"list_action_set('download'); list_form_submit('form_list');"]); } if (permission_exists('call_recording_delete') && $call_recordings) { echo button::create(['type'=>'button','label'=>$text['button-delete'],'icon'=>$_SESSION['theme']['button_icon_delete'],'name'=>'btn_delete','style'=>'margin-left: 15px;','collapse'=>'hide-xs','onclick'=>"modal_open('modal-delete','btn_delete');"]); } echo "\n"; echo "
\n"; echo "
\n"; echo "
\n"; if (permission_exists('call_recording_delete') && $call_recordings) { echo modal::create(['id'=>'modal-delete','type'=>'delete','actions'=>button::create(['type'=>'button','label'=>$text['button-continue'],'icon'=>'check','id'=>'btn_delete','style'=>'float: right; margin-left: 15px;','collapse'=>'never','onclick'=>"modal_close(); list_action_set('delete'); list_form_submit('form_list');"])]); } echo $text['title_description-call_recordings']."\n"; echo "

\n"; echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; $col_count = 4; if (permission_exists('call_recording_delete')) { echo " \n"; $col_count++; } echo th_order_by('call_recording_name', $text['label-call_recording_name'], $order_by, $order, null, "class='pct-40'"); if (permission_exists('call_recording_play') || permission_exists('call_recording_download')) { echo "\n"; $col_count++; } echo th_order_by('call_recording_length', $text['label-call_recording_length'], $order_by, $order, null, "class='right'"); echo th_order_by('call_recording_date', $text['label-call_recording_date'], $order_by, $order); echo th_order_by('call_direction', $text['label-call_direction'], $order_by, $order); if (permission_exists('xml_cdr_details')) { echo " \n"; } echo "\n"; if (is_array($call_recordings) && @sizeof($call_recordings) != 0) { $x = 0; foreach ($call_recordings as $row) { //playback progress bar if (permission_exists('call_recording_play')) { echo "".(permission_exists('xml_cdr_details') ? "" : null)."\n"; echo "\n"; // dummy row to maintain alternating background color } if (permission_exists('call_recording_play')) { $list_row_url = "javascript:recording_play('".escape($row['call_recording_uuid'])."');"; } echo "\n"; if (permission_exists('call_recording_delete')) { echo " \n"; } echo " \n"; if (permission_exists('call_recording_play') || permission_exists('call_recording_download')) { echo " \n"; } echo " \n"; $call_recording_date = explode(' ', $row['call_recording_date']); echo " \n"; echo " \n"; if (permission_exists('xml_cdr_details')) { echo " \n"; } echo "\n"; $x++; } unset($call_recordings); } echo "
\n"; echo " \n"; echo " ".$text['label-recording']." 
\n"; echo " \n"; echo " \n"; echo " ".escape($row['call_recording_name'])."".($row['call_recording_length'] <= 59 ? '0:' : null).escape(str_pad($row['call_recording_length'], 2, '0', STR_PAD_LEFT))."".escape($call_recording_date['0'])." ".escape($call_recording_date[1])."".($row['call_direction'] != '' ? escape($text['label-'.$row['call_direction']]) : null)."\n"; echo button::create(['type'=>'button','title'=>$text['button-view'],'icon'=>$_SESSION['theme']['button_icon_view'],'link'=>PROJECT_PATH.'/app/xml_cdr/xml_cdr_details.php?id='.urlencode($row['call_recording_uuid'])]); echo "
\n"; echo "
\n"; echo "
".$paging_controls."
\n"; echo "\n"; echo "
\n"; //include the footer require_once "resources/footer.php"; ?>