download eml name reflects the subject

This commit is contained in:
SJ
2015-10-23 20:40:07 +02:00
parent 034aed6de7
commit c1f2a2bbf1
4 changed files with 37 additions and 9 deletions

View File

@ -4,25 +4,33 @@ class ModelMessageRestore extends Model {
public function download_files_as_zip($idlist = array()) {
$i = 0;
$zip = new ZipArchive();
$randomid = generate_random_string(16);
$filename = DIR_BASE . "tmp/" . $randomid;
$zipname = DIR_BASE . "tmp/" . $randomid;
if($zip->open($filename, ZIPARCHIVE::CREATE) != true) { exit("cannot open <$filename>\n"); }
if($zip->open($zipname, ZIPARCHIVE::CREATE) != true) { exit("cannot open <$zipname>\n"); }
$this->model_search_message->connect_to_pilergetd();
foreach($idlist as $id) {
$piler_id = $this->model_search_message->get_piler_id_by_id($id);
$i++;
$filename = $piler_id = $this->model_search_message->get_piler_id_by_id($id);
if(EML_NAME_BASED_ON_SUBJECT == 1) {
$filename = $this->model_search_message->get_subject_id_by_id($id);
$filename = $this->model_search_message->fix_subject($filename) . "-" . $i;
}
$rawemail = $this->model_search_message->get_raw_message($piler_id);
$this->model_search_message->remove_journal($rawemail);
$zip->addFromString($piler_id . ".eml", $rawemail);
$zip->addFromString($filename . ".eml", $rawemail);
AUDIT(ACTION_DOWNLOAD_MESSAGE, '', '', $id, '');
}
@ -37,13 +45,13 @@ class ModelMessageRestore extends Model {
header("Pragma: no-cache");
header("Content-Type: application/zip");
header("Expires: 0");
header("Content-Length: " . filesize($filename));
header("Content-Length: " . filesize($zipname));
header("Content-Disposition: attachment; filename=archive-$randomid.zip");
header("Content-Transfer-Encoding: binary\n");
readfile($filename);
readfile($zipname);
unlink($filename);
unlink($zipname);
}
}

View File

@ -748,6 +748,19 @@ class ModelSearchMessage extends Model {
}
public function get_subject_id_by_id($id = 0) {
$query = $this->db->query("SELECT `subject` FROM `" . TABLE_META . "` WHERE id=?", array($id));
if(isset($query->row['subject'])) { return $query->row['subject']; }
return '';
}
public function fix_subject($s = '') {
if($s == '') { $s = 'nosubject'; }
return preg_replace("/^\-{1,}/", "", preg_replace("/\W{1,}/", "-", $s));
}
public function get_attachment_by_id($id = 0) {
if($id <= 0) { return array(); }