\n";
- if (permission_exists('email_log_download') || permission_exists('email_log_resend') || permission_exists('email_log_delete')) {
+ if (permission_exists('email_log_resend') || permission_exists('email_log_delete')) {
echo " | \n";
echo " \n";
echo " \n";
@@ -326,9 +316,6 @@
if (permission_exists('email_log_resend')) {
echo button::create(['type'=>'button','title'=>$text['button-resend'],'icon'=>'paper-plane','onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('resend'); list_form_submit('form_list')"]);
}
- if (permission_exists('email_log_download')) {
- echo button::create(['type'=>'button','title'=>$text['button-download'],'icon'=>$_SESSION['theme']['button_icon_download'],'onclick'=>"list_self_check('checkbox_".$x."'); list_action_set('download'); list_form_submit('form_list')"]);
- }
echo " | \n";
echo " ";
echo button::create(['type'=>'button','class'=>'link','label'=>$text['label-reference_cdr'],'link'=>PROJECT_PATH.'/app/xml_cdr/xml_cdr_details.php?id='.urlencode($row['call_uuid'])]);
diff --git a/app/email_logs/resources/classes/email_logs.php b/app/email_logs/resources/classes/email_logs.php
index 6542543771..ae637323cd 100644
--- a/app/email_logs/resources/classes/email_logs.php
+++ b/app/email_logs/resources/classes/email_logs.php
@@ -198,129 +198,7 @@ if (!class_exists('email_logs')) {
}
}
- /**
- * download records
- */
- public function download($records) {
- if (permission_exists($this->permission_prefix.'download')) {
-
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
-
- //validate the token
- $token = new token;
- if (!$token->validate('/app/email_logs/email_logs.php')) {
- message::add($text['message-invalid_token'],'negative');
- header('Location: '.$this->list_page);
- exit;
- }
-
- //download multiple records (eventually zip individual emails together)
- if (is_array($records) && @sizeof($records) != 0) {
-
- //retrieve checked records
- foreach($records as $x => $record) {
- if ($record['checked'] == 'true' && is_uuid($record['uuid'])) {
- $uuids[] = $record['uuid'];
- }
- }
-
- //download emails
- if (is_array($uuids) && @sizeof($uuids) != 0) {
- foreach ($uuids as $x => $uuid) {
-
- //get email details
- $sql = "select call_uuid, sent_date, type, email from v_email_logs ";
- $sql .= "where email_log_uuid = :email_log_uuid ";
- $parameters['email_log_uuid'] = $uuid;
- $database = new database;
- $row = $database->select($sql, $parameters, 'row');
- if (is_array($row) && @sizeof($row) != 0 && is_uuid($row['call_uuid'])) {
-
- //santize filename components
- $sent_date = str_replace('-','', $row['sent_date']);
- $sent_date = str_replace(':','', $sent_date);
- $sent_date = str_replace(' ','_', $sent_date);
- $type = strtolower($row['type']);
- $email_filename = $sent_date.'_'.$type.'_'.$row['call_uuid'].'.eml';
-
- //single email
- if (@sizeof($uuids) == 1) {
-
- //set headers
- header("Content-Type: message/rfc822");
- header('Content-Disposition: attachment; filename="'.$email_filename.'"');
- header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
- header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
- header("Content-Length: ".strlen($row['email']));
-
- //output content
- echo $row['email'];
- exit;
- }
-
- //multiple emails
- else {
- if (is_dir($_SESSION['server']['temp']['dir'])) {
-
- if (file_put_contents($_SESSION['server']['temp']['dir'].'/'.$email_filename, $row['email'])) {
- $email_files[] = $_SESSION['server']['temp']['dir'].'/'.$email_filename;
- }
- }
- }
-
- }
- unset($sql, $parameters, $row);
- }
-
- //download compressed file
- if (@sizeof($email_files) != 0) {
-
- //define compressed file name
- $compressed_filename = 'emails_'.date('Ymd_His').'.zip';
-
- //compress email files
- $command = 'zip -mj '.$_SESSION['server']['temp']['dir'].'/'.$compressed_filename.' '.implode(' ', $email_files).' 2>&1';
- exec($command, $response, $restore_errlevel);
- unset($command);
-
- //push download
- if (file_exists($_SESSION['server']['temp']['dir'].'/'.$compressed_filename)) {
-
- //open file
- session_cache_limiter('public');
- $fd = fopen($_SESSION['server']['temp']['dir'].'/'.$compressed_filename, 'rb');
-
- //set headers
- header("Content-Type: application/zip");
- header('Content-Disposition: attachment; filename="'.$compressed_filename.'"');
- header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
- header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
- header("Content-Length: ".filesize($_SESSION['server']['temp']['dir'].'/'.$compressed_filename));
-
- //output file content
- ob_clean();
- fpassthru($fd);
- fclose($fd);
-
- //remove compressed file
- @unlink($_SESSION['server']['temp']['dir'].'/'.$compressed_filename);
- exit;
-
- }
-
- }
-
- }
-
- }
-
- }
-
- } //method
-
} //class
}
-?>
\ No newline at end of file
+?>
|