mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 03:45:49 +01:00
444 lines
18 KiB
PHP
444 lines
18 KiB
PHP
<?php // $Id$
|
|
|
|
require_once('../../config.php');
|
|
require_once('lib.php');
|
|
|
|
$id = required_param('id', PARAM_INT); // course id
|
|
$search = trim(optional_param('search', '', PARAM_NOTAGS)); // search string
|
|
$page = optional_param('page', 0, PARAM_INT); // which page to show
|
|
$perpage = optional_param('perpage', 10, PARAM_INT); // how many per page
|
|
$showform = optional_param('showform', 0, PARAM_INT); // Just show the form
|
|
|
|
$user = trim(optional_param('user', '', PARAM_NOTAGS)); // Names to search for
|
|
$userid = trim(optional_param('userid', 0, PARAM_INT)); // UserID to search for
|
|
$forumid = trim(optional_param('forumid', 0, PARAM_INT)); // ForumID to search for
|
|
$subject = trim(optional_param('subject', '', PARAM_NOTAGS)); // Subject
|
|
$phrase = trim(optional_param('phrase', '', PARAM_NOTAGS)); // Phrase
|
|
$words = trim(optional_param('words', '', PARAM_NOTAGS)); // Words
|
|
$fullwords = trim(optional_param('fullwords', '', PARAM_NOTAGS)); // Whole words
|
|
$notwords = trim(optional_param('notwords', '', PARAM_NOTAGS)); // Words we don't want
|
|
|
|
$timefromrestrict = optional_param('timefromrestrict', 0, PARAM_INT); // Use starting date
|
|
$fromday = optional_param('fromday', 0, PARAM_INT); // Starting date
|
|
$frommonth = optional_param('frommonth', 0, PARAM_INT); // Starting date
|
|
$fromyear = optional_param('fromyear', 0, PARAM_INT); // Starting date
|
|
$fromhour = optional_param('fromhour', 0, PARAM_INT); // Starting date
|
|
$fromminute = optional_param('fromminute', 0, PARAM_INT); // Starting date
|
|
if ($timefromrestrict) {
|
|
$datefrom = make_timestamp($fromyear, $frommonth, $fromday, $fromhour, $fromminute);
|
|
} else {
|
|
$datefrom = optional_param('datefrom', 0, PARAM_INT); // Starting date
|
|
}
|
|
|
|
$timetorestrict = optional_param('timetorestrict', 0, PARAM_INT); // Use ending date
|
|
$today = optional_param('today', 0, PARAM_INT); // Ending date
|
|
$tomonth = optional_param('tomonth', 0, PARAM_INT); // Ending date
|
|
$toyear = optional_param('toyear', 0, PARAM_INT); // Ending date
|
|
$tohour = optional_param('tohour', 0, PARAM_INT); // Ending date
|
|
$tominute = optional_param('tominute', 0, PARAM_INT); // Ending date
|
|
if ($timetorestrict) {
|
|
$dateto = make_timestamp($toyear, $tomonth, $today, $tohour, $tominute);
|
|
} else {
|
|
$dateto = optional_param('dateto', 0, PARAM_INT); // Ending date
|
|
}
|
|
|
|
|
|
|
|
if (empty($search)) { // Check the other parameters instead
|
|
if (!empty($words)) {
|
|
$search .= ' '.$words;
|
|
}
|
|
if (!empty($userid)) {
|
|
$search .= ' userid:'.$userid;
|
|
}
|
|
if (!empty($forumid)) {
|
|
$search .= ' forumid:'.$forumid;
|
|
}
|
|
if (!empty($user)) {
|
|
$search .= ' '.forum_clean_search_terms($user, 'user:');
|
|
}
|
|
if (!empty($subject)) {
|
|
$search .= ' '.forum_clean_search_terms($subject, 'subject:');
|
|
}
|
|
if (!empty($fullwords)) {
|
|
$search .= ' '.forum_clean_search_terms($fullwords, '+');
|
|
}
|
|
if (!empty($notwords)) {
|
|
$search .= ' '.forum_clean_search_terms($notwords, '-');
|
|
}
|
|
if (!empty($phrase)) {
|
|
$search .= ' "'.$phrase.'"';
|
|
}
|
|
if (!empty($datefrom)) {
|
|
$search .= ' datefrom:'.$datefrom;
|
|
}
|
|
if (!empty($dateto)) {
|
|
$search .= ' dateto:'.$dateto;
|
|
}
|
|
$individualparams = true;
|
|
} else {
|
|
$individualparams = false;
|
|
}
|
|
|
|
if ($search) {
|
|
$search = forum_clean_search_terms($search);
|
|
}
|
|
|
|
if (! $course = get_record("course", "id", $id)) {
|
|
error("Course id is incorrect.");
|
|
}
|
|
|
|
require_course_login($course);
|
|
|
|
add_to_log($course->id, "forum", "search", "search.php?id=$course->id&search=".urlencode($search), $search);
|
|
|
|
$strforums = get_string("modulenameplural", "forum");
|
|
$strsearch = get_string("search", "forum");
|
|
$strsearchresults = get_string("searchresults", "forum");
|
|
$strpage = get_string("page");
|
|
|
|
$navlinks = array();
|
|
$navlinks[] = array('name' => $strforums, 'link' => "index.php?id=$course->id", 'type' => 'activity');
|
|
|
|
if (!$search || $showform) {
|
|
|
|
$crumns[] = array('name' => $strsearch, 'link' => '', 'type' => 'title');
|
|
$navigation = build_navigation($navlinks);
|
|
|
|
print_header_simple("$strsearch", "", $navigation, 'search.words',
|
|
"", "", " ", navmenu($course));
|
|
|
|
forum_print_big_search_form($course);
|
|
print_footer($course);
|
|
exit;
|
|
}
|
|
|
|
/// We need to do a search now and print results
|
|
|
|
$searchterms = str_replace('forumid:', 'instance:', $search);
|
|
$searchterms = explode(' ', $searchterms);
|
|
|
|
$searchform = forum_search_form($course, $search);
|
|
|
|
$navlinks = array();
|
|
$navlinks[] = array('name' => $strsearch, 'link' => "search.php?id=$course->id", 'type' => 'activityinstance');
|
|
$navlinks[] = array('name' => s($search, true), 'link' => '', 'type' => 'link');
|
|
$navigation = build_navigation($navlinks);
|
|
|
|
|
|
if (!$posts = forum_search_posts($searchterms, $course->id, $page*$perpage, $perpage, $totalcount)) {
|
|
print_header_simple("$strsearchresults", "", $navigation, 'search.words', "", "", " ", navmenu($course));
|
|
print_heading(get_string("nopostscontaining", "forum", $search));
|
|
|
|
if (!$individualparams) {
|
|
$words = $search;
|
|
}
|
|
|
|
forum_print_big_search_form($course);
|
|
|
|
print_footer($course);
|
|
exit;
|
|
}
|
|
|
|
|
|
print_header_simple("$strsearchresults", "", $navigation, '', "", "", $searchform, navmenu($course));
|
|
|
|
echo '<div class="reportlink">';
|
|
echo '<a href="search.php?id='.$course->id.
|
|
'&user='.urlencode($user).
|
|
'&userid='.$userid.
|
|
'&forumid='.$forumid.
|
|
'&subject='.urlencode($subject).
|
|
'&phrase='.urlencode($phrase).
|
|
'&words='.urlencode($words).
|
|
'&fullwords='.urlencode($fullwords).
|
|
'&notwords='.urlencode($notwords).
|
|
'&dateto='.$dateto.
|
|
'&datefrom='.$datefrom.
|
|
'&showform=1'.
|
|
'">'.get_string('advancedsearch','forum').'...</a>';
|
|
echo '</div>';
|
|
|
|
print_heading("$strsearchresults: $totalcount");
|
|
|
|
print_paging_bar($totalcount, $page, $perpage, "search.php?search=".urlencode(stripslashes($search))."&id=$course->id&perpage=$perpage&");
|
|
|
|
//added to implement highlighting of search terms found only in HTML markup
|
|
//fiedorow - 9/2/2005
|
|
$strippedsearch = str_replace('user:','',$search);
|
|
$strippedsearch = str_replace('subject:','',$strippedsearch);
|
|
$strippedsearch = str_replace('"','',$strippedsearch);
|
|
$searchterms = explode(' ', $strippedsearch); // Search for words independently
|
|
foreach ($searchterms as $key => $searchterm) {
|
|
if (preg_match('/^\-/',$searchterm)) {
|
|
unset($searchterms[$key]);
|
|
} else {
|
|
$searchterms[$key] = preg_replace('/^\+/','',$searchterm);
|
|
}
|
|
}
|
|
$strippedsearch = implode(' ', $searchterms); // Rebuild the string
|
|
|
|
foreach ($posts as $post) {
|
|
|
|
if (! $discussion = get_record('forum_discussions', 'id', $post->discussion)) {
|
|
error('Discussion ID was incorrect');
|
|
}
|
|
if (! $forum = get_record('forum', 'id', "$discussion->forum")) {
|
|
error("Could not find forum $discussion->forum");
|
|
}
|
|
|
|
$post->subject = highlight($strippedsearch, $post->subject);
|
|
$discussion->name = highlight($strippedsearch, $discussion->name);
|
|
|
|
$fullsubject = "<a href=\"view.php?f=$forum->id\">".format_string($forum->name,true)."</a>";
|
|
if ($forum->type != 'single') {
|
|
$fullsubject .= " -> <a href=\"discuss.php?d=$discussion->id\">".format_string($discussion->name,true)."</a>";
|
|
if ($post->parent != 0) {
|
|
$fullsubject .= " -> <a href=\"discuss.php?d=$post->discussion&parent=$post->id\">".format_string($post->subject,true)."</a>";
|
|
}
|
|
}
|
|
|
|
$post->subject = $fullsubject;
|
|
|
|
//Indicate search terms only found in HTML markup
|
|
//Use highlight() with nonsense tags to spot search terms in the
|
|
//actual text content first. fiedorow - 9/2/2005
|
|
$missing_terms = "";
|
|
|
|
// Hack for posts of format FORMAT_PLAIN. Otherwise html tags added by
|
|
// the highlight() call bellow get stripped out by forum_print_post().
|
|
if ($post->format == FORMAT_PLAIN) {
|
|
$post->message = stripslashes_safe($post->message);
|
|
$post->message = rebuildnolinktag($post->message);
|
|
$post->message = str_replace(' ', ' ', $post->message);
|
|
$post->message = nl2br($post->message);
|
|
$post->format = FORMAT_HTML;
|
|
}
|
|
|
|
$options = new object();
|
|
$options->trusttext = true;
|
|
// detect TRUSTTEXT marker before first call to format_text
|
|
if (trusttext_present($post->message)) {
|
|
$ttpresent = true;
|
|
} else {
|
|
$ttpresent = false;
|
|
}
|
|
$message = highlight($strippedsearch,
|
|
format_text($post->message, $post->format, $options, $course->id),
|
|
0, '<fgw9sdpq4>', '</fgw9sdpq4>');
|
|
|
|
foreach ($searchterms as $searchterm) {
|
|
if (preg_match("/$searchterm/i",$message) && !preg_match('/<fgw9sdpq4>'.$searchterm.'<\/fgw9sdpq4>/i',$message)) {
|
|
$missing_terms .= " $searchterm";
|
|
}
|
|
}
|
|
// now is the right time to strip the TRUSTTEXT marker, we will add it later if needed
|
|
$post->message = trusttext_strip($post->message);
|
|
|
|
$message = str_replace('<fgw9sdpq4>','<span class="highlight">',$message);
|
|
$message = str_replace('</fgw9sdpq4>','</span>',$message);
|
|
|
|
if ($missing_terms) {
|
|
$strmissingsearchterms = get_string('missingsearchterms','forum');
|
|
$post->message = '<p class="highlight2">'.$strmissingsearchterms.' '.$missing_terms.'</p>'.$message;
|
|
$ttpresent = false;
|
|
} else {
|
|
$post->message = $message;
|
|
}
|
|
|
|
$fulllink = "<a href=\"discuss.php?d=$post->discussion#$post->id\">".get_string("postincontext", "forum")."</a>";
|
|
//search terms already highlighted - fiedorow - 9/2/2005
|
|
$SESSION->forum_search = true;
|
|
|
|
// reconstruct the TRUSTTEXT properly after processing
|
|
if ($ttpresent) {
|
|
$post->message = trusttext_mark($post->message);
|
|
} else {
|
|
$post->message = trusttext_strip($post->message); //make 100% sure TRUSTTEXT marker was not created during processing
|
|
}
|
|
forum_print_post($post, $course->id, false, false, false, false, $fulllink);
|
|
unset($SESSION->forum_search);
|
|
|
|
echo "<br />";
|
|
}
|
|
|
|
print_paging_bar($totalcount, $page, $perpage, "search.php?search=".urlencode(stripslashes($search))."&id=$course->id&perpage=$perpage&");
|
|
|
|
print_footer($course);
|
|
|
|
|
|
|
|
/**
|
|
* @todo Document this function
|
|
*/
|
|
function forum_print_big_search_form($course) {
|
|
global $CFG, $words, $subject, $phrase, $user, $userid, $fullwords, $notwords, $datefrom, $dateto;
|
|
|
|
print_simple_box(get_string('searchforumintro', 'forum'), 'center', '', '', 'searchbox', 'intro');
|
|
|
|
print_simple_box_start("center");
|
|
|
|
echo "<script type=\"text/javascript\">\n";
|
|
echo "var timefromitems = ['fromday','frommonth','fromyear','fromhour', 'fromminute'];\n";
|
|
echo "var timetoitems = ['today','tomonth','toyear','tohour','tominute'];\n";
|
|
echo "</script>\n";
|
|
|
|
echo '<form id="searchform" action="search.php" method="get">';
|
|
echo '<table cellpadding="10" class="searchbox" id="form">';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchwords', 'forum').':';
|
|
echo '<input type="hidden" value="'.$course->id.'" name="id" alt="" /></td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="words" value="'.s($words, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchphrase', 'forum').':</td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="phrase" value="'.s($phrase, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchnotwords', 'forum').':</td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="notwords" value="'.s($notwords, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
if ($CFG->dbfamily == 'mysql' || $CFG->dbfamily == 'postgres') {
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchfullwords', 'forum').':</td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="fullwords" value="'.s($fullwords, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
}
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchdatefrom', 'forum').':</td>';
|
|
echo '<td class="c1">';
|
|
if (empty($datefrom)) {
|
|
$datefromchecked = '';
|
|
$datefrom = make_timestamp(2000, 1, 1, 0, 0, 0);
|
|
}else{
|
|
$datefromchecked = 'checked="checked"';
|
|
}
|
|
|
|
echo '<input name="timefromrestrict" type="checkbox" value="1" alt="'.get_string('searchdatefrom', 'forum').'" onclick="return lockoptions(\'searchform\', \'timefromrestrict\', timefromitems)" '. $datefromchecked . ' /> ';
|
|
print_date_selector('fromday', 'frommonth', 'fromyear', $datefrom);
|
|
print_time_selector('fromhour', 'fromminute', $datefrom);
|
|
|
|
echo '<input type="hidden" name="hfromday" value="0" />';
|
|
echo '<input type="hidden" name="hfrommonth" value="0" />';
|
|
echo '<input type="hidden" name="hfromyear" value="0" />';
|
|
echo '<input type="hidden" name="hfromhour" value="0" />';
|
|
echo '<input type="hidden" name="hfromminute" value="0" />';
|
|
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchdateto', 'forum').':</td>';
|
|
echo '<td class="c1">';
|
|
if (empty($dateto)) {
|
|
$datetochecked = '';
|
|
$dateto = time()+3600;
|
|
}else{
|
|
$datetochecked = 'checked="checked"';
|
|
}
|
|
|
|
echo '<input name="timetorestrict" type="checkbox" value="1" alt="'.get_string('searchdateto', 'forum').'" onclick="return lockoptions(\'searchform\', \'timetorestrict\', timetoitems)" ' .$datetochecked. ' /> ';
|
|
print_date_selector('today', 'tomonth', 'toyear', $dateto);
|
|
print_time_selector('tohour', 'tominute', $dateto);
|
|
|
|
echo '<input type="hidden" name="htoday" value="0" />';
|
|
echo '<input type="hidden" name="htomonth" value="0" />';
|
|
echo '<input type="hidden" name="htoyear" value="0" />';
|
|
echo '<input type="hidden" name="htohour" value="0" />';
|
|
echo '<input type="hidden" name="htominute" value="0" />';
|
|
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchwhichforums', 'forum').':</td>';
|
|
echo '<td class="c1">';
|
|
choose_from_menu(forum_menu_list($course), 'forumid', '', get_string('allforums', 'forum'), '');
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchsubject', 'forum').':</td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="subject" value="'.s($subject, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="c0">'.get_string('searchuser', 'forum').':</td>';
|
|
echo '<td class="c1"><input type="text" size="35" name="user" value="'.s($user, true).'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td class="submit" colspan="2" align="center">';
|
|
echo '<input type="submit" value="'.get_string('searchforums', 'forum').'" alt="" /></td>';
|
|
echo '</tr>';
|
|
|
|
echo '</table>';
|
|
echo '</form>';
|
|
|
|
echo "<script type=\"text/javascript\">";
|
|
echo "lockoptions('searchform','timefromrestrict', timefromitems);";
|
|
echo "lockoptions('searchform','timetorestrict', timetoitems);";
|
|
echo "</script>\n";
|
|
|
|
print_simple_box_end();
|
|
}
|
|
|
|
/**
|
|
* @todo Document this function
|
|
*/
|
|
function forum_clean_search_terms($words, $prefix='') {
|
|
$searchterms = explode(' ', $words);
|
|
foreach ($searchterms as $key => $searchterm) {
|
|
if (strlen($searchterm) < 2) {
|
|
unset($searchterms[$key]);
|
|
} else if ($prefix) {
|
|
$searchterms[$key] = $prefix.$searchterm;
|
|
}
|
|
}
|
|
return trim(implode(' ', $searchterms));
|
|
}
|
|
|
|
/**
|
|
* @todo Document this function
|
|
*/
|
|
function forum_menu_list($course) {
|
|
|
|
$menu = array();
|
|
$currentgroup = get_and_set_current_group($course, groupmode($course));
|
|
|
|
if ($forums = get_all_instances_in_course("forum", $course)) {
|
|
if ($course->format == 'weeks') {
|
|
$strsection = get_string('week');
|
|
} else {
|
|
$strsection = get_string('topic');
|
|
}
|
|
|
|
foreach ($forums as $forum) {
|
|
if ($cm = get_coursemodule_from_instance('forum', $forum->id, $course->id)) {
|
|
$context = get_context_instance(CONTEXT_MODULE, $cm->id);
|
|
if (!isset($forum->visible)) {
|
|
if (!instance_is_visible("forum", $forum) &&
|
|
!has_capability('moodle/course:viewhiddenactivities', $context)) {
|
|
continue;
|
|
}
|
|
}
|
|
$groupmode = groupmode($course, $cm); // Groups are being used
|
|
if ($groupmode == SEPARATEGROUPS && ($currentgroup === false) &&
|
|
!has_capability('moodle/site:accessallgroups', $context)) {
|
|
continue;
|
|
}
|
|
}
|
|
$menu[$forum->id] = format_string($forum->name,true);
|
|
}
|
|
}
|
|
|
|
return $menu;
|
|
}
|
|
|
|
?>
|