Use the new call recordings view

This commit is contained in:
FusionPBX 2022-12-03 19:19:29 -07:00 committed by GitHub
parent afa57b26a4
commit 3b9357976d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 9 deletions

View File

@ -70,7 +70,7 @@ if (!class_exists('call_recordings')) {
if ($record['checked'] == 'true' && is_uuid($record['uuid'])) {
//get the information to delete
$sql = "select call_recording_name, call_recording_path ";
$sql .= "from v_call_recordings ";
$sql .= "from view_call_recordings ";
$sql .= "where call_recording_uuid = :call_recording_uuid ";
$parameters['call_recording_uuid'] = $record['uuid'];
$database = new database;
@ -81,7 +81,10 @@ if (!class_exists('call_recordings')) {
unlink($field['call_recording_path'].'/'.$field['call_recording_name']);
}
//build call recording delete array
$array[$this->table][$x][$this->name.'_uuid'] = $record['uuid'];
$array['xml_cdr'][$x]['xml_cdr_uuid'] = $record['uuid'];
$array['xml_cdr'][$x]['record_path'] = null;
$array['xml_cdr'][$x]['record_name'] = null;
$array['xml_cdr'][$x]['record_length'] = null;
//increment the id
$x++;
}
@ -91,15 +94,25 @@ if (!class_exists('call_recordings')) {
//delete the checked rows
if (is_array($array) && @sizeof($array) != 0) {
//execute delete
//add temporary permissions
$p = new permissions;
$p->add('xml_cdr_edit', 'temp');
//remove record_path, record_name and record_length
$database = new database;
$database->app_name = $this->app_name;
$database->app_uuid = $this->app_uuid;
$database->delete($array);
$database->app_name = 'xml_cdr';
$database->app_uuid = '4a085c51-7635-ff03-f67b-86e834422848';
$database->save($array, false);
$message = $database->message;
unset($array);
//remove the temporary permissions
$p->delete('xml_cdr_edit', 'temp');
//set message
message::add($text['message-delete']);
}
unset($records);
}
@ -114,8 +127,11 @@ if (!class_exists('call_recordings')) {
//get call recording from database
if (is_uuid($this->recording_uuid)) {
$sql = "select call_recording_name, call_recording_path, call_recording_base64 ";
$sql .= "from v_call_recordings ";
$sql = "select call_recording_name, call_recording_path ";
if ($_SESSION['call_recordings']['storage_type']['text'] == 'base64' && $row['call_recording_base64'] != '') {
$sql = ", call_recording_base64 ";
}
$sql .= "from view_call_recordings ";
$sql .= "where call_recording_uuid = :call_recording_uuid ";
$parameters['call_recording_uuid'] = $this->recording_uuid;
$database = new database;
@ -272,4 +288,4 @@ if (!class_exists('call_recordings')) {
} //class
}
?>
?>