mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 08:32:00 +01:00
64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
|
|
|
|
class ControllerMessageDownload extends Controller {
|
|
|
|
public function index(){
|
|
|
|
$this->id = "content";
|
|
$this->template = "message/headers.tpl";
|
|
$this->layout = "common/layout-empty";
|
|
|
|
$request = Registry::get('request');
|
|
$db = Registry::get('db');
|
|
|
|
$this->load->model('search/search');
|
|
$this->load->model('search/message');
|
|
$this->load->model('audit/audit');
|
|
|
|
$this->document->title = $this->data['text_message'];
|
|
|
|
$this->data['id'] = @$this->request->get['id'];
|
|
|
|
if(!$this->model_audit_audit->can_download()) { die("you cannot download at the moment"); }
|
|
|
|
if(!verify_piler_id($this->data['id'])) {
|
|
AUDIT(ACTION_UNKNOWN, '', '', $this->data['id'], 'unknown id: ' . $this->data['id']);
|
|
die("invalid id: " . $this->data['id']);
|
|
}
|
|
|
|
if(!$this->model_search_search->check_your_permission_by_id($this->data['id'])) {
|
|
AUDIT(ACTION_UNAUTHORIZED_VIEW_MESSAGE, '', '', $this->data['id'], '');
|
|
die("no permission for " . $this->data['id']);
|
|
}
|
|
|
|
|
|
AUDIT(ACTION_DOWNLOAD_MESSAGE, '', '', $this->data['id'], '');
|
|
|
|
$filename = $this->data['piler_id'] = $this->model_search_message->get_piler_id_by_id($this->data['id']);
|
|
|
|
if(EML_NAME_BASED_ON_SUBJECT == 1) {
|
|
$filename = $this->model_search_message->get_subject_id_by_id($this->data['id']);
|
|
$filename = $this->model_search_message->fix_subject($filename);
|
|
}
|
|
|
|
|
|
header("Cache-Control: public, must-revalidate");
|
|
header("Pragma: no-cache");
|
|
header("Content-Type: application/octet-stream");
|
|
header("Content-Disposition: attachment; filename=" . $filename . ".eml");
|
|
header("Content-Transfer-Encoding: binary\n");
|
|
|
|
$this->model_search_message->connect_to_pilergetd();
|
|
$msg = $this->model_search_message->get_raw_message($this->data['piler_id']);
|
|
$this->model_search_message->disconnect_from_pilergetd();
|
|
|
|
$this->model_search_message->remove_journal($msg);
|
|
print $msg;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|