/xoops_trust_path/modules/d3forum/search.php
PHP | 101 lines | 70 code | 21 blank | 10 comment | 13 complexity | 43fa536ae8371869ae3f63459f6cec2e MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, AGPL-1.0
- <?php
- eval( '
- function '.$mydirname.'_global_search( $keywords , $andor , $limit , $offset , $userid )
- {
- return d3forum_global_search_base( "'.$mydirname.'" , $keywords , $andor , $limit , $offset , $userid ) ;
- }
- ' ) ;
- if( ! function_exists( 'd3forum_global_search_base' ) ) {
- function d3forum_global_search_base( $mydirname , $keywords , $andor , $limit , $offset , $userid )
- {
- $myts =& MyTextsanitizer::getInstance() ;
- $db =& Database::getInstance() ;
- $andor = strtoupper( $andor ) ;
- $userid = intval( $userid ) ;
- // naao from
- require_once dirname(__FILE__).'/include/main_functions.php' ;
- // get all forums
- $sql = "SELECT forum_id, forum_external_link_format FROM ".$db->prefix($mydirname."_forums") ;
- $frs = $db->query( $sql ) ;
- $d3com = array() ;
- while( $forum_row = $db->fetchArray( $frs ) ) {
- // d3comment object
- $temp_forum_id = intval($forum_row['forum_id']);
- if( ! empty( $forum_row['forum_external_link_format'] ) ) {
- $d3com[$temp_forum_id] =& d3forum_main_get_comment_object( $mydirname , $forum_row['forum_external_link_format'] ) ;
- } else {
- $d3com[$temp_forum_id] = false ;
- }
- }
- // naao to
- // XOOPS Search module
- $showcontext = empty( $_GET['showcontext'] ) ? 0 : 1 ;
- $select4con = $showcontext ? "p.post_text" : "'' AS post_text" ;
- require_once dirname(__FILE__).'/include/common_functions.php' ;
- $whr_forum = "t.forum_id IN (".implode(",",d3forum_get_forums_can_read( $mydirname )).")" ;
- $whr_uid = $userid > 0 ? "p.uid=$userid" : "1" ;
- $whr_query = $andor == 'OR' ? '0' : '1' ;
- if( is_array( $keywords ) ) foreach( $keywords as $word ) {
- // I know this is not a right escaping, but I can't believe $keywords :-)
- $word4sql = addslashes( stripslashes( $word ) ) ;
- $whr_query .= $andor == 'EXACT' ? ' AND' : ' '.$andor ;
- $whr_query .= " (p.subject LIKE '%$word4sql%' OR p.post_text LIKE '%$word4sql%')" ;
- }
- //$sql = "SELECT p.post_id,p.topic_id,p.post_time,p.uid,p.subject,p.html,p.smiley,p.xcode,p.br,$select4con FROM ".$db->prefix($mydirname."_posts")." p LEFT JOIN ".$db->prefix($mydirname."_topics")." t ON t.topic_id=p.topic_id WHERE ($whr_forum) AND ($whr_uid) AND ($whr_query) AND ! topic_invisible ORDER BY p.post_time DESC" ;
-
- //naao
- $sql = "SELECT p.post_id,p.topic_id,p.post_time,p.uid,p.subject,p.html,p.smiley,p.xcode,p.br,$select4con,t.topic_external_link_id,f.forum_id FROM ".$db->prefix($mydirname."_posts")." p LEFT JOIN ".$db->prefix($mydirname."_topics")." t ON t.topic_id=p.topic_id LEFT JOIN ".$db->prefix($mydirname."_forums")." f ON t.forum_id = f.forum_id WHERE ($whr_forum) AND ($whr_uid) AND ($whr_query) AND ! topic_invisible ORDER BY p.post_time DESC" ;
- $result = $db->query( $sql , $limit , $offset ) ;
- $ret = array() ;
- $context = '' ;
- while( list( $post_id , $topic_id , $post_time , $uid , $subject , $html , $smiley , $xcode , $br , $text , $external_link_id, $forum_id ) = $db->fetchRow( $result ) ) {
- // get context for module "search"
- if( function_exists( 'search_make_context' ) && $showcontext ) {
- if( function_exists( 'easiestml' ) ) $text = easiestml( $text ) ;
- $full_context = strip_tags( $myts->displayTarea( $text , $html , $smiley , $xcode , 1 , $br ) ) ;
- $context = search_make_context( $full_context , $keywords ) ;
- }
- // naao from
- $can_display = true; //default
- if( is_object( $d3com[intval($forum_id)]) ) {
- $d3com_obj = $d3com[intval($forum_id)];
- if( ( $external_link_id = $d3com_obj->validate_id( $external_link_id ) ) === false ) {
- $can_display = false;
- }
- }
- if ($can_display == true) {
- $ret[] = array(
- 'link' => "index.php?post_id=$post_id" ,
- 'title' => htmlspecialchars( $subject, ENT_QUOTES ) ,
- 'time' => $post_time ,
- 'uid' => $uid ,
- 'context' => $context ,
- ) ;
- } // naao to
- }
- return $ret;
- }
- }
- ?>