mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
* Use settings-get method - get default, domain and user settings - Replace _SESSION * Simplify get domain paging * Change isset using empty * Fix token name and hash * Add new default settings category: contact, name: default_sort_column, and default_sort_order * Update app_config.php * Update footer.php * Fix require.php and core/dashboard/index.php (#7563) * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Fix require.php and core/dashboard/index.php * Update destinations.php * Update permission.php * Update require.php --------- Co-authored-by: FusionPBX <markjcrane@gmail.com> Co-authored-by: FusionPBX <mark@fusionpbx.com> * Update header.php * Use settings get classes (#7567) * access_control * azure * azure * basic_operator_panel * bridges * call_block * call_broadcast * call_center * call_flows * call_forward * call_recordings * do_not_disturb * feature_event_notify * follow_me * remove unused object properties * fix esl command * fix esl command * conference_centers * conference_centers - remove whitespace * conference_controls * conference_profiles * conference_profiles * Delete core/websockets/resources/classes/socket_exception.php.original~ * Delete core/websockets/resources/classes/websocket_server.php.original~ * conferences * destinations * device * dialplan * email_queue * event_guard * extension_settings * extension * fax * fax_queue * fifo * gateways * ivr_menu * modules * switch_music_on_hold * number_translations * phrases * pin_numbers * provision * switch_recordings * registrations * ring_groups * sip_profiles * sofia_global_settings * streams * presence * switch_files * time_conditions * vars * voicemail_greetings * voicemail * ringbacks * contacts * xml_cdr * authentication * dashboard * default_settings * domain_settings * email_templates * permission * user_logs * user_settings * users * button * cache * captcha * remove cli_option * remove directory.php for switch_directory class * email * file * groups * event_socket use config object * Use intval to give an integer port * switch_settings * tones * fix object used before initialization * menu * fix copy paste error for switch_files.php * always include require.php for framework files * Fix missing properties * set the action * Use the $database object * Add missing class properties * Fix the domain_name * Use public scope for domain_uuid and domain_name * Add missing parameters * Correct the user_uuid parameter * Add json_validate and use it in the dashboard update indentation on functions.php * Intialize the active_registrations variable * Define the $parameters * Set a default value for user_setting_enabled * Add condition domain_uuid not empty * Add not empty condition for domain_uuid * Declare the global variables * Update how the defaults are set use ?? * Use ?? to set the default values * Update call_center_queue_edit.php * Prevent an error * Add domain_name property * Fix the null coalescing operator * Removed domain_uuid from the URL * Change condition to check sip_profile_domain_name * Refactor domain_uuid declaration and comments Removed redundant domain_uuid declaration and updated comments. * Account for an empty value * Refactor constructor to use settings array Updated constructor to accept settings array for domain UUID and database initialization. * Refactor xml_cdr.php to improve variable organization Removed duplicate domain_uuid declaration and reorganized private variables for better structure. * Enhance transcription button logic and icon display Updated transcription button visibility conditions and improved application icon handling in the call flow summary. * Refactor settings initialization in domains.php Updated settings initialization to include domain_uuid and user_uuid. * Modify domain change condition in require.php Updated condition to check if 'domain_change' is not empty before proceeding. * Set default_setting_enabled to true by default * Enhance domain UUID check in access controls * Enhance domain UUID check in settings list * Refactor category display logic in vars.php * Simplify list row URL generation Removed domain UUID check from list row URL construction. * Refactor module category display logic * Fix SQL query by removing parameters variable * Initialize result_count variable for call recordings * Refactor leg variable usage in xml_cdr_details.php * Update conference_room_edit.php * Change GET to REQUEST for order and search variables * Set timezone and SQL time format in recordings.php Added timezone and SQL time format settings. * Set default for ring group greeting * Improve domain UUID check in stream listing * Handle null voicemail_option_param safely * Add file existence check for greeting files Check if greeting file exists before getting size and date. * Improve domain UUID check in email templates * Update FIFO strategy dropdown and description text * Add multilingual agent descriptions Added multilingual descriptions for agents in the app_languages.php file. * Add music on hold descriptions * Add the chime list description Updated copyright year from 2024 to 2025. * Fix domain UUID check and handle email subject decoding * Add null coalescing for $value in email_test.php Ensure $value is not null by providing a default empty string. * Handle undefined dialplan_uuid in input field * Add translations for 'Status' label in multiple languages * Fix typo in config instance check --------- Co-authored-by: frytimo <tim@fusionpbx.com>
241 lines
10 KiB
PHP
241 lines
10 KiB
PHP
<?php
|
|
|
|
//includes files
|
|
require_once dirname(__DIR__, 4) . "/resources/require.php";
|
|
require_once "resources/check_auth.php";
|
|
|
|
//check permisions
|
|
if (permission_exists('xml_cdr_view')) {
|
|
//access granted
|
|
}
|
|
else {
|
|
echo "access denied";
|
|
exit;
|
|
}
|
|
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$text = $language->get($settings->get('domain', 'language', 'en-us'), 'core/user_settings');
|
|
|
|
//create assigned extensions array
|
|
if (is_array($_SESSION['user']['extension'])) {
|
|
foreach ($_SESSION['user']['extension'] as $assigned_extension) {
|
|
$assigned_extensions[$assigned_extension['extension_uuid']] = $assigned_extension['user'];
|
|
}
|
|
}
|
|
unset($assigned_extension);
|
|
|
|
//if also viewing system status, show more recent calls (more room avaialble)
|
|
$recent_limit = isset($selected_blocks) && is_array($selected_blocks) && in_array('counts', $selected_blocks) ? 10 : 5;
|
|
|
|
//set the sql time format
|
|
$sql_time_format = 'DD Mon HH12:MI am';
|
|
if (!empty($settings->get('domain', 'time_format'))) {
|
|
$sql_time_format = $settings->get('domain', 'time_format') == '12h' ? "DD Mon HH12:MI am" : "DD Mon HH24:MI";
|
|
}
|
|
|
|
//get the recent calls from call detail records
|
|
$sql = "
|
|
select
|
|
status,
|
|
direction,
|
|
start_stamp,
|
|
to_char(timezone(:time_zone, start_stamp), '".$sql_time_format."') as start_date_time,
|
|
caller_id_name,
|
|
caller_id_number,
|
|
destination_number,
|
|
answer_stamp,
|
|
bridge_uuid,
|
|
sip_hangup_disposition
|
|
from
|
|
v_xml_cdr
|
|
where
|
|
domain_uuid = :domain_uuid ";
|
|
if (!permission_exists('xml_cdr_domain')) {
|
|
if (!empty($assigned_extensions)) {
|
|
$x = 0;
|
|
foreach ($assigned_extensions as $assigned_extension_uuid => $assigned_extension) {
|
|
$sql_where_array[] = "extension_uuid = :extension_uuid_".$x;
|
|
$parameters['extension_uuid_'.$x] = $assigned_extension_uuid;
|
|
$x++;
|
|
}
|
|
if (!empty($sql_where_array)) {
|
|
$sql .= "and (".implode(' or ', $sql_where_array).") ";
|
|
}
|
|
unset($sql_where_array);
|
|
}
|
|
else {
|
|
$sql .= "and false \n";
|
|
}
|
|
}
|
|
$sql .= "and hangup_cause <> 'LOSE_RACE' ";
|
|
$sql .= "and start_epoch > ".(time() - 86400)." ";
|
|
$sql .= "order by start_epoch desc ";
|
|
$sql .= "limit :recent_limit ";
|
|
$parameters['recent_limit'] = $recent_limit;
|
|
$parameters['time_zone'] = $settings->get('domain', 'time_zone', date_default_timezone_get());
|
|
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
|
|
$result = $database->select($sql, $parameters, 'all');
|
|
$num_rows = !empty($result) ? sizeof($result) : 0;
|
|
|
|
//define row styles
|
|
$c = 0;
|
|
$row_style["0"] = "row_style0";
|
|
$row_style["1"] = "row_style1";
|
|
|
|
//recent calls
|
|
echo "<div class='hud_box'>\n";
|
|
|
|
echo "<div class='hud_content' ".($widget_details_state == "disabled" ?: "onclick=\"$('#hud_recent_calls_details').slideToggle('fast');\"").">\n";
|
|
echo " <span class='hud_title'><a onclick=\"document.location.href='".PROJECT_PATH."/app/xml_cdr/xml_cdr.php';\">".$text['label-recent_calls']."</a></span>\n";
|
|
|
|
if ($widget_chart_type == "doughnut") {
|
|
//add doughnut chart
|
|
?>
|
|
|
|
<div class='hud_chart'><canvas id='recent_calls_chart'></canvas></div>
|
|
|
|
<script>
|
|
const recent_calls_chart = new Chart(
|
|
document.getElementById('recent_calls_chart').getContext('2d'),
|
|
{
|
|
type: 'doughnut',
|
|
data: {
|
|
datasets: [{
|
|
data: ['<?php echo $num_rows; ?>', 0.00001],
|
|
backgroundColor: [
|
|
'<?php echo ($settings->get('theme', 'dashboard_recent_calls_chart_main_color') ?? '#2a9df4'); ?>',
|
|
'<?php echo ($settings->get('theme', 'dashboard_recent_calls_chart_sub_color') ?? '#d4d4d4'); ?>'
|
|
],
|
|
borderColor: '<?php echo $settings->get('theme', 'dashboard_chart_border_color'); ?>',
|
|
borderWidth: '<?php echo $settings->get('theme', 'dashboard_chart_border_width'); ?>',
|
|
}]
|
|
},
|
|
options: {
|
|
plugins: {
|
|
chart_number: {
|
|
text: '<?php echo $num_rows; ?>'
|
|
}
|
|
}
|
|
},
|
|
plugins: [{
|
|
id: 'chart_number',
|
|
beforeDraw(chart, args, options){
|
|
const {ctx, chartArea: {top, right, bottom, left, width, height} } = chart;
|
|
ctx.font = chart_text_size + ' ' + chart_text_font;
|
|
ctx.textBaseline = 'middle';
|
|
ctx.textAlign = 'center';
|
|
ctx.fillStyle = '<?php echo $widget_number_text_color; ?>';
|
|
ctx.fillText(options.text, width / 2, top + (height / 2));
|
|
ctx.save();
|
|
}
|
|
}]
|
|
}
|
|
);
|
|
</script>
|
|
<?php
|
|
}
|
|
|
|
//dashboard numeric
|
|
if (!isset($widget_chart_type) || $widget_chart_type == "number") {
|
|
echo "<span class='hud_stat'>".$num_rows."</span>";
|
|
}
|
|
|
|
//dashboard icon
|
|
if (!isset($widget_chart_type) || $widget_chart_type == "icon") {
|
|
echo " <div style='position: relative; display: inline-block;'>\n";
|
|
echo " <span class='hud_stat'><i class=\"fas ".$widget_icon." \"></i></span>\n";
|
|
echo " <span style=\"background-color: ".(!empty($widget_number_background_color) ? $widget_number_background_color : '#417ed3')."; color: ".(!empty($widget_number_text_color) ? $widget_number_text_color : '#ffffff')."; font-size: 12px; font-weight: bold; text-align: center; position: absolute; top: 23px; left: 24.5px; padding: 2px 7px 1px 7px; border-radius: 10px; white-space: nowrap;\">".$num_rows."</span>\n";
|
|
echo " </div>\n";
|
|
}
|
|
|
|
echo "</div>\n";
|
|
|
|
if ($widget_details_state != 'disabled') {
|
|
echo "<div class='hud_details hud_box' id='hud_recent_calls_details'>";
|
|
echo "<table class='tr_hover' width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
|
|
echo "<tr>\n";
|
|
if ($num_rows > 0) {
|
|
echo "<th class='hud_heading'> </th>\n";
|
|
}
|
|
echo "<th class='hud_heading' width='100%'>".$text['label-cid_number']."</th>\n";
|
|
echo "<th class='hud_heading'>".$text['label-date_time']."</th>\n";
|
|
echo "</tr>\n";
|
|
|
|
if ($num_rows > 0) {
|
|
$theme_cdr_images_exist = (
|
|
file_exists($theme_image_path."icon_cdr_inbound_answered.png") &&
|
|
file_exists($theme_image_path."icon_cdr_inbound_voicemail.png") &&
|
|
file_exists($theme_image_path."icon_cdr_inbound_cancelled.png") &&
|
|
file_exists($theme_image_path."icon_cdr_inbound_failed.png") &&
|
|
file_exists($theme_image_path."icon_cdr_outbound_answered.png") &&
|
|
file_exists($theme_image_path."icon_cdr_outbound_cancelled.png") &&
|
|
file_exists($theme_image_path."icon_cdr_outbound_failed.png") &&
|
|
file_exists($theme_image_path."icon_cdr_local_answered.png") &&
|
|
file_exists($theme_image_path."icon_cdr_local_voicemail.png") &&
|
|
file_exists($theme_image_path."icon_cdr_local_cancelled.png") &&
|
|
file_exists($theme_image_path."icon_cdr_local_failed.png")
|
|
) ? true : false;
|
|
|
|
foreach ($result as $index => $row) {
|
|
$start_date_time = str_replace('/0','/', ltrim($row['start_date_time'], '0'));
|
|
if (!empty($_SESSION['domain']['time_format']) && $settings->get('domain', 'time_format') == '12h') {
|
|
$start_date_time = str_replace(' 0',' ', $start_date_time);
|
|
}
|
|
|
|
//determine name
|
|
$cdr_name = ($row['direction'] == 'inbound' || ($row['direction'] == 'local' && !empty($assigned_extensions) && is_array($assigned_extensions) && in_array($row['destination_number'], $assigned_extensions))) ? $row['caller_id_name'] : $row['destination_number'];
|
|
//determine number to display
|
|
if ($row['direction'] == 'inbound' || ($row['direction'] == 'local' && !empty($assigned_extensions) && is_array($assigned_extensions) && in_array($row['destination_number'], $assigned_extensions))) {
|
|
$cdr_number = (is_numeric($row['caller_id_number'])) ? format_phone($row['caller_id_number']) : $row['caller_id_number'];
|
|
$dest = $row['caller_id_number'];
|
|
}
|
|
else if ($row['direction'] == 'outbound' || ($row['direction'] == 'local' && !empty($assigned_extensions) && is_array($assigned_extensions) && in_array($row['caller_id_number'], $assigned_extensions))) {
|
|
$cdr_number = (is_numeric($row['destination_number'])) ? format_phone($row['destination_number']) : $row['destination_number'];
|
|
$dest = $row['destination_number'];
|
|
}
|
|
//set click-to-call variables
|
|
if (permission_exists('click_to_call_call')) {
|
|
$tr_link = "onclick=\"send_cmd('".PROJECT_PATH."/app/click_to_call/click_to_call.php".
|
|
"?src_cid_name=".urlencode($cdr_name ?? '').
|
|
"&src_cid_number=".urlencode($cdr_number ?? '').
|
|
"&dest_cid_name=".urlencode($_SESSION['user']['extension'][0]['outbound_caller_id_name'] ?? '').
|
|
"&dest_cid_number=".urlencode($_SESSION['user']['extension'][0]['outbound_caller_id_number'] ?? '').
|
|
"&src=".urlencode($_SESSION['user']['extension'][0]['user'] ?? '').
|
|
"&dest=".urlencode($dest ?? '').
|
|
"&rec=".(filter_var($settings->get('click_to_call', 'record') ?? false, FILTER_VALIDATE_BOOL) ? 'true' : 'false').
|
|
"&ringback=".$settings->get('click_to_call', 'ringback', 'us-ring').
|
|
"&auto_answer=".(filter_var($settings->get('click_to_call', 'auto_answer') ?? false, FILTER_VALIDATE_BOOL) ? 'true' : 'false').
|
|
"');\" ".
|
|
"style='cursor: pointer;'";
|
|
}
|
|
echo "<tr ".$tr_link.">\n";
|
|
//determine call result and appropriate icon
|
|
echo "<td valign='middle' class='".$row_style[$c]."' style='cursor: help; padding: 0 0 0 6px;'>\n";
|
|
if ($theme_cdr_images_exist) {
|
|
$call_result = $row['status'];
|
|
if (isset($row['direction'])) {
|
|
echo "<img src='".PROJECT_PATH."/themes/".$settings->get('domain', 'template')."/images/icon_cdr_".$row['direction']."_".$call_result.".png' width='16' style='border: none;' title='".$text['label-'.$row['direction']].": ".$text['label-'.$call_result]."'>\n";
|
|
}
|
|
}
|
|
echo "</td>\n";
|
|
echo "<td valign='top' class='".$row_style[$c]." hud_text' nowrap='nowrap'><a href='javascript:void(0);' ".(!empty($cdr_name) ? "title=\"".$cdr_name."\"" : null).">".($cdr_number ?? '')."</a></td>\n";
|
|
echo "<td valign='top' class='".$row_style[$c]." hud_text' nowrap='nowrap'>".$start_date_time."</td>\n";
|
|
echo "</tr>\n";
|
|
|
|
unset($cdr_name, $cdr_number);
|
|
$c = ($c) ? 0 : 1;
|
|
}
|
|
}
|
|
unset($sql, $parameters, $result, $num_rows, $index, $row);
|
|
|
|
echo "</table>\n";
|
|
echo "<span style='display: block; margin: 6px 0 7px 0;'><a href='".PROJECT_PATH."/app/xml_cdr/xml_cdr.php'>".$text['label-view_all']."</a></span>\n";
|
|
echo "</div>";
|
|
|
|
echo "<span class='hud_expander' onclick=\"$('#hud_recent_calls_details').slideToggle('fast');\"><span class='fas fa-ellipsis-h'></span></span>";
|
|
}
|
|
echo "</div>\n";
|
|
|
|
?>
|