special_user, $specialbit,1)==1); } /** * Check to see if a specific user has rated a specific post before **/ function getHasRated($user, $postid){ return (strstr($user->rated_posts,"|".$postid)); } /** * Get the user's preferred sorting style. **/ function getSortStyle($user,$place){ if ($user->id!=""){ list($forum,$thread,$faq,$answer)=explode("|",$user->sorting); } else { list($forum,$thread,$faq,$answer)=explode("|",$_COOKIE['sorting']); } return $$place; // Huh? } /*** display functions ***/ /** * Show the posts in a thread for a user. * It's a big one. **/ function show_posts($thread, $sort_style, $filter, $logged_in_user, $show_controls=true) { $n = 1; if ($show_controls) { $controls = FORUM_CONTROLS; } else { $controls = NO_CONTROLS; } // If logged in user is moderator, // let him see all posts - including hidden ones if ($logged_in_user && $logged_in_user->isSpecialUser(S_MODERATOR)){ $show_hidden_posts = true; } else { $show_hidden_posts = false; } $posts = $thread->getPosts($sort_style, $show_hidden_posts); $postcount = (sizeof($posts)-1); if ($logged_in_user) $last_visit = $thread->getLastReadTimestamp($logged_in_user); $postnumber=0; $previous_post=0; $no_wraparound = get_str("nowrap",true); foreach ($posts as $key => $post){ $postnumber++; // There *HAS* to be a better way to do this. WOW. if ((!$logged_in_user) // If the user isn't logged in || (!$logged_in_user->getMinimumWrapPostcount()) //or If the user hasn't enabled the feature to display only a certain amount of posts, simply display all of them. || ($postcount < $logged_in_user->getMinimumWrapPostcount()) //If it is enabled and we havent yet hit the limit, simply display all || ($no_wraparound) // If the user has asked to display all the posts just display them || ( ($postcount >= $logged_in_user->getMinimumWrapPostcount()) //If it is enabled and we have hit the limit AND we have the minimum wraparound number of posts or more && ( ($postnumber==1 || $postnumber==($postcount+1)) // Let's display the post only if it is the first post || ( (($postnumber > $postcount+1-$logged_in_user->getDisplayWrapPostcount()) //or it is one of the last wrap_display_postcount posts. && ($sort_style==CREATE_TIME_OLD)) || (($postnumber <= $logged_in_user->getDisplayWrapPostcount()) //or it is one of the last wrap_display_postcount posts. && ($sort_style==CREATE_TIME_NEW)) || ($sort_style!=CREATE_TIME_NEW && $sort_style!=CREATE_TIME_OLD) ) || ($post->getTimestamp() > $last_visit) //or if this post is unread ) ) ) { if ($postnumber!=$previous_post+1){ //A number of posts were hidden, display a way to unhide them: echo " Only the first post and the last ".($logged_in_user->getDisplayWrapPostcount())." posts (of the ".($postcount+1)." posts in this thread) are displayed.
getID()."&nowrap=true\">Click here to also display the remaining posts."; } $previous_post=$postnumber; show_post($post, $thread, $logged_in_user, $n, $controls, $filter); // To allow users to start reading a thread even though our DB layer is super slow $n = ($n+1)%2; if (($post->getTimestamp()>$last_visit) && ((!$first_unread_post) || ($post->getTimestamp()<$first_unread_post->getTimestamp())) ){ $first_unread_post=$post; } } } if ($logged_in_user && $logged_in_user->hasJumpToUnread()){ if ($first_unread_post){ echo ""; } else { echo ""; } } if ($logged_in_user) $thread->setLastReadTimestamp($logged_in_user); } /** * Display an individual post, as though in a thread. **/ function show_post($post, $thread, $logged_in_user, $n, $controls=FORUM_CONTROLS, $filter=true) { $user = $post->getOwner(); global $no_forum_rating; global $config; if ($logged_in_user) { $tokens = url_tokens($logged_in_user->getAuthenticator()); } //If the user that made this post is on the list of people to ignore, change thresholds to be much more strict if ($logged_in_user){ if (in_array($user->getID(),$logged_in_user->getIgnoreList())){ $user_is_on_ignorelist=true; $rated_below_threshold = ($logged_in_user->getHighRatingThreshold()>$post->getRating()); $rated_above_threshold = ($logged_in_user->getHighRatingThreshold()+abs($logged_in_user->getLowRatingThreshold())<($post->getRating())); } else { //Use normal threshold values $rated_below_threshold = ($logged_in_user->getLowRatingThreshold()>($post->getRating())); $rated_above_threshold = ($logged_in_user->getHighRatingThreshold()<($post->getRating())); } } // The creator can edit the post, but only in a specified amount of time // (exception: a moderator can edit his/her posts at any time) // $can_edit = false; if ($logged_in_user) { if ($user->getID() == $logged_in_user->getID()) { if ($logged_in_user->isSpecialUser(S_MODERATOR)) { $can_edit = true; } else if (can_reply($thread, $logged_in_user)) { $time_limit = $post->getTimestamp()+MAXIMUM_EDIT_TIME; $can_edit = time()<$time_limit; } else { $can_edit = false; } } } echo "
getID()."\"> "; // Print the user links echo re_user_links($user, URL_BASE); echo "
"; // Print the special user lines, if any global $special_user_bitfield; $fstatus=""; $keys = array_keys($special_user_bitfield); for ($i=0; $iisSpecialUser($keys[$i])) { $fstatus.=$special_user_bitfield[$keys[$i]]."
"; } } if ($user->create_time>time()-ST_NEW_TIME) $fstatus.=ST_NEW."
"; if ($fstatus) echo "$fstatus"; echo ""; if (!$filter || !$rated_below_threshold){ if ($user->hasAvatar() && (!$logged_in_user || ($logged_in_user->hasHideAvatars()==false))) { echo "getAvatar()."\" alt=\"Avatar\">
"; } } echo "getID()."\" class=\"smalltext\">private message
\n"; echo "Joined: ", gmdate('M j, Y', $user->getCreateTime()), "
"; if(function_exists('project_forum_user_info')){ project_forum_user_info($user); } else { // default // circumvent various forms of identity spoofing // by displaying the user id of the poster. // its cheap, easy, and doesn't require any additional database calls. echo "Posts: ".$user->getPostCount()."
"; echo "ID: ".$user->getID()."
"; echo "Credit: ".number_format($user->getTotalCredit())."
"; echo "RAC: ".number_format($user->getExpavgCredit())."
"; } echo "
"; if ($controls == FORUM_CONTROLS) { echo "
getID(), "\" method=\"post\">"; echo ""; } else { echo ""; } if ($logged_in_user && $post->getTimestamp()>$thread->getLastReadTimestamp($logged_in_user)){ echo "\"Unread"; } if ($rated_above_threshold){ echo "\"!\""; } echo " getID()."&nowrap=true#$post->id\">Message ".$post->getID()." - "; if ($post->isHidden()) echo "[deleted] "; echo " Posted ", pretty_time_str($post->getTimestamp()); ; if ($post->getParentPostID()) echo " - in response to getID()."&nowrap=true#".$post->getParentPostID()."\">Message ID ".$post->getParentPostID()."."; if ($can_edit && $controls != NO_CONTROLS) echo " getID()."$tokens\">[Edit this post]"; if ($logged_in_user && $logged_in_user->isSpecialUser(S_MODERATOR)) echo post_moderation_links($config,$logged_in_user,$post,$tokens); //If user is moderator, show links if ($post->getModificationTimestamp()) echo "
Last modified: ", pretty_time_Str($post->getModificationTimestamp()); if ($rated_below_threshold && $filter){ if ($user_is_on_ignorelist) $andtext=" and the user is on your ignore list"; echo "
This post has been filtered (rating: ".($post->getRating()).")$andtext, press getID()."&filter=false#".$post->getID()."\">here to view this thread without filtering"; } echo "
"; echo ""; //If either filtering is turned off or this post is not below the threshold if (!$filter || !$rated_below_threshold){ $posttext = $post->getContent(); // If the creator of this post has a signature and // wants it to be shown for this post AND the logged in // user has signatures enabled: show it // if ($post->hasSignature() && (!$logged_in_user || !$logged_in_user->hasHideSignatures())){ $posttext.="\n____________\n".$user->getSignature(); } if ($logged_in_user){ $options = $logged_in_user->getTextTransformSettings(); } else { $options = new output_options; } $posttext = output_transform($posttext,$options); echo "

