From e01b7a76cbac694ac9588f217d28b0a43d333375 Mon Sep 17 00:00:00 2001 From: tux Date: Sat, 12 Dec 2009 11:03:47 +0100 Subject: [PATCH] Initial import. --- com_mnogosearch/admin/config.xml | 13 ++ com_mnogosearch/admin/controller.php | 45 ++++ com_mnogosearch/admin/helpers/index.html | 1 + com_mnogosearch/admin/helpers/mnogosearch.php | 204 +++++++++++++++++ com_mnogosearch/admin/helpers/site.php | 38 ++++ com_mnogosearch/admin/index.html | 1 + com_mnogosearch/admin/mnogosearch.php | 21 ++ com_mnogosearch/admin/models/index.html | 1 + com_mnogosearch/admin/models/mnogosearch.php | 121 ++++++++++ com_mnogosearch/admin/search.php | 21 ++ com_mnogosearch/admin/views/index.html | 1 + com_mnogosearch/admin/views/search/index.html | 1 + .../admin/views/search/tmpl/default.php | 89 ++++++++ .../admin/views/search/tmpl/index.html | 1 + com_mnogosearch/admin/views/search/view.php | 63 ++++++ com_mnogosearch/mnogosearch.xml | 12 + com_mnogosearch/site/controller.php | 86 +++++++ com_mnogosearch/site/index.html | 1 + com_mnogosearch/site/mnogosearch.php | 27 +++ com_mnogosearch/site/models/index.html | 1 + com_mnogosearch/site/models/mnogosearch.php | 214 ++++++++++++++++++ com_mnogosearch/site/router.php | 53 +++++ com_mnogosearch/site/views/index.html | 1 + com_mnogosearch/site/views/search/index.html | 1 + .../site/views/search/metadata.xml | 6 + .../site/views/search/tmpl/default.php | 14 ++ .../site/views/search/tmpl/default.xml | 22 ++ .../site/views/search/tmpl/default_error.php | 9 + .../site/views/search/tmpl/default_form.php | 76 +++++++ .../views/search/tmpl/default_results.php | 53 +++++ .../site/views/search/tmpl/index.html | 1 + .../site/views/search/view.html.php | 177 +++++++++++++++ mod_mnogosearch/helper.php | 22 ++ mod_mnogosearch/index.html | 1 + mod_mnogosearch/mod_mnogosearch.xml | 46 ++++ mod_mnogosearch/mod_mnosearch.php | 34 +++ mod_mnogosearch/tmpl/default.php | 44 ++++ mod_mnogosearch/tmpl/index.html | 1 + 38 files changed, 1523 insertions(+) create mode 100644 com_mnogosearch/admin/config.xml create mode 100644 com_mnogosearch/admin/controller.php create mode 100644 com_mnogosearch/admin/helpers/index.html create mode 100644 com_mnogosearch/admin/helpers/mnogosearch.php create mode 100644 com_mnogosearch/admin/helpers/site.php create mode 100644 com_mnogosearch/admin/index.html create mode 100644 com_mnogosearch/admin/mnogosearch.php create mode 100644 com_mnogosearch/admin/models/index.html create mode 100644 com_mnogosearch/admin/models/mnogosearch.php create mode 100644 com_mnogosearch/admin/search.php create mode 100644 com_mnogosearch/admin/views/index.html create mode 100644 com_mnogosearch/admin/views/search/index.html create mode 100644 com_mnogosearch/admin/views/search/tmpl/default.php create mode 100644 com_mnogosearch/admin/views/search/tmpl/index.html create mode 100644 com_mnogosearch/admin/views/search/view.php create mode 100644 com_mnogosearch/mnogosearch.xml create mode 100644 com_mnogosearch/site/controller.php create mode 100644 com_mnogosearch/site/index.html create mode 100644 com_mnogosearch/site/mnogosearch.php create mode 100644 com_mnogosearch/site/models/index.html create mode 100644 com_mnogosearch/site/models/mnogosearch.php create mode 100644 com_mnogosearch/site/router.php create mode 100644 com_mnogosearch/site/views/index.html create mode 100644 com_mnogosearch/site/views/search/index.html create mode 100644 com_mnogosearch/site/views/search/metadata.xml create mode 100644 com_mnogosearch/site/views/search/tmpl/default.php create mode 100644 com_mnogosearch/site/views/search/tmpl/default.xml create mode 100644 com_mnogosearch/site/views/search/tmpl/default_error.php create mode 100644 com_mnogosearch/site/views/search/tmpl/default_form.php create mode 100644 com_mnogosearch/site/views/search/tmpl/default_results.php create mode 100644 com_mnogosearch/site/views/search/tmpl/index.html create mode 100644 com_mnogosearch/site/views/search/view.html.php create mode 100644 mod_mnogosearch/helper.php create mode 100644 mod_mnogosearch/index.html create mode 100644 mod_mnogosearch/mod_mnogosearch.xml create mode 100644 mod_mnogosearch/mod_mnosearch.php create mode 100644 mod_mnogosearch/tmpl/default.php create mode 100644 mod_mnogosearch/tmpl/index.html diff --git a/com_mnogosearch/admin/config.xml b/com_mnogosearch/admin/config.xml new file mode 100644 index 0000000..c98eba5 --- /dev/null +++ b/com_mnogosearch/admin/config.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/com_mnogosearch/admin/controller.php b/com_mnogosearch/admin/controller.php new file mode 100644 index 0000000..c684b0d --- /dev/null +++ b/com_mnogosearch/admin/controller.php @@ -0,0 +1,45 @@ +getModel( 'Search' ); + $view =& $this->getView( 'Search' ); + $view->setModel( $model, true ); + $view->display(); + } + + /** + * Reset Statistics + */ + function reset() + { + $model =& $this->getModel( 'Search' ); + $model->reset(); + $this->setRedirect('index.php?option=com_mnogosearch'); + } +} diff --git a/com_mnogosearch/admin/helpers/index.html b/com_mnogosearch/admin/helpers/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/admin/helpers/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/helpers/mnogosearch.php b/com_mnogosearch/admin/helpers/mnogosearch.php new file mode 100644 index 0000000..b2b5cdf --- /dev/null +++ b/com_mnogosearch/admin/helpers/mnogosearch.php @@ -0,0 +1,204 @@ +getTag(); + $ignoreFile = $lang->getLanguagePath().DS.$tag.DS.$tag.'.ignore.php'; + if (file_exists($ignoreFile)) { + include $ignoreFile; + } + + // check for words to ignore + $aterms = explode( ' ', JString::strtolower( $searchword ) ); + + // first case is single ignored word + if ( count( $aterms ) == 1 && in_array( JString::strtolower( $searchword ), $search_ignore ) ) { + $ignored = true; + } + + // filter out search terms that are too small + foreach( $aterms AS $aterm ) { + if (JString::strlen( $aterm ) < 3) { + $search_ignore[] = $aterm; + } + } + + // next is to remove ignored words from type 'all' or 'any' (not exact) searches with multiple words + if ( count( $aterms ) > 1 && $searchphrase != 'exact' ) { + $pruned = array_diff( $aterms, $search_ignore ); + $searchword = implode( ' ', $pruned ); + } + + return $ignored; + } + + function limitSearchWord(&$searchword) + { + $restriction = false; + + // limit searchword to 20 characters + if ( JString::strlen( $searchword ) > 20 ) { + $searchword = JString::substr( $searchword, 0, 19 ); + $restriction = true; + } + + // searchword must contain a minimum of 3 characters + if ( $searchword && JString::strlen( $searchword ) < 3 ) { + $searchword = ''; + $restriction = true; + } + + return $restriction; + } + + function logSearch( $search_term ) + { + global $mainframe; + + $db =& JFactory::getDBO(); + + $params = &JComponentHelper::getParams( 'com_search' ); + $enable_log_searches = $params->get('enabled'); + + $search_term = $db->getEscaped( trim( $search_term) ); + + if ( @$enable_log_searches ) + { + $db =& JFactory::getDBO(); + $query = 'SELECT hits' + . ' FROM #__core_log_searches' + . ' WHERE LOWER( search_term ) = "'.$search_term.'"' + ; + $db->setQuery( $query ); + $hits = intval( $db->loadResult() ); + if ( $hits ) { + $query = 'UPDATE #__core_log_searches' + . ' SET hits = ( hits + 1 )' + . ' WHERE LOWER( search_term ) = "'.$search_term.'"' + ; + $db->setQuery( $query ); + $db->query(); + } else { + $query = 'INSERT INTO #__core_log_searches VALUES ( "'.$search_term.'", 1 )'; + $db->setQuery( $query ); + $db->query(); + } + } + } + + /** + * Prepares results from search for display + * + * @param string The source string + * @param int Number of chars to trim + * @param string The searchword to select around + * @return string + */ + function prepareSearchContent( $text, $length = 200, $searchword ) + { + // strips tags won't remove the actual jscript + $text = preg_replace( "']*>.*?'si", "", $text ); + $text = preg_replace( '/{.+?}/', '', $text); + //$text = preg_replace( '/]*>([^<]+)<\/a>/is','\2', $text ); + // replace line breaking tags with whitespace + $text = preg_replace( "'<(br[^/>]*?/|hr[^/>]*?/|/(div|h[1-6]|li|p|td))>'si", ' ', $text ); + + return SearchHelper::_smartSubstr( strip_tags( $text ), $length, $searchword ); + } + + /** + * Checks an object for search terms (after stripping fields of HTML) + * + * @param object The object to check + * @param string Search words to check for + * @param array List of object variables to check against + * @returns boolean True if searchTerm is in object, false otherwise + */ + function checkNoHtml($object, $searchTerm, $fields) { + $searchRegex = array( + '#]*>.*?#si', + '#]*>.*?#si', + '##si', + '#<[^>]*>#i' + ); + $terms = explode(' ', $searchTerm); + if(empty($fields)) return false; + foreach($fields AS $field) { + if(!isset($object->$field)) continue; + $text = $object->$field; + foreach($searchRegex As $regex) { + $text = preg_replace($regex, '', $text); + } + foreach($terms AS $term) { + if(JString::stristr($text, $term) !== false) { + return true; + } + } + } + return false; + } + + /** + * returns substring of characters around a searchword + * + * @param string The source string + * @param int Number of chars to return + * @param string The searchword to select around + * @return string + */ + function _smartSubstr($text, $length = 200, $searchword) + { + $textlen = JString::strlen($text); + $lsearchword = JString::strtolower($searchword); + $wordfound = false; + $pos = 0; + while ($wordfound === false && $pos < $textlen) { + if (($wordpos = @JString::strpos($text, ' ', $pos + $length)) !== false) { + $chunk_size = $wordpos - $pos; + } else { + $chunk_size = $length; + } + $chunk = JString::substr($text, $pos, $chunk_size); + $wordfound = JString::strpos(JString::strtolower($chunk), $lsearchword); + if ($wordfound === false) { + $pos += $chunk_size + 1; + } + } + + if ($wordfound !== false) { + return (($pos > 0) ? '... ' : '') . $chunk . ' ...'; + } else { + if (($wordpos = @JString::strpos($text, ' ', $length)) !== false) { + return JString::substr($text, 0, $wordpos) . ' ...'; + } else { + return JString::substr($text, 0, $length); + } + } + } +} diff --git a/com_mnogosearch/admin/helpers/site.php b/com_mnogosearch/admin/helpers/site.php new file mode 100644 index 0000000..6368a03 --- /dev/null +++ b/com_mnogosearch/admin/helpers/site.php @@ -0,0 +1,38 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/mnogosearch.php b/com_mnogosearch/admin/mnogosearch.php new file mode 100644 index 0000000..4c507a4 --- /dev/null +++ b/com_mnogosearch/admin/mnogosearch.php @@ -0,0 +1,21 @@ +execute( JRequest::getCmd( 'task' ) ); +$controller->redirect(); diff --git a/com_mnogosearch/admin/models/index.html b/com_mnogosearch/admin/models/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/admin/models/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/models/mnogosearch.php b/com_mnogosearch/admin/models/mnogosearch.php new file mode 100644 index 0000000..c22bc10 --- /dev/null +++ b/com_mnogosearch/admin/models/mnogosearch.php @@ -0,0 +1,121 @@ +setQuery( 'DELETE FROM #__mnogosearch_log_searches' ); + $db->query(); + } + + function getItems( ) + { + global $mainframe, $option; + $db =& JFactory::getDBO(); + + $filter_order = $mainframe->getUserStateFromRequest( 'com_mnogosearch.filter_order', 'filter_order', 'hits', 'cmd' ); + $filter_order_Dir = $mainframe->getUserStateFromRequest( 'com_mnogosearch.filter_order_Dir', 'filter_order_Dir', '', 'word' ); + $limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' ); + $limitstart = $mainframe->getUserStateFromRequest( 'com_mnogosearch.limitstart', 'limitstart', 0, 'int' ); + $search = $mainframe->getUserStateFromRequest( 'com_mnogosearch.search', 'search', '', 'string' ); + $search = JString::strtolower( $search ); + $showResults = JRequest::getInt('search_results'); + + // table ordering + if ( $filter_order_Dir == 'ASC' ) { + $this->lists['order_Dir'] = 'ASC'; + } else { + $this->lists['order_Dir'] = 'DESC'; + } + $this->lists['order'] = $filter_order; + + // search filter + $this->lists['search']= $search; + + $where = array(); + if ($search) { + $where[] = 'LOWER( search_term ) LIKE '.$db->Quote( '%'.$db->getEscaped( $search, true ).'%', false ); + } + + $where = ( count( $where ) ? ' WHERE ' . implode( ' AND ', $where ) : '' ); + $orderby = ' ORDER BY '. $filter_order .' '. $filter_order_Dir .', hits DESC'; + + // get the total number of records + $query = 'SELECT COUNT(*)' + . ' FROM #__mnogosearch_log_searches' + . $where; + $db->setQuery( $query ); + $total = $db->loadResult(); + + jimport( 'joomla.html.pagination' ); + $pageNav = new JPagination( $total, $limitstart, $limit ); + + $query = ' SELECT * ' + . ' FROM #__mnogosearch_log_searches ' + . $where + . $orderby; + $db->setQuery( $query, $pageNav->limitstart, $pageNav->limit ); + + $rows = $db->loadObjectList(); + + JPluginHelper::importPlugin( 'search' ); + + if (!class_exists( 'JSite' )) + { + // This fools the routers in the search plugins into thinking it's in the frontend + require_once( JPATH_COMPONENT.DS.'helpers'.DS.'site.php' ); + } + + for ($i=0, $n = count($rows); $i < $n; $i++) { + // determine if number of results for search item should be calculated + // by default it is `off` as it is highly query intensive + if ( $showResults ) { + $results = $mainframe->triggerEvent( 'onSearch', array( $rows[$i]->search_term ) ); + + $count = 0; + for ($j = 0, $n2 = count( $results ); $j < $n2; $j++) { + $count += count( $results[$j] ); + } + + $rows[$i]->returns = $count; + } else { + $rows[$i]->returns = null; + } + } + + return $rows; + } +} diff --git a/com_mnogosearch/admin/search.php b/com_mnogosearch/admin/search.php new file mode 100644 index 0000000..4c507a4 --- /dev/null +++ b/com_mnogosearch/admin/search.php @@ -0,0 +1,21 @@ +execute( JRequest::getCmd( 'task' ) ); +$controller->redirect(); diff --git a/com_mnogosearch/admin/views/index.html b/com_mnogosearch/admin/views/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/admin/views/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/views/search/index.html b/com_mnogosearch/admin/views/search/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/admin/views/search/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/views/search/tmpl/default.php b/com_mnogosearch/admin/views/search/tmpl/default.php new file mode 100644 index 0000000..cb86877 --- /dev/null +++ b/com_mnogosearch/admin/views/search/tmpl/default.php @@ -0,0 +1,89 @@ + + +
+ + + + + + +
+ : + + + + + : + enabled ? ''. JText::_( 'Enabled' ) .'' : ''. JText::_( 'Disabled' ) .'' ?> + + + showResults ) : ?> + + + + +
+ +
+ + + + + + + showResults ) : ?> + + + + + + + + + + + items); $i < $n; $i++) { + $row =& $this->items[$i]; + ?> + + + + + showResults ) : ?> + + + + + +
+ + + lists['order_Dir'], @$this->lists['order'] ); ?> + + lists['order_Dir'], @$this->lists['order'] ); ?> + + +
+ pageNav->getListFooter(); ?> +
+ pageNav->limitstart; ?> + + search_term, ENT_QUOTES, 'UTF-8'); ?> + + hits; ?> + + returns; ?> +
+
+ + + + + +
diff --git a/com_mnogosearch/admin/views/search/tmpl/index.html b/com_mnogosearch/admin/views/search/tmpl/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/admin/views/search/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/admin/views/search/view.php b/com_mnogosearch/admin/views/search/view.php new file mode 100644 index 0000000..223b68b --- /dev/null +++ b/com_mnogosearch/admin/views/search/view.php @@ -0,0 +1,63 @@ +setTitle(JText::_('Search Statistics')); + + $limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' ); + $limitstart = $mainframe->getUserStateFromRequest( 'com_mnogosearch.limitstart', 'limitstart', 0, 'int' ); + + $model = $this->getModel(); + $items = $model->getItems(); + $params = &JComponentHelper::getParams( 'com_mnogosearch' ); + $enabled = $params->get('enabled'); + JHTML::_('behavior.tooltip'); + jimport('joomla.html.pagination'); + $pageNav = new JPagination( count($items), $limitstart, $limit ); + + $showResults = JRequest::getInt('search_results'); + + $search = $mainframe->getUserStateFromRequest( 'com_mnosearch.search', 'search', '', 'string' ); + + $this->assignRef('items', $items); + $this->assignRef('enabled', $enabled); + $this->assignRef('pageNav', $pageNav); + $this->assignRef('search', $search ); + $this->assignRef('lists', $model->lists ); + + $this->assignRef('showResults', $showResults); + + parent::display($tpl); + } +} diff --git a/com_mnogosearch/mnogosearch.xml b/com_mnogosearch/mnogosearch.xml new file mode 100644 index 0000000..1d3a211 --- /dev/null +++ b/com_mnogosearch/mnogosearch.xml @@ -0,0 +1,12 @@ + + + mnoGoSearch + Andrea Zagli + December 2009 + Copyright (C) 2009 Andrea Zagli. All rights reserved. + http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL + azagli@libero.it + http://saetta.homelinux.org/ + 1.0.0 + A component to display search results from mnoGoSearch web search engine. + diff --git a/com_mnogosearch/site/controller.php b/com_mnogosearch/site/controller.php new file mode 100644 index 0000000..e2de408 --- /dev/null +++ b/com_mnogosearch/site/controller.php @@ -0,0 +1,86 @@ + get stripped anyway later on. # causes problems. + $badchars = array('#','>','<','\\'); + $searchword = trim(str_replace($badchars, '', JRequest::getString('searchword', null, 'post'))); + // if searchword enclosed in double quotes, strip quotes and do exact match + if (substr($searchword,0,1) == '"' && substr($searchword, -1) == '"') { + $post['searchword'] = substr($searchword,1,-1); + JRequest::setVar('searchphrase', 'exact'); + } + else { + $post['searchword'] = $searchword; + } + $post['ordering'] = JRequest::getWord('ordering', null, 'post'); + $post['searchphrase'] = JRequest::getWord('searchphrase', 'all', 'post'); + $post['limit'] = JRequest::getInt('limit', null, 'post'); + if($post['limit'] === null) unset($post['limit']); + + $areas = JRequest::getVar('areas', null, 'post', 'array'); + if ($areas) { + foreach($areas as $area) + { + $post['areas'][] = JFilterInput::clean($area, 'cmd'); + } + } + + // set Itemid id for links from menu + $menu = &JSite::getMenu(); + $items = $menu->getItems('link', 'index.php?option=com_mnogosearch&view=search'); + + if(isset($items[0])) { + $post['Itemid'] = $items[0]->id; + } else if (JRequest::getInt('Itemid') > 0) { //use Itemid from requesting page only if there is no existing menu + $post['Itemid'] = JRequest::getInt('Itemid'); + } + + unset($post['task']); + unset($post['submit']); + + $uri = JURI::getInstance(); + $uri->setQuery($post); + $uri->setVar('option', 'com_mnogosearch'); + + + $this->setRedirect(JRoute::_('index.php'.$uri->toString(array('query', 'fragment')), false)); + } +} diff --git a/com_mnogosearch/site/index.html b/com_mnogosearch/site/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/site/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/site/mnogosearch.php b/com_mnogosearch/site/mnogosearch.php new file mode 100644 index 0000000..d7541fb --- /dev/null +++ b/com_mnogosearch/site/mnogosearch.php @@ -0,0 +1,27 @@ +execute(JRequest::getCmd('task')); + +// Redirect if set by the controller +$controller->redirect(); diff --git a/com_mnogosearch/site/models/index.html b/com_mnogosearch/site/models/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/site/models/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/site/models/mnogosearch.php b/com_mnogosearch/site/models/mnogosearch.php new file mode 100644 index 0000000..a29b56e --- /dev/null +++ b/com_mnogosearch/site/models/mnogosearch.php @@ -0,0 +1,214 @@ +setState('limit', $mainframe->getUserStateFromRequest('com_mnogosearch.limit', 'limit', $config->getValue('config.list_limit'), 'int')); + $this->setState('limitstart', JRequest::getVar('limitstart', 0, '', 'int')); + + // Set the search parameters + $keyword = urldecode(JRequest::getString('searchword')); + $match = JRequest::getWord('searchphrase', 'all'); + $ordering = JRequest::getWord('ordering', 'newest'); + $this->setSearch($keyword, $match, $ordering); + + //Set the search areas + $areas = JRequest::getVar('areas'); + $this->setAreas($areas); + } + + /** + * Method to set the search parameters + * + * @access public + * @param string search string + * @param string mathcing option, exact|any|all + * @param string ordering option, newest|oldest|popular|alpha|category + */ + function setSearch($keyword, $match = 'all', $ordering = 'newest') + { + if(isset($keyword)) { + $this->setState('keyword', $keyword); + } + + if(isset($match)) { + $this->setState('match', $match); + } + + if(isset($ordering)) { + $this->setState('ordering', $ordering); + } + } + + /** + * Method to set the search areas + * + * @access public + * @param array Active areas + * @param array Search areas + */ + function setAreas($active = array(), $search = array()) + { + $this->_areas['active'] = $active; + $this->_areas['search'] = $search; + } + + /** + * Method to get weblink item data for the category + * + * @access public + * @return array + */ + function getData() + { + // Lets load the content if it doesn't already exist + if (empty($this->_data)) + { + $areas = $this->getAreas(); + + 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 = count($rows); + if($this->getState('limit') > 0) { + $this->_data = array_splice($rows, $this->getState('limitstart'), $this->getState('limit')); + } else { + $this->_data = $rows; + } + } + + return $this->_data; + } + + /** + * Method to get the total number of weblink items for the category + * + * @access public + * @return integer + */ + function getTotal() + { + return $this->_total; + } + + /** + * Method to get a pagination object of the weblink items for the category + * + * @access public + * @return integer + */ + function getPagination() + { + // Lets load the content if it doesn't already exist + if (empty($this->_pagination)) + { + jimport('joomla.html.pagination'); + $this->_pagination = new JPagination( $this->getTotal(), $this->getState('limitstart'), $this->getState('limit') ); + } + + return $this->_pagination; + } + + /** + * Method to get the search areas + * + * @since 1.5 + */ + function getAreas() + { + global $mainframe; + + // Load the Category data + if (empty($this->_areas['search'])) + { + $areas = array(); + + JPluginHelper::importPlugin( 'search'); + $dispatcher =& JDispatcher::getInstance(); + $searchareas = $dispatcher->trigger( 'onSearchAreas' ); + + foreach ($searchareas as $area) { + $areas = array_merge( $areas, $area ); + } + + $this->_areas['search'] = $areas; + } + + return $this->_areas; + } +} diff --git a/com_mnogosearch/site/router.php b/com_mnogosearch/site/router.php new file mode 100644 index 0000000..aed9b53 --- /dev/null +++ b/com_mnogosearch/site/router.php @@ -0,0 +1,53 @@ +getCfg('sef')) && ($app->getCfg('sef_rewrite')) && !($app->getCfg('sef_suffix'))) { + $segments[] .= '/'; + } + + if (isset($query['view'])) { + unset($query['view']); + } + return $segments; +} + +/** + * @param array + * @return array + */ +function SearchParseRoute( $segments ) +{ + $vars = array(); + + $searchword = array_shift($segments); + $vars['searchword'] = $searchword; + $vars['view'] = 'search'; + + return $vars; +} \ No newline at end of file diff --git a/com_mnogosearch/site/views/index.html b/com_mnogosearch/site/views/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/site/views/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/site/views/search/index.html b/com_mnogosearch/site/views/search/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/site/views/search/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/site/views/search/metadata.xml b/com_mnogosearch/site/views/search/metadata.xml new file mode 100644 index 0000000..1d0748d --- /dev/null +++ b/com_mnogosearch/site/views/search/metadata.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/com_mnogosearch/site/views/search/tmpl/default.php b/com_mnogosearch/site/views/search/tmpl/default.php new file mode 100644 index 0000000..94f3b1b --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/default.php @@ -0,0 +1,14 @@ + + +params->get( 'show_page_title', 1 ) ) : ?> +
+ params->get( 'page_title' ); ?> +
+ + +loadTemplate('form'); ?> +error && count($this->results) > 0) : + echo $this->loadTemplate('results'); +else : + echo $this->loadTemplate('error'); +endif; ?> diff --git a/com_mnogosearch/site/views/search/tmpl/default.xml b/com_mnogosearch/site/views/search/tmpl/default.xml new file mode 100644 index 0000000..372f1e2 --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/default.xml @@ -0,0 +1,22 @@ + + + + + + + + + Search + STANDARD SEARCH LAYOUT DESC + + + + + + + + + + + + \ No newline at end of file diff --git a/com_mnogosearch/site/views/search/tmpl/default_error.php b/com_mnogosearch/site/views/search/tmpl/default_error.php new file mode 100644 index 0000000..3f9cd4c --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/default_error.php @@ -0,0 +1,9 @@ + + + + + + +
+ escape($this->error); ?> +
diff --git a/com_mnogosearch/site/views/search/tmpl/default_form.php b/com_mnogosearch/site/views/search/tmpl/default_form.php new file mode 100644 index 0000000..9659ede --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/default_form.php @@ -0,0 +1,76 @@ + + +
+ + + + + + + + + + + + +
+ + + + + +
+ lists['searchphrase']; ?> +
+ + lists['ordering'];?> +
+ params->get( 'search_areas', 1 )) : ?> + : + searchareas['search'] as $val => $txt) : + $checked = is_array( $this->searchareas['active'] ) && in_array( $val, $this->searchareas['active'] ) ? 'checked="checked"' : ''; + ?> + /> + + + + + + + + + + + + +
+
+ '. $this->escape($this->searchword) .''; ?> +
+
+ result; ?> +
+ +
+total > 0) : ?> +
+
+ + pagination->getLimitBox( ); ?> +
+
+ pagination->getPagesCounter(); ?> +
+
+ + + +
diff --git a/com_mnogosearch/site/views/search/tmpl/default_results.php b/com_mnogosearch/site/views/search/tmpl/default_results.php new file mode 100644 index 0000000..7c9635c --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/default_results.php @@ -0,0 +1,53 @@ + + + + + + + + + +
+ results as $result ) : ?> +
+
+ + pagination->limitstart + $result->count.'. ';?> + + href ) : + if ($result->browsernav == 1 ) : ?> + + + + escape($result->title); + + if ( $result->href ) : ?> + + section ) : ?> +
+ + (escape($result->section); ?>) + + + +
+
+ text; ?> +
+ params->get( 'show_date' )) : ?> +
+ created; ?> +
+ +
+ +
+
+ pagination->getPagesLinks( ); ?> +
+
diff --git a/com_mnogosearch/site/views/search/tmpl/index.html b/com_mnogosearch/site/views/search/tmpl/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/com_mnogosearch/site/views/search/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/com_mnogosearch/site/views/search/view.html.php b/com_mnogosearch/site/views/search/view.html.php new file mode 100644 index 0000000..cb721c6 --- /dev/null +++ b/com_mnogosearch/site/views/search/view.html.php @@ -0,0 +1,177 @@ +getPathway(); + $uri =& JFactory::getURI(); + + $error = ''; + $rows = null; + $total = 0; + + // Get some data from the model + $areas = &$this->get('areas'); + $state = &$this->get('state'); + $searchword = $state->get('keyword'); + + $params = &$mainframe->getParams(); + + $menus = &JSite::getMenu(); + $menu = $menus->getActive(); + + // because the application sets a default page title, we need to get it + // right from the menu item itself + if (is_object( $menu )) { + $menu_params = new JParameter( $menu->params ); + if (!$menu_params->get( 'page_title')) { + $params->set('page_title', JText::_( 'Search' )); + } + } else { + $params->set('page_title', JText::_( 'Search' )); + } + + $document = &JFactory::getDocument(); + $document->setTitle( $params->get( 'page_title' ) ); + + // Get the parameters of the active menu item + $params = &$mainframe->getParams(); + + // built select lists + $orders = array(); + $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', 'category', JText::_( 'Section/Category' ) ); + + $lists = array(); + $lists['ordering'] = JHTML::_('select.genericlist', $orders, 'ordering', 'class="inputbox"', 'value', 'text', $state->get('ordering') ); + + $searchphrases = array(); + $searchphrases[] = JHTML::_('select.option', 'all', JText::_( 'All words' ) ); + $searchphrases[] = JHTML::_('select.option', 'any', JText::_( 'Any words' ) ); + $searchphrases[] = JHTML::_('select.option', 'exact', JText::_( 'Exact phrase' ) ); + $lists['searchphrase' ]= JHTML::_('select.radiolist', $searchphrases, 'searchphrase', '', 'value', 'text', $state->get('match') ); + + // log the search + SearchHelper::logSearch( $searchword); + + //limit searchword + + if(SearchHelper::limitSearchWord($searchword)) { + $error = JText::_( 'SEARCH_MESSAGE' ); + } + + //sanatise searchword + if(SearchHelper::santiseSearchWord($searchword, $state->get('match'))) { + $error = JText::_( 'IGNOREKEYWORD' ); + } + + if (!$searchword && count( JRequest::get('post') ) ) { + //$error = JText::_( 'Enter a search keyword' ); + } + + // put the filtered results back into the model + // for next release, the checks should be done in the model perhaps... + $state->set('keyword', $searchword); + + if(!$error) + { + $results = &$this->get('data' ); + $total = &$this->get('total'); + $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++) + { + $row = &$results[$i]->text; + + if ($state->get('match') == 'exact') + { + $searchwords = array($searchword); + $needle = $searchword; + } + else + { + $searchwords = preg_split("/\s+/u", $searchword); + $needle = $searchwords[0]; + } + + $row = SearchHelper::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, '\0', $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('lists', $lists); + $this->assignRef('params', $params); + + $this->assign('ordering', $state->get('ordering')); + $this->assign('searchword', $searchword); + $this->assign('searchphrase', $state->get('match')); + $this->assign('searchareas', $areas); + + $this->assign('total', $total); + $this->assign('error', $error); + $this->assign('action', $uri->toString()); + + parent::display($tpl); + } +} diff --git a/mod_mnogosearch/helper.php b/mod_mnogosearch/helper.php new file mode 100644 index 0000000..7a0c9f4 --- /dev/null +++ b/mod_mnogosearch/helper.php @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/mod_mnogosearch/mod_mnogosearch.xml b/mod_mnogosearch/mod_mnogosearch.xml new file mode 100644 index 0000000..6e8e479 --- /dev/null +++ b/mod_mnogosearch/mod_mnogosearch.xml @@ -0,0 +1,46 @@ + + + mnoGoSearch + Andrea Zagli + December 2009 + Copyright (C) 2000 Andrea Zagli. All rights reserved. + http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL + azagli@libero.it + http://saetta.homelinux.org/ + 1.0.0 + This module will display a search box that is linked with the mnoGoSearch web search engine. + + mod_mnogosearch.php + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mod_mnogosearch/mod_mnosearch.php b/mod_mnogosearch/mod_mnosearch.php new file mode 100644 index 0000000..d26d9b2 --- /dev/null +++ b/mod_mnogosearch/mod_mnosearch.php @@ -0,0 +1,34 @@ +get('button', ''); +$imagebutton = $params->get('imagebutton', ''); +$button_pos = $params->get('button_pos', 'left'); +$button_text = $params->get('button_text', JText::_('Search')); +$width = intval($params->get('width', 20)); +$maxlength = $width > 20 ? $width : 20; +$text = $params->get('text', JText::_('search...')); +$set_Itemid = intval($params->get('set_itemid', 0)); +$moduleclass_sfx = $params->get('moduleclass_sfx', ''); + +if ($imagebutton) { + $img = modMnoGoSearchHelper::getSearchImage( $button_text ); +} +$mitemid = $set_Itemid > 0 ? $set_Itemid : JRequest::getInt('Itemid'); +require(JModuleHelper::getLayoutPath('mod_mnogosearch')); diff --git a/mod_mnogosearch/tmpl/default.php b/mod_mnogosearch/tmpl/default.php new file mode 100644 index 0000000..12cc23a --- /dev/null +++ b/mod_mnogosearch/tmpl/default.php @@ -0,0 +1,44 @@ + +
+
+ '; + + if ($button) : + if ($imagebutton) : + $button = ''; + else : + $button = ''; + endif; + endif; + + switch ($button_pos) : + case 'top' : + $button = $button.'
'; + $output = $button.$output; + break; + + case 'bottom' : + $button = '
'.$button; + $output = $output.$button; + break; + + case 'right' : + $output = $output.$button; + break; + + case 'left' : + default : + $output = $button.$output; + break; + endswitch; + + echo $output; + ?> + + + + /> +
+
diff --git a/mod_mnogosearch/tmpl/index.html b/mod_mnogosearch/tmpl/index.html new file mode 100644 index 0000000..fa6d84e --- /dev/null +++ b/mod_mnogosearch/tmpl/index.html @@ -0,0 +1 @@ + \ No newline at end of file -- 2.49.0