MessageIndex.php 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257
  1. <?php
  2. /**
  3. * This file is what shows the listing of topics in a board.
  4. * It's just one or two functions, but don't under estimate it ;).
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2014 Simple Machines and individual contributors
  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('No direct access...');
  17. /**
  18. * Show the list of topics in this board, along with any child boards.
  19. */
  20. function MessageIndex()
  21. {
  22. global $txt, $scripturl, $board, $modSettings, $context;
  23. global $options, $settings, $board_info, $user_info, $smcFunc, $sourcedir;
  24. // If this is a redirection board head off.
  25. if ($board_info['redirect'])
  26. {
  27. $smcFunc['db_query']('', '
  28. UPDATE {db_prefix}boards
  29. SET num_posts = num_posts + 1
  30. WHERE id_board = {int:current_board}',
  31. array(
  32. 'current_board' => $board,
  33. )
  34. );
  35. redirectexit($board_info['redirect']);
  36. }
  37. if (WIRELESS)
  38. $context['sub_template'] = WIRELESS_PROTOCOL . '_messageindex';
  39. else
  40. loadTemplate('MessageIndex');
  41. $context['name'] = $board_info['name'];
  42. $context['description'] = $board_info['description'];
  43. if (!empty($board_info['description']))
  44. $context['meta_description'] = strip_tags($board_info['description']);
  45. // How many topics do we have in total?
  46. $board_info['total_topics'] = allowedTo('approve_posts') ? $board_info['num_topics'] + $board_info['unapproved_topics'] : $board_info['num_topics'] + $board_info['unapproved_user_topics'];
  47. // View all the topics, or just a few?
  48. $context['topics_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['topics_per_page']) && !WIRELESS ? $options['topics_per_page'] : $modSettings['defaultMaxTopics'];
  49. $context['messages_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) && !WIRELESS ? $options['messages_per_page'] : $modSettings['defaultMaxMessages'];
  50. $maxindex = isset($_REQUEST['all']) && !empty($modSettings['enableAllMessages']) ? $board_info['total_topics'] : $context['topics_per_page'];
  51. // Right, let's only index normal stuff!
  52. if (count($_GET) > 1)
  53. {
  54. $session_name = session_name();
  55. foreach ($_GET as $k => $v)
  56. {
  57. if (!in_array($k, array('board', 'start', $session_name)))
  58. $context['robot_no_index'] = true;
  59. }
  60. }
  61. if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0))
  62. $context['robot_no_index'] = true;
  63. // If we can view unapproved messages and there are some build up a list.
  64. if (allowedTo('approve_posts') && ($board_info['unapproved_topics'] || $board_info['unapproved_posts']))
  65. {
  66. $untopics = $board_info['unapproved_topics'] ? '<a href="' . $scripturl . '?action=moderate;area=postmod;sa=topics;brd=' . $board . '">' . $board_info['unapproved_topics'] . '</a>' : 0;
  67. $unposts = $board_info['unapproved_posts'] ? '<a href="' . $scripturl . '?action=moderate;area=postmod;sa=posts;brd=' . $board . '">' . ($board_info['unapproved_posts'] - $board_info['unapproved_topics']) . '</a>' : 0;
  68. $context['unapproved_posts_message'] = sprintf($txt['there_are_unapproved_topics'], $untopics, $unposts, $scripturl . '?action=moderate;area=postmod;sa=' . ($board_info['unapproved_topics'] ? 'topics' : 'posts') . ';brd=' . $board);
  69. }
  70. // We only know these.
  71. if (isset($_REQUEST['sort']) && !in_array($_REQUEST['sort'], array('subject', 'starter', 'last_poster', 'replies', 'views', 'first_post', 'last_post')))
  72. $_REQUEST['sort'] = 'last_post';
  73. // Make sure the starting place makes sense and construct the page index.
  74. if (isset($_REQUEST['sort']))
  75. $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $board_info['total_topics'], $maxindex, true);
  76. else
  77. $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d', $_REQUEST['start'], $board_info['total_topics'], $maxindex, true);
  78. $context['start'] = &$_REQUEST['start'];
  79. // Set a canonical URL for this page.
  80. $context['canonical_url'] = $scripturl . '?board=' . $board . '.' . $context['start'];
  81. $can_show_all = !empty($modSettings['enableAllMessages']) && $maxindex > $modSettings['enableAllMessages'];
  82. if (WIRELESS || !($can_show_all && isset($_REQUEST['all'])))
  83. {
  84. $context['links'] = array(
  85. 'first' => $_REQUEST['start'] >= $context['topics_per_page'] ? $scripturl . '?board=' . $board . '.0' : '',
  86. 'prev' => $_REQUEST['start'] >= $context['topics_per_page'] ? $scripturl . '?board=' . $board . '.' . ($_REQUEST['start'] - $context['topics_per_page']) : '',
  87. 'next' => $_REQUEST['start'] + $context['topics_per_page'] < $board_info['total_topics'] ? $scripturl . '?board=' . $board . '.' . ($_REQUEST['start'] + $context['topics_per_page']) : '',
  88. 'last' => $_REQUEST['start'] + $context['topics_per_page'] < $board_info['total_topics'] ? $scripturl . '?board=' . $board . '.' . (floor(($board_info['total_topics'] - 1) / $context['topics_per_page']) * $context['topics_per_page']) : '',
  89. 'up' => $board_info['parent'] == 0 ? $scripturl . '?' : $scripturl . '?board=' . $board_info['parent'] . '.0'
  90. );
  91. }
  92. $context['page_info'] = array(
  93. 'current_page' => $_REQUEST['start'] / $context['topics_per_page'] + 1,
  94. 'num_pages' => floor(($board_info['total_topics'] - 1) / $context['topics_per_page']) + 1
  95. );
  96. if (isset($_REQUEST['all']) && $can_show_all)
  97. {
  98. $maxindex = $modSettings['enableAllMessages'];
  99. $_REQUEST['start'] = 0;
  100. }
  101. // Build a list of the board's moderators.
  102. $context['moderators'] = &$board_info['moderators'];
  103. $context['moderator_groups'] = &$board_info['moderator_groups'];
  104. $context['link_moderators'] = array();
  105. if (!empty($board_info['moderators']))
  106. {
  107. foreach ($board_info['moderators'] as $mod)
  108. $context['link_moderators'][] ='<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>';
  109. }
  110. if (!empty($board_info['moderator_groups']))
  111. {
  112. // By default just tack the moderator groups onto the end of the members
  113. foreach ($board_info['moderator_groups'] as $mod_group)
  114. $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>';
  115. }
  116. // Now we tack the info onto the end of the linktree
  117. if (!empty($context['link_moderators']))
  118. {
  119. $context['linktree'][count($context['linktree']) - 1]['extra_after'] = '<span class="board_moderators">(' . (count($context['link_moderators']) == 1 ? $txt['moderator'] : $txt['moderators']) . ': ' . implode(', ', $context['link_moderators']) . ')</span>';
  120. }
  121. // Mark current and parent boards as seen.
  122. if (!$user_info['is_guest'])
  123. {
  124. // We can't know they read it if we allow prefetches.
  125. if (isset($_SERVER['HTTP_X_MOZ']) && $_SERVER['HTTP_X_MOZ'] == 'prefetch')
  126. {
  127. ob_end_clean();
  128. header('HTTP/1.1 403 Prefetch Forbidden');
  129. die;
  130. }
  131. $smcFunc['db_insert']('replace',
  132. '{db_prefix}log_boards',
  133. array('id_msg' => 'int', 'id_member' => 'int', 'id_board' => 'int'),
  134. array($modSettings['maxMsgID'], $user_info['id'], $board),
  135. array('id_member', 'id_board')
  136. );
  137. if (!empty($board_info['parent_boards']))
  138. {
  139. $smcFunc['db_query']('', '
  140. UPDATE {db_prefix}log_boards
  141. SET id_msg = {int:id_msg}
  142. WHERE id_member = {int:current_member}
  143. AND id_board IN ({array_int:board_list})',
  144. array(
  145. 'current_member' => $user_info['id'],
  146. 'board_list' => array_keys($board_info['parent_boards']),
  147. 'id_msg' => $modSettings['maxMsgID'],
  148. )
  149. );
  150. // We've seen all these boards now!
  151. foreach ($board_info['parent_boards'] as $k => $dummy)
  152. if (isset($_SESSION['topicseen_cache'][$k]))
  153. unset($_SESSION['topicseen_cache'][$k]);
  154. }
  155. if (isset($_SESSION['topicseen_cache'][$board]))
  156. unset($_SESSION['topicseen_cache'][$board]);
  157. $request = $smcFunc['db_query']('', '
  158. SELECT sent
  159. FROM {db_prefix}log_notify
  160. WHERE id_board = {int:current_board}
  161. AND id_member = {int:current_member}
  162. LIMIT 1',
  163. array(
  164. 'current_board' => $board,
  165. 'current_member' => $user_info['id'],
  166. )
  167. );
  168. $context['is_marked_notify'] = $smcFunc['db_num_rows']($request) != 0;
  169. if ($context['is_marked_notify'])
  170. {
  171. list ($sent) = $smcFunc['db_fetch_row']($request);
  172. if (!empty($sent))
  173. {
  174. $smcFunc['db_query']('', '
  175. UPDATE {db_prefix}log_notify
  176. SET sent = {int:is_sent}
  177. WHERE id_board = {int:current_board}
  178. AND id_member = {int:current_member}',
  179. array(
  180. 'current_board' => $board,
  181. 'current_member' => $user_info['id'],
  182. 'is_sent' => 0,
  183. )
  184. );
  185. }
  186. }
  187. $smcFunc['db_free_result']($request);
  188. }
  189. else
  190. $context['is_marked_notify'] = false;
  191. // 'Print' the header and board info.
  192. $context['page_title'] = strip_tags($board_info['name']);
  193. // Set the variables up for the template.
  194. $context['can_mark_notify'] = !$user_info['is_guest'];
  195. $context['can_post_new'] = allowedTo('post_new') || ($modSettings['postmod_active'] && allowedTo('post_unapproved_topics'));
  196. $context['can_post_poll'] = $modSettings['pollMode'] == '1' && allowedTo('poll_post') && $context['can_post_new'];
  197. $context['can_moderate_forum'] = allowedTo('moderate_forum');
  198. $context['can_approve_posts'] = allowedTo('approve_posts');
  199. require_once($sourcedir . '/Subs-BoardIndex.php');
  200. $boardIndexOptions = array(
  201. 'include_categories' => false,
  202. 'base_level' => $board_info['child_level'] + 1,
  203. 'parent_id' => $board_info['id'],
  204. 'set_latest_post' => false,
  205. 'countChildPosts' => !empty($modSettings['countChildPosts']),
  206. );
  207. $context['boards'] = getBoardIndex($boardIndexOptions);
  208. // Nosey, nosey - who's viewing this topic?
  209. if (!empty($settings['display_who_viewing']))
  210. {
  211. $context['view_members'] = array();
  212. $context['view_members_list'] = array();
  213. $context['view_num_hidden'] = 0;
  214. $request = $smcFunc['db_query']('', '
  215. SELECT
  216. lo.id_member, lo.log_time, mem.real_name, mem.member_name, mem.show_online,
  217. mg.online_color, mg.id_group, mg.group_name
  218. FROM {db_prefix}log_online AS lo
  219. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lo.id_member)
  220. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:reg_member_group} THEN mem.id_post_group ELSE mem.id_group END)
  221. WHERE INSTR(lo.url, {string:in_url_string}) > 0 OR lo.session = {string:session}',
  222. array(
  223. 'reg_member_group' => 0,
  224. 'in_url_string' => 's:5:"board";i:' . $board . ';',
  225. 'session' => $user_info['is_guest'] ? 'ip' . $user_info['ip'] : session_id(),
  226. )
  227. );
  228. while ($row = $smcFunc['db_fetch_assoc']($request))
  229. {
  230. if (empty($row['id_member']))
  231. continue;
  232. if (!empty($row['online_color']))
  233. $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>';
  234. else
  235. $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>';
  236. $is_buddy = in_array($row['id_member'], $user_info['buddies']);
  237. if ($is_buddy)
  238. $link = '<strong>' . $link . '</strong>';
  239. if (!empty($row['show_online']) || allowedTo('moderate_forum'))
  240. $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link;
  241. // @todo why are we filling this array of data that are just counted (twice) and discarded? ???
  242. $context['view_members'][$row['log_time'] . $row['member_name']] = array(
  243. 'id' => $row['id_member'],
  244. 'username' => $row['member_name'],
  245. 'name' => $row['real_name'],
  246. 'group' => $row['id_group'],
  247. 'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
  248. 'link' => $link,
  249. 'is_buddy' => $is_buddy,
  250. 'hidden' => empty($row['show_online']),
  251. );
  252. if (empty($row['show_online']))
  253. $context['view_num_hidden']++;
  254. }
  255. $context['view_num_guests'] = $smcFunc['db_num_rows']($request) - count($context['view_members']);
  256. $smcFunc['db_free_result']($request);
  257. // Put them in "last clicked" order.
  258. krsort($context['view_members_list']);
  259. krsort($context['view_members']);
  260. }
  261. // Default sort methods.
  262. $sort_methods = array(
  263. 'subject' => 'mf.subject',
  264. 'starter' => 'IFNULL(memf.real_name, mf.poster_name)',
  265. 'last_poster' => 'IFNULL(meml.real_name, ml.poster_name)',
  266. 'replies' => 't.num_replies',
  267. 'views' => 't.num_views',
  268. 'first_post' => 't.id_topic',
  269. 'last_post' => 't.id_last_msg'
  270. );
  271. // They didn't pick one, default to by last post descending.
  272. if (!isset($_REQUEST['sort']) || !isset($sort_methods[$_REQUEST['sort']]))
  273. {
  274. $context['sort_by'] = 'last_post';
  275. $_REQUEST['sort'] = 'id_last_msg';
  276. $ascending = isset($_REQUEST['asc']);
  277. }
  278. // Otherwise default to ascending.
  279. else
  280. {
  281. $context['sort_by'] = $_REQUEST['sort'];
  282. $_REQUEST['sort'] = $sort_methods[$_REQUEST['sort']];
  283. $ascending = !isset($_REQUEST['desc']);
  284. }
  285. $context['sort_direction'] = $ascending ? 'up' : 'down';
  286. $txt['starter'] = $txt['started_by'];
  287. foreach ($sort_methods as $key => $val)
  288. $context['topics_headers'][$key] = '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.' . $context['start'] . ';sort=' . $key . ($context['sort_by'] == $key && $context['sort_direction'] == 'up' ? ';desc' : '') . '">' . $txt[$key] . ($context['sort_by'] == $key ? '<span class="sort sort_' . $context['sort_direction'] . '"></span>' : '') . '</a>';
  289. // Calculate the fastest way to get the topics.
  290. $start = (int) $_REQUEST['start'];
  291. if ($start > ($board_info['total_topics'] - 1) / 2)
  292. {
  293. $ascending = !$ascending;
  294. $fake_ascending = true;
  295. $maxindex = $board_info['total_topics'] < $start + $maxindex + 1 ? $board_info['total_topics'] - $start : $maxindex;
  296. $start = $board_info['total_topics'] < $start + $maxindex + 1 ? 0 : $board_info['total_topics'] - $start - $maxindex;
  297. }
  298. else
  299. $fake_ascending = false;
  300. // Setup the default topic icons...
  301. $stable_icons = array('xx', 'thumbup', 'thumbdown', 'exclamation', 'question', 'lamp', 'smiley', 'angry', 'cheesy', 'grin', 'sad', 'wink', 'poll', 'moved', 'recycled', 'wireless', 'clip');
  302. $context['icon_sources'] = array();
  303. foreach ($stable_icons as $icon)
  304. $context['icon_sources'][$icon] = 'images_url';
  305. $topic_ids = array();
  306. $context['topics'] = array();
  307. // Sequential pages are often not optimized, so we add an additional query.
  308. $pre_query = $start > 0;
  309. if ($pre_query && $maxindex > 0)
  310. {
  311. $request = $smcFunc['db_query']('', '
  312. SELECT t.id_topic
  313. FROM {db_prefix}topics AS t' . ($context['sort_by'] === 'last_poster' ? '
  314. INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)' : (in_array($context['sort_by'], array('starter', 'subject')) ? '
  315. INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)' : '')) . ($context['sort_by'] === 'starter' ? '
  316. LEFT JOIN {db_prefix}members AS memf ON (memf.id_member = mf.id_member)' : '') . ($context['sort_by'] === 'last_poster' ? '
  317. LEFT JOIN {db_prefix}members AS meml ON (meml.id_member = ml.id_member)' : '') . '
  318. WHERE t.id_board = {int:current_board}' . (!$modSettings['postmod_active'] || $context['can_approve_posts'] ? '' : '
  319. AND (t.approved = {int:is_approved}' . ($user_info['is_guest'] ? '' : ' OR t.id_member_started = {int:current_member}') . ')') . '
  320. ORDER BY is_sticky' . ($fake_ascending ? '' : ' DESC') . ', ' . $_REQUEST['sort'] . ($ascending ? '' : ' DESC') . '
  321. LIMIT {int:start}, {int:maxindex}',
  322. array(
  323. 'current_board' => $board,
  324. 'current_member' => $user_info['id'],
  325. 'is_approved' => 1,
  326. 'id_member_guest' => 0,
  327. 'start' => $start,
  328. 'maxindex' => $maxindex,
  329. )
  330. );
  331. $topic_ids = array();
  332. while ($row = $smcFunc['db_fetch_assoc']($request))
  333. $topic_ids[] = $row['id_topic'];
  334. }
  335. // Grab the appropriate topic information...
  336. if (!$pre_query || !empty($topic_ids))
  337. {
  338. // For search engine effectiveness we'll link guests differently.
  339. $context['pageindex_multiplier'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) && !WIRELESS ? $options['messages_per_page'] : $modSettings['defaultMaxMessages'];
  340. $result = $smcFunc['db_query']('substring', '
  341. SELECT
  342. t.id_topic, t.num_replies, t.locked, t.num_views, t.is_sticky, t.id_poll, t.id_previous_board,
  343. ' . ($user_info['is_guest'] ? '0' : 'IFNULL(lt.id_msg, IFNULL(lmr.id_msg, -1)) + 1') . ' AS new_from,
  344. t.id_last_msg, t.approved, t.unapproved_posts, ml.poster_time AS last_poster_time,
  345. ml.id_msg_modified, ml.subject AS last_subject, ml.icon AS last_icon,
  346. ml.poster_name AS last_member_name, ml.id_member AS last_id_member, ' . (!empty($settings['avatars_on_indexes']) ? 'meml.avatar,' : '') . '
  347. IFNULL(meml.real_name, ml.poster_name) AS last_display_name, t.id_first_msg,
  348. mf.poster_time AS first_poster_time, mf.subject AS first_subject, mf.icon AS first_icon,
  349. mf.poster_name AS first_member_name, mf.id_member AS first_id_member,
  350. IFNULL(memf.real_name, mf.poster_name) AS first_display_name, ' . (!empty($modSettings['preview_characters']) ? '
  351. SUBSTRING(ml.body, 1, ' . ($modSettings['preview_characters'] + 256) . ') AS last_body,
  352. SUBSTRING(mf.body, 1, ' . ($modSettings['preview_characters'] + 256) . ') AS first_body,' : '') . 'ml.smileys_enabled AS last_smileys, mf.smileys_enabled AS first_smileys' . (!empty($settings['avatars_on_indexes']) ? ',
  353. IFNULL(a.id_attach, 0) AS id_attach, a.filename, a.attachment_type' : '') . '
  354. FROM {db_prefix}topics AS t
  355. INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg)
  356. INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg)
  357. LEFT JOIN {db_prefix}members AS meml ON (meml.id_member = ml.id_member)
  358. LEFT JOIN {db_prefix}members AS memf ON (memf.id_member = mf.id_member)' . ($user_info['is_guest'] ? '' : '
  359. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = t.id_topic AND lt.id_member = {int:current_member})
  360. LEFT JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = {int:current_board} AND lmr.id_member = {int:current_member})') . (!empty($settings['avatars_on_indexes']) ? '
  361. LEFT JOIN {db_prefix}attachments AS a ON (a.id_member = ml.id_member)' : '') . '
  362. WHERE ' . ($pre_query ? 't.id_topic IN ({array_int:topic_list})' : 't.id_board = {int:current_board}') . (!$modSettings['postmod_active'] || $context['can_approve_posts'] ? '' : '
  363. AND (t.approved = {int:is_approved}' . ($user_info['is_guest'] ? '' : ' OR t.id_member_started = {int:current_member}') . ')') . '
  364. ORDER BY ' . ($pre_query ? 'FIND_IN_SET(t.id_topic, {string:find_set_topics})' : 'is_sticky' . ($fake_ascending ? '' : ' DESC') . ', ' . $_REQUEST['sort'] . ($ascending ? '' : ' DESC')) . '
  365. LIMIT ' . ($pre_query ? '' : '{int:start}, ') . '{int:maxindex}',
  366. array(
  367. 'current_board' => $board,
  368. 'current_member' => $user_info['id'],
  369. 'topic_list' => $topic_ids,
  370. 'is_approved' => 1,
  371. 'find_set_topics' => implode(',', $topic_ids),
  372. 'start' => $start,
  373. 'maxindex' => $maxindex,
  374. )
  375. );
  376. // Begin 'printing' the message index for current board.
  377. while ($row = $smcFunc['db_fetch_assoc']($result))
  378. {
  379. if ($row['id_poll'] > 0 && $modSettings['pollMode'] == '0')
  380. continue;
  381. if (!$pre_query)
  382. $topic_ids[] = $row['id_topic'];
  383. // Does the theme support message previews?
  384. if (!empty($settings['message_index_preview']) && !empty($modSettings['preview_characters']))
  385. {
  386. // Limit them to $modSettings['preview_characters'] characters
  387. $row['first_body'] = strip_tags(strtr(parse_bbc($row['first_body'], $row['first_smileys'], $row['id_first_msg']), array('<br />' => '&#10;')));
  388. if ($smcFunc['strlen']($row['first_body']) > $modSettings['preview_characters'])
  389. $row['first_body'] = $smcFunc['substr']($row['first_body'], 0, $modSettings['preview_characters']) . '...';
  390. $row['last_body'] = strip_tags(strtr(parse_bbc($row['last_body'], $row['last_smileys'], $row['id_last_msg']), array('<br />' => '&#10;')));
  391. if ($smcFunc['strlen']($row['last_body']) > $modSettings['preview_characters'])
  392. $row['last_body'] = $smcFunc['substr']($row['last_body'], 0, $modSettings['preview_characters']) . '...';
  393. // Censor the subject and message preview.
  394. censorText($row['first_subject']);
  395. censorText($row['first_body']);
  396. // Don't censor them twice!
  397. if ($row['id_first_msg'] == $row['id_last_msg'])
  398. {
  399. $row['last_subject'] = $row['first_subject'];
  400. $row['last_body'] = $row['first_body'];
  401. }
  402. else
  403. {
  404. censorText($row['last_subject']);
  405. censorText($row['last_body']);
  406. }
  407. }
  408. else
  409. {
  410. $row['first_body'] = '';
  411. $row['last_body'] = '';
  412. censorText($row['first_subject']);
  413. if ($row['id_first_msg'] == $row['id_last_msg'])
  414. $row['last_subject'] = $row['first_subject'];
  415. else
  416. censorText($row['last_subject']);
  417. }
  418. // Decide how many pages the topic should have.
  419. if ($row['num_replies'] + 1 > $context['messages_per_page'])
  420. {
  421. $pages = '&#171; ';
  422. // We can't pass start by reference.
  423. $start = -1;
  424. $pages .= constructPageIndex($scripturl . '?topic=' . $row['id_topic'] . '.%1$d', $start, $row['num_replies'] + 1, $context['messages_per_page'], true, false);
  425. // If we can use all, show all.
  426. if (!empty($modSettings['enableAllMessages']) && $row['num_replies'] + 1 < $modSettings['enableAllMessages'])
  427. $pages .= ' &nbsp;<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0;all">' . $txt['all'] . '</a>';
  428. $pages .= ' &#187;';
  429. }
  430. else
  431. $pages = '';
  432. // We need to check the topic icons exist...
  433. if (!empty($modSettings['messageIconChecks_enable']))
  434. {
  435. if (!isset($context['icon_sources'][$row['first_icon']]))
  436. $context['icon_sources'][$row['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['first_icon'] . '.png') ? 'images_url' : 'default_images_url';
  437. if (!isset($context['icon_sources'][$row['last_icon']]))
  438. $context['icon_sources'][$row['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['last_icon'] . '.png') ? 'images_url' : 'default_images_url';
  439. }
  440. else
  441. {
  442. if (!isset($context['icon_sources'][$row['first_icon']]))
  443. $context['icon_sources'][$row['first_icon']] = 'images_url';
  444. if (!isset($context['icon_sources'][$row['last_icon']]))
  445. $context['icon_sources'][$row['last_icon']] = 'images_url';
  446. }
  447. if (!empty($settings['avatars_on_indexes']))
  448. {
  449. // Allow themers to show the latest poster's avatar along with the topic
  450. if (!empty($row['avatar']))
  451. {
  452. if ($modSettings['avatar_action_too_large'] == 'option_html_resize' || $modSettings['avatar_action_too_large'] == 'option_js_resize')
  453. {
  454. $avatar_width = !empty($modSettings['avatar_max_width_external']) ? ' width="' . $modSettings['avatar_max_width_external'] . '"' : '';
  455. $avatar_height = !empty($modSettings['avatar_max_height_external']) ? ' height="' . $modSettings['avatar_max_height_external'] . '"' : '';
  456. }
  457. else
  458. {
  459. $avatar_width = '';
  460. $avatar_height = '';
  461. }
  462. }
  463. }
  464. // 'Print' the topic info.
  465. $context['topics'][$row['id_topic']] = array(
  466. 'id' => $row['id_topic'],
  467. 'first_post' => array(
  468. 'id' => $row['id_first_msg'],
  469. 'member' => array(
  470. 'username' => $row['first_member_name'],
  471. 'name' => $row['first_display_name'],
  472. 'id' => $row['first_id_member'],
  473. 'href' => !empty($row['first_id_member']) ? $scripturl . '?action=profile;u=' . $row['first_id_member'] : '',
  474. 'link' => !empty($row['first_id_member']) ? '<a href="' . $scripturl . '?action=profile;u=' . $row['first_id_member'] . '" title="' . $txt['profile_of'] . ' ' . $row['first_display_name'] . '" class="preview">' . $row['first_display_name'] . '</a>' : $row['first_display_name']
  475. ),
  476. 'time' => timeformat($row['first_poster_time']),
  477. 'timestamp' => forum_time(true, $row['first_poster_time']),
  478. 'subject' => $row['first_subject'],
  479. 'preview' => $row['first_body'],
  480. 'icon' => $row['first_icon'],
  481. 'icon_url' => $settings[$context['icon_sources'][$row['first_icon']]] . '/post/' . $row['first_icon'] . '.png',
  482. 'href' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  483. 'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['first_subject'] . '</a>'
  484. ),
  485. 'last_post' => array(
  486. 'id' => $row['id_last_msg'],
  487. 'member' => array(
  488. 'username' => $row['last_member_name'],
  489. 'name' => $row['last_display_name'],
  490. 'id' => $row['last_id_member'],
  491. 'href' => !empty($row['last_id_member']) ? $scripturl . '?action=profile;u=' . $row['last_id_member'] : '',
  492. 'link' => !empty($row['last_id_member']) ? '<a href="' . $scripturl . '?action=profile;u=' . $row['last_id_member'] . '">' . $row['last_display_name'] . '</a>' : $row['last_display_name']
  493. ),
  494. 'time' => timeformat($row['last_poster_time']),
  495. 'timestamp' => forum_time(true, $row['last_poster_time']),
  496. 'subject' => $row['last_subject'],
  497. 'preview' => $row['last_body'],
  498. 'icon' => $row['last_icon'],
  499. 'icon_url' => $settings[$context['icon_sources'][$row['last_icon']]] . '/post/' . $row['last_icon'] . '.png',
  500. 'href' => $scripturl . '?topic=' . $row['id_topic'] . ($user_info['is_guest'] ? ('.' . (!empty($options['view_newest_first']) ? 0 : ((int) (($row['num_replies']) / $context['pageindex_multiplier'])) * $context['pageindex_multiplier']) . '#msg' . $row['id_last_msg']) : (($row['num_replies'] == 0 ? '.0' : '.msg' . $row['id_last_msg']) . '#new')),
  501. 'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . ($user_info['is_guest'] ? ('.' . (!empty($options['view_newest_first']) ? 0 : ((int) (($row['num_replies']) / $context['pageindex_multiplier'])) * $context['pageindex_multiplier']) . '#msg' . $row['id_last_msg']) : (($row['num_replies'] == 0 ? '.0' : '.msg' . $row['id_last_msg']) . '#new')) . '" ' . ($row['num_replies'] == 0 ? '' : 'rel="nofollow"') . '>' . $row['last_subject'] . '</a>'
  502. ),
  503. 'is_sticky' => !empty($row['is_sticky']),
  504. 'is_locked' => !empty($row['locked']),
  505. 'is_poll' => $modSettings['pollMode'] == '1' && $row['id_poll'] > 0,
  506. 'is_posted_in' => false,
  507. 'icon' => $row['first_icon'],
  508. 'icon_url' => $settings[$context['icon_sources'][$row['first_icon']]] . '/post/' . $row['first_icon'] . '.png',
  509. 'subject' => $row['first_subject'],
  510. 'new' => $row['new_from'] <= $row['id_msg_modified'],
  511. 'new_from' => $row['new_from'],
  512. 'newtime' => $row['new_from'],
  513. 'new_href' => $scripturl . '?topic=' . $row['id_topic'] . '.msg' . $row['new_from'] . '#new',
  514. 'pages' => $pages,
  515. 'replies' => comma_format($row['num_replies']),
  516. 'views' => comma_format($row['num_views']),
  517. 'approved' => $row['approved'],
  518. 'unapproved_posts' => $row['unapproved_posts'],
  519. );
  520. if (!empty($settings['avatars_on_indexes']))
  521. $context['topics'][$row['id_topic']]['last_post']['member']['avatar'] = array(
  522. 'name' => $row['avatar'],
  523. 'image' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? '<img class="avatar" src="' . (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) . '" alt="" />' : '') : (stristr($row['avatar'], 'http://') || stristr($row['avatar'], 'https://') ? '<img class="avatar" src="' . $row['avatar'] . '"' . $avatar_width . $avatar_height . ' alt="" />' : '<img class="avatar" src="' . $modSettings['avatar_url'] . '/' . $smcFunc['htmlspecialchars']($row['avatar']) . '" alt="" />'),
  524. 'href' => $row['avatar'] == '' ? ($row['id_attach'] > 0 ? (empty($row['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $row['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $row['filename']) : '') : (stristr($row['avatar'], 'http://') || stristr($row['avatar'], 'https://') ? $row['avatar'] : $modSettings['avatar_url'] . '/' . $row['avatar']),
  525. 'url' => $row['avatar'] == '' ? '' : (stristr($row['avatar'], 'http://') || stristr($row['avatar'], 'https://') ? $row['avatar'] : $modSettings['avatar_url'] . '/' . $row['avatar'])
  526. );
  527. determineTopicClass($context['topics'][$row['id_topic']]);
  528. }
  529. $smcFunc['db_free_result']($result);
  530. // Fix the sequence of topics if they were retrieved in the wrong order. (for speed reasons...)
  531. if ($fake_ascending)
  532. $context['topics'] = array_reverse($context['topics'], true);
  533. if (!empty($modSettings['enableParticipation']) && !$user_info['is_guest'] && !empty($topic_ids))
  534. {
  535. $result = $smcFunc['db_query']('', '
  536. SELECT id_topic
  537. FROM {db_prefix}messages
  538. WHERE id_topic IN ({array_int:topic_list})
  539. AND id_member = {int:current_member}
  540. GROUP BY id_topic
  541. LIMIT ' . count($topic_ids),
  542. array(
  543. 'current_member' => $user_info['id'],
  544. 'topic_list' => $topic_ids,
  545. )
  546. );
  547. while ($row = $smcFunc['db_fetch_assoc']($result))
  548. {
  549. $context['topics'][$row['id_topic']]['is_posted_in'] = true;
  550. $context['topics'][$row['id_topic']]['class'] = 'my_' . $context['topics'][$row['id_topic']]['class'];
  551. }
  552. $smcFunc['db_free_result']($result);
  553. }
  554. }
  555. $context['jump_to'] = array(
  556. 'label' => addslashes(un_htmlspecialchars($txt['jump_to'])),
  557. 'board_name' => $smcFunc['htmlspecialchars'](strtr(strip_tags($board_info['name']), array('&amp;' => '&'))),
  558. 'child_level' => $board_info['child_level'],
  559. );
  560. // Is Quick Moderation active/needed?
  561. if (!empty($options['display_quick_mod']) && !empty($context['topics']))
  562. {
  563. $context['can_markread'] = $context['user']['is_logged'];
  564. $context['can_lock'] = allowedTo('lock_any');
  565. $context['can_sticky'] = allowedTo('make_sticky');
  566. $context['can_move'] = allowedTo('move_any');
  567. $context['can_remove'] = allowedTo('remove_any');
  568. $context['can_merge'] = allowedTo('merge_any');
  569. // Ignore approving own topics as it's unlikely to come up...
  570. $context['can_approve'] = $modSettings['postmod_active'] && allowedTo('approve_posts') && !empty($board_info['unapproved_topics']);
  571. // Can we restore topics?
  572. $context['can_restore'] = allowedTo('move_any') && !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $board;
  573. if ($user_info['is_admin'] || $modSettings['topic_move_any'])
  574. $context['can_move_any'] = true;
  575. else
  576. {
  577. // We'll use this in a minute
  578. $boards_allowed = boardsAllowedTo('post_new');
  579. // How many boards can you do this on besides this one?
  580. $context['can_move_any'] = count($boards_allowed) > 1;
  581. }
  582. // Set permissions for all the topics.
  583. foreach ($context['topics'] as $t => $topic)
  584. {
  585. $started = $topic['first_post']['member']['id'] == $user_info['id'];
  586. $context['topics'][$t]['quick_mod'] = array(
  587. 'lock' => allowedTo('lock_any') || ($started && allowedTo('lock_own')),
  588. 'sticky' => allowedTo('make_sticky'),
  589. 'move' => (allowedTo('move_any') || ($started && allowedTo('move_own')) && $context['can_move_any']),
  590. 'modify' => allowedTo('modify_any') || ($started && allowedTo('modify_own')),
  591. 'remove' => allowedTo('remove_any') || ($started && allowedTo('remove_own')),
  592. 'approve' => $context['can_approve'] && $topic['unapproved_posts']
  593. );
  594. $context['can_lock'] |= ($started && allowedTo('lock_own'));
  595. $context['can_move'] |= ($started && allowedTo('move_own') && $context['can_move_any']);
  596. $context['can_remove'] |= ($started && allowedTo('remove_own'));
  597. }
  598. // Can we use quick moderation checkboxes?
  599. if ($options['display_quick_mod'] == 1)
  600. $context['can_quick_mod'] = $context['user']['is_logged'] || $context['can_approve'] || $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'] || $context['can_merge'] || $context['can_restore'];
  601. // Or the icons?
  602. else
  603. $context['can_quick_mod'] = $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'];
  604. }
  605. if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1)
  606. {
  607. $context['qmod_actions'] = array('approve', 'remove', 'lock', 'sticky', 'move', 'merge', 'restore', 'markread');
  608. call_integration_hook('integrate_quick_mod_actions');
  609. }
  610. // If there are children, but no topics and no ability to post topics...
  611. $context['no_topic_listing'] = !empty($context['boards']) && empty($context['topics']) && !$context['can_post_new'];
  612. // Build the message index button array.
  613. $context['normal_buttons'] = array(
  614. 'new_topic' => array('test' => 'can_post_new', 'text' => 'new_topic', 'image' => 'new_topic.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0', 'active' => true),
  615. 'post_poll' => array('test' => 'can_post_poll', 'text' => 'new_poll', 'image' => 'new_poll.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll'),
  616. 'notify' => array('test' => 'can_mark_notify', 'text' => $context['is_marked_notify'] ? 'unnotify' : 'notify', 'image' => ($context['is_marked_notify'] ? 'un' : ''). 'notify.png', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . ($context['is_marked_notify'] ? $txt['notification_disable_board'] : $txt['notification_enable_board']) . '\');"', 'url' => $scripturl . '?action=notifyboard;sa=' . ($context['is_marked_notify'] ? 'off' : 'on') . ';board=' . $context['current_board'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']),
  617. 'markread' => array('text' => 'mark_read_short', 'image' => 'markread.png', 'lang' => true, 'custom' => 'onclick="return confirm(\'' . $txt['are_sure_mark_read'] . '\');"', 'url' => $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0;' . $context['session_var'] . '=' . $context['session_id']),
  618. );
  619. // Allow adding new buttons easily.
  620. // Note: $context['normal_buttons'] is added for backward compatibility with 2.0, but is deprecated and should not be used
  621. call_integration_hook('integrate_messageindex_buttons', array(&$context['normal_buttons']));
  622. }
  623. /**
  624. * Allows for moderation from the message index.
  625. * @todo refactor this...
  626. */
  627. function QuickModeration()
  628. {
  629. global $sourcedir, $board, $user_info, $modSettings, $smcFunc, $context;
  630. // Check the session = get or post.
  631. checkSession('request');
  632. // Lets go straight to the restore area.
  633. if (isset($_REQUEST['qaction']) && $_REQUEST['qaction'] == 'restore' && !empty($_REQUEST['topics']))
  634. redirectexit('action=restoretopic;topics=' . implode(',', $_REQUEST['topics']) . ';' . $context['session_var'] . '=' . $context['session_id']);
  635. if (isset($_SESSION['topicseen_cache']))
  636. $_SESSION['topicseen_cache'] = array();
  637. // This is going to be needed to send off the notifications and for updateLastMessages().
  638. require_once($sourcedir . '/Subs-Post.php');
  639. // Remember the last board they moved things to.
  640. if (isset($_REQUEST['move_to']))
  641. $_SESSION['move_to_topic'] = $_REQUEST['move_to'];
  642. // Only a few possible actions.
  643. $possibleActions = array();
  644. if (!empty($board))
  645. {
  646. $boards_can = array(
  647. 'make_sticky' => allowedTo('make_sticky') ? array($board) : array(),
  648. 'move_any' => allowedTo('move_any') ? array($board) : array(),
  649. 'move_own' => allowedTo('move_own') ? array($board) : array(),
  650. 'remove_any' => allowedTo('remove_any') ? array($board) : array(),
  651. 'remove_own' => allowedTo('remove_own') ? array($board) : array(),
  652. 'lock_any' => allowedTo('lock_any') ? array($board) : array(),
  653. 'lock_own' => allowedTo('lock_own') ? array($board) : array(),
  654. 'merge_any' => allowedTo('merge_any') ? array($board) : array(),
  655. 'approve_posts' => allowedTo('approve_posts') ? array($board) : array(),
  656. );
  657. $redirect_url = 'board=' . $board . '.' . $_REQUEST['start'];
  658. }
  659. else
  660. {
  661. /**
  662. * @todo Ugly. There's no getting around this, is there?
  663. * @todo Maybe just do this on the actions people want to use?
  664. */
  665. $boards_can = boardsAllowedTo(array('make_sticky', 'move_any', 'move_own', 'remove_any', 'remove_own', 'lock_any', 'lock_own', 'merge_any', 'approve_posts'), true, false);
  666. $redirect_url = isset($_POST['redirect_url']) ? $_POST['redirect_url'] : (isset($_SESSION['old_url']) ? $_SESSION['old_url'] : '');
  667. }
  668. // Are we enforcing the "no moving topics to boards where you can't post new ones" rule?
  669. if (!$user_info['is_admin'] && !$modSettings['topic_move_any'])
  670. {
  671. // Don't count this board, if it's specified
  672. if (!empty($board))
  673. {
  674. $boards_can['post_new'] = array_diff(boardsAllowedTo('post_new'), array($board));
  675. }
  676. else
  677. {
  678. $boards_can['post_new'] = boardsAllowedTo('post_new');
  679. }
  680. if (empty($boards_can['post_new']))
  681. {
  682. $boards_can['move_any'] = $boards_can['move_own'] = array();
  683. }
  684. }
  685. if (!$user_info['is_guest'])
  686. $possibleActions[] = 'markread';
  687. if (!empty($boards_can['make_sticky']))
  688. $possibleActions[] = 'sticky';
  689. if (!empty($boards_can['move_any']) || !empty($boards_can['move_own']))
  690. $possibleActions[] = 'move';
  691. if (!empty($boards_can['remove_any']) || !empty($boards_can['remove_own']))
  692. $possibleActions[] = 'remove';
  693. if (!empty($boards_can['lock_any']) || !empty($boards_can['lock_own']))
  694. $possibleActions[] = 'lock';
  695. if (!empty($boards_can['merge_any']))
  696. $possibleActions[] = 'merge';
  697. if (!empty($boards_can['approve_posts']))
  698. $possibleActions[] = 'approve';
  699. // Two methods: $_REQUEST['actions'] (id_topic => action), and $_REQUEST['topics'] and $_REQUEST['qaction'].
  700. // (if action is 'move', $_REQUEST['move_to'] or $_REQUEST['move_tos'][$topic] is used.)
  701. if (!empty($_REQUEST['topics']))
  702. {
  703. // If the action isn't valid, just quit now.
  704. if (empty($_REQUEST['qaction']) || !in_array($_REQUEST['qaction'], $possibleActions))
  705. redirectexit($redirect_url);
  706. // Merge requires all topics as one parameter and can be done at once.
  707. if ($_REQUEST['qaction'] == 'merge')
  708. {
  709. // Merge requires at least two topics.
  710. if (empty($_REQUEST['topics']) || count($_REQUEST['topics']) < 2)
  711. redirectexit($redirect_url);
  712. require_once($sourcedir . '/SplitTopics.php');
  713. return MergeExecute($_REQUEST['topics']);
  714. }
  715. // Just convert to the other method, to make it easier.
  716. foreach ($_REQUEST['topics'] as $topic)
  717. $_REQUEST['actions'][(int) $topic] = $_REQUEST['qaction'];
  718. }
  719. // Weird... how'd you get here?
  720. if (empty($_REQUEST['actions']))
  721. redirectexit($redirect_url);
  722. // Validate each action.
  723. $temp = array();
  724. foreach ($_REQUEST['actions'] as $topic => $action)
  725. {
  726. if (in_array($action, $possibleActions))
  727. $temp[(int) $topic] = $action;
  728. }
  729. $_REQUEST['actions'] = $temp;
  730. if (!empty($_REQUEST['actions']))
  731. {
  732. // Find all topics...
  733. $request = $smcFunc['db_query']('', '
  734. SELECT id_topic, id_member_started, id_board, locked, approved, unapproved_posts
  735. FROM {db_prefix}topics
  736. WHERE id_topic IN ({array_int:action_topic_ids})
  737. LIMIT ' . count($_REQUEST['actions']),
  738. array(
  739. 'action_topic_ids' => array_keys($_REQUEST['actions']),
  740. )
  741. );
  742. while ($row = $smcFunc['db_fetch_assoc']($request))
  743. {
  744. if (!empty($board))
  745. {
  746. if ($row['id_board'] != $board || ($modSettings['postmod_active'] && !$row['approved'] && !allowedTo('approve_posts')))
  747. unset($_REQUEST['actions'][$row['id_topic']]);
  748. }
  749. else
  750. {
  751. // Don't allow them to act on unapproved posts they can't see...
  752. if ($modSettings['postmod_active'] && !$row['approved'] && !in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts']))
  753. unset($_REQUEST['actions'][$row['id_topic']]);
  754. // Goodness, this is fun. We need to validate the action.
  755. elseif ($_REQUEST['actions'][$row['id_topic']] == 'sticky' && !in_array(0, $boards_can['make_sticky']) && !in_array($row['id_board'], $boards_can['make_sticky']))
  756. unset($_REQUEST['actions'][$row['id_topic']]);
  757. elseif ($_REQUEST['actions'][$row['id_topic']] == 'move' && !in_array(0, $boards_can['move_any']) && !in_array($row['id_board'], $boards_can['move_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['move_own']) && !in_array($row['id_board'], $boards_can['move_own']))))
  758. unset($_REQUEST['actions'][$row['id_topic']]);
  759. elseif ($_REQUEST['actions'][$row['id_topic']] == 'remove' && !in_array(0, $boards_can['remove_any']) && !in_array($row['id_board'], $boards_can['remove_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['remove_own']) && !in_array($row['id_board'], $boards_can['remove_own']))))
  760. unset($_REQUEST['actions'][$row['id_topic']]);
  761. // @todo $locked is not set, what are you trying to do? (taking the change it is supposed to be $row['locked'])
  762. elseif ($_REQUEST['actions'][$row['id_topic']] == 'lock' && !in_array(0, $boards_can['lock_any']) && !in_array($row['id_board'], $boards_can['lock_any']) && ($row['id_member_started'] != $user_info['id'] || $row['locked'] == 1 || (!in_array(0, $boards_can['lock_own']) && !in_array($row['id_board'], $boards_can['lock_own']))))
  763. unset($_REQUEST['actions'][$row['id_topic']]);
  764. // If the topic is approved then you need permission to approve the posts within.
  765. elseif ($_REQUEST['actions'][$row['id_topic']] == 'approve' && (!$row['unapproved_posts'] || (!in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts']))))
  766. unset($_REQUEST['actions'][$row['id_topic']]);
  767. }
  768. }
  769. $smcFunc['db_free_result']($request);
  770. }
  771. $stickyCache = array();
  772. $moveCache = array(0 => array(), 1 => array());
  773. $removeCache = array();
  774. $lockCache = array();
  775. $markCache = array();
  776. $approveCache = array();
  777. // Separate the actions.
  778. foreach ($_REQUEST['actions'] as $topic => $action)
  779. {
  780. $topic = (int) $topic;
  781. if ($action == 'markread')
  782. $markCache[] = $topic;
  783. elseif ($action == 'sticky')
  784. $stickyCache[] = $topic;
  785. elseif ($action == 'move')
  786. {
  787. require_once($sourcedir . '/MoveTopic.php');
  788. moveTopicConcurrence();
  789. // $moveCache[0] is the topic, $moveCache[1] is the board to move to.
  790. $moveCache[1][$topic] = (int) (isset($_REQUEST['move_tos'][$topic]) ? $_REQUEST['move_tos'][$topic] : $_REQUEST['move_to']);
  791. if (empty($moveCache[1][$topic]))
  792. continue;
  793. $moveCache[0][] = $topic;
  794. }
  795. elseif ($action == 'remove')
  796. $removeCache[] = $topic;
  797. elseif ($action == 'lock')
  798. $lockCache[] = $topic;
  799. elseif ($action == 'approve')
  800. $approveCache[] = $topic;
  801. }
  802. if (empty($board))
  803. $affectedBoards = array();
  804. else
  805. $affectedBoards = array($board => array(0, 0));
  806. // Do all the stickies...
  807. if (!empty($stickyCache))
  808. {
  809. $smcFunc['db_query']('', '
  810. UPDATE {db_prefix}topics
  811. SET is_sticky = CASE WHEN is_sticky = {int:is_sticky} THEN 0 ELSE 1 END
  812. WHERE id_topic IN ({array_int:sticky_topic_ids})',
  813. array(
  814. 'sticky_topic_ids' => $stickyCache,
  815. 'is_sticky' => 1,
  816. )
  817. );
  818. // Get the board IDs and Sticky status
  819. $request = $smcFunc['db_query']('', '
  820. SELECT id_topic, id_board, is_sticky
  821. FROM {db_prefix}topics
  822. WHERE id_topic IN ({array_int:sticky_topic_ids})
  823. LIMIT ' . count($stickyCache),
  824. array(
  825. 'sticky_topic_ids' => $stickyCache,
  826. )
  827. );
  828. $stickyCacheBoards = array();
  829. $stickyCacheStatus = array();
  830. while ($row = $smcFunc['db_fetch_assoc']($request))
  831. {
  832. $stickyCacheBoards[$row['id_topic']] = $row['id_board'];
  833. $stickyCacheStatus[$row['id_topic']] = empty($row['is_sticky']);
  834. }
  835. $smcFunc['db_free_result']($request);
  836. }
  837. // Move sucka! (this is, by the by, probably the most complicated part....)
  838. if (!empty($moveCache[0]))
  839. {
  840. // I know - I just KNOW you're trying to beat the system. Too bad for you... we CHECK :P.
  841. $request = $smcFunc['db_query']('', '
  842. SELECT t.id_topic, t.id_board, b.count_posts
  843. FROM {db_prefix}topics AS t
  844. LEFT JOIN {db_prefix}boards AS b ON (t.id_board = b.id_board)
  845. WHERE t.id_topic IN ({array_int:move_topic_ids})' . (!empty($board) && !allowedTo('move_any') ? '
  846. AND t.id_member_started = {int:current_member}' : '') . '
  847. LIMIT ' . count($moveCache[0]),
  848. array(
  849. 'current_member' => $user_info['id'],
  850. 'move_topic_ids' => $moveCache[0],
  851. )
  852. );
  853. $moveTos = array();
  854. $moveCache2 = array();
  855. $countPosts = array();
  856. while ($row = $smcFunc['db_fetch_assoc']($request))
  857. {
  858. $to = $moveCache[1][$row['id_topic']];
  859. if (empty($to))
  860. continue;
  861. // Does this topic's board count the posts or not?
  862. $countPosts[$row['id_topic']] = empty($row['count_posts']);
  863. if (!isset($moveTos[$to]))
  864. $moveTos[$to] = array();
  865. $moveTos[$to][] = $row['id_topic'];
  866. // For reporting...
  867. $moveCache2[] = array($row['id_topic'], $row['id_board'], $to);
  868. }
  869. $smcFunc['db_free_result']($request);
  870. $moveCache = $moveCache2;
  871. require_once($sourcedir . '/MoveTopic.php');
  872. // Do the actual moves...
  873. foreach ($moveTos as $to => $topics)
  874. moveTopics($topics, $to);
  875. // Does the post counts need to be updated?
  876. if (!empty($moveTos))
  877. {
  878. $topicRecounts = array();
  879. $request = $smcFunc['db_query']('', '
  880. SELECT id_board, count_posts
  881. FROM {db_prefix}boards
  882. WHERE id_board IN ({array_int:move_boards})',
  883. array(
  884. 'move_boards' => array_keys($moveTos),
  885. )
  886. );
  887. while ($row = $smcFunc['db_fetch_assoc']($request))
  888. {
  889. $cp = empty($row['count_posts']);
  890. // Go through all the topics that are being moved to this board.
  891. foreach ($moveTos[$row['id_board']] as $topic)
  892. {
  893. // If both boards have the same value for post counting then no adjustment needs to be made.
  894. if ($countPosts[$topic] != $cp)
  895. {
  896. // If the board being moved to does count the posts then the other one doesn't so add to their post count.
  897. $topicRecounts[$topic] = $cp ? '+' : '-';
  898. }
  899. }
  900. }
  901. $smcFunc['db_free_result']($request);
  902. if (!empty($topicRecounts))
  903. {
  904. $members = array();
  905. // Get all the members who have posted in the moved topics.
  906. $request = $smcFunc['db_query']('', '
  907. SELECT id_member, id_topic
  908. FROM {db_prefix}messages
  909. WHERE id_topic IN ({array_int:moved_topic_ids})',
  910. array(
  911. 'moved_topic_ids' => array_keys($topicRecounts),
  912. )
  913. );
  914. while ($row = $smcFunc['db_fetch_assoc']($request))
  915. {
  916. if (!isset($members[$row['id_member']]))
  917. $members[$row['id_member']] = 0;
  918. if ($topicRecounts[$row['id_topic']] === '+')
  919. $members[$row['id_member']] += 1;
  920. else
  921. $members[$row['id_member']] -= 1;
  922. }
  923. $smcFunc['db_free_result']($request);
  924. // And now update them member's post counts
  925. foreach ($members as $id_member => $post_adj)
  926. updateMemberData($id_member, array('posts' => 'posts + ' . $post_adj));
  927. }
  928. }
  929. }
  930. // Now delete the topics...
  931. if (!empty($removeCache))
  932. {
  933. // They can only delete their own topics. (we wouldn't be here if they couldn't do that..)
  934. $result = $smcFunc['db_query']('', '
  935. SELECT id_topic, id_board
  936. FROM {db_prefix}topics
  937. WHERE id_topic IN ({array_int:removed_topic_ids})' . (!empty($board) && !allowedTo('remove_any') ? '
  938. AND id_member_started = {int:current_member}' : '') . '
  939. LIMIT ' . count($removeCache),
  940. array(
  941. 'current_member' => $user_info['id'],
  942. 'removed_topic_ids' => $removeCache,
  943. )
  944. );
  945. $removeCache = array();
  946. $removeCacheBoards = array();
  947. while ($row = $smcFunc['db_fetch_assoc']($result))
  948. {
  949. $removeCache[] = $row['id_topic'];
  950. $removeCacheBoards[$row['id_topic']] = $row['id_board'];
  951. }
  952. $smcFunc['db_free_result']($result);
  953. // Maybe *none* were their own topics.
  954. if (!empty($removeCache))
  955. {
  956. // Gotta send the notifications *first*!
  957. foreach ($removeCache as $topic)
  958. {
  959. // Only log the topic ID if it's not in the recycle board.
  960. logAction('remove', array((empty($modSettings['recycle_enable']) || $modSettings['recycle_board'] != $removeCacheBoards[$topic] ? 'topic' : 'old_topic_id') => $topic, 'board' => $removeCacheBoards[$topic]));
  961. sendNotifications($topic, 'remove');
  962. }
  963. require_once($sourcedir . '/RemoveTopic.php');
  964. removeTopics($removeCache);
  965. }
  966. }
  967. // Approve the topics...
  968. if (!empty($approveCache))
  969. {
  970. // We need unapproved topic ids and their authors!
  971. $request = $smcFunc['db_query']('', '
  972. SELECT id_topic, id_member_started
  973. FROM {db_prefix}topics
  974. WHERE id_topic IN ({array_int:approve_topic_ids})
  975. AND approved = {int:not_approved}
  976. LIMIT ' . count($approveCache),
  977. array(
  978. 'approve_topic_ids' => $approveCache,
  979. 'not_approved' => 0,
  980. )
  981. );
  982. $approveCache = array();
  983. $approveCacheMembers = array();
  984. while ($row = $smcFunc['db_fetch_assoc']($request))
  985. {
  986. $approveCache[] = $row['id_topic'];
  987. $approveCacheMembers[$row['id_topic']] = $row['id_member_started'];
  988. }
  989. $smcFunc['db_free_result']($request);
  990. // Any topics to approve?
  991. if (!empty($approveCache))
  992. {
  993. // Handle the approval part...
  994. approveTopics($approveCache);
  995. // Time for some logging!
  996. foreach ($approveCache as $topic)
  997. logAction('approve_topic', array('topic' => $topic, 'member' => $approveCacheMembers[$topic]));
  998. }
  999. }
  1000. // And (almost) lastly, lock the topics...
  1001. if (!empty($lockCache))
  1002. {
  1003. $lockStatus = array();
  1004. // Gotta make sure they CAN lock/unlock these topics...
  1005. if (!empty($board) && !allowedTo('lock_any'))
  1006. {
  1007. // Make sure they started the topic AND it isn't already locked by someone with higher priv's.
  1008. $result = $smcFunc['db_query']('', '
  1009. SELECT id_topic, locked, id_board
  1010. FROM {db_prefix}topics
  1011. WHERE id_topic IN ({array_int:locked_topic_ids})
  1012. AND id_member_started = {int:current_member}
  1013. AND locked IN (2, 0)
  1014. LIMIT ' . count($lockCache),
  1015. array(
  1016. 'current_member' => $user_info['id'],
  1017. 'locked_topic_ids' => $lockCache,
  1018. )
  1019. );
  1020. $lockCache = array();
  1021. $lockCacheBoards = array();
  1022. while ($row = $smcFunc['db_fetch_assoc']($result))
  1023. {
  1024. $lockCache[] = $row['id_topic'];
  1025. $lockCacheBoards[$row['id_topic']] = $row['id_board'];
  1026. $lockStatus[$row['id_topic']] = empty($row['locked']);
  1027. }
  1028. $smcFunc['db_free_result']($result);
  1029. }
  1030. else
  1031. {
  1032. $result = $smcFunc['db_query']('', '
  1033. SELECT id_topic, locked, id_board
  1034. FROM {db_prefix}topics
  1035. WHERE id_topic IN ({array_int:locked_topic_ids})
  1036. LIMIT ' . count($lockCache),
  1037. array(
  1038. 'locked_topic_ids' => $lockCache,
  1039. )
  1040. );
  1041. $lockCacheBoards = array();
  1042. while ($row = $smcFunc['db_fetch_assoc']($result))
  1043. {
  1044. $lockStatus[$row['id_topic']] = empty($row['locked']);
  1045. $lockCacheBoards[$row['id_topic']] = $row['id_board'];
  1046. }
  1047. $smcFunc['db_free_result']($result);
  1048. }
  1049. // It could just be that *none* were their own topics...
  1050. if (!empty($lockCache))
  1051. {
  1052. // Alternate the locked value.
  1053. $smcFunc['db_query']('', '
  1054. UPDATE {db_prefix}topics
  1055. SET locked = CASE WHEN locked = {int:is_locked} THEN ' . (allowedTo('lock_any') ? '1' : '2') . ' ELSE 0 END
  1056. WHERE id_topic IN ({array_int:locked_topic_ids})',
  1057. array(
  1058. 'locked_topic_ids' => $lockCache,
  1059. 'is_locked' => 0,
  1060. )
  1061. );
  1062. }
  1063. }
  1064. if (!empty($markCache))
  1065. {
  1066. $smcFunc['db_query']('', '
  1067. SELECT id_topic, unwatched
  1068. FROM {db_prefix}log_topics
  1069. WHERE id_topic IN ({array_int:selected_topics})
  1070. AND id_member = {int:current_user}',
  1071. array(
  1072. 'selected_topics' => $markCache,
  1073. 'current_user' => $user_info['id'],
  1074. )
  1075. );
  1076. $logged_topics = array();
  1077. while ($row = $smcFunc['db_fetch_assoc']($request))
  1078. $logged_topics[$row['id_topic']] = $row['unwatched'];
  1079. $smcFunc['db_free_result']($request);
  1080. $markArray = array();
  1081. foreach ($markCache as $topic)
  1082. $markArray[] = array($modSettings['maxMsgID'], $user_info['id'], $topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0));
  1083. $smcFunc['db_insert']('replace',
  1084. '{db_prefix}log_topics',
  1085. array('id_msg' => 'int', 'id_member' => 'int', 'id_topic' => 'int', 'unwatched' => 'int'),
  1086. $markArray,
  1087. array('id_member', 'id_topic')
  1088. );
  1089. }
  1090. foreach ($moveCache as $topic)
  1091. {
  1092. // Didn't actually move anything!
  1093. if (!isset($topic[0]))
  1094. break;
  1095. logAction('move', array('topic' => $topic[0], 'board_from' => $topic[1], 'board_to' => $topic[2]));
  1096. sendNotifications($topic[0], 'move');
  1097. }
  1098. foreach ($lockCache as $topic)
  1099. {
  1100. logAction($lockStatus[$topic] ? 'lock' : 'unlock', array('topic' => $topic, 'board' => $lockCacheBoards[$topic]));
  1101. sendNotifications($topic, $lockStatus[$topic] ? 'lock' : 'unlock');
  1102. }
  1103. foreach ($stickyCache as $topic)
  1104. {
  1105. logAction($stickyCacheStatus[$topic] ? 'unsticky' : 'sticky', array('topic' => $topic, 'board' => $stickyCacheBoards[$topic]));
  1106. sendNotifications($topic, 'sticky');
  1107. }
  1108. updateStats('topic');
  1109. updateStats('message');
  1110. updateSettings(array(
  1111. 'calendar_updated' => time(),
  1112. ));
  1113. if (!empty($affectedBoards))
  1114. updateLastMessages(array_keys($affectedBoards));
  1115. redirectexit($redirect_url);
  1116. }
  1117. ?>