Zeile 11 | Zeile 11 |
---|
/** * Build a select box list of forums the current user has permission to search *
|
/** * Build a select box list of forums the current user has permission to search *
|
* @param int The parent forum ID to start at * @param int The selected forum ID * @param int Add select boxes at this call or not * @param int The current depth
| * @param int $pid The parent forum ID to start at * @param int $selitem The selected forum ID * @param int $addselect Add select boxes at this call or not * @param string $depth The current depth
|
* @return string The forum select boxes */
|
* @return string The forum select boxes */
|
function make_searchable_forums($pid="0", $selitem='', $addselect="1", $depth='')
| function make_searchable_forums($pid=0, $selitem=0, $addselect=1, $depth='')
|
{ global $db, $pforumcache, $permissioncache, $mybb, $selecteddone, $forumlist, $forumlistbits, $theme, $templates, $lang, $forumpass; $pid = (int)$pid;
| { global $db, $pforumcache, $permissioncache, $mybb, $selecteddone, $forumlist, $forumlistbits, $theme, $templates, $lang, $forumpass; $pid = (int)$pid;
|
Zeile 56 | Zeile 56 |
---|
} if($forum['password'] != '') {
|
} if($forum['password'] != '') {
|
if($mybb->cookies['forumpass'][$forum['fid']] == md5($mybb->user['uid'].$forum['password']))
| if($mybb->cookies['forumpass'][$forum['fid']] === md5($mybb->user['uid'].$forum['password']))
|
{ $pwverified = 1; }
| { $pwverified = 1; }
|
Zeile 88 | Zeile 88 |
---|
/** * Build a comma separated list of the forums this user cannot search *
|
/** * Build a comma separated list of the forums this user cannot search *
|
* @param int The parent ID to build from * @param int First rotation or not (leave at default) * @return return a CSV list of forums the user cannot search
| * @param int $pid The parent ID to build from * @param int $first First rotation or not (leave at default) * @return string return a CSV list of forums the user cannot search
|
*/
|
*/
|
function get_unsearchable_forums($pid="0", $first=1)
| function get_unsearchable_forums($pid=0, $first=1)
|
{ global $db, $forum_cache, $permissioncache, $mybb, $unsearchableforums, $unsearchable, $templates, $forumpass;
| { global $db, $forum_cache, $permissioncache, $mybb, $unsearchableforums, $unsearchable, $templates, $forumpass;
|
Zeile 125 | Zeile 125 |
---|
$pwverified = 1; if($forum['password'] != '') {
|
$pwverified = 1; if($forum['password'] != '') {
|
if($mybb->cookies['forumpass'][$forum['fid']] != md5($mybb->user['uid'].$forum['password']))
| if($mybb->cookies['forumpass'][$forum['fid']] !== md5($mybb->user['uid'].$forum['password']))
|
{ $pwverified = 0; }
| { $pwverified = 0; }
|
Zeile 173 | Zeile 173 |
---|
/** * Build a array list of the forums this user cannot search due to password protection *
|
/** * Build a array list of the forums this user cannot search due to password protection *
|
* @param int the fids to check (leave null to check all forums) * @return return a array list of password protected forums the user cannot search
| * @param array $fids the fids to check (leave blank to check all forums) * @return array return a array list of password protected forums the user cannot search
|
*/ function get_password_protected_forums($fids=array()) {
| */ function get_password_protected_forums($fids=array()) {
|
Zeile 207 | Zeile 207 |
---|
continue; }
|
continue; }
|
if(md5($mybb->user['uid'].$forum_cache[$fid]['password']) != $mybb->cookies['forumpass'][$fid])
| if(md5($mybb->user['uid'].$forum_cache[$fid]['password']) !== $mybb->cookies['forumpass'][$fid])
|
{ $pass_fids[] = $fid; $child_list = get_child_list($fid);
| { $pass_fids[] = $fid; $child_list = get_child_list($fid);
|
Zeile 224 | Zeile 224 |
---|
/** * Clean search keywords and make them safe for querying *
|
/** * Clean search keywords and make them safe for querying *
|
* @param string The keywords to be cleaned
| * @param string $keywords The keywords to be cleaned
|
* @return string The cleaned keywords */ function clean_keywords($keywords) {
|
* @return string The cleaned keywords */ function clean_keywords($keywords) {
|
| global $db;
|
$keywords = my_strtolower($keywords);
|
$keywords = my_strtolower($keywords);
|
$keywords = str_replace("%", "\\%", $keywords);
| $keywords = $db->escape_string_like($keywords);
|
$keywords = preg_replace("#\*{2,}#s", "*", $keywords); $keywords = str_replace("*", "%", $keywords);
|
$keywords = preg_replace("#\*{2,}#s", "*", $keywords); $keywords = str_replace("*", "%", $keywords);
|
$keywords = preg_replace("#([\[\]\|\.\,:'])#s", " ", $keywords);
| |
$keywords = preg_replace("#\s+#s", " ", $keywords);
|
$keywords = preg_replace("#\s+#s", " ", $keywords);
|
| $keywords = str_replace('\\"', '"', $keywords);
|
// Search for "and" or "or" and remove if it's at the beginning $keywords = trim($keywords);
| // Search for "and" or "or" and remove if it's at the beginning $keywords = trim($keywords);
|
Zeile 254 | Zeile 256 |
---|
/** * Clean search keywords for fulltext searching, making them safe for querying *
|
/** * Clean search keywords for fulltext searching, making them safe for querying *
|
* @param string The keywords to be cleaned * @return string The cleaned keywords
| * @param string $keywords The keywords to be cleaned * @return string|bool The cleaned keywords or false on failure
|
*/ function clean_keywords_ft($keywords) {
| */ function clean_keywords_ft($keywords) {
|
Zeile 288 | Zeile 290 |
---|
if($inquote) { if($phrase_operator)
|
if($inquote) { if($phrase_operator)
|
{
| {
|
$boolean[$depth] = $phrase_operator; } // Phrases do not need further processing
| $boolean[$depth] = $phrase_operator; } // Phrases do not need further processing
|
Zeile 327 | Zeile 329 |
---|
$last = substr($last, 1); } $words[$depth][] = $last;
|
$last = substr($last, 1); } $words[$depth][] = $last;
|
}
| }
|
} elseif($word == "and") {
| } elseif($word == "and") {
|
Zeile 345 | Zeile 347 |
---|
{ $words[$depth-1][] = $boolean[$depth-1].'('.implode(' ', $words[$depth]).')'; --$depth;
|
{ $words[$depth-1][] = $boolean[$depth-1].'('.implode(' ', $words[$depth]).')'; --$depth;
|
} }
| } }
|
// Valid operators for opening braces elseif($word == '+(' || $word == '-(' || $word == '<(' || $word == '>(' || $word == '~(' || $word == '(') {
| // Valid operators for opening braces elseif($word == '+(' || $word == '-(' || $word == '<(' || $word == '>(' || $word == '~(' || $word == '(') {
|
Zeile 385 | Zeile 387 |
---|
} $words[$depth][] = $word; $boolean[$depth] = '+';
|
} $words[$depth][] = $word; $boolean[$depth] = '+';
|
} }
| } }
|
} } $inquote = !$inquote;
| } } $inquote = !$inquote;
|
Zeile 408 | Zeile 410 |
---|
/** * Perform a thread and post search under MySQL or MySQLi *
|
/** * Perform a thread and post search under MySQL or MySQLi *
|
* @param array Array of search data
| * @param array $search Array of search data
|
* @return array Array of search data with results mixed in */ function privatemessage_perform_search_mysql($search)
| * @return array Array of search data with results mixed in */ function privatemessage_perform_search_mysql($search)
|
Zeile 434 | Zeile 436 |
---|
{ // Complex search $keywords = " {$keywords} ";
|
{ // Complex search $keywords = " {$keywords} ";
|
| switch($db->type) { case 'mysql': case 'mysqli': $sfield = 'subject'; $mfield = 'message'; break; default: $sfield = 'LOWER(subject)'; $mfield = 'LOWER(message)'; break; }
|
if(preg_match("#\s(and|or)\s#", $keywords)) { $string = "AND";
| if(preg_match("#\s(and|or)\s#", $keywords)) { $string = "AND";
|
Zeile 441 | Zeile 457 |
---|
{ $string = "OR"; $subject_lookin = " AND (";
|
{ $string = "OR"; $subject_lookin = " AND (";
|
}
| }
|
if($search['message'] == 1) {
| if($search['message'] == 1) {
|
Zeile 503 | Zeile 519 |
---|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); }
|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); }
|
|
|
// Add terms to search query if($search['subject'] == 1)
|
// Add terms to search query if($search['subject'] == 1)
|
{ $subject_lookin .= " $boolean LOWER(subject) LIKE '%{$word}%'"; }
| { $subject_lookin .= " $boolean {$sfield} LIKE '%{$word}%'"; }
|
if($search['message'] == 1) {
|
if($search['message'] == 1) {
|
$message_lookin .= " $boolean LOWER(message) LIKE '%{$word}%'";
| $message_lookin .= " $boolean {$mfield} LIKE '%{$word}%'";
|
} $boolean = 'AND'; }
| } $boolean = 'AND'; }
|
Zeile 518 | Zeile 535 |
---|
} // In the middle of a quote (phrase) else
|
} // In the middle of a quote (phrase) else
|
{
| {
|
$phrase = str_replace(array("+", "-", "*"), '', trim($phrase)); if(my_strlen($phrase) < $mybb->settings['minsearchword'])
|
$phrase = str_replace(array("+", "-", "*"), '', trim($phrase)); if(my_strlen($phrase) < $mybb->settings['minsearchword'])
|
{
| {
|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); } // Add phrase to search query
|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); } // Add phrase to search query
|
$subject_lookin .= " $boolean LOWER(subject) LIKE '%{$phrase}%'";
| $subject_lookin .= " $boolean {$sfield} LIKE '%{$phrase}%'";
|
if($search['message'] == 1) {
|
if($search['message'] == 1) {
|
$message_lookin .= " $boolean LOWER(message) LIKE '%{$phrase}%'";
| $message_lookin .= " $boolean {$mfield} LIKE '%{$phrase}%'";
|
} $boolean = 'AND';
|
} $boolean = 'AND';
|
}
| }
|
// Check to see if we have any search terms and not a malformed SQL string $error = false; if($search['subject'] && $search['message'] && $subject_lookin == " AND (") { // We're looking for anything, check for a subject lookin
|
// Check to see if we have any search terms and not a malformed SQL string $error = false; if($search['subject'] && $search['message'] && $subject_lookin == " AND (") { // We're looking for anything, check for a subject lookin
|
$error = true; } elseif($search['subject'] && !$search['message'] && $subject_lookin == " AND (")
| $error = true; } elseif($search['subject'] && !$search['message'] && $subject_lookin == " AND (")
|
{ // Just in a subject?
|
{ // Just in a subject?
|
$error = true; }
| $error = true; }
|
elseif(!$search['subject'] && $search['message'] && $message_lookin == " {$string} (")
|
elseif(!$search['subject'] && $search['message'] && $message_lookin == " {$string} (")
|
{
| {
|
// Just in a message? $error = true; }
| // Just in a message? $error = true; }
|
Zeile 557 | Zeile 574 |
---|
// There are no search keywords to look for $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
// There are no search keywords to look for $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
}
| }
|
$inquote = !$inquote; }
| $inquote = !$inquote; }
|
Zeile 586 | Zeile 603 |
---|
// If we're looking in both, then find matches in either the subject or the message if($search['subject'] == 1 && $search['message'] == 1) {
|
// If we're looking in both, then find matches in either the subject or the message if($search['subject'] == 1 && $search['message'] == 1) {
|
$searchsql .= " AND (LOWER(subject) LIKE '%{$keywords}%' OR LOWER(message) LIKE '%{$keywords}%')";
| $searchsql .= " AND ({$sfield} LIKE '%{$keywords}%' OR {$mfield} LIKE '%{$keywords}%')";
|
} else { if($search['subject'] == 1) {
|
} else { if($search['subject'] == 1) {
|
$searchsql .= " AND LOWER(subject) LIKE '%{$keywords}%'";
| $searchsql .= " AND {$sfield} LIKE '%{$keywords}%'";
|
}
if($search['message'] == 1) {
|
}
if($search['message'] == 1) {
|
$searchsql .= " AND LOWER(message) LIKE '%{$keywords}%'";
| $searchsql .= " AND {$mfield} LIKE '%{$keywords}%'";
|
} } }
| } } }
|
Zeile 608 | Zeile 625 |
---|
$userids = array(); $search['sender'] = my_strtolower($search['sender']);
|
$userids = array(); $search['sender'] = my_strtolower($search['sender']);
|
$query = $db->simple_select("users", "uid", "LOWER(username) LIKE '%".$db->escape_string_like($search['sender'])."%'"); while($user = $db->fetch_array($query))
| switch($db->type) { case 'mysql': case 'mysqli': $field = 'username'; break; default: $field = 'LOWER(username)'; break; } $query = $db->simple_select("users", "uid", "{$field} LIKE '%".$db->escape_string_like($search['sender'])."%'"); while($user = $db->fetch_array($query))
|
{ $userids[] = $user['uid']; }
| { $userids[] = $user['uid']; }
|
Zeile 617 | Zeile 644 |
---|
if(count($userids) < 1) { error($lang->error_nosearchresults);
|
if(count($userids) < 1) { error($lang->error_nosearchresults);
|
}
| }
|
else { $userids = implode(',', $userids);
| else { $userids = implode(',', $userids);
|
Zeile 671 | Zeile 698 |
---|
$statussql = implode("OR", $statussql); $searchsql .= $statussql.")"; }
|
$statussql = implode("OR", $statussql); $searchsql .= $statussql.")"; }
|
| $limitsql = ""; if((int)$mybb->settings['searchhardlimit'] > 0) { $limitsql = " LIMIT ".(int)$mybb->settings['searchhardlimit']; } $searchsql .= $limitsql;
|
// Run the search $pms = array();
| // Run the search $pms = array();
|
Zeile 693 | Zeile 727 |
---|
/** * Perform a help document search under MySQL or MySQLi
|
/** * Perform a help document search under MySQL or MySQLi
|
* * @param array Array of search data * @return array Array of search data with results mixed in
| * * @param array $search Array of search data * @return array Array of search data with results mixed in
|
*/ function helpdocument_perform_search_mysql($search) {
| */ function helpdocument_perform_search_mysql($search) {
|
Zeile 718 | Zeile 752 |
---|
if($keywords) {
|
if($keywords) {
|
| switch($db->type) { case 'mysql': case 'mysqli': $nfield = 'name'; $dfield = 'document'; break; default: $nfield = 'LOWER(name)'; $dfield = 'LOWER(document)'; break; }
|
// Complex search $keywords = " {$keywords} "; if(preg_match("#\s(and|or)\s#", $keywords))
| // Complex search $keywords = " {$keywords} "; if(preg_match("#\s(and|or)\s#", $keywords))
|
Zeile 767 | Zeile 814 |
---|
elseif($search['name'] && !$search['document'] && $name_lookin == " AND (") { // Just in a name?
|
elseif($search['name'] && !$search['document'] && $name_lookin == " AND (") { // Just in a name?
|
continue; }
| continue; }
|
elseif(!$search['name'] && $search['document'] && $document_lookin == " {$string} (") { // Just in a document?
| elseif(!$search['name'] && $search['document'] && $document_lookin == " {$string} (") { // Just in a document?
|
Zeile 787 | Zeile 834 |
---|
{ $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
{ $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
}
| }
|
// Add terms to search query if($search['name'] == 1)
|
// Add terms to search query if($search['name'] == 1)
|
{ $name_lookin .= " $boolean LOWER(name) LIKE '%{$word}%'";
| { $name_lookin .= " $boolean {$nfield} LIKE '%{$word}%'";
|
} if($search['document'] == 1) {
|
} if($search['document'] == 1) {
|
$document_lookin .= " $boolean LOWER(document) LIKE '%{$word}%'";
| $document_lookin .= " $boolean {$dfield} LIKE '%{$word}%'";
|
} } }
| } } }
|
Zeile 808 | Zeile 855 |
---|
{ $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
{ $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
}
| }
|
// Add phrase to search query
|
// Add phrase to search query
|
$name_lookin .= " $boolean LOWER(name) LIKE '%{$phrase}%'";
| $name_lookin .= " $boolean {$nfield} LIKE '%{$phrase}%'";
|
if($search['document'] == 1) {
|
if($search['document'] == 1) {
|
$document_lookin .= " $boolean LOWER(document) LIKE '%{$phrase}%'";
| $document_lookin .= " $boolean {$dfield} LIKE '%{$phrase}%'";
|
} }
| } }
|
Zeile 848 | Zeile 895 |
---|
if($search['name'] == 1) { $name_lookin .= ")";
|
if($search['name'] == 1) { $name_lookin .= ")";
|
}
if($search['document'] == 1) {
| }
if($search['document'] == 1) {
|
$document_lookin .= ")"; }
| $document_lookin .= ")"; }
|
Zeile 869 | Zeile 916 |
---|
// If we're looking in both, then find matches in either the name or the document if($search['name'] == 1 && $search['document'] == 1) {
|
// If we're looking in both, then find matches in either the name or the document if($search['name'] == 1 && $search['document'] == 1) {
|
$searchsql .= " AND (LOWER(name) LIKE '%{$keywords}%' OR LOWER(document) LIKE '%{$keywords}%')";
| $searchsql .= " AND ({$nfield} LIKE '%{$keywords}%' OR {$dfield} LIKE '%{$keywords}%')";
|
} else { if($search['name'] == 1) {
|
} else { if($search['name'] == 1) {
|
$searchsql .= " AND LOWER(name) LIKE '%{$keywords}%'";
| $searchsql .= " AND {$nfield} LIKE '%{$keywords}%'";
|
}
if($search['document'] == 1) {
|
}
if($search['document'] == 1) {
|
$searchsql .= " AND LOWER(document) LIKE '%{$keywords}%'";
| $searchsql .= " AND {$dfield} LIKE '%{$keywords}%'";
|
} } }
| } } }
|
Zeile 908 | Zeile 955 |
---|
/** * Perform a thread and post search under MySQL or MySQLi *
|
/** * Perform a thread and post search under MySQL or MySQLi *
|
* @param array Array of search data
| * @param array $search Array of search data
|
* @return array Array of search data with results mixed in */ function perform_search_mysql($search)
| * @return array Array of search data with results mixed in */ function perform_search_mysql($search)
|
Zeile 929 | Zeile 976 |
---|
$subject_lookin = $message_lookin = ''; if($keywords) {
|
$subject_lookin = $message_lookin = ''; if($keywords) {
|
| switch($db->type) { case 'mysql': case 'mysqli': $tfield = 't.subject'; $pfield = 'p.message'; break; default: $tfield = 'LOWER(t.subject)'; $pfield = 'LOWER(p.message)'; break; }
|
// Complex search $keywords = " {$keywords} "; if(preg_match("#\s(and|or)\s#", $keywords))
| // Complex search $keywords = " {$keywords} "; if(preg_match("#\s(and|or)\s#", $keywords))
|
Zeile 978 | Zeile 1038 |
---|
error($lang->error_minsearchlength); } // Add terms to search query
|
error($lang->error_minsearchlength); } // Add terms to search query
|
$subject_lookin .= " $boolean LOWER(t.subject) LIKE '%{$word}%'";
| $subject_lookin .= " $boolean {$tfield} LIKE '%{$word}%'";
|
if($search['postthread'] == 1) {
|
if($search['postthread'] == 1) {
|
$message_lookin .= " $boolean LOWER(p.message) LIKE '%{$word}%'";
| $message_lookin .= " $boolean {$pfield} LIKE '%{$word}%'";
|
} $boolean = 'AND'; }
| } $boolean = 'AND'; }
|
Zeile 997 | Zeile 1057 |
---|
error($lang->error_minsearchlength); } // Add phrase to search query
|
error($lang->error_minsearchlength); } // Add phrase to search query
|
$subject_lookin .= " $boolean LOWER(t.subject) LIKE '%{$phrase}%'";
| $subject_lookin .= " $boolean {$tfield} LIKE '%{$phrase}%'";
|
if($search['postthread'] == 1) {
|
if($search['postthread'] == 1) {
|
$message_lookin .= " $boolean LOWER(p.message) LIKE '%{$phrase}%'";
| $message_lookin .= " $boolean {$pfield} LIKE '%{$phrase}%'";
|
} $boolean = 'AND'; }
| } $boolean = 'AND'; }
|
Zeile 1010 | Zeile 1070 |
---|
// There are no search keywords to look for $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
// There are no search keywords to look for $lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength);
|
}
| }
|
$inquote = !$inquote; } $subject_lookin .= ")";
| $inquote = !$inquote; } $subject_lookin .= ")";
|
Zeile 1025 | Zeile 1085 |
---|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); }
|
$lang->error_minsearchlength = $lang->sprintf($lang->error_minsearchlength, $mybb->settings['minsearchword']); error($lang->error_minsearchlength); }
|
$subject_lookin = " AND LOWER(t.subject) LIKE '%{$keywords}%'";
| $subject_lookin = " AND {$tfield} LIKE '%{$keywords}%'";
|
if($search['postthread'] == 1) {
|
if($search['postthread'] == 1) {
|
$message_lookin = " AND LOWER(p.message) LIKE '%{$keywords}%'";
| $message_lookin = " AND {$pfield} LIKE '%{$keywords}%'";
|
} } }
| } } }
|
Zeile 1039 | Zeile 1099 |
---|
$userids = array(); $search['author'] = my_strtolower($search['author']); if($search['matchusername'])
|
$userids = array(); $search['author'] = my_strtolower($search['author']); if($search['matchusername'])
|
{ $query = $db->simple_select("users", "uid", "LOWER(username)='".$db->escape_string($search['author'])."'"); } else { $query = $db->simple_select("users", "uid", "LOWER(username) LIKE '%".$db->escape_string_like($search['author'])."%'"); }
while($user = $db->fetch_array($query)) { $userids[] = $user['uid']; }
| { $user = get_user_by_username($search['author']); if($user) { $userids[] = $user['uid']; } } else { switch($db->type) { case 'mysql': case 'mysqli': $field = 'username'; break; default: $field = 'LOWER(username)'; break; } $query = $db->simple_select("users", "uid", "{$field} LIKE '%".$db->escape_string_like($search['author'])."%'"); while($user = $db->fetch_array($query)) { $userids[] = $user['uid']; } }
|
if(count($userids) < 1) { error($lang->error_nosearchresults);
| if(count($userids) < 1) { error($lang->error_nosearchresults);
|
Zeile 1068 | Zeile 1142 |
---|
if($search['pddir'] == 0) { $datecut = "<=";
|
if($search['pddir'] == 0) { $datecut = "<=";
|
} else {
| } else {
|
$datecut = ">="; } $now = TIME_NOW;
| $datecut = ">="; } $now = TIME_NOW;
|
Zeile 1108 | Zeile 1182 |
---|
$thread_prefixcut .= " AND t.prefix='$threadprefix' "; } else
|
$thread_prefixcut .= " AND t.prefix='$threadprefix' "; } else
|
{
| {
|
if(count($prefixlist) > 1) { $thread_prefixcut = " AND t.prefix IN (".implode(',', $prefixlist).")";
| if(count($prefixlist) > 1) { $thread_prefixcut = " AND t.prefix IN (".implode(',', $prefixlist).")";
|
Zeile 1117 | Zeile 1191 |
---|
$forumin = ''; $fidlist = array();
|
$forumin = ''; $fidlist = array();
|
$searchin = array(); if(!is_array($search['forums']) || $search['forums'][0] != "all")
| if(!empty($search['forums']) && (!is_array($search['forums']) || $search['forums'][0] != "all"))
|
{ if(!is_array($search['forums'])) { $search['forums'] = array((int)$search['forums']);
|
{ if(!is_array($search['forums'])) { $search['forums'] = array((int)$search['forums']);
|
} // Generate a comma separated list of all groups the user belongs to $user_groups = $mybb->user['usergroup']; if($mybb->user['additionalgroups']) { $user_groups .= ",".$mybb->user['additionalgroups'];
// Setup some quick permissions for us $fcache = $cache->read("forumpermissions"); $add_groups = explode(",", $mybb->user['additionalgroups']);
| |
} foreach($search['forums'] as $forum) { $forum = (int)$forum;
|
} foreach($search['forums'] as $forum) { $forum = (int)$forum;
|
if(empty($searchin[$forum]))
| if($forum > 0)
|
{
|
{
|
if(isset($add_groups) && is_array($add_groups))
| $fidlist[] = $forum; $child_list = get_child_list($forum); if(is_array($child_list))
|
{
|
{
|
$can_search = 0; foreach($add_groups as $add_group) { // Check to make sure that we have sufficient permissions to search this forum if(!is_array($fcache[$forum][$add_group]) || $fcache[$forum][$add_group]['cansearch'] == 1 || $mybb->usergroup['cansearch'] == 1) { $can_search = 1; } }
if($can_search == 0) { // We can't search this forum... continue; } }
switch($db->type) { case "pgsql": $query = $db->simple_select("forums", "DISTINCT fid", "(','||parentlist||',' LIKE ',%{$forum}%,') = true AND active != 0"); break; case "sqlite": $query = $db->simple_select("forums", "DISTINCT fid", "(','||parentlist||',' LIKE ',%{$forum}%,') > 0 AND active != 0"); break; default: $query = $db->simple_select("forums", "DISTINCT fid", "INSTR(CONCAT(',',parentlist,','),',{$forum},') > 0 AND active != 0"); }
while($sforum = $db->fetch_array($query)) { $fidlist[] = $sforum['fid'];
| $fidlist = array_merge($fidlist, $child_list);
|
}
|
}
|
} } if(count($fidlist) == 1) { $forumin .= " AND t.fid='$forum' "; $searchin[$forum] = 1; } else { if(count($fidlist) > 1) { $forumin = " AND t.fid IN (".implode(',', $fidlist).")"; } }
| } } $fidlist = array_unique($fidlist); if(count($fidlist) >= 1) { $forumin = " AND t.fid IN (".implode(',', $fidlist).")"; }
|
}
|
}
|
|
|
$permsql = ""; $onlyusfids = array();
| $permsql = ""; $onlyusfids = array();
|
Zeile 1203 | Zeile 1230 |
---|
$onlyusfids[] = $fid; } }
|
$onlyusfids[] = $fid; } }
|
}
| }
|
if(!empty($onlyusfids))
|
if(!empty($onlyusfids))
|
{
| {
|
$permsql .= "AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
|
$permsql .= "AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
|
}
| }
|
$unsearchforums = get_unsearchable_forums(); if($unsearchforums)
|
$unsearchforums = get_unsearchable_forums(); if($unsearchforums)
|
{
| {
|
$permsql .= " AND t.fid NOT IN ($unsearchforums)"; } $inactiveforums = get_inactive_forums(); if($inactiveforums)
|
$permsql .= " AND t.fid NOT IN ($unsearchforums)"; } $inactiveforums = get_inactive_forums(); if($inactiveforums)
|
{
| {
|
$permsql .= " AND t.fid NOT IN ($inactiveforums)"; }
$visiblesql = $post_visiblesql = $plain_post_visiblesql = "";
|
$permsql .= " AND t.fid NOT IN ($inactiveforums)"; }
$visiblesql = $post_visiblesql = $plain_post_visiblesql = "";
|
if(isset($search['visible'])) {
| if(isset($search['visible'])) {
|
if($search['visible'] == 1) { $visiblesql = " AND t.visible = '1'";
| if($search['visible'] == 1) { $visiblesql = " AND t.visible = '1'";
|
Zeile 1358 | Zeile 1385 |
---|
/** * Perform a thread and post search under MySQL or MySQLi using boolean fulltext capabilities *
|
/** * Perform a thread and post search under MySQL or MySQLi using boolean fulltext capabilities *
|
* @param array Array of search data
| * @param array $search Array of search data
|
* @return array Array of search data with results mixed in */ function perform_search_mysql_ft($search)
| * @return array Array of search data with results mixed in */ function perform_search_mysql_ft($search)
|
Zeile 1443 | Zeile 1470 |
---|
$search['author'] = my_strtolower($search['author']); if($search['matchusername']) {
|
$search['author'] = my_strtolower($search['author']); if($search['matchusername']) {
|
$query = $db->simple_select("users", "uid", "LOWER(username)='".$db->escape_string($search['author'])."'"); } else { $query = $db->simple_select("users", "uid", "LOWER(username) LIKE '%".$db->escape_string_like($search['author'])."%'"); }
while($user = $db->fetch_array($query)) { $userids[] = $user['uid']; }
if(count($userids) < 1) {
| $user = get_user_by_username($search['author']); if($user) { $userids[] = $user['uid']; } } else { $query = $db->simple_select("users", "uid", "username LIKE '%".$db->escape_string_like($search['author'])."%'");
while($user = $db->fetch_array($query)) { $userids[] = $user['uid']; } }
if(count($userids) < 1) {
|
error($lang->error_nosearchresults); } else
| error($lang->error_nosearchresults); } else
|
Zeile 1490 | Zeile 1521 |
---|
if((int)$search['findthreadst'] == 1) { $thread_replycut = " AND t.replies >= '".(int)$search['numreplies']."'";
|
if((int)$search['findthreadst'] == 1) { $thread_replycut = " AND t.replies >= '".(int)$search['numreplies']."'";
|
}
| }
|
else { $thread_replycut = " AND t.replies <= '".(int)$search['numreplies']."'";
| else { $thread_replycut = " AND t.replies <= '".(int)$search['numreplies']."'";
|
Zeile 1522 | Zeile 1553 |
---|
$forumin = ''; $fidlist = array(); $searchin = array();
|
$forumin = ''; $fidlist = array(); $searchin = array();
|
if(!is_array($search['forums']) || $search['forums'][0] != "all")
| if(!empty($search['forums']) && (!is_array($search['forums']) || $search['forums'][0] != "all"))
|
{ if(!is_array($search['forums']))
|
{ if(!is_array($search['forums']))
|
{
| {
|
$search['forums'] = array((int)$search['forums']);
|
$search['forums'] = array((int)$search['forums']);
|
} // Generate a comma separated list of all groups the user belongs to $user_groups = $mybb->user['usergroup']; if($mybb->user['additionalgroups']) { $user_groups .= ",".$mybb->user['additionalgroups']; }
| }
|
foreach($search['forums'] as $forum) { $forum = (int)$forum;
|
foreach($search['forums'] as $forum) { $forum = (int)$forum;
|
if(empty($searchin[$forum])) { switch($db->type) { case "pgsql": case "sqlite": $query = $db->query(" SELECT f.fid FROM ".TABLE_PREFIX."forums f LEFT JOIN ".TABLE_PREFIX."forumpermissions p ON (f.fid=p.fid AND p.gid IN (".$user_groups.")) WHERE INSTR(','||parentlist||',',',$forum,') > 0 AND active!=0 AND ((p.fid) IS NULL OR p.cansearch=1) "); break; default: $query = $db->query(" SELECT f.fid FROM ".TABLE_PREFIX."forums f LEFT JOIN ".TABLE_PREFIX."forumpermissions p ON (f.fid=p.fid AND p.gid IN (".$user_groups.")) WHERE INSTR(CONCAT(',',parentlist,','),',$forum,') > 0 AND active!=0 AND ((p.fid) IS NULL OR p.cansearch=1) "); } while($sforum = $db->fetch_array($query))
| if($forum > 0) { $fidlist[] = $forum; $child_list = get_child_list($forum); if(is_array($child_list))
|
{
|
{
|
$fidlist[] = $sforum['fid'];
| $fidlist = array_merge($fidlist, $child_list);
|
}
|
}
|
} } if(count($fidlist) == 1) { $forumin .= " AND t.fid='$forum' "; $searchin[$forum] = 1;
| }
|
}
|
}
|
else
| $fidlist = array_unique($fidlist); if(count($fidlist) >= 1)
|
{
|
{
|
if(count($fidlist) > 1) { $forumin = " AND t.fid IN (".implode(',', $fidlist).")"; }
| $forumin = " AND t.fid IN (".implode(',', $fidlist).")";
|
} } $permsql = "";
| } } $permsql = "";
|