2012-02-08 23:14:28 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class ControllerMessageRestore extends Controller {
|
|
|
|
|
|
|
|
public function index(){
|
|
|
|
|
|
|
|
$this->id = "content";
|
|
|
|
$this->template = "message/restore.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('user/user');
|
|
|
|
$this->load->model('mail/mail');
|
|
|
|
|
|
|
|
$this->document->title = $this->data['text_message'];
|
|
|
|
|
|
|
|
$this->data['id'] = @$this->request->get['id'];
|
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
$rcpt = array();
|
|
|
|
|
|
|
|
if(Registry::get('auditor_user') == 1) {
|
|
|
|
$this->data['id'] = @$this->request->post['id'];
|
|
|
|
$rcpt = preg_split("/\s/", $this->request->post['rcpt']);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-08 23:14:28 +01:00
|
|
|
if(!verify_piler_id($this->data['id'])) {
|
|
|
|
AUDIT(ACTION_UNKNOWN, '', '', $this->data['id'], 'unknown piler id: ' . $this->data['id']);
|
|
|
|
die("invalid id: " . $this->data['id']);
|
|
|
|
}
|
|
|
|
|
2012-09-06 15:27:20 +02:00
|
|
|
if(!$this->model_search_search->check_your_permission_by_id($this->data['id'])) {
|
2012-02-08 23:14:28 +01:00
|
|
|
AUDIT(ACTION_UNAUTHORIZED_VIEW_MESSAGE, '', '', $this->data['id'], '');
|
|
|
|
die("no permission for " . $this->data['id']);
|
|
|
|
}
|
|
|
|
|
|
|
|
AUDIT(ACTION_RESTORE_MESSAGE, '', '', $this->data['id'], '');
|
|
|
|
|
|
|
|
|
|
|
|
$this->data['username'] = Registry::get('username');
|
|
|
|
|
|
|
|
|
|
|
|
/* send the email to all the recipients of the original email if we are admin or auditor users */
|
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
if(Registry::get('auditor_user') == 0) {
|
2012-02-08 23:14:28 +01:00
|
|
|
array_push($rcpt, $_SESSION['email']);
|
|
|
|
}
|
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
$this->data['data'] = $this->data['text_failed_to_restore'];
|
2012-02-08 23:14:28 +01:00
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
if(count($rcpt) > 0) {
|
2012-02-08 23:14:28 +01:00
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
$this->data['piler_id'] = $this->model_search_message->get_piler_id_by_id($this->data['id']);
|
|
|
|
|
2013-01-27 21:43:42 +01:00
|
|
|
$msg = $this->model_search_message->get_raw_message($this->data['piler_id']);
|
|
|
|
$this->model_search_message->remove_journal($msg);
|
|
|
|
|
2012-12-20 14:11:17 +01:00
|
|
|
$x = $this->model_mail_mail->send_smtp_email(SMARTHOST, SMARTHOST_PORT, SMTP_DOMAIN, SMTP_FROMADDR, $rcpt,
|
2013-01-27 21:43:42 +01:00
|
|
|
"Received: by piler" . EOL . PILER_HEADER_FIELD . $this->data['id'] . EOL . $msg );
|
2012-12-20 14:11:17 +01:00
|
|
|
|
|
|
|
if($x == 1) { $this->data['data'] = $this->data['text_restored']; }
|
|
|
|
}
|
2012-02-08 23:14:28 +01:00
|
|
|
|
|
|
|
$this->render();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|