piler/webui/controller/search/helper.php

231 lines
8.4 KiB
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerSearchHelper extends Controller {
private $error = array();
private $a = array(
'from' => '',
'to' => '',
'subject' => '',
'body' => '',
'date1' => '',
'date2' => '',
'direction' => '',
'size' => '',
'attachment_type' => '',
2012-02-10 14:06:00 +01:00
'tag' => '',
2012-09-06 15:27:20 +02:00
'note' => '',
2012-08-28 22:00:45 +02:00
'ref' => '',
2012-09-06 15:27:20 +02:00
'folders' => '',
2012-09-15 15:30:35 +02:00
'extra_folders' => '',
2012-08-28 22:00:45 +02:00
'any' => ''
2012-02-08 23:14:28 +01:00
);
public function index(){
$this->id = "content";
$this->template = "search/helper.tpl";
$this->layout = "common/layout-empty";
$request = Registry::get('request');
$db = Registry::get('db');
$sphx = Registry::get('sphx');
$this->load->model('search/search');
$this->load->model('search/message');
$this->load->model('user/user');
$this->data['page'] = 0;
if(isset($this->request->post['page'])) { $this->data['page'] = $this->request->post['page']; }
$this->data['page_len'] = get_page_length();
$this->data['n'] = -1;
2012-09-06 15:27:20 +02:00
if($this->request->post['searchtype'] == 'expert'){
2012-02-12 16:16:54 +01:00
2012-09-06 15:27:20 +02:00
if(isset($this->request->post['search']) && preg_match("/(from|to|subject|body|direction|size|date1|date2|attachment|tagnote)\:/", $this->request->post['search'])) {
$this->preprocess_post_expert_request($this->request->post);
}
else {
$this->naive_preprocess_post_expert_request($this->request->post);
}
2012-02-12 16:16:54 +01:00
2012-02-08 23:14:28 +01:00
$this->fixup_post_request();
2012-02-12 16:16:54 +01:00
2012-09-06 15:27:20 +02:00
list ($this->data['n'], $this->data['all_ids'], $this->data['messages']) = $this->model_search_search->search_messages($this->a, $this->data['page']);
2012-02-12 16:16:54 +01:00
}
else {
2012-02-08 23:14:28 +01:00
$this->fixup_post_simple_request();
2012-09-06 15:27:20 +02:00
list ($this->data['n'], $this->data['all_ids'], $this->data['messages']) = $this->model_search_search->search_messages($this->request->post, $this->data['page']);
2012-02-08 23:14:28 +01:00
}
2012-09-06 15:27:20 +02:00
2012-03-10 14:52:50 +01:00
if($this->a['ref']) { $this->data['_ref'] = $this->a['ref']; }
2012-04-27 22:57:43 +02:00
if(isset($this->request->post['ref']) && $this->request->post['ref']) { $this->data['_ref'] = $this->request->post['ref']; }
2012-02-08 23:14:28 +01:00
/* paging info */
$this->data['prev_page'] = $this->data['page'] - 1;
$this->data['next_page'] = $this->data['page'] + 1;
$this->data['total_pages'] = ceil($this->data['n'] / $this->data['page_len'])-1;
$this->data['hits_from'] = $this->data['page'] * $this->data['page_len'] + 1;
$this->data['hits_to'] = ($this->data['page']+1) * $this->data['page_len'];
if($this->data['hits_to'] > $this->data['n']) { $this->data['hits_to'] = $this->data['n']; }
$this->render();
}
private function fixup_post_simple_request() {
2012-09-19 15:50:22 +02:00
if(!isset($this->request->post['from'])) { $this->request->post['from'] = ''; }
if(!isset($this->request->post['to'])) { $this->request->post['to'] = ''; }
if(!isset($this->request->post['subject'])) { $this->request->post['subject'] = ''; }
if(!isset($this->request->post['body'])) { $this->request->post['body'] = ''; }
if(!isset($this->request->post['tag'])) { $this->request->post['tag'] = ''; }
if(!isset($this->request->post['note'])) { $this->request->post['note'] = ''; }
if(!isset($this->request->post['any'])) { $this->request->post['any'] = ''; }
if(!isset($this->request->post['attachment_type'])) { $this->request->post['attachment_type'] = ''; }
2012-02-08 23:14:28 +01:00
if(!isset($this->request->post['date1'])) { $this->request->post['date1'] = ''; }
if(!isset($this->request->post['date2'])) { $this->request->post['date2'] = ''; }
}
private function fixup_post_request() {
2012-02-15 11:03:27 +01:00
if(isset($this->request->post['ref'])) { $this->a['ref'] = $this->request->post['ref']; }
2012-09-06 15:27:20 +02:00
if(isset($this->request->post['folders'])) { $this->a['folders'] = $this->request->post['folders']; }
2012-09-15 15:30:35 +02:00
if(isset($this->request->post['extra_folders'])) { $this->a['extra_folders'] = $this->request->post['extra_folders']; }
2012-02-15 11:03:27 +01:00
2012-02-08 23:14:28 +01:00
$this->a['sort'] = $this->request->post['sort'];
$this->a['order'] = $this->request->post['order'];
}
2012-09-06 15:27:20 +02:00
private function naive_preprocess_post_expert_request($data = array()) {
$ndate = 0;
if(!isset($data['search'])) { return; }
$b = preg_split("/\s/", $data['search']);
while(list($k, $v) = each($b)) {
if($v == '') { continue; }
if(preg_match("/\d{4}\-\d{1,2}\-\d{1,2}/", $v)) {
$ndate++;
$this->a["date$ndate"] = $v;
}
else if(strchr($v, '@')) {
$this->a['from'] .= " $v";
}
else { $this->a['any'] .= ' ' . $v; }
}
if($this->a['date1'] && $this->a['date2'] == '') { $this->a['date2'] = $this->a['date1']; }
if($this->a['any'] == ' ' . $this->data['text_enter_search_terms']) { $this->a['any'] = ''; }
}
2012-02-08 23:14:28 +01:00
private function preprocess_post_expert_request($data = array()) {
$token = '';
2012-09-06 15:27:20 +02:00
$ndate = 0;
2012-02-08 23:14:28 +01:00
2012-02-15 11:03:27 +01:00
if(!isset($data['search'])) { return; }
2012-02-08 23:14:28 +01:00
$s = preg_replace("/:/", ": ", $data['search']);
$s = preg_replace("/,/", " ", $s);
$s = preg_replace("/\s{1,}/", " ", $s);
$b = explode(" ", $s);
while(list($k, $v) = each($b)) {
2012-02-12 16:16:54 +01:00
if($v == '') { continue; }
2012-02-08 23:14:28 +01:00
if($v == 'from:') { $token = 'from'; continue; }
else if($v == 'to:') { $token = 'to'; continue; }
else if($v == 'subject:') { $token = 'subject'; continue; }
else if($v == 'body:') { $token = 'body'; continue; }
else if($v == 'direction:' || $v == 'd:') { $token = 'direction'; continue; }
else if($v == 'size:') { $token = 'size'; continue; }
else if($v == 'date1:') { $token = 'date1'; continue; }
else if($v == 'date2:') { $token = 'date2'; continue; }
else if($v == 'attachment:' || $v == 'a:') { $token = 'attachment_type'; continue; }
else if($v == 'size') { $token = 'size'; continue; }
else if($v == 'tag:') { $token = 'tag'; continue; }
2012-09-06 15:27:20 +02:00
else if($v == 'note:') { $token = 'note'; continue; }
2012-02-10 14:06:00 +01:00
else if($v == 'ref:') { $token = 'ref'; continue; }
2012-09-06 15:27:20 +02:00
else {
if(preg_match("/\d{4}\-\d{1,2}\-\d{1,2}/", $v)) {
$ndate++;
$this->a["date$ndate"] = $v;
}
}
2012-02-08 23:14:28 +01:00
2012-09-06 15:27:20 +02:00
if($token == 'from') {
if($v == 'OR') { continue; }
$this->a['from'] .= " $v";
2012-02-08 23:14:28 +01:00
}
2012-09-06 15:27:20 +02:00
else if($token == 'to') {
if($v == 'OR') { continue; }
$this->a['to'] .= " $v";
2012-02-08 23:14:28 +01:00
}
2012-09-06 15:27:20 +02:00
2012-02-08 23:14:28 +01:00
else if($token == 'subject') { $this->a['subject'] .= ' ' . $v; }
else if($token == 'body') { $this->a['body'] .= ' ' . $v; }
2012-02-12 16:16:54 +01:00
else if($token == 'date1') { $this->a['date1'] = ' ' . $v; }
else if($token == 'date2') { $this->a['date2'] = ' ' . $v; }
else if($token == 'attachment_type') { $this->a['attachment_type'] .= '|' . $v; }
2012-02-08 23:14:28 +01:00
else if($token == 'tag') { $this->a['tag'] .= ' ' . $v; }
2012-09-06 15:27:20 +02:00
else if($token == 'note') { $this->a['note'] .= ' ' . $v; }
2012-02-12 16:16:54 +01:00
else if($token == 'ref') { $this->a['ref'] = ' ' . $v; }
else if($token == 'direction') {
2012-09-06 15:27:20 +02:00
if($v == 'inbound') { $this->a['direction'] = "0"; }
2012-02-12 16:16:54 +01:00
else if($v == 'outbound') { $this->a['direction'] = 2; }
else if($v == 'internal') { $this->a['direction'] = 1; }
}
else if($token == 'size') {
$o = substr($v, 0, 1);
if($o == '<' || $o == '>') {
$v = substr($v, 1, strlen($v));
$o1 = substr($v, 0, 1);
if($o1 == '=') {
$v = substr($v, 1, strlen($v));
$o .= $o1;
}
}
else { $o = ''; }
$s = explode("k", $v);
if($s[0] != $v) { $v = $s[0] * 1000; }
$s = explode("M", $v);
if($s[0] != $v) { $v = $s[0] * 1000000; }
$this->a['size'] .= ' ' . $o . $v;
}
2012-02-08 23:14:28 +01:00
}
2012-08-28 22:47:18 +02:00
if($this->a['any'] == ' ' . $this->data['text_enter_search_terms']) { $this->a['any'] = ''; }
2012-02-12 16:16:54 +01:00
$this->a['attachment_type'] = substr($this->a['attachment_type'], 1, strlen($this->a['attachment_type']));
2012-02-08 23:14:28 +01:00
}
}
?>