MoveTopic.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. <?php
  2. /**
  3. * This file contains the functions required to move topics from one board to
  4. * another board.
  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. * This function allows to move a topic, making sure to ask the moderator
  19. * to give reason for topic move.
  20. * It must be called with a topic specified. (that is, global $topic must
  21. * be set... @todo fix this thing.)
  22. * If the member is the topic starter requires the move_own permission,
  23. * otherwise the move_any permission.
  24. * Accessed via ?action=movetopic.
  25. *
  26. * @uses the MoveTopic template, main sub-template.
  27. */
  28. function MoveTopic()
  29. {
  30. global $txt, $board, $topic, $user_info, $context, $language, $scripturl, $settings, $smcFunc, $modSettings;
  31. if (empty($topic))
  32. fatal_lang_error('no_access', false);
  33. $request = $smcFunc['db_query']('', '
  34. SELECT t.id_member_started, ms.subject, t.approved
  35. FROM {db_prefix}topics AS t
  36. INNER JOIN {db_prefix}messages AS ms ON (ms.id_msg = t.id_first_msg)
  37. WHERE t.id_topic = {int:current_topic}
  38. LIMIT 1',
  39. array(
  40. 'current_topic' => $topic,
  41. )
  42. );
  43. list ($id_member_started, $context['subject'], $context['is_approved']) = $smcFunc['db_fetch_row']($request);
  44. $smcFunc['db_free_result']($request);
  45. // Can they see it - if not approved?
  46. if ($modSettings['postmod_active'] && !$context['is_approved'])
  47. isAllowedTo('approve_posts');
  48. // Permission check!
  49. // @todo
  50. if (!allowedTo('move_any'))
  51. {
  52. if ($id_member_started == $user_info['id'])
  53. {
  54. isAllowedTo('move_own');
  55. //$boards = array_merge(boardsAllowedTo('move_own'), boardsAllowedTo('move_any'));
  56. }
  57. else
  58. isAllowedTo('move_any');
  59. }
  60. //else
  61. //$boards = boardsAllowedTo('move_any');
  62. loadTemplate('MoveTopic');
  63. // Get a list of boards this moderator can move to.
  64. $request = $smcFunc['db_query']('order_by_board_order', '
  65. SELECT b.id_board, b.name, b.child_level, c.name AS cat_name, c.id_cat
  66. FROM {db_prefix}boards AS b
  67. LEFT JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat)
  68. WHERE {query_see_board}
  69. AND b.redirect = {string:blank_redirect}
  70. AND b.id_board != {int:current_board}',
  71. array(
  72. 'blank_redirect' => '',
  73. 'current_board' => $board,
  74. )
  75. );
  76. $context['boards'] = array();
  77. while ($row = $smcFunc['db_fetch_assoc']($request))
  78. {
  79. if (!isset($context['categories'][$row['id_cat']]))
  80. $context['categories'][$row['id_cat']] = array (
  81. 'name' => strip_tags($row['cat_name']),
  82. 'boards' => array(),
  83. );
  84. $context['categories'][$row['id_cat']]['boards'][] = array(
  85. 'id' => $row['id_board'],
  86. 'name' => strip_tags($row['name']),
  87. 'category' => strip_tags($row['cat_name']),
  88. 'child_level' => $row['child_level'],
  89. 'selected' => !empty($_SESSION['move_to_topic']) && $_SESSION['move_to_topic'] == $row['id_board'] && $row['id_board'] != $board,
  90. );
  91. }
  92. $smcFunc['db_free_result']($request);
  93. if (empty($context['categories']))
  94. fatal_lang_error('moveto_noboards', false);
  95. $context['page_title'] = $txt['move_topic'];
  96. $context['linktree'][] = array(
  97. 'url' => $scripturl . '?topic=' . $topic . '.0',
  98. 'name' => $context['subject'],
  99. 'extra_before' => $settings['linktree_inline'] ? $txt['topic'] . ': ' : '',
  100. );
  101. $context['linktree'][] = array(
  102. 'name' => $txt['move_topic'],
  103. );
  104. $context['back_to_topic'] = isset($_REQUEST['goback']);
  105. if ($user_info['language'] != $language)
  106. {
  107. loadLanguage('index', $language);
  108. $temp = $txt['movetopic_default'];
  109. loadLanguage('index');
  110. $txt['movetopic_default'] = $temp;
  111. }
  112. // Register this form and get a sequence number in $context.
  113. checkSubmitOnce('register');
  114. }
  115. /**
  116. * Execute the move of a topic.
  117. * It is called on the submit of MoveTopic.
  118. * This function logs that topics have been moved in the moderation log.
  119. * If the member is the topic starter requires the move_own permission,
  120. * otherwise requires the move_any permission.
  121. * Upon successful completion redirects to message index.
  122. * Accessed via ?action=movetopic2.
  123. *
  124. * @uses Subs-Post.php.
  125. */
  126. function MoveTopic2()
  127. {
  128. global $txt, $board, $topic, $scripturl, $sourcedir, $modSettings, $context;
  129. global $board, $language, $user_info, $smcFunc;
  130. if (empty($topic))
  131. fatal_lang_error('no_access', false);
  132. // You can't choose to have a redirection topic and use an empty reason.
  133. if (isset($_POST['postRedirect']) && (!isset($_POST['reason']) || trim($_POST['reason']) == ''))
  134. fatal_lang_error('movetopic_no_reason', false);
  135. // Make sure this form hasn't been submitted before.
  136. checkSubmitOnce('check');
  137. $request = $smcFunc['db_query']('', '
  138. SELECT id_member_started, id_first_msg, approved
  139. FROM {db_prefix}topics
  140. WHERE id_topic = {int:current_topic}
  141. LIMIT 1',
  142. array(
  143. 'current_topic' => $topic,
  144. )
  145. );
  146. list ($id_member_started, $id_first_msg, $context['is_approved']) = $smcFunc['db_fetch_row']($request);
  147. $smcFunc['db_free_result']($request);
  148. // Can they see it?
  149. if (!$context['is_approved'])
  150. isAllowedTo('approve_posts');
  151. // Can they move topics on this board?
  152. if (!allowedTo('move_any'))
  153. {
  154. if ($id_member_started == $user_info['id'])
  155. {
  156. isAllowedTo('move_own');
  157. $boards = array_merge(boardsAllowedTo('move_own'), boardsAllowedTo('move_any'));
  158. }
  159. else
  160. isAllowedTo('move_any');
  161. }
  162. else
  163. $boards = boardsAllowedTo('move_any');
  164. // If this topic isn't approved don't let them move it if they can't approve it!
  165. if ($modSettings['postmod_active'] && !$context['is_approved'] && !allowedTo('approve_posts'))
  166. {
  167. // Only allow them to move it to other boards they can't approve it in.
  168. $can_approve = boardsAllowedTo('approve_posts');
  169. $boards = array_intersect($boards, $can_approve);
  170. }
  171. checkSession();
  172. require_once($sourcedir . '/Subs-Post.php');
  173. // The destination board must be numeric.
  174. $_POST['toboard'] = (int) $_POST['toboard'];
  175. // Make sure they can see the board they are trying to move to (and get whether posts count in the target board).
  176. $request = $smcFunc['db_query']('', '
  177. SELECT b.count_posts, b.name, m.subject
  178. FROM {db_prefix}boards AS b
  179. INNER JOIN {db_prefix}topics AS t ON (t.id_topic = {int:current_topic})
  180. INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
  181. WHERE {query_see_board}
  182. AND b.id_board = {int:to_board}
  183. AND b.redirect = {string:blank_redirect}
  184. LIMIT 1',
  185. array(
  186. 'current_topic' => $topic,
  187. 'to_board' => $_POST['toboard'],
  188. 'blank_redirect' => '',
  189. )
  190. );
  191. if ($smcFunc['db_num_rows']($request) == 0)
  192. fatal_lang_error('no_board');
  193. list ($pcounter, $board_name, $subject) = $smcFunc['db_fetch_row']($request);
  194. $smcFunc['db_free_result']($request);
  195. // Remember this for later.
  196. $_SESSION['move_to_topic'] = $_POST['toboard'];
  197. // Rename the topic...
  198. if (isset($_POST['reset_subject'], $_POST['custom_subject']) && $_POST['custom_subject'] != '')
  199. {
  200. $_POST['custom_subject'] = strtr($smcFunc['htmltrim']($smcFunc['htmlspecialchars']($_POST['custom_subject'])), array("\r" => '', "\n" => '', "\t" => ''));
  201. // Keep checking the length.
  202. if ($smcFunc['strlen']($_POST['custom_subject']) > 100)
  203. $_POST['custom_subject'] = $smcFunc['substr']($_POST['custom_subject'], 0, 100);
  204. // If it's still valid move onwards and upwards.
  205. if ($_POST['custom_subject'] != '')
  206. {
  207. if (isset($_POST['enforce_subject']))
  208. {
  209. // Get a response prefix, but in the forum's default language.
  210. if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix')))
  211. {
  212. if ($language === $user_info['language'])
  213. $context['response_prefix'] = $txt['response_prefix'];
  214. else
  215. {
  216. loadLanguage('index', $language, false);
  217. $context['response_prefix'] = $txt['response_prefix'];
  218. loadLanguage('index');
  219. }
  220. cache_put_data('response_prefix', $context['response_prefix'], 600);
  221. }
  222. $smcFunc['db_query']('', '
  223. UPDATE {db_prefix}messages
  224. SET subject = {string:subject}
  225. WHERE id_topic = {int:current_topic}',
  226. array(
  227. 'current_topic' => $topic,
  228. 'subject' => $context['response_prefix'] . $_POST['custom_subject'],
  229. )
  230. );
  231. }
  232. $smcFunc['db_query']('', '
  233. UPDATE {db_prefix}messages
  234. SET subject = {string:custom_subject}
  235. WHERE id_msg = {int:id_first_msg}',
  236. array(
  237. 'id_first_msg' => $id_first_msg,
  238. 'custom_subject' => $_POST['custom_subject'],
  239. )
  240. );
  241. // Fix the subject cache.
  242. updateStats('subject', $topic, $_POST['custom_subject']);
  243. }
  244. }
  245. // Create a link to this in the old board.
  246. /**
  247. * @todo Does this make sense if the topic was unapproved before? I'd just about say so.
  248. */
  249. if (isset($_POST['postRedirect']))
  250. {
  251. // Should be in the boardwide language.
  252. if ($user_info['language'] != $language)
  253. loadLanguage('index', $language);
  254. $_POST['reason'] = $smcFunc['htmlspecialchars']($_POST['reason'], ENT_QUOTES);
  255. preparsecode($_POST['reason']);
  256. // Add a URL onto the message.
  257. $_POST['reason'] = strtr($_POST['reason'], array(
  258. $txt['movetopic_auto_board'] => '[url=' . $scripturl . '?board=' . $_POST['toboard'] . '.0]' . $board_name . '[/url]',
  259. $txt['movetopic_auto_topic'] => '[iurl]' . $scripturl . '?topic=' . $topic . '.0[/iurl]'
  260. ));
  261. $msgOptions = array(
  262. 'subject' => $txt['moved'] . ': ' . $subject,
  263. 'body' => $_POST['reason'],
  264. 'icon' => 'moved',
  265. 'smileys_enabled' => 1,
  266. );
  267. $topicOptions = array(
  268. 'board' => $board,
  269. 'lock_mode' => 1,
  270. 'mark_as_read' => true,
  271. );
  272. $posterOptions = array(
  273. 'id' => $user_info['id'],
  274. 'update_post_count' => empty($pcounter),
  275. );
  276. createPost($msgOptions, $topicOptions, $posterOptions);
  277. }
  278. $request = $smcFunc['db_query']('', '
  279. SELECT count_posts
  280. FROM {db_prefix}boards
  281. WHERE id_board = {int:current_board}
  282. LIMIT 1',
  283. array(
  284. 'current_board' => $board,
  285. )
  286. );
  287. list ($pcounter_from) = $smcFunc['db_fetch_row']($request);
  288. $smcFunc['db_free_result']($request);
  289. if ($pcounter_from != $pcounter)
  290. {
  291. $request = $smcFunc['db_query']('', '
  292. SELECT id_member
  293. FROM {db_prefix}messages
  294. WHERE id_topic = {int:current_topic}
  295. AND approved = {int:is_approved}',
  296. array(
  297. 'current_topic' => $topic,
  298. 'is_approved' => 1,
  299. )
  300. );
  301. $posters = array();
  302. while ($row = $smcFunc['db_fetch_assoc']($request))
  303. {
  304. if (!isset($posters[$row['id_member']]))
  305. $posters[$row['id_member']] = 0;
  306. $posters[$row['id_member']]++;
  307. }
  308. $smcFunc['db_free_result']($request);
  309. foreach ($posters as $id_member => $posts)
  310. {
  311. // The board we're moving from counted posts, but not to.
  312. if (empty($pcounter_from))
  313. updateMemberData($id_member, array('posts' => 'posts - ' . $posts));
  314. // The reverse: from didn't, to did.
  315. else
  316. updateMemberData($id_member, array('posts' => 'posts + ' . $posts));
  317. }
  318. }
  319. // Do the move (includes statistics update needed for the redirect topic).
  320. moveTopics($topic, $_POST['toboard']);
  321. // Log that they moved this topic.
  322. if (!allowedTo('move_own') || $id_member_started != $user_info['id'])
  323. logAction('move', array('topic' => $topic, 'board_from' => $board, 'board_to' => $_POST['toboard']));
  324. // Notify people that this topic has been moved?
  325. sendNotifications($topic, 'move');
  326. // Why not go back to the original board in case they want to keep moving?
  327. if (!isset($_REQUEST['goback']))
  328. redirectexit('board=' . $board . '.0');
  329. else
  330. redirectexit('topic=' . $topic . '.0');
  331. }
  332. // Moves one or more topics to a specific board. (doesn't check permissions.)
  333. function moveTopics($topics, $toBoard)
  334. {
  335. global $sourcedir, $user_info, $modSettings, $smcFunc;
  336. // Empty array?
  337. if (empty($topics))
  338. return;
  339. // Only a single topic.
  340. elseif (is_numeric($topics))
  341. $topics = array($topics);
  342. $num_topics = count($topics);
  343. $fromBoards = array();
  344. // Destination board empty or equal to 0?
  345. if (empty($toBoard))
  346. return;
  347. // Are we moving to the recycle board?
  348. $isRecycleDest = !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $toBoard;
  349. // Determine the source boards...
  350. $request = $smcFunc['db_query']('', '
  351. SELECT id_board, approved, COUNT(*) AS num_topics, SUM(unapproved_posts) AS unapproved_posts,
  352. SUM(num_replies) AS num_replies
  353. FROM {db_prefix}topics
  354. WHERE id_topic IN ({array_int:topics})
  355. GROUP BY id_board, approved',
  356. array(
  357. 'topics' => $topics,
  358. )
  359. );
  360. // Num of rows = 0 -> no topics found. Num of rows > 1 -> topics are on multiple boards.
  361. if ($smcFunc['db_num_rows']($request) == 0)
  362. return;
  363. while ($row = $smcFunc['db_fetch_assoc']($request))
  364. {
  365. if (!isset($fromBoards[$row['id_board']]['num_posts']))
  366. {
  367. $fromBoards[$row['id_board']] = array(
  368. 'num_posts' => 0,
  369. 'num_topics' => 0,
  370. 'unapproved_posts' => 0,
  371. 'unapproved_topics' => 0,
  372. 'id_board' => $row['id_board']
  373. );
  374. }
  375. // Posts = (num_replies + 1) for each approved topic.
  376. $fromBoards[$row['id_board']]['num_posts'] += $row['num_replies'] + ($row['approved'] ? $row['num_topics'] : 0);
  377. $fromBoards[$row['id_board']]['unapproved_posts'] += $row['unapproved_posts'];
  378. // Add the topics to the right type.
  379. if ($row['approved'])
  380. $fromBoards[$row['id_board']]['num_topics'] += $row['num_topics'];
  381. else
  382. $fromBoards[$row['id_board']]['unapproved_topics'] += $row['num_topics'];
  383. }
  384. $smcFunc['db_free_result']($request);
  385. // Move over the mark_read data. (because it may be read and now not by some!)
  386. $SaveAServer = max(0, $modSettings['maxMsgID'] - 50000);
  387. $request = $smcFunc['db_query']('', '
  388. SELECT lmr.id_member, lmr.id_msg, t.id_topic
  389. FROM {db_prefix}topics AS t
  390. INNER JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = t.id_board
  391. AND lmr.id_msg > t.id_first_msg AND lmr.id_msg > {int:protect_lmr_msg})
  392. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = t.id_topic AND lt.id_member = lmr.id_member)
  393. WHERE t.id_topic IN ({array_int:topics})
  394. AND lmr.id_msg > IFNULL(lt.id_msg, 0)',
  395. array(
  396. 'protect_lmr_msg' => $SaveAServer,
  397. 'topics' => $topics,
  398. )
  399. );
  400. $log_topics = array();
  401. while ($row = $smcFunc['db_fetch_assoc']($request))
  402. {
  403. $log_topics[] = array($row['id_topic'], $row['id_member'], $row['id_msg']);
  404. // Prevent queries from getting too big. Taking some steam off.
  405. if (count($log_topics) > 500)
  406. {
  407. $smcFunc['db_insert']('replace',
  408. '{db_prefix}log_topics',
  409. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  410. $log_topics,
  411. array('id_topic', 'id_member')
  412. );
  413. $log_topics = array();
  414. }
  415. }
  416. $smcFunc['db_free_result']($request);
  417. // Now that we have all the topics that *should* be marked read, and by which members...
  418. if (!empty($log_topics))
  419. {
  420. // Insert that information into the database!
  421. $smcFunc['db_insert']('replace',
  422. '{db_prefix}log_topics',
  423. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  424. $log_topics,
  425. array('id_topic', 'id_member')
  426. );
  427. }
  428. // Update the number of posts on each board.
  429. $totalTopics = 0;
  430. $totalPosts = 0;
  431. $totalUnapprovedTopics = 0;
  432. $totalUnapprovedPosts = 0;
  433. foreach ($fromBoards as $stats)
  434. {
  435. $smcFunc['db_query']('', '
  436. UPDATE {db_prefix}boards
  437. SET
  438. num_posts = CASE WHEN {int:num_posts} > num_posts THEN 0 ELSE num_posts - {int:num_posts} END,
  439. num_topics = CASE WHEN {int:num_topics} > num_topics THEN 0 ELSE num_topics - {int:num_topics} END,
  440. unapproved_posts = CASE WHEN {int:unapproved_posts} > unapproved_posts THEN 0 ELSE unapproved_posts - {int:unapproved_posts} END,
  441. unapproved_topics = CASE WHEN {int:unapproved_topics} > unapproved_topics THEN 0 ELSE unapproved_topics - {int:unapproved_topics} END
  442. WHERE id_board = {int:id_board}',
  443. array(
  444. 'id_board' => $stats['id_board'],
  445. 'num_posts' => $stats['num_posts'],
  446. 'num_topics' => $stats['num_topics'],
  447. 'unapproved_posts' => $stats['unapproved_posts'],
  448. 'unapproved_topics' => $stats['unapproved_topics'],
  449. )
  450. );
  451. $totalTopics += $stats['num_topics'];
  452. $totalPosts += $stats['num_posts'];
  453. $totalUnapprovedTopics += $stats['unapproved_topics'];
  454. $totalUnapprovedPosts += $stats['unapproved_posts'];
  455. }
  456. $smcFunc['db_query']('', '
  457. UPDATE {db_prefix}boards
  458. SET
  459. num_topics = num_topics + {int:total_topics},
  460. num_posts = num_posts + {int:total_posts},' . ($isRecycleDest ? '
  461. unapproved_posts = {int:no_unapproved}, unapproved_topics = {int:no_unapproved}' : '
  462. unapproved_posts = unapproved_posts + {int:total_unapproved_posts},
  463. unapproved_topics = unapproved_topics + {int:total_unapproved_topics}') . '
  464. WHERE id_board = {int:id_board}',
  465. array(
  466. 'id_board' => $toBoard,
  467. 'total_topics' => $totalTopics,
  468. 'total_posts' => $totalPosts,
  469. 'total_unapproved_topics' => $totalUnapprovedTopics,
  470. 'total_unapproved_posts' => $totalUnapprovedPosts,
  471. 'no_unapproved' => 0,
  472. )
  473. );
  474. // Move the topic. Done. :P
  475. $smcFunc['db_query']('', '
  476. UPDATE {db_prefix}topics
  477. SET id_board = {int:id_board}' . ($isRecycleDest ? ',
  478. unapproved_posts = {int:no_unapproved}, approved = {int:is_approved}' : '') . '
  479. WHERE id_topic IN ({array_int:topics})',
  480. array(
  481. 'id_board' => $toBoard,
  482. 'topics' => $topics,
  483. 'is_approved' => 1,
  484. 'no_unapproved' => 0,
  485. )
  486. );
  487. // If this was going to the recycle bin, check what messages are being recycled, and remove them from the queue.
  488. if ($isRecycleDest && ($totalUnapprovedTopics || $totalUnapprovedPosts))
  489. {
  490. $request = $smcFunc['db_query']('', '
  491. SELECT id_msg
  492. FROM {db_prefix}messages
  493. WHERE id_topic IN ({array_int:topics})
  494. and approved = {int:not_approved}',
  495. array(
  496. 'topics' => $topics,
  497. 'not_approved' => 0,
  498. )
  499. );
  500. $approval_msgs = array();
  501. while ($row = $smcFunc['db_fetch_assoc']($request))
  502. $approval_msgs[] = $row['id_msg'];
  503. $smcFunc['db_free_result']($request);
  504. // Empty the approval queue for these, as we're going to approve them next.
  505. if (!empty($approval_msgs))
  506. $smcFunc['db_query']('', '
  507. DELETE FROM {db_prefix}approval_queue
  508. WHERE id_msg IN ({array_int:message_list})
  509. AND id_attach = {int:id_attach}',
  510. array(
  511. 'message_list' => $approval_msgs,
  512. 'id_attach' => 0,
  513. )
  514. );
  515. // Get all the current max and mins.
  516. $request = $smcFunc['db_query']('', '
  517. SELECT id_topic, id_first_msg, id_last_msg
  518. FROM {db_prefix}topics
  519. WHERE id_topic IN ({array_int:topics})',
  520. array(
  521. 'topics' => $topics,
  522. )
  523. );
  524. $topicMaxMin = array();
  525. while ($row = $smcFunc['db_fetch_assoc']($request))
  526. {
  527. $topicMaxMin[$row['id_topic']] = array(
  528. 'min' => $row['id_first_msg'],
  529. 'max' => $row['id_last_msg'],
  530. );
  531. }
  532. $smcFunc['db_free_result']($request);
  533. // Check the MAX and MIN are correct.
  534. $request = $smcFunc['db_query']('', '
  535. SELECT id_topic, MIN(id_msg) AS first_msg, MAX(id_msg) AS last_msg
  536. FROM {db_prefix}messages
  537. WHERE id_topic IN ({array_int:topics})
  538. GROUP BY id_topic',
  539. array(
  540. 'topics' => $topics,
  541. )
  542. );
  543. while ($row = $smcFunc['db_fetch_assoc']($request))
  544. {
  545. // If not, update.
  546. if ($row['first_msg'] != $topicMaxMin[$row['id_topic']]['min'] || $row['last_msg'] != $topicMaxMin[$row['id_topic']]['max'])
  547. $smcFunc['db_query']('', '
  548. UPDATE {db_prefix}topics
  549. SET id_first_msg = {int:first_msg}, id_last_msg = {int:last_msg}
  550. WHERE id_topic = {int:selected_topic}',
  551. array(
  552. 'first_msg' => $row['first_msg'],
  553. 'last_msg' => $row['last_msg'],
  554. 'selected_topic' => $row['id_topic'],
  555. )
  556. );
  557. }
  558. $smcFunc['db_free_result']($request);
  559. }
  560. $smcFunc['db_query']('', '
  561. UPDATE {db_prefix}messages
  562. SET id_board = {int:id_board}' . ($isRecycleDest ? ',approved = {int:is_approved}' : '') . '
  563. WHERE id_topic IN ({array_int:topics})',
  564. array(
  565. 'id_board' => $toBoard,
  566. 'topics' => $topics,
  567. 'is_approved' => 1,
  568. )
  569. );
  570. $smcFunc['db_query']('', '
  571. UPDATE {db_prefix}log_reported
  572. SET id_board = {int:id_board}
  573. WHERE id_topic IN ({array_int:topics})',
  574. array(
  575. 'id_board' => $toBoard,
  576. 'topics' => $topics,
  577. )
  578. );
  579. $smcFunc['db_query']('', '
  580. UPDATE {db_prefix}calendar
  581. SET id_board = {int:id_board}
  582. WHERE id_topic IN ({array_int:topics})',
  583. array(
  584. 'id_board' => $toBoard,
  585. 'topics' => $topics,
  586. )
  587. );
  588. // Mark target board as seen, if it was already marked as seen before.
  589. $request = $smcFunc['db_query']('', '
  590. SELECT (IFNULL(lb.id_msg, 0) >= b.id_msg_updated) AS isSeen
  591. FROM {db_prefix}boards AS b
  592. LEFT JOIN {db_prefix}log_boards AS lb ON (lb.id_board = b.id_board AND lb.id_member = {int:current_member})
  593. WHERE b.id_board = {int:id_board}',
  594. array(
  595. 'current_member' => $user_info['id'],
  596. 'id_board' => $toBoard,
  597. )
  598. );
  599. list ($isSeen) = $smcFunc['db_fetch_row']($request);
  600. $smcFunc['db_free_result']($request);
  601. if (!empty($isSeen) && !$user_info['is_guest'])
  602. {
  603. $smcFunc['db_insert']('replace',
  604. '{db_prefix}log_boards',
  605. array('id_board' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  606. array($toBoard, $user_info['id'], $modSettings['maxMsgID']),
  607. array('id_board', 'id_member')
  608. );
  609. }
  610. // Update the cache?
  611. if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 3)
  612. foreach ($topics as $topic_id)
  613. cache_put_data('topic_board-' . $topic_id, null, 120);
  614. require_once($sourcedir . '/Subs-Post.php');
  615. $updates = array_keys($fromBoards);
  616. $updates[] = $toBoard;
  617. updateLastMessages(array_unique($updates));
  618. // Update 'em pesky stats.
  619. updateStats('topic');
  620. updateStats('message');
  621. updateSettings(array(
  622. 'calendar_updated' => time(),
  623. ));
  624. }
  625. ?>