0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
lib
/
plugin
/
[
Home
]
File: SearchHighlight.php
<?php // -*-php-*- rcs_id('$Id: SearchHighlight.php,v 1.3 2007/01/21 13:20:08 rurban Exp $'); /* Copyright 2004,2007 $ThePhpWikiProgrammingTeam This file is NOT part of PhpWiki. PhpWiki is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. PhpWiki is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PhpWiki; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ require_once("lib/TextSearchQuery.php"); require_once("lib/PageList.php"); /** * When someone is referred from a search engine like Google, Yahoo * or our own fulltextsearch, the terms they search for are highlighted. * See http://wordpress.org/about/shots/1.2/plugins.png * * This plugin is normally just used to print a header through an action page. * The highlighting is done through InlineParser automatically if ENABLE_SEARCHHIGHLIGHT is enabled. * If hits = 1, then the list of found terms is also printed. */ class WikiPlugin_SearchHighlight extends WikiPlugin { function getName() { return _("SearchHighlight"); } function getDescription() { return _("Hilight referred search terms."); } function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision: 1.3 $"); } function getDefaultArguments() { // s, engine and engine_url are picked from the request return array('noheader' => false, //don't print the header 'hits' => false, //print the list of lines with lines terms additionally 's' => false, 'case_exact' => false, //not yet supported 'regex' => false, //not yet supported ); } function run($dbi, $argstr, &$request, $basepage) { $args = $this->getArgs($argstr, $request); if (empty($args['s']) and isset($request->_searchhighlight)) { $args['s'] = $request->_searchhighlight['query']; } if (empty($args['s'])) return ''; extract($args); $html = HTML(); if (!$noheader and isset($request->_searchhighlight)) { $engine = $request->_searchhighlight['engine']; $html->pushContent(HTML::div(array('class' => 'search-context'), fmt("%s: Found %s through %s", $basepage, $request->_searchhighlight['query'], $engine))); } if ($hits) { $query = new TextSearchQuery($s, $case_exact, $regex); $lines = array(); $hilight_re = $query->getHighlightRegexp(); $page = $request->getPage(); $html->pushContent($this->showhits($page, $hilight_re)); } return $html; } function showhits($page, $hilight_re) { $current = $page->getCurrentRevision(); $matches = preg_grep("/$hilight_re/i", $current->getContent()); $html = HTML::dl(); foreach ($matches as $line) { $line = $this->highlight_line($line, $hilight_re); $html->pushContent(HTML::dd(array('class' => 'search-context'), HTML::small($line))); } return $html; } function highlight_line ($line, $hilight_re) { $html = HTML(); while (preg_match("/^(.*?)($hilight_re)/i", $line, $m)) { $line = substr($line, strlen($m[0])); // prematch + match $html->pushContent($m[1], HTML::strong(array('class' => 'search-term'), $m[2])); } $html->pushContent($line); // postmatch return $html; } }; // $Log: SearchHighlight.php,v $ // Revision 1.3 2007/01/21 13:20:08 rurban // Fix hits display // // Revision 1.2 2007/01/20 15:53:51 rurban // Rewrite of SearchHighlight: through ActionPage and InlineParser // // Revision 1.1 2004/09/26 14:58:36 rurban // naive SearchHighLight implementation // // // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>