MessageIndex.php 46 KB

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