Display.php 75 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738
  1. <?php
  2. /**
  3. * This is perhaps the most important and probably most accessed file in all
  4. * of SMF. This file controls topic, message, and attachment display.
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2011 Simple Machines
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('Hacking attempt...');
  17. /**
  18. * The central part of the board - topic display.
  19. * This function loads the posts in a topic up so they can be displayed.
  20. * It supports wireless, using wap/wap2/imode and the Wireless templates.
  21. * It uses the main sub template of the Display template.
  22. * It requires a topic, and can go to the previous or next topic from it.
  23. * It jumps to the correct post depending on a number/time/IS_MSG passed.
  24. * It depends on the messages_per_page, defaultMaxMessages and enableAllMessages settings.
  25. * It is accessed by ?topic=id_topic.START.
  26. */
  27. function Display()
  28. {
  29. global $scripturl, $txt, $modSettings, $context, $settings;
  30. global $options, $sourcedir, $user_info, $board_info, $topic, $board;
  31. global $attachments, $messages_request, $topicinfo, $language, $smcFunc;
  32. // What are you gonna display if these are empty?!
  33. if (empty($topic))
  34. fatal_lang_error('no_board', false);
  35. // Load the proper template and/or sub template.
  36. if (WIRELESS)
  37. $context['sub_template'] = WIRELESS_PROTOCOL . '_display';
  38. else
  39. loadTemplate('Display');
  40. // Not only does a prefetch make things slower for the server, but it makes it impossible to know if they read it.
  41. if (isset($_SERVER['HTTP_X_MOZ']) && $_SERVER['HTTP_X_MOZ'] == 'prefetch')
  42. {
  43. ob_end_clean();
  44. header('HTTP/1.1 403 Prefetch Forbidden');
  45. die;
  46. }
  47. // How much are we sticking on each page?
  48. $context['messages_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) && !WIRELESS ? $options['messages_per_page'] : $modSettings['defaultMaxMessages'];
  49. // Let's do some work on what to search index.
  50. if (count($_GET) > 2)
  51. foreach ($_GET as $k => $v)
  52. {
  53. if (!in_array($k, array('topic', 'board', 'start', session_name())))
  54. $context['robot_no_index'] = true;
  55. }
  56. if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0))
  57. $context['robot_no_index'] = true;
  58. // Find the previous or next topic. Make a fuss if there are no more.
  59. if (isset($_REQUEST['prev_next']) && ($_REQUEST['prev_next'] == 'prev' || $_REQUEST['prev_next'] == 'next'))
  60. {
  61. // No use in calculating the next topic if there's only one.
  62. if ($board_info['num_topics'] > 1)
  63. {
  64. // Just prepare some variables that are used in the query.
  65. $gt_lt = $_REQUEST['prev_next'] == 'prev' ? '>' : '<';
  66. $order = $_REQUEST['prev_next'] == 'prev' ? '' : ' DESC';
  67. $request = $smcFunc['db_query']('', '
  68. SELECT t2.id_topic
  69. FROM {db_prefix}topics AS t
  70. INNER JOIN {db_prefix}topics AS t2 ON (' . (empty($modSettings['enableStickyTopics']) ? '
  71. t2.id_last_msg ' . $gt_lt . ' t.id_last_msg' : '
  72. (t2.id_last_msg ' . $gt_lt . ' t.id_last_msg AND t2.is_sticky ' . $gt_lt . '= t.is_sticky) OR t2.is_sticky ' . $gt_lt . ' t.is_sticky') . ')
  73. WHERE t.id_topic = {int:current_topic}
  74. AND t2.id_board = {int:current_board}' . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : '
  75. AND (t2.approved = {int:is_approved} OR (t2.id_member_started != {int:id_member_started} AND t2.id_member_started = {int:current_member}))') . '
  76. ORDER BY' . (empty($modSettings['enableStickyTopics']) ? '' : ' t2.is_sticky' . $order . ',') . ' t2.id_last_msg' . $order . '
  77. LIMIT 1',
  78. array(
  79. 'current_board' => $board,
  80. 'current_member' => $user_info['id'],
  81. 'current_topic' => $topic,
  82. 'is_approved' => 1,
  83. 'id_member_started' => 0,
  84. )
  85. );
  86. // No more left.
  87. if ($smcFunc['db_num_rows']($request) == 0)
  88. {
  89. $smcFunc['db_free_result']($request);
  90. // Roll over - if we're going prev, get the last - otherwise the first.
  91. $request = $smcFunc['db_query']('', '
  92. SELECT id_topic
  93. FROM {db_prefix}topics
  94. WHERE id_board = {int:current_board}' . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : '
  95. AND (approved = {int:is_approved} OR (id_member_started != {int:id_member_started} AND id_member_started = {int:current_member}))') . '
  96. ORDER BY' . (empty($modSettings['enableStickyTopics']) ? '' : ' is_sticky' . $order . ',') . ' id_last_msg' . $order . '
  97. LIMIT 1',
  98. array(
  99. 'current_board' => $board,
  100. 'current_member' => $user_info['id'],
  101. 'is_approved' => 1,
  102. 'id_member_started' => 0,
  103. )
  104. );
  105. }
  106. // Now you can be sure $topic is the id_topic to view.
  107. list ($topic) = $smcFunc['db_fetch_row']($request);
  108. $smcFunc['db_free_result']($request);
  109. $context['current_topic'] = $topic;
  110. }
  111. // Go to the newest message on this topic.
  112. $_REQUEST['start'] = 'new';
  113. }
  114. // Add 1 to the number of views of this topic (except for robots).
  115. if (!$user_info['possibly_robot'] && (empty($_SESSION['last_read_topic']) || $_SESSION['last_read_topic'] != $topic))
  116. {
  117. $smcFunc['db_query']('', '
  118. UPDATE {db_prefix}topics
  119. SET num_views = num_views + 1
  120. WHERE id_topic = {int:current_topic}',
  121. array(
  122. 'current_topic' => $topic,
  123. )
  124. );
  125. $_SESSION['last_read_topic'] = $topic;
  126. }
  127. // @todo Why isn't this cached?
  128. // @todo if we get id_board in this query and cache it, we can save a query on posting
  129. // Get all the important topic info.
  130. $request = $smcFunc['db_query']('', '
  131. SELECT
  132. t.num_replies, t.num_views, t.locked, ms.subject, t.is_sticky, t.id_poll,
  133. t.id_member_started, t.id_first_msg, t.id_last_msg, t.approved, t.unapproved_posts, t.id_redirect_topic,
  134. ' . ($user_info['is_guest'] ? 't.id_last_msg + 1' : 'IFNULL(lt.id_msg, IFNULL(lmr.id_msg, -1)) + 1') . ' AS new_from
  135. ' . (!empty($modSettings['recycle_board']) && $modSettings['recycle_board'] == $board ? ', id_previous_board, id_previous_topic' : '') . '
  136. FROM {db_prefix}topics AS t
  137. INNER JOIN {db_prefix}messages AS ms ON (ms.id_msg = t.id_first_msg)' . ($user_info['is_guest'] ? '' : '
  138. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = {int:current_topic} AND lt.id_member = {int:current_member})
  139. LEFT JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = {int:current_board} AND lmr.id_member = {int:current_member})') . '
  140. WHERE t.id_topic = {int:current_topic}
  141. LIMIT 1',
  142. array(
  143. 'current_member' => $user_info['id'],
  144. 'current_topic' => $topic,
  145. 'current_board' => $board,
  146. )
  147. );
  148. if ($smcFunc['db_num_rows']($request) == 0)
  149. fatal_lang_error('not_a_topic', false);
  150. $topicinfo = $smcFunc['db_fetch_assoc']($request);
  151. $smcFunc['db_free_result']($request);
  152. // Is this a moved topic that we are redirecting to?
  153. if (!empty($topicinfo['id_redirect_topic']))
  154. redirectexit('topic=' . $topicinfo['id_redirect_topic'] . '.0');
  155. $context['real_num_replies'] = $context['num_replies'] = $topicinfo['num_replies'];
  156. $context['topic_first_message'] = $topicinfo['id_first_msg'];
  157. $context['topic_last_message'] = $topicinfo['id_last_msg'];
  158. // Add up unapproved replies to get real number of replies...
  159. if ($modSettings['postmod_active'] && allowedTo('approve_posts'))
  160. $context['real_num_replies'] += $topicinfo['unapproved_posts'] - ($topicinfo['approved'] ? 0 : 1);
  161. // If this topic has unapproved posts, we need to work out how many posts the user can see, for page indexing.
  162. if ($modSettings['postmod_active'] && $topicinfo['unapproved_posts'] && !$user_info['is_guest'] && !allowedTo('approve_posts'))
  163. {
  164. $request = $smcFunc['db_query']('', '
  165. SELECT COUNT(id_member) AS my_unapproved_posts
  166. FROM {db_prefix}messages
  167. WHERE id_topic = {int:current_topic}
  168. AND id_member = {int:current_member}
  169. AND approved = 0',
  170. array(
  171. 'current_topic' => $topic,
  172. 'current_member' => $user_info['id'],
  173. )
  174. );
  175. list ($myUnapprovedPosts) = $smcFunc['db_fetch_row']($request);
  176. $smcFunc['db_free_result']($request);
  177. $context['total_visible_posts'] = $context['num_replies'] + $myUnapprovedPosts + ($topicinfo['approved'] ? 1 : 0);
  178. }
  179. elseif ($user_info['is_guest'])
  180. $context['total_visible_posts'] = $context['num_replies'] + ($topicinfo['approved'] ? 1 : 0);
  181. else
  182. $context['total_visible_posts'] = $context['num_replies'] + $topicinfo['unapproved_posts'] + ($topicinfo['approved'] ? 1 : 0);
  183. // When was the last time this topic was replied to? Should we warn them about it?
  184. $request = $smcFunc['db_query']('', '
  185. SELECT poster_time
  186. FROM {db_prefix}messages
  187. WHERE id_msg = {int:id_last_msg}
  188. LIMIT 1',
  189. array(
  190. 'id_last_msg' => $topicinfo['id_last_msg'],
  191. )
  192. );
  193. list ($lastPostTime) = $smcFunc['db_fetch_row']($request);
  194. $smcFunc['db_free_result']($request);
  195. $context['oldTopicError'] = !empty($modSettings['oldTopicDays']) && $lastPostTime + $modSettings['oldTopicDays'] * 86400 < time() && empty($topicinfo['is_sticky']);
  196. // The start isn't a number; it's information about what to do, where to go.
  197. if (!is_numeric($_REQUEST['start']))
  198. {
  199. // Redirect to the page and post with new messages, originally by Omar Bazavilvazo.
  200. if ($_REQUEST['start'] == 'new')
  201. {
  202. // Guests automatically go to the last post.
  203. if ($user_info['is_guest'])
  204. {
  205. $context['start_from'] = $context['total_visible_posts'] - 1;
  206. $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : 0;
  207. }
  208. else
  209. {
  210. // Find the earliest unread message in the topic. (the use of topics here is just for both tables.)
  211. $request = $smcFunc['db_query']('', '
  212. SELECT IFNULL(lt.id_msg, IFNULL(lmr.id_msg, -1)) + 1 AS new_from
  213. FROM {db_prefix}topics AS t
  214. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = {int:current_topic} AND lt.id_member = {int:current_member})
  215. LEFT JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = {int:current_board} AND lmr.id_member = {int:current_member})
  216. WHERE t.id_topic = {int:current_topic}
  217. LIMIT 1',
  218. array(
  219. 'current_board' => $board,
  220. 'current_member' => $user_info['id'],
  221. 'current_topic' => $topic,
  222. )
  223. );
  224. list ($new_from) = $smcFunc['db_fetch_row']($request);
  225. $smcFunc['db_free_result']($request);
  226. // Fall through to the next if statement.
  227. $_REQUEST['start'] = 'msg' . $new_from;
  228. }
  229. }
  230. // Start from a certain time index, not a message.
  231. if (substr($_REQUEST['start'], 0, 4) == 'from')
  232. {
  233. $timestamp = (int) substr($_REQUEST['start'], 4);
  234. if ($timestamp === 0)
  235. $_REQUEST['start'] = 0;
  236. else
  237. {
  238. // Find the number of messages posted before said time...
  239. $request = $smcFunc['db_query']('', '
  240. SELECT COUNT(*)
  241. FROM {db_prefix}messages
  242. WHERE poster_time < {int:timestamp}
  243. AND id_topic = {int:current_topic}' . ($modSettings['postmod_active'] && $topicinfo['unapproved_posts'] && !allowedTo('approve_posts') ? '
  244. AND (approved = {int:is_approved}' . ($user_info['is_guest'] ? '' : ' OR id_member = {int:current_member}') . ')' : ''),
  245. array(
  246. 'current_topic' => $topic,
  247. 'current_member' => $user_info['id'],
  248. 'is_approved' => 1,
  249. 'timestamp' => $timestamp,
  250. )
  251. );
  252. list ($context['start_from']) = $smcFunc['db_fetch_row']($request);
  253. $smcFunc['db_free_result']($request);
  254. // Handle view_newest_first options, and get the correct start value.
  255. $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : $context['total_visible_posts'] - $context['start_from'] - 1;
  256. }
  257. }
  258. // Link to a message...
  259. elseif (substr($_REQUEST['start'], 0, 3) == 'msg')
  260. {
  261. $virtual_msg = (int) substr($_REQUEST['start'], 3);
  262. if (!$topicinfo['unapproved_posts'] && $virtual_msg >= $topicinfo['id_last_msg'])
  263. $context['start_from'] = $context['total_visible_posts'] - 1;
  264. elseif (!$topicinfo['unapproved_posts'] && $virtual_msg <= $topicinfo['id_first_msg'])
  265. $context['start_from'] = 0;
  266. else
  267. {
  268. // Find the start value for that message......
  269. $request = $smcFunc['db_query']('', '
  270. SELECT COUNT(*)
  271. FROM {db_prefix}messages
  272. WHERE id_msg < {int:virtual_msg}
  273. AND id_topic = {int:current_topic}' . ($modSettings['postmod_active'] && $topicinfo['unapproved_posts'] && !allowedTo('approve_posts') ? '
  274. AND (approved = {int:is_approved}' . ($user_info['is_guest'] ? '' : ' OR id_member = {int:current_member}') . ')' : ''),
  275. array(
  276. 'current_member' => $user_info['id'],
  277. 'current_topic' => $topic,
  278. 'virtual_msg' => $virtual_msg,
  279. 'is_approved' => 1,
  280. 'no_member' => 0,
  281. )
  282. );
  283. list ($context['start_from']) = $smcFunc['db_fetch_row']($request);
  284. $smcFunc['db_free_result']($request);
  285. }
  286. // We need to reverse the start as well in this case.
  287. $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : $context['total_visible_posts'] - $context['start_from'] - 1;
  288. }
  289. }
  290. // Create a previous next string if the selected theme has it as a selected option.
  291. $context['previous_next'] = $modSettings['enablePreviousNext'] ? '<a href="' . $scripturl . '?topic=' . $topic . '.0;prev_next=prev#new">' . $txt['previous_next_back'] . '</a> <a href="' . $scripturl . '?topic=' . $topic . '.0;prev_next=next#new">' . $txt['previous_next_forward'] . '</a>' : '';
  292. // Check if spellchecking is both enabled and actually working. (for quick reply.)
  293. $context['show_spellchecking'] = !empty($modSettings['enableSpellChecking']) && function_exists('pspell_new');
  294. // Do we need to show the visual verification image?
  295. $context['require_verification'] = !$user_info['is_mod'] && !$user_info['is_admin'] && !empty($modSettings['posts_require_captcha']) && ($user_info['posts'] < $modSettings['posts_require_captcha'] || ($user_info['is_guest'] && $modSettings['posts_require_captcha'] == -1));
  296. if ($context['require_verification'])
  297. {
  298. require_once($sourcedir . '/Subs-Editor.php');
  299. $verificationOptions = array(
  300. 'id' => 'post',
  301. );
  302. $context['require_verification'] = create_control_verification($verificationOptions);
  303. $context['visual_verification_id'] = $verificationOptions['id'];
  304. }
  305. // Are we showing signatures - or disabled fields?
  306. $context['signature_enabled'] = substr($modSettings['signature_settings'], 0, 1) == 1;
  307. $context['disabled_fields'] = isset($modSettings['disabled_profile_fields']) ? array_flip(explode(',', $modSettings['disabled_profile_fields'])) : array();
  308. // Censor the title...
  309. censorText($topicinfo['subject']);
  310. $context['page_title'] = $topicinfo['subject'];
  311. // Is this topic sticky, or can it even be?
  312. $topicinfo['is_sticky'] = empty($modSettings['enableStickyTopics']) ? '0' : $topicinfo['is_sticky'];
  313. // Default this topic to not marked for notifications... of course...
  314. $context['is_marked_notify'] = false;
  315. // Did we report a post to a moderator just now?
  316. $context['report_sent'] = isset($_GET['reportsent']);
  317. // Let's get nosey, who is viewing this topic?
  318. if (!empty($settings['display_who_viewing']))
  319. {
  320. // Start out with no one at all viewing it.
  321. $context['view_members'] = array();
  322. $context['view_members_list'] = array();
  323. $context['view_num_hidden'] = 0;
  324. // Search for members who have this topic set in their GET data.
  325. $request = $smcFunc['db_query']('', '
  326. SELECT
  327. lo.id_member, lo.log_time, mem.real_name, mem.member_name, mem.show_online,
  328. mg.online_color, mg.id_group, mg.group_name
  329. FROM {db_prefix}log_online AS lo
  330. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lo.id_member)
  331. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:reg_id_group} THEN mem.id_post_group ELSE mem.id_group END)
  332. WHERE INSTR(lo.url, {string:in_url_string}) > 0 OR lo.session = {string:session}',
  333. array(
  334. 'reg_id_group' => 0,
  335. 'in_url_string' => 's:5:"topic";i:' . $topic . ';',
  336. 'session' => $user_info['is_guest'] ? 'ip' . $user_info['ip'] : session_id(),
  337. )
  338. );
  339. while ($row = $smcFunc['db_fetch_assoc']($request))
  340. {
  341. if (empty($row['id_member']))
  342. continue;
  343. if (!empty($row['online_color']))
  344. $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>';
  345. else
  346. $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>';
  347. $is_buddy = in_array($row['id_member'], $user_info['buddies']);
  348. if ($is_buddy)
  349. $link = '<strong>' . $link . '</strong>';
  350. // Add them both to the list and to the more detailed list.
  351. if (!empty($row['show_online']) || allowedTo('moderate_forum'))
  352. $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link;
  353. $context['view_members'][$row['log_time'] . $row['member_name']] = array(
  354. 'id' => $row['id_member'],
  355. 'username' => $row['member_name'],
  356. 'name' => $row['real_name'],
  357. 'group' => $row['id_group'],
  358. 'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
  359. 'link' => $link,
  360. 'is_buddy' => $is_buddy,
  361. 'hidden' => empty($row['show_online']),
  362. );
  363. if (empty($row['show_online']))
  364. $context['view_num_hidden']++;
  365. }
  366. // The number of guests is equal to the rows minus the ones we actually used ;).
  367. $context['view_num_guests'] = $smcFunc['db_num_rows']($request) - count($context['view_members']);
  368. $smcFunc['db_free_result']($request);
  369. // Sort the list.
  370. krsort($context['view_members']);
  371. krsort($context['view_members_list']);
  372. }
  373. // If all is set, but not allowed... just unset it.
  374. $can_show_all = !empty($modSettings['enableAllMessages']) && $context['total_visible_posts'] > $context['messages_per_page'] && $context['total_visible_posts'] < $modSettings['enableAllMessages'];
  375. if (isset($_REQUEST['all']) && !$can_show_all)
  376. unset($_REQUEST['all']);
  377. // Otherwise, it must be allowed... so pretend start was -1.
  378. elseif (isset($_REQUEST['all']))
  379. $_REQUEST['start'] = -1;
  380. // Construct the page index, allowing for the .START method...
  381. $context['page_index'] = constructPageIndex($scripturl . '?topic=' . $topic . '.%1$d', $_REQUEST['start'], $context['total_visible_posts'], $context['messages_per_page'], true);
  382. $context['start'] = $_REQUEST['start'];
  383. // This is information about which page is current, and which page we're on - in case you don't like the constructed page index. (again, wireles..)
  384. $context['page_info'] = array(
  385. 'current_page' => $_REQUEST['start'] / $context['messages_per_page'] + 1,
  386. 'num_pages' => floor(($context['total_visible_posts'] - 1) / $context['messages_per_page']) + 1,
  387. );
  388. // Figure out all the link to the next/prev/first/last/etc. for wireless mainly.
  389. $context['links'] = array(
  390. 'first' => $_REQUEST['start'] >= $context['messages_per_page'] ? $scripturl . '?topic=' . $topic . '.0' : '',
  391. 'prev' => $_REQUEST['start'] >= $context['messages_per_page'] ? $scripturl . '?topic=' . $topic . '.' . ($_REQUEST['start'] - $context['messages_per_page']) : '',
  392. 'next' => $_REQUEST['start'] + $context['messages_per_page'] < $context['total_visible_posts'] ? $scripturl . '?topic=' . $topic. '.' . ($_REQUEST['start'] + $context['messages_per_page']) : '',
  393. 'last' => $_REQUEST['start'] + $context['messages_per_page'] < $context['total_visible_posts'] ? $scripturl . '?topic=' . $topic. '.' . (floor($context['total_visible_posts'] / $context['messages_per_page']) * $context['messages_per_page']) : '',
  394. 'up' => $scripturl . '?board=' . $board . '.0'
  395. );
  396. // If they are viewing all the posts, show all the posts, otherwise limit the number.
  397. if ($can_show_all)
  398. {
  399. if (isset($_REQUEST['all']))
  400. {
  401. // No limit! (actually, there is a limit, but...)
  402. $context['messages_per_page'] = -1;
  403. $context['page_index'] .= empty($modSettings['compactTopicPagesEnable']) ? '<strong>' . $txt['all'] . '</strong> ' : '[<strong>' . $txt['all'] . '</strong>] ';
  404. // Set start back to 0...
  405. $_REQUEST['start'] = 0;
  406. }
  407. // They aren't using it, but the *option* is there, at least.
  408. else
  409. $context['page_index'] .= '&nbsp;<a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> ';
  410. }
  411. // Build the link tree.
  412. $context['linktree'][] = array(
  413. 'url' => $scripturl . '?topic=' . $topic . '.0',
  414. 'name' => $topicinfo['subject'],
  415. );
  416. // Build a list of this board's moderators.
  417. $context['moderators'] = &$board_info['moderators'];
  418. $context['link_moderators'] = array();
  419. if (!empty($board_info['moderators']))
  420. {
  421. // Add a link for each moderator...
  422. foreach ($board_info['moderators'] as $mod)
  423. $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>';
  424. // And show it after the board's name.
  425. $context['linktree'][count($context['linktree']) - 2]['extra_after'] = ' (' . (count($context['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators']) . ': ' . implode(', ', $context['link_moderators']) . ')';
  426. }
  427. // Information about the current topic...
  428. $context['is_locked'] = $topicinfo['locked'];
  429. $context['is_sticky'] = $topicinfo['is_sticky'];
  430. $context['is_very_hot'] = $topicinfo['num_replies'] >= $modSettings['hotTopicVeryPosts'];
  431. $context['is_hot'] = $topicinfo['num_replies'] >= $modSettings['hotTopicPosts'];
  432. $context['is_approved'] = $topicinfo['approved'];
  433. // @todo Tricks? We don't want to show the poll icon in the topic class here, so pretend it's not one.
  434. $context['is_poll'] = false;
  435. determineTopicClass($context);
  436. $context['is_poll'] = $topicinfo['id_poll'] > 0 && $modSettings['pollMode'] == '1' && allowedTo('poll_view');
  437. // Did this user start the topic or not?
  438. $context['user']['started'] = $user_info['id'] == $topicinfo['id_member_started'] && !$user_info['is_guest'];
  439. $context['topic_starter_id'] = $topicinfo['id_member_started'];
  440. // Set the topic's information for the template.
  441. $context['subject'] = $topicinfo['subject'];
  442. $context['num_views'] = $topicinfo['num_views'];
  443. $context['mark_unread_time'] = !empty($virtual_msg) ? $virtual_msg : $topicinfo['new_from'];
  444. // Set a canonical URL for this page.
  445. $context['canonical_url'] = $scripturl . '?topic=' . $topic . '.' . $context['start'];
  446. // For quick reply we need a response prefix in the default forum language.
  447. if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix', 600)))
  448. {
  449. if ($language === $user_info['language'])
  450. $context['response_prefix'] = $txt['response_prefix'];
  451. else
  452. {
  453. loadLanguage('index', $language, false);
  454. $context['response_prefix'] = $txt['response_prefix'];
  455. loadLanguage('index');
  456. }
  457. cache_put_data('response_prefix', $context['response_prefix'], 600);
  458. }
  459. // If we want to show event information in the topic, prepare the data.
  460. if (allowedTo('calendar_view') && !empty($modSettings['cal_showInTopic']) && !empty($modSettings['cal_enabled']))
  461. {
  462. // First, try create a better time format, ignoring the "time" elements.
  463. if (preg_match('~%[AaBbCcDdeGghjmuYy](?:[^%]*%[AaBbCcDdeGghjmuYy])*~', $user_info['time_format'], $matches) == 0 || empty($matches[0]))
  464. $date_string = $user_info['time_format'];
  465. else
  466. $date_string = $matches[0];
  467. // Any calendar information for this topic?
  468. $request = $smcFunc['db_query']('', '
  469. SELECT cal.id_event, cal.start_date, cal.end_date, cal.title, cal.id_member, mem.real_name
  470. FROM {db_prefix}calendar AS cal
  471. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = cal.id_member)
  472. WHERE cal.id_topic = {int:current_topic}
  473. ORDER BY start_date',
  474. array(
  475. 'current_topic' => $topic,
  476. )
  477. );
  478. $context['linked_calendar_events'] = array();
  479. while ($row = $smcFunc['db_fetch_assoc']($request))
  480. {
  481. // Prepare the dates for being formatted.
  482. $start_date = sscanf($row['start_date'], '%04d-%02d-%02d');
  483. $start_date = mktime(12, 0, 0, $start_date[1], $start_date[2], $start_date[0]);
  484. $end_date = sscanf($row['end_date'], '%04d-%02d-%02d');
  485. $end_date = mktime(12, 0, 0, $end_date[1], $end_date[2], $end_date[0]);
  486. $context['linked_calendar_events'][] = array(
  487. 'id' => $row['id_event'],
  488. 'title' => $row['title'],
  489. 'can_edit' => allowedTo('calendar_edit_any') || ($row['id_member'] == $user_info['id'] && allowedTo('calendar_edit_own')),
  490. 'modify_href' => $scripturl . '?action=post;msg=' . $topicinfo['id_first_msg'] . ';topic=' . $topic . '.0;calendar;eventid=' . $row['id_event'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  491. 'start_date' => timeformat($start_date, $date_string, 'none'),
  492. 'start_timestamp' => $start_date,
  493. 'end_date' => timeformat($end_date, $date_string, 'none'),
  494. 'end_timestamp' => $end_date,
  495. 'is_last' => false
  496. );
  497. }
  498. $smcFunc['db_free_result']($request);
  499. if (!empty($context['linked_calendar_events']))
  500. $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true;
  501. }
  502. // Create the poll info if it exists.
  503. if ($context['is_poll'])
  504. {
  505. // Get the question and if it's locked.
  506. $request = $smcFunc['db_query']('', '
  507. SELECT
  508. p.question, p.voting_locked, p.hide_results, p.expire_time, p.max_votes, p.change_vote,
  509. p.guest_vote, p.id_member, IFNULL(mem.real_name, p.poster_name) AS poster_name, p.num_guest_voters, p.reset_poll
  510. FROM {db_prefix}polls AS p
  511. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = p.id_member)
  512. WHERE p.id_poll = {int:id_poll}
  513. LIMIT 1',
  514. array(
  515. 'id_poll' => $topicinfo['id_poll'],
  516. )
  517. );
  518. $pollinfo = $smcFunc['db_fetch_assoc']($request);
  519. $smcFunc['db_free_result']($request);
  520. $request = $smcFunc['db_query']('', '
  521. SELECT COUNT(DISTINCT id_member) AS total
  522. FROM {db_prefix}log_polls
  523. WHERE id_poll = {int:id_poll}
  524. AND id_member != {int:not_guest}',
  525. array(
  526. 'id_poll' => $topicinfo['id_poll'],
  527. 'not_guest' => 0,
  528. )
  529. );
  530. list ($pollinfo['total']) = $smcFunc['db_fetch_row']($request);
  531. $smcFunc['db_free_result']($request);
  532. // Total voters needs to include guest voters
  533. $pollinfo['total'] += $pollinfo['num_guest_voters'];
  534. // Get all the options, and calculate the total votes.
  535. $request = $smcFunc['db_query']('', '
  536. SELECT pc.id_choice, pc.label, pc.votes, IFNULL(lp.id_choice, -1) AS voted_this
  537. FROM {db_prefix}poll_choices AS pc
  538. LEFT JOIN {db_prefix}log_polls AS lp ON (lp.id_choice = pc.id_choice AND lp.id_poll = {int:id_poll} AND lp.id_member = {int:current_member} AND lp.id_member != {int:not_guest})
  539. WHERE pc.id_poll = {int:id_poll}',
  540. array(
  541. 'current_member' => $user_info['id'],
  542. 'id_poll' => $topicinfo['id_poll'],
  543. 'not_guest' => 0,
  544. )
  545. );
  546. $pollOptions = array();
  547. $realtotal = 0;
  548. $pollinfo['has_voted'] = false;
  549. while ($row = $smcFunc['db_fetch_assoc']($request))
  550. {
  551. censorText($row['label']);
  552. $pollOptions[$row['id_choice']] = $row;
  553. $realtotal += $row['votes'];
  554. $pollinfo['has_voted'] |= $row['voted_this'] != -1;
  555. }
  556. $smcFunc['db_free_result']($request);
  557. // If this is a guest we need to do our best to work out if they have voted, and what they voted for.
  558. if ($user_info['is_guest'] && $pollinfo['guest_vote'] && allowedTo('poll_vote'))
  559. {
  560. if (!empty($_COOKIE['guest_poll_vote']) && preg_match('~^[0-9,;]+$~', $_COOKIE['guest_poll_vote']) && strpos($_COOKIE['guest_poll_vote'], ';' . $topicinfo['id_poll'] . ',') !== false)
  561. {
  562. // ;id,timestamp,[vote,vote...]; etc
  563. $guestinfo = explode(';', $_COOKIE['guest_poll_vote']);
  564. // Find the poll we're after.
  565. foreach ($guestinfo as $i => $guestvoted)
  566. {
  567. $guestvoted = explode(',', $guestvoted);
  568. if ($guestvoted[0] == $topicinfo['id_poll'])
  569. break;
  570. }
  571. // Has the poll been reset since guest voted?
  572. if ($pollinfo['reset_poll'] > $guestvoted[1])
  573. {
  574. // Remove the poll info from the cookie to allow guest to vote again
  575. unset($guestinfo[$i]);
  576. if (!empty($guestinfo))
  577. $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo);
  578. else
  579. unset($_COOKIE['guest_poll_vote']);
  580. }
  581. else
  582. {
  583. // What did they vote for?
  584. unset($guestvoted[0], $guestvoted[1]);
  585. foreach ($pollOptions as $choice => $details)
  586. {
  587. $pollOptions[$choice]['voted_this'] = in_array($choice, $guestvoted) ? 1 : -1;
  588. $pollinfo['has_voted'] |= $pollOptions[$choice]['voted_this'] != -1;
  589. }
  590. unset($choice, $details, $guestvoted);
  591. }
  592. unset($guestinfo, $guestvoted, $i);
  593. }
  594. }
  595. // Set up the basic poll information.
  596. $context['poll'] = array(
  597. 'id' => $topicinfo['id_poll'],
  598. 'image' => 'normal_' . (empty($pollinfo['voting_locked']) ? 'poll' : 'locked_poll'),
  599. 'question' => parse_bbc($pollinfo['question']),
  600. 'total_votes' => $pollinfo['total'],
  601. 'change_vote' => !empty($pollinfo['change_vote']),
  602. 'is_locked' => !empty($pollinfo['voting_locked']),
  603. 'options' => array(),
  604. 'lock' => allowedTo('poll_lock_any') || ($context['user']['started'] && allowedTo('poll_lock_own')),
  605. 'edit' => allowedTo('poll_edit_any') || ($context['user']['started'] && allowedTo('poll_edit_own')),
  606. 'allowed_warning' => $pollinfo['max_votes'] > 1 ? sprintf($txt['poll_options6'], min(count($pollOptions), $pollinfo['max_votes'])) : '',
  607. 'is_expired' => !empty($pollinfo['expire_time']) && $pollinfo['expire_time'] < time(),
  608. 'expire_time' => !empty($pollinfo['expire_time']) ? timeformat($pollinfo['expire_time']) : 0,
  609. 'has_voted' => !empty($pollinfo['has_voted']),
  610. 'starter' => array(
  611. 'id' => $pollinfo['id_member'],
  612. 'name' => $row['poster_name'],
  613. 'href' => $pollinfo['id_member'] == 0 ? '' : $scripturl . '?action=profile;u=' . $pollinfo['id_member'],
  614. 'link' => $pollinfo['id_member'] == 0 ? $row['poster_name'] : '<a href="' . $scripturl . '?action=profile;u=' . $pollinfo['id_member'] . '">' . $row['poster_name'] . '</a>'
  615. )
  616. );
  617. // Make the lock and edit permissions defined above more directly accessible.
  618. $context['allow_lock_poll'] = $context['poll']['lock'];
  619. $context['allow_edit_poll'] = $context['poll']['edit'];
  620. // You're allowed to vote if:
  621. // 1. the poll did not expire, and
  622. // 2. you're either not a guest OR guest voting is enabled... and
  623. // 3. you're not trying to view the results, and
  624. // 4. the poll is not locked, and
  625. // 5. you have the proper permissions, and
  626. // 6. you haven't already voted before.
  627. $context['allow_vote'] = !$context['poll']['is_expired'] && (!$user_info['is_guest'] || ($pollinfo['guest_vote'] && allowedTo('poll_vote'))) && empty($pollinfo['voting_locked']) && allowedTo('poll_vote') && !$context['poll']['has_voted'];
  628. // You're allowed to view the results if:
  629. // 1. you're just a super-nice-guy, or
  630. // 2. anyone can see them (hide_results == 0), or
  631. // 3. you can see them after you voted (hide_results == 1), or
  632. // 4. you've waited long enough for the poll to expire. (whether hide_results is 1 or 2.)
  633. $context['allow_poll_view'] = allowedTo('moderate_board') || $pollinfo['hide_results'] == 0 || ($pollinfo['hide_results'] == 1 && $context['poll']['has_voted']) || $context['poll']['is_expired'];
  634. $context['poll']['show_results'] = $context['allow_poll_view'] && (isset($_REQUEST['viewresults']) || isset($_REQUEST['viewResults']));
  635. $context['show_view_results_button'] = $context['allow_vote'] && (!$context['allow_poll_view'] || !$context['poll']['show_results'] || !$context['poll']['has_voted']);
  636. // You're allowed to change your vote if:
  637. // 1. the poll did not expire, and
  638. // 2. you're not a guest... and
  639. // 3. the poll is not locked, and
  640. // 4. you have the proper permissions, and
  641. // 5. you have already voted, and
  642. // 6. the poll creator has said you can!
  643. $context['allow_change_vote'] = !$context['poll']['is_expired'] && !$user_info['is_guest'] && empty($pollinfo['voting_locked']) && allowedTo('poll_vote') && $context['poll']['has_voted'] && $context['poll']['change_vote'];
  644. // You're allowed to return to voting options if:
  645. // 1. you are (still) allowed to vote.
  646. // 2. you are currently seeing the results.
  647. $context['allow_return_vote'] = $context['allow_vote'] && $context['poll']['show_results'];
  648. // Calculate the percentages and bar lengths...
  649. $divisor = $realtotal == 0 ? 1 : $realtotal;
  650. // Determine if a decimal point is needed in order for the options to add to 100%.
  651. $precision = $realtotal == 100 ? 0 : 1;
  652. // Now look through each option, and...
  653. foreach ($pollOptions as $i => $option)
  654. {
  655. // First calculate the percentage, and then the width of the bar...
  656. $bar = round(($option['votes'] * 100) / $divisor, $precision);
  657. $barWide = $bar == 0 ? 1 : floor(($bar * 8) / 3);
  658. // Now add it to the poll's contextual theme data.
  659. $context['poll']['options'][$i] = array(
  660. 'id' => 'options-' . $i,
  661. 'percent' => $bar,
  662. 'votes' => $option['votes'],
  663. 'voted_this' => $option['voted_this'] != -1,
  664. 'bar' => '<span style="white-space: nowrap;"><img src="' . $settings['images_url'] . '/poll_' . ($context['right_to_left'] ? 'right' : 'left') . '.png" alt="" /><img src="' . $settings['images_url'] . '/poll_middle.png" width="' . $barWide . '" height="12" alt="-" /><img src="' . $settings['images_url'] . '/poll_' . ($context['right_to_left'] ? 'left' : 'right') . '.png" alt="" /></span>',
  665. // Note: IE < 8 requires us to set a width on the container, too.
  666. 'bar_ndt' => $bar > 0 ? '<div class="bar" style="width: ' . ($bar * 3.5 + 4) . 'px;"><div style="width: ' . $bar * 3.5 . 'px;"></div></div>' : '',
  667. 'bar_width' => $barWide,
  668. 'option' => parse_bbc($option['label']),
  669. 'vote_button' => '<input type="' . ($pollinfo['max_votes'] > 1 ? 'checkbox' : 'radio') . '" name="options[]" id="options-' . $i . '" value="' . $i . '" class="input_' . ($pollinfo['max_votes'] > 1 ? 'check' : 'radio') . '" />'
  670. );
  671. }
  672. }
  673. // Calculate the fastest way to get the messages!
  674. $ascending = empty($options['view_newest_first']);
  675. $start = $_REQUEST['start'];
  676. $limit = $context['messages_per_page'];
  677. $firstIndex = 0;
  678. if ($start >= $context['total_visible_posts'] / 2 && $context['messages_per_page'] != -1)
  679. {
  680. $ascending = !$ascending;
  681. $limit = $context['total_visible_posts'] <= $start + $limit ? $context['total_visible_posts'] - $start : $limit;
  682. $start = $context['total_visible_posts'] <= $start + $limit ? 0 : $context['total_visible_posts'] - $start - $limit;
  683. $firstIndex = $limit - 1;
  684. }
  685. // Get each post and poster in this topic.
  686. $request = $smcFunc['db_query']('display_get_post_poster', '
  687. SELECT id_msg, id_member, approved
  688. FROM {db_prefix}messages
  689. WHERE id_topic = {int:current_topic}' . (!$modSettings['postmod_active'] || allowedTo('approve_posts') ? '' : (!empty($modSettings['db_mysql_group_by_fix']) ? '' : '
  690. GROUP BY id_msg') . '
  691. HAVING (approved = {int:is_approved}' . ($user_info['is_guest'] ? '' : ' OR id_member = {int:current_member}') . ')') . '
  692. ORDER BY id_msg ' . ($ascending ? '' : 'DESC') . ($context['messages_per_page'] == -1 ? '' : '
  693. LIMIT ' . $start . ', ' . $limit),
  694. array(
  695. 'current_member' => $user_info['id'],
  696. 'current_topic' => $topic,
  697. 'is_approved' => 1,
  698. 'blank_id_member' => 0,
  699. )
  700. );
  701. $messages = array();
  702. $all_posters = array();
  703. while ($row = $smcFunc['db_fetch_assoc']($request))
  704. {
  705. if (!empty($row['id_member']))
  706. $all_posters[$row['id_msg']] = $row['id_member'];
  707. $messages[] = $row['id_msg'];
  708. }
  709. $smcFunc['db_free_result']($request);
  710. $posters = array_unique($all_posters);
  711. // Guests can't mark topics read or for notifications, just can't sorry.
  712. if (!$user_info['is_guest'] && !empty($messages))
  713. {
  714. $mark_at_msg = max($messages);
  715. if ($mark_at_msg >= $topicinfo['id_last_msg'])
  716. $mark_at_msg = $modSettings['maxMsgID'];
  717. if ($mark_at_msg >= $topicinfo['new_from'])
  718. {
  719. $smcFunc['db_insert']($topicinfo['new_from'] == 0 ? 'ignore' : 'replace',
  720. '{db_prefix}log_topics',
  721. array(
  722. 'id_member' => 'int', 'id_topic' => 'int', 'id_msg' => 'int',
  723. ),
  724. array(
  725. $user_info['id'], $topic, $mark_at_msg,
  726. ),
  727. array('id_member', 'id_topic')
  728. );
  729. }
  730. // Check for notifications on this topic OR board.
  731. $request = $smcFunc['db_query']('', '
  732. SELECT sent, id_topic
  733. FROM {db_prefix}log_notify
  734. WHERE (id_topic = {int:current_topic} OR id_board = {int:current_board})
  735. AND id_member = {int:current_member}
  736. LIMIT 2',
  737. array(
  738. 'current_board' => $board,
  739. 'current_member' => $user_info['id'],
  740. 'current_topic' => $topic,
  741. )
  742. );
  743. $do_once = true;
  744. while ($row = $smcFunc['db_fetch_assoc']($request))
  745. {
  746. // Find if this topic is marked for notification...
  747. if (!empty($row['id_topic']))
  748. $context['is_marked_notify'] = true;
  749. // Only do this once, but mark the notifications as "not sent yet" for next time.
  750. if (!empty($row['sent']) && $do_once)
  751. {
  752. $smcFunc['db_query']('', '
  753. UPDATE {db_prefix}log_notify
  754. SET sent = {int:is_not_sent}
  755. WHERE (id_topic = {int:current_topic} OR id_board = {int:current_board})
  756. AND id_member = {int:current_member}',
  757. array(
  758. 'current_board' => $board,
  759. 'current_member' => $user_info['id'],
  760. 'current_topic' => $topic,
  761. 'is_not_sent' => 0,
  762. )
  763. );
  764. $do_once = false;
  765. }
  766. }
  767. // Have we recently cached the number of new topics in this board, and it's still a lot?
  768. if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5)
  769. $_SESSION['topicseen_cache'][$board]--;
  770. // Mark board as seen if this is the only new topic.
  771. elseif (isset($_REQUEST['topicseen']))
  772. {
  773. // Use the mark read tables... and the last visit to figure out if this should be read or not.
  774. $request = $smcFunc['db_query']('', '
  775. SELECT COUNT(*)
  776. FROM {db_prefix}topics AS t
  777. LEFT JOIN {db_prefix}log_boards AS lb ON (lb.id_board = {int:current_board} AND lb.id_member = {int:current_member})
  778. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = t.id_topic AND lt.id_member = {int:current_member})
  779. WHERE t.id_board = {int:current_board}
  780. AND t.id_last_msg > IFNULL(lb.id_msg, 0)
  781. AND t.id_last_msg > IFNULL(lt.id_msg, 0)' . (empty($_SESSION['id_msg_last_visit']) ? '' : '
  782. AND t.id_last_msg > {int:id_msg_last_visit}'),
  783. array(
  784. 'current_board' => $board,
  785. 'current_member' => $user_info['id'],
  786. 'id_msg_last_visit' => (int) $_SESSION['id_msg_last_visit'],
  787. )
  788. );
  789. list ($numNewTopics) = $smcFunc['db_fetch_row']($request);
  790. $smcFunc['db_free_result']($request);
  791. // If there're no real new topics in this board, mark the board as seen.
  792. if (empty($numNewTopics))
  793. $_REQUEST['boardseen'] = true;
  794. else
  795. $_SESSION['topicseen_cache'][$board] = $numNewTopics;
  796. }
  797. // Probably one less topic - maybe not, but even if we decrease this too fast it will only make us look more often.
  798. elseif (isset($_SESSION['topicseen_cache'][$board]))
  799. $_SESSION['topicseen_cache'][$board]--;
  800. // Mark board as seen if we came using last post link from BoardIndex. (or other places...)
  801. if (isset($_REQUEST['boardseen']))
  802. {
  803. $smcFunc['db_insert']('replace',
  804. '{db_prefix}log_boards',
  805. array('id_msg' => 'int', 'id_member' => 'int', 'id_board' => 'int'),
  806. array($modSettings['maxMsgID'], $user_info['id'], $board),
  807. array('id_member', 'id_board')
  808. );
  809. }
  810. }
  811. $attachments = array();
  812. // If there _are_ messages here... (probably an error otherwise :!)
  813. if (!empty($messages))
  814. {
  815. // Fetch attachments.
  816. if (!empty($modSettings['attachmentEnable']) && allowedTo('view_attachments'))
  817. {
  818. $request = $smcFunc['db_query']('', '
  819. SELECT
  820. a.id_attach, a.id_folder, a.id_msg, a.filename, a.file_hash, IFNULL(a.size, 0) AS filesize, a.downloads, a.approved,
  821. a.width, a.height' . (empty($modSettings['attachmentShowImages']) || empty($modSettings['attachmentThumbnails']) ? '' : ',
  822. IFNULL(thumb.id_attach, 0) AS id_thumb, thumb.width AS thumb_width, thumb.height AS thumb_height') . '
  823. FROM {db_prefix}attachments AS a' . (empty($modSettings['attachmentShowImages']) || empty($modSettings['attachmentThumbnails']) ? '' : '
  824. LEFT JOIN {db_prefix}attachments AS thumb ON (thumb.id_attach = a.id_thumb)') . '
  825. WHERE a.id_msg IN ({array_int:message_list})
  826. AND a.attachment_type = {int:attachment_type}',
  827. array(
  828. 'message_list' => $messages,
  829. 'attachment_type' => 0,
  830. 'is_approved' => 1,
  831. )
  832. );
  833. $temp = array();
  834. while ($row = $smcFunc['db_fetch_assoc']($request))
  835. {
  836. if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id']))
  837. continue;
  838. $temp[$row['id_attach']] = $row;
  839. if (!isset($attachments[$row['id_msg']]))
  840. $attachments[$row['id_msg']] = array();
  841. }
  842. $smcFunc['db_free_result']($request);
  843. // This is better than sorting it with the query...
  844. ksort($temp);
  845. foreach ($temp as $row)
  846. $attachments[$row['id_msg']][] = $row;
  847. }
  848. // What? It's not like it *couldn't* be only guests in this topic...
  849. if (!empty($posters))
  850. loadMemberData($posters);
  851. $messages_request = $smcFunc['db_query']('', '
  852. SELECT
  853. id_msg, icon, subject, poster_time, poster_ip, id_member, modified_time, modified_name, body,
  854. smileys_enabled, poster_name, poster_email, approved,
  855. id_msg_modified < {int:new_from} AS is_read
  856. FROM {db_prefix}messages
  857. WHERE id_msg IN ({array_int:message_list})
  858. ORDER BY id_msg' . (empty($options['view_newest_first']) ? '' : ' DESC'),
  859. array(
  860. 'message_list' => $messages,
  861. 'new_from' => $topicinfo['new_from'],
  862. )
  863. );
  864. // Go to the last message if the given time is beyond the time of the last message.
  865. if (isset($context['start_from']) && $context['start_from'] >= $topicinfo['num_replies'])
  866. $context['start_from'] = $topicinfo['num_replies'];
  867. // Since the anchor information is needed on the top of the page we load these variables beforehand.
  868. $context['first_message'] = isset($messages[$firstIndex]) ? $messages[$firstIndex] : $messages[0];
  869. if (empty($options['view_newest_first']))
  870. $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from'];
  871. else
  872. $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $topicinfo['num_replies'] - $context['start_from'];
  873. }
  874. else
  875. {
  876. $messages_request = false;
  877. $context['first_message'] = 0;
  878. $context['first_new_message'] = false;
  879. }
  880. $context['jump_to'] = array(
  881. 'label' => addslashes(un_htmlspecialchars($txt['jump_to'])),
  882. 'board_name' => htmlspecialchars(strtr(strip_tags($board_info['name']), array('&amp;' => '&'))),
  883. 'child_level' => $board_info['child_level'],
  884. );
  885. // Set the callback. (do you REALIZE how much memory all the messages would take?!?)
  886. // This will be called from the template.
  887. $context['get_message'] = 'prepareDisplayContext';
  888. // Now set all the wonderful, wonderful permissions... like moderation ones...
  889. $common_permissions = array(
  890. 'can_approve' => 'approve_posts',
  891. 'can_ban' => 'manage_bans',
  892. 'can_sticky' => 'make_sticky',
  893. 'can_merge' => 'merge_any',
  894. 'can_split' => 'split_any',
  895. 'calendar_post' => 'calendar_post',
  896. 'can_mark_notify' => 'mark_any_notify',
  897. 'can_send_topic' => 'send_topic',
  898. 'can_send_pm' => 'pm_send',
  899. 'can_send_email' => 'send_email_to_members',
  900. 'can_report_moderator' => 'report_any',
  901. 'can_moderate_forum' => 'moderate_forum',
  902. 'can_issue_warning' => 'issue_warning',
  903. 'can_restore_topic' => 'move_any',
  904. 'can_restore_msg' => 'move_any',
  905. );
  906. foreach ($common_permissions as $contextual => $perm)
  907. $context[$contextual] = allowedTo($perm);
  908. // Permissions with _any/_own versions. $context[YYY] => ZZZ_any/_own.
  909. $anyown_permissions = array(
  910. 'can_move' => 'move',
  911. 'can_lock' => 'lock',
  912. 'can_delete' => 'remove',
  913. 'can_add_poll' => 'poll_add',
  914. 'can_remove_poll' => 'poll_remove',
  915. 'can_reply' => 'post_reply',
  916. 'can_reply_unapproved' => 'post_unapproved_replies',
  917. );
  918. foreach ($anyown_permissions as $contextual => $perm)
  919. $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own'));
  920. // Cleanup all the permissions with extra stuff...
  921. $context['can_mark_notify'] &= !$context['user']['is_guest'];
  922. $context['can_sticky'] &= !empty($modSettings['enableStickyTopics']);
  923. $context['calendar_post'] &= !empty($modSettings['cal_enabled']);
  924. $context['can_add_poll'] &= $modSettings['pollMode'] == '1' && $topicinfo['id_poll'] <= 0;
  925. $context['can_remove_poll'] &= $modSettings['pollMode'] == '1' && $topicinfo['id_poll'] > 0;
  926. $context['can_reply'] &= empty($topicinfo['locked']) || allowedTo('moderate_board');
  927. $context['can_reply_unapproved'] &= $modSettings['postmod_active'] && (empty($topicinfo['locked']) || allowedTo('moderate_board'));
  928. $context['can_issue_warning'] &= in_array('w', $context['admin_features']) && $modSettings['warning_settings'][0] == 1;
  929. // Handle approval flags...
  930. $context['can_reply_approved'] = $context['can_reply'];
  931. $context['can_reply'] |= $context['can_reply_unapproved'];
  932. $context['can_quote'] = $context['can_reply'] && (empty($modSettings['disabledBBC']) || !in_array('quote', explode(',', $modSettings['disabledBBC'])));
  933. $context['can_mark_unread'] = !$user_info['is_guest'] && $settings['show_mark_read'];
  934. $context['can_send_topic'] = (!$modSettings['postmod_active'] || $topicinfo['approved']) && allowedTo('send_topic');
  935. // Start this off for quick moderation - it will be or'd for each post.
  936. $context['can_remove_post'] = allowedTo('delete_any') || (allowedTo('delete_replies') && $context['user']['started']);
  937. // Can restore topic? That's if the topic is in the recycle board and has a previous restore state.
  938. $context['can_restore_topic'] &= !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board && !empty($topicinfo['id_previous_board']);
  939. $context['can_restore_msg'] &= !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board && !empty($topicinfo['id_previous_topic']);
  940. // Wireless shows a "more" if you can do anything special.
  941. if (WIRELESS && WIRELESS_PROTOCOL != 'wap')
  942. {
  943. $context['wireless_more'] = $context['can_sticky'] || $context['can_lock'] || allowedTo('modify_any');
  944. $context['wireless_moderate'] = isset($_GET['moderate']) ? ';moderate' : '';
  945. }
  946. // Load up the "double post" sequencing magic.
  947. if (!empty($options['display_quick_reply']))
  948. {
  949. checkSubmitOnce('register');
  950. $context['name'] = isset($_SESSION['guest_name']) ? $_SESSION['guest_name'] : '';
  951. $context['email'] = isset($_SESSION['guest_email']) ? $_SESSION['guest_email'] : '';
  952. }
  953. }
  954. /**
  955. * Callback for the message display.
  956. * It actually gets and prepares the message context.
  957. * This function will start over from the beginning if reset is set to true, which is
  958. * useful for showing an index before or after the posts.
  959. * @param bool $reset, default false.
  960. */
  961. function prepareDisplayContext($reset = false)
  962. {
  963. global $settings, $txt, $modSettings, $scripturl, $options, $user_info, $smcFunc;
  964. global $memberContext, $context, $messages_request, $topic, $attachments, $topicinfo;
  965. static $counter = null;
  966. // If the query returned false, bail.
  967. if ($messages_request == false)
  968. return false;
  969. // Remember which message this is. (ie. reply #83)
  970. if ($counter === null || $reset)
  971. $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start'];
  972. // Start from the beginning...
  973. if ($reset)
  974. return @$smcFunc['db_data_seek']($messages_request, 0);
  975. // Attempt to get the next message.
  976. $message = $smcFunc['db_fetch_assoc']($messages_request);
  977. if (!$message)
  978. {
  979. $smcFunc['db_free_result']($messages_request);
  980. return false;
  981. }
  982. // $context['icon_sources'] says where each icon should come from - here we set up the ones which will always exist!
  983. if (empty($context['icon_sources']))
  984. {
  985. $stable_icons = array('xx', 'thumbup', 'thumbdown', 'exclamation', 'question', 'lamp', 'smiley', 'angry', 'cheesy', 'grin', 'sad', 'wink', 'poll', 'moved', 'recycled', 'wireless', 'clip');
  986. $context['icon_sources'] = array();
  987. foreach ($stable_icons as $icon)
  988. $context['icon_sources'][$icon] = 'images_url';
  989. }
  990. // Message Icon Management... check the images exist.
  991. if (empty($modSettings['messageIconChecks_disable']))
  992. {
  993. // If the current icon isn't known, then we need to do something...
  994. if (!isset($context['icon_sources'][$message['icon']]))
  995. $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url';
  996. }
  997. elseif (!isset($context['icon_sources'][$message['icon']]))
  998. $context['icon_sources'][$message['icon']] = 'images_url';
  999. // If you're a lazy bum, you probably didn't give a subject...
  1000. $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject'];
  1001. // Are you allowed to remove at least a single reply?
  1002. $context['can_remove_post'] |= allowedTo('delete_own') && (empty($modSettings['edit_disable_time']) || $message['poster_time'] + $modSettings['edit_disable_time'] * 60 >= time()) && $message['id_member'] == $user_info['id'];
  1003. // If it couldn't load, or the user was a guest.... someday may be done with a guest table.
  1004. if (!loadMemberContext($message['id_member'], true))
  1005. {
  1006. // Notice this information isn't used anywhere else....
  1007. $memberContext[$message['id_member']]['name'] = $message['poster_name'];
  1008. $memberContext[$message['id_member']]['id'] = 0;
  1009. $memberContext[$message['id_member']]['group'] = $txt['guest_title'];
  1010. $memberContext[$message['id_member']]['link'] = $message['poster_name'];
  1011. $memberContext[$message['id_member']]['email'] = $message['poster_email'];
  1012. $memberContext[$message['id_member']]['show_email'] = showEmailAddress(true, 0);
  1013. $memberContext[$message['id_member']]['is_guest'] = true;
  1014. }
  1015. else
  1016. {
  1017. $memberContext[$message['id_member']]['can_view_profile'] = allowedTo('profile_view_any') || ($message['id_member'] == $user_info['id'] && allowedTo('profile_view_own'));
  1018. $memberContext[$message['id_member']]['is_topic_starter'] = $message['id_member'] == $context['topic_starter_id'];
  1019. $memberContext[$message['id_member']]['can_see_warning'] = !isset($context['disabled_fields']['warning_status']) && $memberContext[$message['id_member']]['warning_status'] && ($context['user']['can_mod'] || (!$user_info['is_guest'] && !empty($modSettings['warning_show']) && ($modSettings['warning_show'] > 1 || $message['id_member'] == $user_info['id'])));
  1020. }
  1021. $memberContext[$message['id_member']]['ip'] = $message['poster_ip'];
  1022. $context['show_profile_buttons'] = $settings['show_profile_buttons'] && (!empty($memberContext[$message['id_member']]['can_view_profile']) || (!empty($memberContext[$message['id_member']]['website']['url']) && !isset($context['disabled_fields']['website'])) || (in_array($memberContext[$message['id_member']]['show_email'], array('yes', 'yes_permission_override', 'no_through_forum'))) || $context['can_send_pm']);
  1023. // Do the censor thang.
  1024. censorText($message['body']);
  1025. censorText($message['subject']);
  1026. // Run BBC interpreter on the message.
  1027. $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']);
  1028. // Compose the memory eat- I mean message array.
  1029. $output = array(
  1030. 'attachment' => loadAttachmentContext($message['id_msg']),
  1031. 'alternate' => $counter % 2,
  1032. 'id' => $message['id_msg'],
  1033. 'href' => $scripturl . '?topic=' . $topic . '.msg' . $message['id_msg'] . '#msg' . $message['id_msg'],
  1034. 'link' => '<a href="' . $scripturl . '?topic=' . $topic . '.msg' . $message['id_msg'] . '#msg' . $message['id_msg'] . '" rel="nofollow">' . $message['subject'] . '</a>',
  1035. 'member' => &$memberContext[$message['id_member']],
  1036. 'icon' => $message['icon'],
  1037. 'icon_url' => $settings[$context['icon_sources'][$message['icon']]] . '/post/' . $message['icon'] . '.png',
  1038. 'subject' => $message['subject'],
  1039. 'time' => timeformat($message['poster_time']),
  1040. 'timestamp' => forum_time(true, $message['poster_time']),
  1041. 'counter' => $counter,
  1042. 'modified' => array(
  1043. 'time' => timeformat($message['modified_time']),
  1044. 'timestamp' => forum_time(true, $message['modified_time']),
  1045. 'name' => $message['modified_name']
  1046. ),
  1047. 'body' => $message['body'],
  1048. 'new' => empty($message['is_read']),
  1049. 'approved' => $message['approved'],
  1050. 'first_new' => isset($context['start_from']) && $context['start_from'] == $counter,
  1051. 'is_ignored' => !empty($modSettings['enable_buddylist']) && !empty($options['posts_apply_ignore_list']) && in_array($message['id_member'], $context['user']['ignoreusers']),
  1052. 'can_approve' => !$message['approved'] && $context['can_approve'],
  1053. 'can_unapprove' => $message['approved'] && $context['can_approve'],
  1054. 'can_modify' => (!$context['is_locked'] || allowedTo('moderate_board')) && (allowedTo('modify_any') || (allowedTo('modify_replies') && $context['user']['started']) || (allowedTo('modify_own') && $message['id_member'] == $user_info['id'] && (empty($modSettings['edit_disable_time']) || !$message['approved'] || $message['poster_time'] + $modSettings['edit_disable_time'] * 60 > time()))),
  1055. 'can_remove' => allowedTo('delete_any') || (allowedTo('delete_replies') && $context['user']['started']) || (allowedTo('delete_own') && $message['id_member'] == $user_info['id'] && (empty($modSettings['edit_disable_time']) || $message['poster_time'] + $modSettings['edit_disable_time'] * 60 > time())),
  1056. 'can_see_ip' => allowedTo('moderate_forum') || ($message['id_member'] == $user_info['id'] && !empty($user_info['id'])),
  1057. );
  1058. // Is this user the message author?
  1059. $output['is_message_author'] = $message['id_member'] == $user_info['id'];
  1060. if (empty($options['view_newest_first']))
  1061. $counter++;
  1062. else
  1063. $counter--;
  1064. return $output;
  1065. }
  1066. /**
  1067. * Downloads an attachment or avatar, and increments the download count.
  1068. * It requires the view_attachments permission. (not for avatars!)
  1069. * It disables the session parser, and clears any previous output.
  1070. * It depends on the attachmentUploadDir setting being correct.
  1071. * It is accessed via the query string ?action=dlattach.
  1072. * Views to attachments and avatars do not increase hits and are not logged in the "Who's Online" log.
  1073. */
  1074. function Download()
  1075. {
  1076. global $txt, $modSettings, $user_info, $scripturl, $context, $sourcedir, $topic, $smcFunc;
  1077. // Some defaults that we need.
  1078. $context['character_set'] = empty($modSettings['global_character_set']) ? (empty($txt['lang_character_set']) ? 'ISO-8859-1' : $txt['lang_character_set']) : $modSettings['global_character_set'];
  1079. $context['utf8'] = $context['character_set'] === 'UTF-8';
  1080. $context['no_last_modified'] = true;
  1081. // Make sure some attachment was requested!
  1082. if (!isset($_REQUEST['attach']) && !isset($_REQUEST['id']))
  1083. fatal_lang_error('no_access', false);
  1084. $_REQUEST['attach'] = isset($_REQUEST['attach']) ? (int) $_REQUEST['attach'] : (int) $_REQUEST['id'];
  1085. if (isset($_REQUEST['type']) && $_REQUEST['type'] == 'avatar')
  1086. {
  1087. $request = $smcFunc['db_query']('', '
  1088. SELECT id_folder, filename, file_hash, fileext, id_attach, attachment_type, mime_type, approved, id_member
  1089. FROM {db_prefix}attachments
  1090. WHERE id_attach = {int:id_attach}
  1091. AND id_member > {int:blank_id_member}
  1092. LIMIT 1',
  1093. array(
  1094. 'id_attach' => $_REQUEST['attach'],
  1095. 'blank_id_member' => 0,
  1096. )
  1097. );
  1098. $_REQUEST['image'] = true;
  1099. }
  1100. // This is just a regular attachment...
  1101. else
  1102. {
  1103. // This checks only the current board for $board/$topic's permissions.
  1104. isAllowedTo('view_attachments');
  1105. // Make sure this attachment is on this board.
  1106. // @todo: We must verify that $topic is the attachment's topic, or else the permission check above is broken.
  1107. $request = $smcFunc['db_query']('', '
  1108. SELECT a.id_folder, a.filename, a.file_hash, a.fileext, a.id_attach, a.attachment_type, a.mime_type, a.approved, m.id_member
  1109. FROM {db_prefix}attachments AS a
  1110. INNER JOIN {db_prefix}messages AS m ON (m.id_msg = a.id_msg AND m.id_topic = {int:current_topic})
  1111. INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board AND {query_see_board})
  1112. WHERE a.id_attach = {int:attach}
  1113. LIMIT 1',
  1114. array(
  1115. 'attach' => $_REQUEST['attach'],
  1116. 'current_topic' => $topic,
  1117. )
  1118. );
  1119. }
  1120. if ($smcFunc['db_num_rows']($request) == 0)
  1121. fatal_lang_error('no_access', false);
  1122. list ($id_folder, $real_filename, $file_hash, $file_ext, $id_attach, $attachment_type, $mime_type, $is_approved, $id_member) = $smcFunc['db_fetch_row']($request);
  1123. $smcFunc['db_free_result']($request);
  1124. // If it isn't yet approved, do they have permission to view it?
  1125. if (!$is_approved && ($id_member == 0 || $user_info['id'] != $id_member) && ($attachment_type == 0 || $attachment_type == 3))
  1126. isAllowedTo('approve_posts');
  1127. // Update the download counter (unless it's a thumbnail).
  1128. if ($attachment_type != 3)
  1129. $smcFunc['db_query']('attach_download_increase', '
  1130. UPDATE LOW_PRIORITY {db_prefix}attachments
  1131. SET downloads = downloads + 1
  1132. WHERE id_attach = {int:id_attach}',
  1133. array(
  1134. 'id_attach' => $id_attach,
  1135. )
  1136. );
  1137. $filename = getAttachmentFilename($real_filename, $_REQUEST['attach'], $id_folder, false, $file_hash);
  1138. // This is done to clear any output that was made before now.
  1139. ob_end_clean();
  1140. if (!empty($modSettings['enableCompressedOutput']) && @filesize($filename) <= 4194304 && in_array($file_ext, array('txt', 'html', 'htm', 'js', 'doc', 'docx', 'rtf', 'css', 'php', 'log', 'xml', 'sql', 'c', 'java')))
  1141. @ob_start('ob_gzhandler');
  1142. else
  1143. {
  1144. ob_start();
  1145. header('Content-Encoding: none');
  1146. }
  1147. // No point in a nicer message, because this is supposed to be an attachment anyway...
  1148. if (!file_exists($filename))
  1149. {
  1150. loadLanguage('Errors');
  1151. header((preg_match('~HTTP/1\.[01]~i', $_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0') . ' 404 Not Found');
  1152. header('Content-Type: text/plain; charset=' . (empty($context['character_set']) ? 'ISO-8859-1' : $context['character_set']));
  1153. // We need to die like this *before* we send any anti-caching headers as below.
  1154. die('404 - ' . $txt['attachment_not_found']);
  1155. }
  1156. // If it hasn't been modified since the last time this attachement was retrieved, there's no need to display it again.
  1157. if (!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']))
  1158. {
  1159. list($modified_since) = explode(';', $_SERVER['HTTP_IF_MODIFIED_SINCE']);
  1160. if (strtotime($modified_since) >= filemtime($filename))
  1161. {
  1162. ob_end_clean();
  1163. // Answer the question - no, it hasn't been modified ;).
  1164. header('HTTP/1.1 304 Not Modified');
  1165. exit;
  1166. }
  1167. }
  1168. // Check whether the ETag was sent back, and cache based on that...
  1169. $eTag = '"' . substr($_REQUEST['attach'] . $real_filename . filemtime($filename), 0, 64) . '"';
  1170. if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'], $eTag) !== false)
  1171. {
  1172. ob_end_clean();
  1173. header('HTTP/1.1 304 Not Modified');
  1174. exit;
  1175. }
  1176. // Send the attachment headers.
  1177. header('Pragma: ');
  1178. if (!isBrowser('gecko'))
  1179. header('Content-Transfer-Encoding: binary');
  1180. header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT');
  1181. header('Last-Modified: ' . gmdate('D, d M Y H:i:s', filemtime($filename)) . ' GMT');
  1182. header('Accept-Ranges: bytes');
  1183. header('Connection: close');
  1184. header('ETag: ' . $eTag);
  1185. // IE 6 just doesn't play nice. As dirty as this seems, it works.
  1186. if (isBrowser('ie6') && isset($_REQUEST['image']))
  1187. unset($_REQUEST['image']);
  1188. // Make sure the mime type warrants an inline display.
  1189. elseif (isset($_REQUEST['image']) && !empty($mime_type) && strpos($mime_type, 'image/') !== 0)
  1190. unset($_REQUEST['image']);
  1191. // Does this have a mime type?
  1192. elseif (!empty($mime_type) && (isset($_REQUEST['image']) || !in_array($file_ext, array('jpg', 'gif', 'jpeg', 'x-ms-bmp', 'png', 'psd', 'tiff', 'iff'))))
  1193. header('Content-Type: ' . strtr($mime_type, array('image/bmp' => 'image/x-ms-bmp')));
  1194. else
  1195. {
  1196. header('Content-Type: ' . (isBrowser('ie') || isBrowser('opera') ? 'application/octetstream' : 'application/octet-stream'));
  1197. if (isset($_REQUEST['image']))
  1198. unset($_REQUEST['image']);
  1199. }
  1200. // Convert the file to UTF-8, cuz most browsers dig that.
  1201. $utf8name = !$context['utf8'] && function_exists('iconv') ? iconv($context['character_set'], 'UTF-8', $real_filename) : (!$context['utf8'] && function_exists('mb_convert_encoding') ? mb_convert_encoding($real_filename, 'UTF-8', $context['character_set']) : $real_filename);
  1202. $fixchar = create_function('$n', '
  1203. if ($n < 32)
  1204. return \'\';
  1205. elseif ($n < 128)
  1206. return chr($n);
  1207. elseif ($n < 2048)
  1208. return chr(192 | $n >> 6) . chr(128 | $n & 63);
  1209. elseif ($n < 65536)
  1210. return chr(224 | $n >> 12) . chr(128 | $n >> 6 & 63) . chr(128 | $n & 63);
  1211. else
  1212. return chr(240 | $n >> 18) . chr(128 | $n >> 12 & 63) . chr(128 | $n >> 6 & 63) . chr(128 | $n & 63);');
  1213. $disposition = !isset($_REQUEST['image']) ? 'attachment' : 'inline';
  1214. // Different browsers like different standards...
  1215. if (isBrowser('firefox'))
  1216. header('Content-Disposition: ' . $disposition . '; filename*=UTF-8\'\'' . rawurlencode(preg_replace('~&#(\d{3,8});~e', '$fixchar(\'$1\')', $utf8name)));
  1217. elseif (isBrowser('opera'))
  1218. header('Content-Disposition: ' . $disposition . '; filename="' . preg_replace('~&#(\d{3,8});~e', '$fixchar(\'$1\')', $utf8name) . '"');
  1219. elseif (isBrowser('ie'))
  1220. header('Content-Disposition: ' . $disposition . '; filename="' . urlencode(preg_replace('~&#(\d{3,8});~e', '$fixchar(\'$1\')', $utf8name)) . '"');
  1221. else
  1222. header('Content-Disposition: ' . $disposition . '; filename="' . $utf8name . '"');
  1223. // If this has an "image extension" - but isn't actually an image - then ensure it isn't cached cause of silly IE.
  1224. if (!isset($_REQUEST['image']) && in_array($file_ext, array('gif', 'jpg', 'bmp', 'png', 'jpeg', 'tiff')))
  1225. header('Cache-Control: no-cache');
  1226. else
  1227. header('Cache-Control: max-age=' . (525600 * 60) . ', private');
  1228. header('Content-Length: ' . filesize($filename));
  1229. // Try to buy some time...
  1230. @set_time_limit(600);
  1231. // Recode line endings for text files, if enabled.
  1232. if (!empty($modSettings['attachmentRecodeLineEndings']) && !isset($_REQUEST['image']) && in_array($file_ext, array('txt', 'css', 'htm', 'html', 'php', 'xml')))
  1233. {
  1234. if (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== false)
  1235. $callback = create_function('$buffer', 'return preg_replace(\'~[\r]?\n~\', "\r\n", $buffer);');
  1236. elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false)
  1237. $callback = create_function('$buffer', 'return preg_replace(\'~[\r]?\n~\', "\r", $buffer);');
  1238. else
  1239. $callback = create_function('$buffer', 'return preg_replace(\'~[\r]?\n~\', "\n", $buffer);');
  1240. }
  1241. // Since we don't do output compression for files this large...
  1242. if (filesize($filename) > 4194304)
  1243. {
  1244. // Forcibly end any output buffering going on.
  1245. while (@ob_get_level() > 0)
  1246. @ob_end_clean();
  1247. $fp = fopen($filename, 'rb');
  1248. while (!feof($fp))
  1249. {
  1250. if (isset($callback))
  1251. echo $callback(fread($fp, 8192));
  1252. else
  1253. echo fread($fp, 8192);
  1254. flush();
  1255. }
  1256. fclose($fp);
  1257. }
  1258. // On some of the less-bright hosts, readfile() is disabled. It's just a faster, more byte safe, version of what's in the if.
  1259. elseif (isset($callback) || @readfile($filename) === null)
  1260. echo isset($callback) ? $callback(file_get_contents($filename)) : file_get_contents($filename);
  1261. obExit(false);
  1262. }
  1263. /**
  1264. * This loads an attachment's contextual data including, most importantly, its size if it is an image.
  1265. * Pre-condition: $attachments array to have been filled with the proper attachment data, as Display() does.
  1266. * (@todo change this pre-condition, too fragile and error-prone.)
  1267. * It requires the view_attachments permission to calculate image size.
  1268. * It attempts to keep the "aspect ratio" of the posted image in line, even if it has to be resized by
  1269. * the max_image_width and max_image_height settings.
  1270. */
  1271. function loadAttachmentContext($id_msg)
  1272. {
  1273. global $attachments, $modSettings, $txt, $scripturl, $topic, $sourcedir, $smcFunc;
  1274. // Set up the attachment info - based on code by Meriadoc.
  1275. $attachmentData = array();
  1276. $have_unapproved = false;
  1277. if (isset($attachments[$id_msg]) && !empty($modSettings['attachmentEnable']))
  1278. {
  1279. foreach ($attachments[$id_msg] as $i => $attachment)
  1280. {
  1281. $attachmentData[$i] = array(
  1282. 'id' => $attachment['id_attach'],
  1283. 'name' => preg_replace('~&amp;#(\\d{1,7}|x[0-9a-fA-F]{1,6});~', '&#\\1;', htmlspecialchars($attachment['filename'])),
  1284. 'downloads' => $attachment['downloads'],
  1285. 'size' => round($attachment['filesize'] / 1024, 2) . ' ' . $txt['kilobyte'],
  1286. 'byte_size' => $attachment['filesize'],
  1287. 'href' => $scripturl . '?action=dlattach;topic=' . $topic . '.0;attach=' . $attachment['id_attach'],
  1288. 'link' => '<a href="' . $scripturl . '?action=dlattach;topic=' . $topic . '.0;attach=' . $attachment['id_attach'] . '">' . htmlspecialchars($attachment['filename']) . '</a>',
  1289. 'is_image' => !empty($attachment['width']) && !empty($attachment['height']) && !empty($modSettings['attachmentShowImages']),
  1290. 'is_approved' => $attachment['approved'],
  1291. );
  1292. // If something is unapproved we'll note it so we can sort them.
  1293. if (!$attachment['approved'])
  1294. $have_unapproved = true;
  1295. if (!$attachmentData[$i]['is_image'])
  1296. continue;
  1297. $attachmentData[$i]['real_width'] = $attachment['width'];
  1298. $attachmentData[$i]['width'] = $attachment['width'];
  1299. $attachmentData[$i]['real_height'] = $attachment['height'];
  1300. $attachmentData[$i]['height'] = $attachment['height'];
  1301. // Let's see, do we want thumbs?
  1302. if (!empty($modSettings['attachmentThumbnails']) && !empty($modSettings['attachmentThumbWidth']) && !empty($modSettings['attachmentThumbHeight']) && ($attachment['width'] > $modSettings['attachmentThumbWidth'] || $attachment['height'] > $modSettings['attachmentThumbHeight']) && strlen($attachment['filename']) < 249)
  1303. {
  1304. // A proper thumb doesn't exist yet? Create one!
  1305. if (empty($attachment['id_thumb']) || $attachment['thumb_width'] > $modSettings['attachmentThumbWidth'] || $attachment['thumb_height'] > $modSettings['attachmentThumbHeight'] || ($attachment['thumb_width'] < $modSettings['attachmentThumbWidth'] && $attachment['thumb_height'] < $modSettings['attachmentThumbHeight']))
  1306. {
  1307. $filename = getAttachmentFilename($attachment['filename'], $attachment['id_attach'], $attachment['id_folder']);
  1308. require_once($sourcedir . '/Subs-Graphics.php');
  1309. if (createThumbnail($filename, $modSettings['attachmentThumbWidth'], $modSettings['attachmentThumbHeight']))
  1310. {
  1311. // So what folder are we putting this image in?
  1312. if (!empty($modSettings['currentAttachmentUploadDir']))
  1313. {
  1314. if (!is_array($modSettings['attachmentUploadDir']))
  1315. $modSettings['attachmentUploadDir'] = @unserialize($modSettings['attachmentUploadDir']);
  1316. $path = $modSettings['attachmentUploadDir'][$modSettings['currentAttachmentUploadDir']];
  1317. $id_folder_thumb = $modSettings['currentAttachmentUploadDir'];
  1318. }
  1319. else
  1320. {
  1321. $path = $modSettings['attachmentUploadDir'];
  1322. $id_folder_thumb = 1;
  1323. }
  1324. // Calculate the size of the created thumbnail.
  1325. $size = @getimagesize($filename . '_thumb');
  1326. list ($attachment['thumb_width'], $attachment['thumb_height']) = $size;
  1327. $thumb_size = filesize($filename . '_thumb');
  1328. // These are the only valid image types for SMF.
  1329. $validImageTypes = array(1 => 'gif', 2 => 'jpeg', 3 => 'png', 5 => 'psd', 6 => 'bmp', 7 => 'tiff', 8 => 'tiff', 9 => 'jpeg', 14 => 'iff');
  1330. // What about the extension?
  1331. $thumb_ext = isset($validImageTypes[$size[2]]) ? $validImageTypes[$size[2]] : '';
  1332. // Figure out the mime type.
  1333. if (!empty($size['mime']))
  1334. $thumb_mime = $size['mime'];
  1335. else
  1336. $thumb_mime = 'image/' . $thumb_ext;
  1337. $thumb_filename = $attachment['filename'] . '_thumb';
  1338. $thumb_hash = getAttachmentFilename($thumb_filename, false, null, true);
  1339. // Add this beauty to the database.
  1340. $smcFunc['db_insert']('',
  1341. '{db_prefix}attachments',
  1342. array('id_folder' => 'int', 'id_msg' => 'int', 'attachment_type' => 'int', 'filename' => 'string', 'file_hash' => 'string', 'size' => 'int', 'width' => 'int', 'height' => 'int', 'fileext' => 'string', 'mime_type' => 'string'),
  1343. array($id_folder_thumb, $id_msg, 3, $thumb_filename, $thumb_hash, (int) $thumb_size, (int) $attachment['thumb_width'], (int) $attachment['thumb_height'], $thumb_ext, $thumb_mime),
  1344. array('id_attach')
  1345. );
  1346. $old_id_thumb = $attachment['id_thumb'];
  1347. $attachment['id_thumb'] = $smcFunc['db_insert_id']('{db_prefix}attachments', 'id_attach');
  1348. if (!empty($attachment['id_thumb']))
  1349. {
  1350. $smcFunc['db_query']('', '
  1351. UPDATE {db_prefix}attachments
  1352. SET id_thumb = {int:id_thumb}
  1353. WHERE id_attach = {int:id_attach}',
  1354. array(
  1355. 'id_thumb' => $attachment['id_thumb'],
  1356. 'id_attach' => $attachment['id_attach'],
  1357. )
  1358. );
  1359. $thumb_realname = getAttachmentFilename($thumb_filename, $attachment['id_thumb'], $id_folder_thumb, false, $thumb_hash);
  1360. rename($filename . '_thumb', $thumb_realname);
  1361. // Do we need to remove an old thumbnail?
  1362. if (!empty($old_id_thumb))
  1363. {
  1364. require_once($sourcedir . '/ManageAttachments.php');
  1365. removeAttachments(array('id_attach' => $old_id_thumb), '', false, false);
  1366. }
  1367. }
  1368. }
  1369. }
  1370. // Only adjust dimensions on successful thumbnail creation.
  1371. if (!empty($attachment['thumb_width']) && !empty($attachment['thumb_height']))
  1372. {
  1373. $attachmentData[$i]['width'] = $attachment['thumb_width'];
  1374. $attachmentData[$i]['height'] = $attachment['thumb_height'];
  1375. }
  1376. }
  1377. if (!empty($attachment['id_thumb']))
  1378. $attachmentData[$i]['thumbnail'] = array(
  1379. 'id' => $attachment['id_thumb'],
  1380. 'href' => $scripturl . '?action=dlattach;topic=' . $topic . '.0;attach=' . $attachment['id_thumb'] . ';image',
  1381. );
  1382. $attachmentData[$i]['thumbnail']['has_thumb'] = !empty($attachment['id_thumb']);
  1383. // If thumbnails are disabled, check the maximum size of the image.
  1384. if (!$attachmentData[$i]['thumbnail']['has_thumb'] && ((!empty($modSettings['max_image_width']) && $attachment['width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachment['height'] > $modSettings['max_image_height'])))
  1385. {
  1386. if (!empty($modSettings['max_image_width']) && (empty($modSettings['max_image_height']) || $attachment['height'] * $modSettings['max_image_width'] / $attachment['width'] <= $modSettings['max_image_height']))
  1387. {
  1388. $attachmentData[$i]['width'] = $modSettings['max_image_width'];
  1389. $attachmentData[$i]['height'] = floor($attachment['height'] * $modSettings['max_image_width'] / $attachment['width']);
  1390. }
  1391. elseif (!empty($modSettings['max_image_width']))
  1392. {
  1393. $attachmentData[$i]['width'] = floor($attachment['width'] * $modSettings['max_image_height'] / $attachment['height']);
  1394. $attachmentData[$i]['height'] = $modSettings['max_image_height'];
  1395. }
  1396. }
  1397. elseif ($attachmentData[$i]['thumbnail']['has_thumb'])
  1398. {
  1399. // If the image is too large to show inline, make it a popup.
  1400. if (((!empty($modSettings['max_image_width']) && $attachmentData[$i]['real_width'] > $modSettings['max_image_width']) || (!empty($modSettings['max_image_height']) && $attachmentData[$i]['real_height'] > $modSettings['max_image_height'])))
  1401. $attachmentData[$i]['thumbnail']['javascript'] = 'return reqWin(\'' . $attachmentData[$i]['href'] . ';image\', ' . ($attachment['width'] + 20) . ', ' . ($attachment['height'] + 20) . ', true);';
  1402. else
  1403. $attachmentData[$i]['thumbnail']['javascript'] = 'return expandThumb(' . $attachment['id_attach'] . ');';
  1404. }
  1405. if (!$attachmentData[$i]['thumbnail']['has_thumb'])
  1406. $attachmentData[$i]['downloads']++;
  1407. }
  1408. }
  1409. // Do we need to instigate a sort?
  1410. if ($have_unapproved)
  1411. usort($attachmentData, 'approved_attach_sort');
  1412. return $attachmentData;
  1413. }
  1414. /**
  1415. * A sort function for putting unapproved attachments first.
  1416. * @param $a
  1417. * @param $b
  1418. * @return int, -1, 0, 1
  1419. */
  1420. function approved_attach_sort($a, $b)
  1421. {
  1422. if ($a['is_approved'] == $b['is_approved'])
  1423. return 0;
  1424. return $a['is_approved'] > $b['is_approved'] ? -1 : 1;
  1425. }
  1426. /**
  1427. * In-topic quick moderation.
  1428. */
  1429. function QuickInTopicModeration()
  1430. {
  1431. global $sourcedir, $topic, $board, $user_info, $smcFunc, $modSettings, $context;
  1432. // Check the session = get or post.
  1433. checkSession('request');
  1434. require_once($sourcedir . '/RemoveTopic.php');
  1435. if (empty($_REQUEST['msgs']))
  1436. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  1437. $messages = array();
  1438. foreach ($_REQUEST['msgs'] as $dummy)
  1439. $messages[] = (int) $dummy;
  1440. // We are restoring messages. We handle this in another place.
  1441. if (isset($_REQUEST['restore_selected']))
  1442. redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']);
  1443. if (isset($_REQUEST['split_selection']))
  1444. {
  1445. $request = $smcFunc['db_query']('', '
  1446. SELECT subject
  1447. FROM {db_prefix}messages
  1448. WHERE id_msg = {int:message}
  1449. LIMIT 1',
  1450. array(
  1451. 'message' => min($messages),
  1452. )
  1453. );
  1454. list($subname) = $smcFunc['db_fetch_row']($request);
  1455. $smcFunc['db_free_result']($request);
  1456. $_SESSION['split_selection'][$topic] = $messages;
  1457. redirectexit('action=splittopics;sa=selectTopics;topic=' . $topic . '.0;subname_enc=' .urlencode($subname) . ';' . $context['session_var'] . '=' . $context['session_id']);
  1458. }
  1459. // Allowed to delete any message?
  1460. if (allowedTo('delete_any'))
  1461. $allowed_all = true;
  1462. // Allowed to delete replies to their messages?
  1463. elseif (allowedTo('delete_replies'))
  1464. {
  1465. $request = $smcFunc['db_query']('', '
  1466. SELECT id_member_started
  1467. FROM {db_prefix}topics
  1468. WHERE id_topic = {int:current_topic}
  1469. LIMIT 1',
  1470. array(
  1471. 'current_topic' => $topic,
  1472. )
  1473. );
  1474. list ($starter) = $smcFunc['db_fetch_row']($request);
  1475. $smcFunc['db_free_result']($request);
  1476. $allowed_all = $starter == $user_info['id'];
  1477. }
  1478. else
  1479. $allowed_all = false;
  1480. // Make sure they're allowed to delete their own messages, if not any.
  1481. if (!$allowed_all)
  1482. isAllowedTo('delete_own');
  1483. // Allowed to remove which messages?
  1484. $request = $smcFunc['db_query']('', '
  1485. SELECT id_msg, subject, id_member, poster_time
  1486. FROM {db_prefix}messages
  1487. WHERE id_msg IN ({array_int:message_list})
  1488. AND id_topic = {int:current_topic}' . (!$allowed_all ? '
  1489. AND id_member = {int:current_member}' : '') . '
  1490. LIMIT ' . count($messages),
  1491. array(
  1492. 'current_member' => $user_info['id'],
  1493. 'current_topic' => $topic,
  1494. 'message_list' => $messages,
  1495. )
  1496. );
  1497. $messages = array();
  1498. while ($row = $smcFunc['db_fetch_assoc']($request))
  1499. {
  1500. if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time())
  1501. continue;
  1502. $messages[$row['id_msg']] = array($row['subject'], $row['id_member']);
  1503. }
  1504. $smcFunc['db_free_result']($request);
  1505. // Get the first message in the topic - because you can't delete that!
  1506. $request = $smcFunc['db_query']('', '
  1507. SELECT id_first_msg, id_last_msg
  1508. FROM {db_prefix}topics
  1509. WHERE id_topic = {int:current_topic}
  1510. LIMIT 1',
  1511. array(
  1512. 'current_topic' => $topic,
  1513. )
  1514. );
  1515. list ($first_message, $last_message) = $smcFunc['db_fetch_row']($request);
  1516. $smcFunc['db_free_result']($request);
  1517. // Delete all the messages we know they can delete. ($messages)
  1518. foreach ($messages as $message => $info)
  1519. {
  1520. // Just skip the first message - if it's not the last.
  1521. if ($message == $first_message && $message != $last_message)
  1522. continue;
  1523. // If the first message is going then don't bother going back to the topic as we're effectively deleting it.
  1524. elseif ($message == $first_message)
  1525. $topicGone = true;
  1526. removeMessage($message);
  1527. // Log this moderation action ;).
  1528. if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id']))
  1529. logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board));
  1530. }
  1531. redirectexit(!empty($topicGone) ? 'board=' . $board : 'topic=' . $topic . '.' . $_REQUEST['start']);
  1532. }
  1533. ?>