// All rights reserved. This script is part of PHPWCMS. The PHPWCMS web content management system 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. The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html A copy is found in the textfile GPL.txt and important notices to the license from the author is found in LICENSE.txt distributed with these scripts. This script 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. This copyright notice MUST APPEAR in all copies of the script! *************************************************************************************/ // neccessary frontend functions for search function get_SearchForStructureID($search_at) { $k = array(); if(is_array($search_at) && count($search_at)) { if(in_array(0, $search_at)) { return $k; } $m = search_buildMenuPathStructure(); $m = explode(LF, $m); $m = array_unique($m); $m = array_diff($m, array('')); $k = $m; $d = implode(LF, $m); $c = 0; foreach($m as $key => $value) { preg_match_all('/'.trim($value).'/', $d, $match); if(count($match[0]) > 1) { unset($k[$key]); } $c++; } $_search_at_this = ''; foreach($search_at as $_search_start_ID) { foreach($k as $_search_path) { $_search_path = ' '.$_search_path.' '; $_this_pos = strpos($_search_path, ' '.$_search_start_ID.' '); if($_this_pos) { $_search_at_this .= ' '.trim(substr($_search_path, $_this_pos)); } } } if($_search_at_this) { $k = explode(' ', trim($_search_at_this)); $k = array_unique($k); } else { $k = array(); } } return $k; } function search_buildMenuPathStructure($start_id=0, $counter=0, $pre = '') { global $content; $li = ''; foreach($content['struct'] as $key => $value) { if($key && $content['struct'][$key]['acat_struct'] == $start_id && empty($content['struct'][$key]['acat_nosearch'])) { $g = $pre.$key.' ' ; $li .= $g; $li .= search_buildMenuPathStructure($key, $counter+1, LF.$g); } } return $li . LF; } class search_News { var $search_words = ''; var $search_word_count = 0; var $search_result_entry = 0; var $search_results = array(); var $search_highlight = false; var $search_highlight_words = false; var $search_wordlimit = 0; var $search_target_url = ''; var $now = 0; var $search_category = array(); var $search_language = array(); var $search_andor = 'OR'; var $ellipse_sign = '…'; function search() { $this->now = now(); if(empty($this->search_words)) { return NULL; } $cnt_ts_livedate = 'IF(UNIX_TIMESTAMP(pc.cnt_livedate) > 0, UNIX_TIMESTAMP(pc.cnt_livedate), pc.cnt_created)'; $cnt_ts_killdate = 'IF(UNIX_TIMESTAMP(pc.cnt_killdate) > 0, UNIX_TIMESTAMP(pc.cnt_killdate), pc.cnt_created + 31536000)'; $sql = 'SELECT pc.*, '; $sql .= $cnt_ts_livedate . ' AS cnt_ts_livedate, '; $sql .= $cnt_ts_killdate . ' AS cnt_ts_killdate '; $sql .= 'FROM '.DB_PREPEND.'phpwcms_content pc '; $sql_where = 'WHERE '; $sql_where .= 'pc.cnt_status=1 AND '; $sql_where .= "pc.cnt_module='news' AND "; $sql_where .= $cnt_ts_livedate . ' < ' . $this->now . ' AND '; $sql_where .= '(' . $cnt_ts_killdate . ' > ' . $this->now . ' OR cnt_archive_status = 1) '; $sql_group = ''; // choose by category if(count($this->search_category)) { if(empty($this->search_target_url)) { $this->search_target_url = 'index.php' . returnGlobalGET_QueryString('htmlentities', array(), array('newsdetail')); } else { $this->search_target_url = html_specialchars($this->search_target_url); } $cat_sql = array(); // and/or/not mode switch($this->search_andor) { case 'AND': $news_andor = ' AND '; $news_compare = '='; break; case 'NOT': $news_andor = ' AND '; $news_compare = '!='; break; default: //OR $news_andor = ' OR '; $news_compare = '='; } foreach($this->search_category as $value) { $cat_sql[] = 'pcat.cat_name' . $news_compare . "'" . aporeplace($value) . "'"; } $sql .= "LEFT JOIN ".DB_PREPEND."phpwcms_categories pcat ON (pcat.cat_type='news' AND pcat.cat_pid=pc.cnt_id) "; $sql_where .= 'AND (' . implode($news_andor, $cat_sql) . ') '; $sql_group = 'GROUP BY pc.cnt_id '; } // language selection if(count($this->search_language)) { $sql_where .= "AND pc.cnt_lang IN ('". str_replace('#', "','", aporeplace( implode('#', $this->search_language) ) ) . "') "; } $sql .= $sql_where; $sql .= $sql_group; $sql = trim($sql); $data = _dbQuery($sql); foreach($data as $value) { $s_result = array(); $s_text = $value['cnt_text'] . ', ' . $value['cnt_teasertext'] . ', ' . $value['cnt_place'] . ', '; $s_text .= $value['cnt_subtitle'] . ', ' . $value['cnt_editor'] . ', ' . $value['cnt_title']; $value['cnt_object'] = @unserialize($value['cnt_object']); if(isset($value['cnt_object']['cnt_category'])) { $s_text .= ' ' . $value['cnt_object']['cnt_category']; $s_text .= ' ' . $value['cnt_object']['cnt_image']['caption']; $s_text .= ' ' . $value['cnt_object']['cnt_files']['caption']; } $s_text = preg_replace('/]*>.*?<\/script>/is', '', $s_text); // strip all