*/
class JMnoGoSearchModelJMnoGoSearch extends JModel
{
+ var $_agent = null;
+
/**
- * Sezrch data array
+ * Search data array
*
* @var array
*/
/**
* Constructor
*
- * @since 1.5
+ * @since 1.0
*/
function __construct()
{
if (empty($this->_data))
{
/* TODO must be configurable */
- $agent = udm_alloc_agent ('pgsql://postgres:postgres@localhost/mnogosearch/?dbmode=single');
-
- $mResult = udm_find ($agent,'works');
-
- JPluginHelper::importPlugin( 'search');
- $dispatcher =& JDispatcher::getInstance();
- $results = $dispatcher->trigger( 'onSearch', array(
- $this->getState('keyword'),
- $this->getState('match'),
- $this->getState('ordering'),
- $areas['active']) );
-
- $rows = array();
- foreach($results AS $result) {
- $rows = array_merge( (array) $rows, (array) $result);
- }
-
- $this->_total = udm_get_res_param ($mResult, UDM_PARAM_FOUND);
- if($this->getState('limit') > 0) {
- $this->_data = array_splice($rows, $this->getState('limitstart'), $this->getState('limit'));
+ $this->_agent = udm_alloc_agent ('pgsql://postgres:postgres@localhost/mnogosearch/?dbmode=single');
+
+ $keyword = $this->getState('keyword');
+ if (trim($keyword) != '')
+ {
+ $mResult = udm_find ($this->_agent, $keyword);
+
+ $this->_total = udm_get_res_param ($mResult, UDM_PARAM_FOUND);
+ /*if ($this->getState('limit') > 0) {
+ $this->_data = array_splice($rows, $this->getState('limitstart'), $this->getState('limit'));
+ } else {
+ $this->_data = $rows;
+ }*/
+ $this->_data = $mResult;
} else {
- $this->_data = $rows;
+ $this->_total = 0;
+ $this->_data = null;
}
-
- udm_free_res ($mResult);
- udm_free_agent ($agent);
}
return $this->_data;
// built select lists
$orders = array();
+ $orders[] = JHTML::_('select.option', 'relevancy', JText::_( 'Relevancy' ) );
$orders[] = JHTML::_('select.option', 'newest', JText::_( 'Newest first' ) );
$orders[] = JHTML::_('select.option', 'oldest', JText::_( 'Oldest first' ) );
- $orders[] = JHTML::_('select.option', 'popular', JText::_( 'Most popular' ) );
- $orders[] = JHTML::_('select.option', 'alpha', JText::_( 'Alphabetical' ) );
+ $orders[] = JHTML::_('select.option', 'title', JText::_( 'Title' ) );
$lists = array();
$lists['ordering'] = JHTML::_('select.genericlist', $orders, 'ordering', 'class="inputbox"', 'value', 'text', $state->get('ordering') );
JMnoGoSearchHelper::logSearch($searchword);
//limit searchword
-
if (JMnoGoSearchHelper::limitSearchWord($searchword)) {
$error = JText::_( 'SEARCH_MESSAGE' );
}
// for next release, the checks should be done in the model perhaps...
$state->set('keyword', $searchword);
- if(!$error)
+ $results_to_show = null;
+ if (!$error)
{
+ $results_to_show = array ();
+
$results = &$this->get('data');
$total = &$this->get('total');
- $pagination = &$this->get('pagination');
+ //$pagination = &$this->get('pagination');
require_once (JPATH_SITE.DS.'components'.DS.'com_content'.DS.'helpers'.DS.'route.php');
- for ($i=0; $i < count($results); $i++)
+ if ($results != null)
{
- $row = &$results[$i]->text;
-
- if ($state->get('match') == 'exact')
+ $firstRow = udm_get_res_param ($results, UDM_PARAM_FIRST_DOC);
+ $lastRow = udm_get_res_param ($results, UDM_PARAM_LAST_DOC);
+ for ($i = $firstRow - 1; $i < $lastRow; $i++)
{
- $searchwords = array($searchword);
- $needle = $searchword;
+ $row = new stdClass();
+ $row->text = udm_get_res_field ($results, $i, UDM_FIELD_TEXT);
+
+ if ($state->get('match') == 'exact')
+ {
+ $searchwords = array($searchword);
+ $needle = $searchword;
+ }
+ else
+ {
+ $searchwords = preg_split("/\s+/u", $searchword);
+ $needle = $searchwords[0];
+ }
+
+ $row->text = JMnoGoSearchHelper::prepareSearchContent( $row->text, 200, $needle );
+ $searchwords = array_unique( $searchwords );
+ $searchRegex = '#(';
+ $x = 0;
+ foreach ($searchwords as $k => $hlword)
+ {
+ $searchRegex .= ($x == 0 ? '' : '|');
+ $searchRegex .= preg_quote($hlword, '#');
+ $x++;
+ }
+ $searchRegex .= ')#iu';
+
+ $row->text = preg_replace($searchRegex, '<span class="highlight">\0</span>', $row->text );
+ $row->href = udm_get_res_field ($results, $i, UDM_FIELD_URL);
+ $row->title = udm_get_res_field ($results, $i, UDM_FIELD_TITLE);
+ $row->created = udm_get_res_field ($results, $i, UDM_FIELD_MODIFIED);
+ $row->count = udm_get_res_field ($results, $i, UDM_FIELD_ORDER);
+
+ $results_to_show[] = $row;
}
- else
- {
- $searchwords = preg_split("/\s+/u", $searchword);
- $needle = $searchwords[0];
- }
-
- $row = JMnoGoSearchHelper::prepareSearchContent( $row, 200, $needle );
- $searchwords = array_unique( $searchwords );
- $searchRegex = '#(';
- $x = 0;
- foreach ($searchwords as $k => $hlword)
- {
- $searchRegex .= ($x == 0 ? '' : '|');
- $searchRegex .= preg_quote($hlword, '#');
- $x++;
- }
- $searchRegex .= ')#iu';
-
- $row = preg_replace($searchRegex, '<span class="highlight">\0</span>', $row );
-
- $result =& $results[$i];
- if ($result->created) {
- $created = JHTML::Date ( $result->created );
- }
- else {
- $created = '';
- }
-
- $result->created = $created;
- $result->count = $i + 1;
}
}
$this->result = JText::sprintf( 'TOTALRESULTSFOUND', $total );
$this->assignRef('pagination', $pagination);
- $this->assignRef('results', $results);
+ $this->assignRef('results', $results_to_show);
$this->assignRef('lists', $lists);
$this->assignRef('params', $params);