if ($offset < 1000 - $pgsize) { $sphinx->processQuery(); $ids = $sphinx->returnIds($pg, '_posts', 'post_time'); if (count($ids)) { $where = "post_id IN(" . join(",", $ids) . ")"; $db = NewADOConnection($GLOBALS['DSN']); $limit = 25; $prev_fetch_mode = $ADODB_FETCH_MODE; $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; $rows = $db->getAssoc($sql = "\r\n\t\t\t\tselect post_id,post_text,poster_name,poster_id,\r\n\t\t\t\t\tgeobb_posts.topic_id,geobb_topics.forum_id,topic_title,topic_poster,topic_poster_name\r\n\t\t\t\tfrom geobb_posts \r\n\t\t\t\t\tinner join geobb_topics using (topic_id)\r\n\t\t\t\twhere {$where}\r\n\t\t\t\tlimit {$limit}"); $docs = array(); foreach ($ids as $c => $id) { $row = $rows[$id]; $docs[$c] = strip_tags(preg_replace('/<i>.*?<\\/i>/', ' ', $row['post_text'])); } $reply = $sphinx->BuildExcerpts($docs, 'post_stemmed', $sphinx->q); $times = array('hour' => time() - 3600, 'day' => time() - 3600 * 24, 'week' => time() - 3600 * 24 * 7, 'month' => time() - 3600 * 24 * 30, 'three months' => time() - 3600 * 24 * 90); $results = array(); $i = 0; $lookup = array(); foreach ($ids as $c => $id) { $row = $rows[$id]; $row['id'] = $id; $row['post_time'] = $sphinx->res['matches'][$id]['attrs']['post_time']; $row['era'] = ''; foreach ($times as $lab => $tim) { if ($row['post_time'] > $tim) { $row['era'] = $lab; break; } }
/** * run a standard search via sphinxsearch index * NOTE: $this->criteria->getSQLParts(...) needs to have been called before this function to populate sphinx criteria * @access private */ function ExecuteSphinxRecordSet($pg) { global $CONF; $db = $this->_getDB(); extract($this->criteria->sql, EXTR_PREFIX_ALL ^ EXTR_REFS, 'sql'); $sphinx = new sphinxwrapper($this->criteria->sphinx['query']); $this->fullText = 1; $sphinx->pageSize = $this->criteria->resultsperpage + 0; $page = ($pg - 1) * $sphinx->pageSize; if ($page > 1000) { //todo - hard-coded 1000 needs autodetecting! //lets jump to the last page of 'past results' $pg = intval(ceil(1000 / $sphinx->pageSize)); $this->currentPage = $pg; } //look for suggestions - this needs to be done before the filters are added - the same filters wont work on the gaz index if (isset($GLOBALS['smarty'])) { $suggestions = array(); if (empty($this->countOnly) && $sphinx->q && strlen($sphinx->q) < 64 && empty($this->criteria->sphinx['x'])) { $suggestions = $sphinx->didYouMean($sphinx->q); } elseif ($this->criteria->searchclass == 'Placename' && strpos($this->criteria->searchdesc, $this->criteria->searchq) == FALSE && (empty($this->criteria->searchtext) || $this->criteria->searchq == $this->criteria->searchtext) && isset($GLOBALS['smarty'])) { $suggestions = array(array('gr' => '(anywhere)', 'localities' => 'as text search', 'query' => $this->criteria->searchq)); } if (!empty($this->criteria->searchtext)) { if (is_numeric($this->criteria->searchtext)) { require_once 'geograph/gridsquare.class.php'; require_once 'geograph/gridimage.class.php'; $image = new GridImage(); $image->loadFromId($this->criteria->searchtext); if ($image->isValid() && ($image->moderation_status != 'rejected' && $image->moderation_status != 'pending' || $image->user_id == $GLOBALS['USER']->user_id)) { $suggestions += array(array('link' => "/photo/{$image->gridimage_id}", 'gr' => '(anywhere)', 'localities' => "Image by " . htmlentities($image->realname) . ", ID: {$image->gridimage_id}", 'query' => htmlentities2($image->title))); } } else { require_once "3rdparty/spellchecker.class.php"; $correction = SpellChecker::Correct($this->criteria->searchtext); if ($correction != $this->criteria->searchtext && levenshtein($correction, $this->criteria->searchtext) < 0.25 * strlen($correction)) { $suggestions += array(array('gr' => '(anywhere)', 'localities' => '', 'query' => $correction)); } } } if (!empty($suggestions) && count($suggestions)) { $GLOBALS['smarty']->assign("suggestions", $suggestions); } } //setup the sphinx wrapper if (!empty($this->criteria->sphinx['sort'])) { $sphinx->setSort($this->criteria->sphinx['sort']); } if (empty($this->criteria->sphinx['sort']) || $this->criteria->sphinx['sort'] == '@relevance DESC, @id DESC') { if (preg_match('/\\w+/', preg_replace('/(@\\w+ |\\w+:)\\w+/', '', $this->criteria->sphinx['query']))) { $this->criteria->searchdesc = str_replace('undefined', 'relevance', $this->criteria->searchdesc); } elseif (strlen($this->criteria->sphinx['query'])) { #$this->criteria->searchdesc = str_replace(', in undefined order','',$this->criteria->searchdesc); } } if (!empty($this->criteria->sphinx['d'])) { $sphinx->setSpatial($this->criteria->sphinx); } //this step is handled internally by search and setSpatial //$sphinx->processQuery(); if (!empty($CONF['fetch_on_demand'])) { $sphinx->upper_limit = $db->getOne("SELECT MAX(gridimage_id) FROM gridimage_search"); } if (is_array($this->criteria->sphinx['filters']) && count($this->criteria->sphinx['filters'])) { $sphinx->addFilters($this->criteria->sphinx['filters']); } //run the sphinx search $ids = $sphinx->returnIds($pg, empty($this->criteria->sphinx['exact']) ? '_images' : '_images_exact'); $this->resultCount = $sphinx->resultCount; $this->numberOfPages = $sphinx->numberOfPages; $this->maxResults = $sphinx->maxResults; $this->islimited = true; if (isset($GLOBALS['smarty']) && !empty($sphinx->res['words']) && (count($sphinx->res['words']) > 1 || !$this->resultCount)) { $GLOBALS['smarty']->assign("statistics", $sphinx->res['words']); } if ($this->countOnly || !$this->resultCount) { return 0; } if ($sql_order == ' dist_sqd ') { $this->sphinx_matches = $sphinx->res['matches']; $sql_fields = ',-1 as dist_sqd'; } // fetch from database $id_list = implode(',', $ids); if ($this->noCache) { $sql = <<<END /* i{$this->query_id} */ SELECT gi.*,x,y,gs.grid_reference,gi.realname as credit_realname,if(gi.realname!='',gi.realname,user.realname) as realname {$sql_fields} FROM gridimage AS gi INNER JOIN gridsquare AS gs USING(gridsquare_id) \tINNER JOIN user ON(gi.user_id=user.user_id) WHERE gi.gridimage_id IN ({$id_list}) ORDER BY FIELD(gi.gridimage_id,{$id_list}) END; } else { $sql = "/* i{$this->query_id} */ SELECT gi.* {$sql_fields} FROM gridimage_search as gi WHERE gridimage_id IN ({$id_list}) ORDER BY FIELD(gi.gridimage_id,{$id_list})"; } if (!empty($_GET['debug'])) { print "<BR><BR>{$sphinx->q}<BR><BR>{$sql}"; } list($usec, $sec) = explode(' ', microtime()); $querytime_before = (double) $usec + (double) $sec; $recordSet =& $db->Execute($sql); list($usec, $sec) = explode(' ', microtime()); $querytime_after = (double) $usec + (double) $sec; if ($this->display == 'excerpt') { $docs = array(); foreach ($ids as $c => $id) { $row = $rows[$id]; $docs[$c] = strip_tags(preg_replace('/<i>.*?<\\/i>/', ' ', $row['post_text'])); } $reply = $sphinx->BuildExcerpts($docs, empty($this->criteria->sphinx['exact']) ? 'gridimage' : 'gi_stemmmed', $sphinx->q); } $this->querytime = $querytime_after - $querytime_before + $sphinx->query_time; //finish off if (!empty($recordSet) && empty($_GET['BBOX']) && $this->display != 'reveal') { $db->Execute("replace into queries_count set id = {$this->query_id},`count` = {$this->resultCount}"); } return $recordSet; }