MoveTopic.php 21 KB

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