", $posttext, "

"; echo "ID: ", $post->id; if ($no_forum_rating != NULL) { echo " | getID()."\">\"Report"; } else { $rating = $post->getRating(); echo " | Rating: ", $rating, " | rate: getID()."&choice=p$tokens\">\"+\" / getID()."&choice=n$tokens\">\"-\" - getID()."\">\"Report"; } if (($controls == FORUM_CONTROLS) && (can_reply($thread, $logged_in_user))) { echo "[getID() . "&post=" . $post->getID() . "#input\">Reply to this post]"; } else { echo ""; } echo ""; } else { echo ""; } echo ""; } /*** utility functions ***/ /** * Start the forum table, output the proper headings and such. **/ function start_forum_table($headings, $extra="width=100%") { start_table($extra." cellspacing=0 cellpadding=2"); echo ""; for ($i=0; $i$title"; } echo "\n"; } /** * End the forum table, currently just close the open table tag. **/ function end_forum_table() { echo "\n"; } /** * Output the forum/thread title. **/ function show_forum_title($forum=NULL, $thread=NULL, $extended=true) { if ($extended) { start_table_noborder(); echo "\n"; // Search echo "

advanced search
"; echo "\n"; $logged_in_user = get_logged_in_user(false); // Custom stuff for logged in user if ($logged_in_user) { echo "\n"; // Private messages echo pm_notification($logged_in_user); echo "\n"; } echo "\n"; end_table(); } echo "

\n"; if ($forum) { $category = $forum->getCategory(); $is_helpdesk = $category->getType(); } else { $is_helpdesk = false; } $where = $is_helpdesk?tr(LINKS_QA):tr(FORUM_TITLE_SHORT); $top_url = $is_helpdesk?"forum_help_desk.php":"forum_index.php"; if (!$forum && !$thread) { echo "

"; echo $where; } else if ($forum && !$thread) { echo ""; echo "$where : "; echo $forum->getTitle(); echo "
"; } else if ($forum && $thread) { echo ""; echo "$where : "; echo "getID()."\">", $forum->getTitle(), " : "; echo cleanup_title($thread->getTitle()); echo "
"; } else { echo "Invalid input to show_forum_title
"; // TODO: handle this condition gracefully } echo "

\n"; } /** * show a thread with its context (e.g. for search results) **/ function show_thread($thread, $n) { $forum = getForum($thread->forum); $category = getCategory($forum->category); $first_post = getFirstPost($thread->id); $title = cleanup_title($thread->title); $where = $category->is_helpdesk?"Questions and answers":"Message boards"; $top_url = $category->is_helpdesk?"forum_help_desk.php":"forum_index.php"; $excerpt = sub_sentence(stripslashes($first_post->content), ' ', EXCERPT_LENGTH, true); $posted = time_diff_str($thread->create_time, time()); $last = time_diff_str($thread->timestamp, time()); $m = $n%2; echo " $n) Posted $posted
Last response $last $where : $category->name : id\">$forum->title : id\">$title
$excerpt "; } /** * Show a post with its context (e.g. for search results) **/ function show_post2($post, $n) { $thread = getThread($post->thread); $forum = getForum($thread->forum); $category = getCategory($forum->category); $where = $category->is_helpdesk?"Questions and answers":"Message boards"; $top_url = $category->is_helpdesk?"forum_help_desk.php":"forum_index.php"; $content = output_transform($post->content); $when = time_diff_str($post->timestamp, time()); $user = lookup_user_id($post->user); $title = cleanup_title($thread->title); $m = $n%2; if($post->hidden) { $deleted = "
[Deleted by a moderator]"; } else { $deleted = ""; } echo " $n) $where : $category->name : id\">$forum->title : id\">$title (id."&nowrap=true#".$post->id."\">Message ".$post->id.")
Posted $when by $user->name $deleted
$content "; } function post_rules() { return " "; } function post_warning() { return "

Rules: ".post_rules()." More info
"; } function check_banished($user) { $x = $user->getBanishedUntil(); if ($x>time()) { error_page( "You may not post or rate messages until ".gmdate('M j, Y', $x) ); } } function can_reply($thread, $user) { if (!$thread->isLocked() || ($user && $user->isSpecialUser(S_MODERATOR))) { return true; } else { return false; } } function pm_notification($user) { $output = ""; $pm = mysql_query("SELECT COUNT(*) AS unread FROM private_messages WHERE userid=".$user->id." AND opened=0"); $pm = mysql_fetch_object($pm); if ($pm->unread > 1) { $output .= "You have ".$pm->unread." unread private messages. "; } elseif ($pm->unread == 1) { $output .= "You have one unread private message. "; } else { $output .= "You have no unread private messages. "; } $output .= "| Inbox\n"; $output .= "| Write\n"; return $output; } ?>