append_search_criteria($data['ipaddr'], $arr) . ")"; } if(isset($data['user']) && $data['user']) { $where .= " AND email IN (" . $this->append_search_criteria($data['user'], $arr) . ")"; } if(isset($data['ref']) && $data['ref']) { $where .= " AND meta_id IN (" . $this->append_search_criteria($data['ref'], $arr) . ")"; } if(isset($data['date1'])) { $date1 = $data['date1']; } if(isset($data['date2'])) { $date2 = $data['date2']; } $date = fixup_date_condition('ts', $date1, $date2); if($date) { $where .= " AND $date "; } if($where) { $where = " WHERE " . substr($where, 5, strlen($where)); } $from = $data['page_len'] * $data['page']; if($where) { $query = $this->db->query("SELECT COUNT(*) AS count FROM " . TABLE_AUDIT . " $where", $arr); $n = $query->row['count']; if(ENABLE_SYSLOG == 1) { syslog(LOG_INFO, sprintf("audit query: '%s' in %.2f s, %d hits", $query->query, $query->exec_time, $query->row['count'])); } } else { $n = MAX_AUDIT_HITS; } if($n > 0) { if($n > MAX_AUDIT_HITS) { $n = MAX_AUDIT_HITS; } $query = $this->db->query("SELECT * FROM " . TABLE_AUDIT . " $where $sortorder LIMIT $from," . $data['page_len'], $arr); if(ENABLE_SYSLOG == 1) { syslog(LOG_INFO, sprintf("audit query: '%s', param: '%s' in %.2f s, %d hits", $query->query, implode(' ', $arr), $query->exec_time, $query->num_rows)); } if(isset($query->rows)) { foreach($query->rows as $a) { $results[] = array( 'id' => $a['meta_id'], 'piler_id' => isset($m[$a['meta_id']]) ? $m[$a['meta_id']] : '', 'action' => $a['action'], 'email' => $a['email'], 'date' => date(AUDIT_DATE_FORMAT, $a['ts']), 'ipaddr' => $a['ipaddr'], 'description' => $a['description'], 'shortdescription' => make_short_string($a['description'], MAX_CGI_FROM_SUBJ_LEN) ); } } } return array($n, $results); } private function append_search_criteria($s = '', &$arr = array()) { $q = ""; $a = explode("*", $s); for($i=0; $i