MoveTopic.php 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  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. array(
  71. 'blank_redirect' => '',
  72. 'current_board' => $board,
  73. )
  74. );
  75. $number_of_boards = $smcFunc['db_num_rows']($request);
  76. while ($row = $smcFunc['db_fetch_assoc']($request))
  77. {
  78. if (!isset($context['categories'][$row['id_cat']]))
  79. $context['categories'][$row['id_cat']] = array (
  80. 'name' => strip_tags($row['cat_name']),
  81. 'boards' => array(),
  82. );
  83. $context['categories'][$row['id_cat']]['boards'][] = array(
  84. 'id' => $row['id_board'],
  85. 'name' => strip_tags($row['name']),
  86. 'category' => strip_tags($row['cat_name']),
  87. 'child_level' => $row['child_level'],
  88. 'selected' => !empty($_SESSION['move_to_topic']) && $_SESSION['move_to_topic'] == $row['id_board'] && $row['id_board'] != $board,
  89. );
  90. }
  91. $smcFunc['db_free_result']($request);
  92. if (empty($context['categories']) || (!empty($number_of_boards) && $number_of_boards == 1))
  93. fatal_lang_error('moveto_noboards', false);
  94. $context['page_title'] = $txt['move_topic'];
  95. $context['linktree'][] = array(
  96. 'url' => $scripturl . '?topic=' . $topic . '.0',
  97. 'name' => $context['subject'],
  98. );
  99. $context['linktree'][] = array(
  100. 'name' => $txt['move_topic'],
  101. );
  102. $context['back_to_topic'] = isset($_REQUEST['goback']);
  103. if ($user_info['language'] != $language)
  104. {
  105. loadLanguage('index', $language);
  106. $temp = $txt['movetopic_default'];
  107. loadLanguage('index');
  108. $txt['movetopic_default'] = $temp;
  109. }
  110. moveTopicConcurrence();
  111. // Register this form and get a sequence number in $context.
  112. checkSubmitOnce('register');
  113. }
  114. /**
  115. * Execute the move of a topic.
  116. * It is called on the submit of MoveTopic.
  117. * This function logs that topics have been moved in the moderation log.
  118. * If the member is the topic starter requires the move_own permission,
  119. * otherwise requires the move_any permission.
  120. * Upon successful completion redirects to message index.
  121. * Accessed via ?action=movetopic2.
  122. *
  123. * @uses Subs-Post.php.
  124. */
  125. function MoveTopic2()
  126. {
  127. global $txt, $board, $topic, $scripturl, $sourcedir, $modSettings, $context;
  128. global $board, $language, $user_info, $smcFunc;
  129. if (empty($topic))
  130. fatal_lang_error('no_access', false);
  131. // You can't choose to have a redirection topic and use an empty reason.
  132. if (isset($_POST['postRedirect']) && (!isset($_POST['reason']) || trim($_POST['reason']) == ''))
  133. fatal_lang_error('movetopic_no_reason', false);
  134. moveTopicConcurrence();
  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. // @todo Does this make sense if the topic was unapproved before? I'd just about say so.
  247. if (isset($_POST['postRedirect']))
  248. {
  249. // Should be in the boardwide language.
  250. if ($user_info['language'] != $language)
  251. loadLanguage('index', $language);
  252. $_POST['reason'] = $smcFunc['htmlspecialchars']($_POST['reason'], ENT_QUOTES);
  253. preparsecode($_POST['reason']);
  254. // Add a URL onto the message.
  255. $_POST['reason'] = strtr($_POST['reason'], array(
  256. $txt['movetopic_auto_board'] => '[url=' . $scripturl . '?board=' . $_POST['toboard'] . '.0]' . $board_name . '[/url]',
  257. $txt['movetopic_auto_topic'] => '[iurl]' . $scripturl . '?topic=' . $topic . '.0[/iurl]'
  258. ));
  259. $msgOptions = array(
  260. 'subject' => $txt['moved'] . ': ' . $subject,
  261. 'body' => $_POST['reason'],
  262. 'icon' => 'moved',
  263. 'smileys_enabled' => 1,
  264. );
  265. $topicOptions = array(
  266. 'board' => $board,
  267. 'lock_mode' => 1,
  268. 'mark_as_read' => true,
  269. );
  270. $posterOptions = array(
  271. 'id' => $user_info['id'],
  272. 'update_post_count' => empty($pcounter),
  273. );
  274. createPost($msgOptions, $topicOptions, $posterOptions);
  275. }
  276. $request = $smcFunc['db_query']('', '
  277. SELECT count_posts
  278. FROM {db_prefix}boards
  279. WHERE id_board = {int:current_board}
  280. LIMIT 1',
  281. array(
  282. 'current_board' => $board,
  283. )
  284. );
  285. list ($pcounter_from) = $smcFunc['db_fetch_row']($request);
  286. $smcFunc['db_free_result']($request);
  287. if ($pcounter_from != $pcounter)
  288. {
  289. $request = $smcFunc['db_query']('', '
  290. SELECT id_member
  291. FROM {db_prefix}messages
  292. WHERE id_topic = {int:current_topic}
  293. AND approved = {int:is_approved}',
  294. array(
  295. 'current_topic' => $topic,
  296. 'is_approved' => 1,
  297. )
  298. );
  299. $posters = array();
  300. while ($row = $smcFunc['db_fetch_assoc']($request))
  301. {
  302. if (!isset($posters[$row['id_member']]))
  303. $posters[$row['id_member']] = 0;
  304. $posters[$row['id_member']]++;
  305. }
  306. $smcFunc['db_free_result']($request);
  307. foreach ($posters as $id_member => $posts)
  308. {
  309. // The board we're moving from counted posts, but not to.
  310. if (empty($pcounter_from))
  311. updateMemberData($id_member, array('posts' => 'posts - ' . $posts));
  312. // The reverse: from didn't, to did.
  313. else
  314. updateMemberData($id_member, array('posts' => 'posts + ' . $posts));
  315. }
  316. }
  317. // Do the move (includes statistics update needed for the redirect topic).
  318. moveTopics($topic, $_POST['toboard']);
  319. // Log that they moved this topic.
  320. if (!allowedTo('move_own') || $id_member_started != $user_info['id'])
  321. logAction('move', array('topic' => $topic, 'board_from' => $board, 'board_to' => $_POST['toboard']));
  322. // Notify people that this topic has been moved?
  323. sendNotifications($topic, 'move');
  324. // Why not go back to the original board in case they want to keep moving?
  325. if (!isset($_REQUEST['goback']))
  326. redirectexit('board=' . $board . '.0');
  327. else
  328. redirectexit('topic=' . $topic . '.0');
  329. }
  330. // Moves one or more topics to a specific board. (doesn't check permissions.)
  331. function moveTopics($topics, $toBoard)
  332. {
  333. global $sourcedir, $user_info, $modSettings, $smcFunc;
  334. // Empty array?
  335. if (empty($topics))
  336. return;
  337. // Only a single topic.
  338. elseif (is_numeric($topics))
  339. $topics = array($topics);
  340. $num_topics = count($topics);
  341. $fromBoards = array();
  342. // Destination board empty or equal to 0?
  343. if (empty($toBoard))
  344. return;
  345. // Are we moving to the recycle board?
  346. $isRecycleDest = !empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] == $toBoard;
  347. // Determine the source boards...
  348. $request = $smcFunc['db_query']('', '
  349. SELECT id_board, approved, COUNT(*) AS num_topics, SUM(unapproved_posts) AS unapproved_posts,
  350. SUM(num_replies) AS num_replies
  351. FROM {db_prefix}topics
  352. WHERE id_topic IN ({array_int:topics})
  353. GROUP BY id_board, approved',
  354. array(
  355. 'topics' => $topics,
  356. )
  357. );
  358. // Num of rows = 0 -> no topics found. Num of rows > 1 -> topics are on multiple boards.
  359. if ($smcFunc['db_num_rows']($request) == 0)
  360. return;
  361. while ($row = $smcFunc['db_fetch_assoc']($request))
  362. {
  363. if (!isset($fromBoards[$row['id_board']]['num_posts']))
  364. {
  365. $fromBoards[$row['id_board']] = array(
  366. 'num_posts' => 0,
  367. 'num_topics' => 0,
  368. 'unapproved_posts' => 0,
  369. 'unapproved_topics' => 0,
  370. 'id_board' => $row['id_board']
  371. );
  372. }
  373. // Posts = (num_replies + 1) for each approved topic.
  374. $fromBoards[$row['id_board']]['num_posts'] += $row['num_replies'] + ($row['approved'] ? $row['num_topics'] : 0);
  375. $fromBoards[$row['id_board']]['unapproved_posts'] += $row['unapproved_posts'];
  376. // Add the topics to the right type.
  377. if ($row['approved'])
  378. $fromBoards[$row['id_board']]['num_topics'] += $row['num_topics'];
  379. else
  380. $fromBoards[$row['id_board']]['unapproved_topics'] += $row['num_topics'];
  381. }
  382. $smcFunc['db_free_result']($request);
  383. // Move over the mark_read data. (because it may be read and now not by some!)
  384. $SaveAServer = max(0, $modSettings['maxMsgID'] - 50000);
  385. $request = $smcFunc['db_query']('', '
  386. SELECT lmr.id_member, lmr.id_msg, t.id_topic
  387. FROM {db_prefix}topics AS t
  388. INNER JOIN {db_prefix}log_mark_read AS lmr ON (lmr.id_board = t.id_board
  389. AND lmr.id_msg > t.id_first_msg AND lmr.id_msg > {int:protect_lmr_msg})
  390. LEFT JOIN {db_prefix}log_topics AS lt ON (lt.id_topic = t.id_topic AND lt.id_member = lmr.id_member)
  391. WHERE t.id_topic IN ({array_int:topics})
  392. AND lmr.id_msg > IFNULL(lt.id_msg, 0)',
  393. array(
  394. 'protect_lmr_msg' => $SaveAServer,
  395. 'topics' => $topics,
  396. )
  397. );
  398. $log_topics = array();
  399. while ($row = $smcFunc['db_fetch_assoc']($request))
  400. {
  401. $log_topics[] = array($row['id_topic'], $row['id_member'], $row['id_msg']);
  402. // Prevent queries from getting too big. Taking some steam off.
  403. if (count($log_topics) > 500)
  404. {
  405. $smcFunc['db_insert']('replace',
  406. '{db_prefix}log_topics',
  407. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  408. $log_topics,
  409. array('id_topic', 'id_member')
  410. );
  411. $log_topics = array();
  412. }
  413. }
  414. $smcFunc['db_free_result']($request);
  415. // Now that we have all the topics that *should* be marked read, and by which members...
  416. if (!empty($log_topics))
  417. {
  418. // Insert that information into the database!
  419. $smcFunc['db_insert']('replace',
  420. '{db_prefix}log_topics',
  421. array('id_topic' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  422. $log_topics,
  423. array('id_topic', 'id_member')
  424. );
  425. }
  426. // Update the number of posts on each board.
  427. $totalTopics = 0;
  428. $totalPosts = 0;
  429. $totalUnapprovedTopics = 0;
  430. $totalUnapprovedPosts = 0;
  431. foreach ($fromBoards as $stats)
  432. {
  433. $smcFunc['db_query']('', '
  434. UPDATE {db_prefix}boards
  435. SET
  436. num_posts = CASE WHEN {int:num_posts} > num_posts THEN 0 ELSE num_posts - {int:num_posts} END,
  437. num_topics = CASE WHEN {int:num_topics} > num_topics THEN 0 ELSE num_topics - {int:num_topics} END,
  438. unapproved_posts = CASE WHEN {int:unapproved_posts} > unapproved_posts THEN 0 ELSE unapproved_posts - {int:unapproved_posts} END,
  439. unapproved_topics = CASE WHEN {int:unapproved_topics} > unapproved_topics THEN 0 ELSE unapproved_topics - {int:unapproved_topics} END
  440. WHERE id_board = {int:id_board}',
  441. array(
  442. 'id_board' => $stats['id_board'],
  443. 'num_posts' => $stats['num_posts'],
  444. 'num_topics' => $stats['num_topics'],
  445. 'unapproved_posts' => $stats['unapproved_posts'],
  446. 'unapproved_topics' => $stats['unapproved_topics'],
  447. )
  448. );
  449. $totalTopics += $stats['num_topics'];
  450. $totalPosts += $stats['num_posts'];
  451. $totalUnapprovedTopics += $stats['unapproved_topics'];
  452. $totalUnapprovedPosts += $stats['unapproved_posts'];
  453. }
  454. $smcFunc['db_query']('', '
  455. UPDATE {db_prefix}boards
  456. SET
  457. num_topics = num_topics + {int:total_topics},
  458. num_posts = num_posts + {int:total_posts},' . ($isRecycleDest ? '
  459. unapproved_posts = {int:no_unapproved}, unapproved_topics = {int:no_unapproved}' : '
  460. unapproved_posts = unapproved_posts + {int:total_unapproved_posts},
  461. unapproved_topics = unapproved_topics + {int:total_unapproved_topics}') . '
  462. WHERE id_board = {int:id_board}',
  463. array(
  464. 'id_board' => $toBoard,
  465. 'total_topics' => $totalTopics,
  466. 'total_posts' => $totalPosts,
  467. 'total_unapproved_topics' => $totalUnapprovedTopics,
  468. 'total_unapproved_posts' => $totalUnapprovedPosts,
  469. 'no_unapproved' => 0,
  470. )
  471. );
  472. // Move the topic. Done. :P
  473. $smcFunc['db_query']('', '
  474. UPDATE {db_prefix}topics
  475. SET id_board = {int:id_board}' . ($isRecycleDest ? ',
  476. unapproved_posts = {int:no_unapproved}, approved = {int:is_approved}' : '') . '
  477. WHERE id_topic IN ({array_int:topics})',
  478. array(
  479. 'id_board' => $toBoard,
  480. 'topics' => $topics,
  481. 'is_approved' => 1,
  482. 'no_unapproved' => 0,
  483. )
  484. );
  485. // If this was going to the recycle bin, check what messages are being recycled, and remove them from the queue.
  486. if ($isRecycleDest && ($totalUnapprovedTopics || $totalUnapprovedPosts))
  487. {
  488. $request = $smcFunc['db_query']('', '
  489. SELECT id_msg
  490. FROM {db_prefix}messages
  491. WHERE id_topic IN ({array_int:topics})
  492. and approved = {int:not_approved}',
  493. array(
  494. 'topics' => $topics,
  495. 'not_approved' => 0,
  496. )
  497. );
  498. $approval_msgs = array();
  499. while ($row = $smcFunc['db_fetch_assoc']($request))
  500. $approval_msgs[] = $row['id_msg'];
  501. $smcFunc['db_free_result']($request);
  502. // Empty the approval queue for these, as we're going to approve them next.
  503. if (!empty($approval_msgs))
  504. $smcFunc['db_query']('', '
  505. DELETE FROM {db_prefix}approval_queue
  506. WHERE id_msg IN ({array_int:message_list})
  507. AND id_attach = {int:id_attach}',
  508. array(
  509. 'message_list' => $approval_msgs,
  510. 'id_attach' => 0,
  511. )
  512. );
  513. // Get all the current max and mins.
  514. $request = $smcFunc['db_query']('', '
  515. SELECT id_topic, id_first_msg, id_last_msg
  516. FROM {db_prefix}topics
  517. WHERE id_topic IN ({array_int:topics})',
  518. array(
  519. 'topics' => $topics,
  520. )
  521. );
  522. $topicMaxMin = array();
  523. while ($row = $smcFunc['db_fetch_assoc']($request))
  524. {
  525. $topicMaxMin[$row['id_topic']] = array(
  526. 'min' => $row['id_first_msg'],
  527. 'max' => $row['id_last_msg'],
  528. );
  529. }
  530. $smcFunc['db_free_result']($request);
  531. // Check the MAX and MIN are correct.
  532. $request = $smcFunc['db_query']('', '
  533. SELECT id_topic, MIN(id_msg) AS first_msg, MAX(id_msg) AS last_msg
  534. FROM {db_prefix}messages
  535. WHERE id_topic IN ({array_int:topics})
  536. GROUP BY id_topic',
  537. array(
  538. 'topics' => $topics,
  539. )
  540. );
  541. while ($row = $smcFunc['db_fetch_assoc']($request))
  542. {
  543. // If not, update.
  544. if ($row['first_msg'] != $topicMaxMin[$row['id_topic']]['min'] || $row['last_msg'] != $topicMaxMin[$row['id_topic']]['max'])
  545. $smcFunc['db_query']('', '
  546. UPDATE {db_prefix}topics
  547. SET id_first_msg = {int:first_msg}, id_last_msg = {int:last_msg}
  548. WHERE id_topic = {int:selected_topic}',
  549. array(
  550. 'first_msg' => $row['first_msg'],
  551. 'last_msg' => $row['last_msg'],
  552. 'selected_topic' => $row['id_topic'],
  553. )
  554. );
  555. }
  556. $smcFunc['db_free_result']($request);
  557. }
  558. $smcFunc['db_query']('', '
  559. UPDATE {db_prefix}messages
  560. SET id_board = {int:id_board}' . ($isRecycleDest ? ',approved = {int:is_approved}' : '') . '
  561. WHERE id_topic IN ({array_int:topics})',
  562. array(
  563. 'id_board' => $toBoard,
  564. 'topics' => $topics,
  565. 'is_approved' => 1,
  566. )
  567. );
  568. $smcFunc['db_query']('', '
  569. UPDATE {db_prefix}log_reported
  570. SET id_board = {int:id_board}
  571. WHERE id_topic IN ({array_int:topics})',
  572. array(
  573. 'id_board' => $toBoard,
  574. 'topics' => $topics,
  575. )
  576. );
  577. $smcFunc['db_query']('', '
  578. UPDATE {db_prefix}calendar
  579. SET id_board = {int:id_board}
  580. WHERE id_topic IN ({array_int:topics})',
  581. array(
  582. 'id_board' => $toBoard,
  583. 'topics' => $topics,
  584. )
  585. );
  586. // Mark target board as seen, if it was already marked as seen before.
  587. $request = $smcFunc['db_query']('', '
  588. SELECT (IFNULL(lb.id_msg, 0) >= b.id_msg_updated) AS isSeen
  589. FROM {db_prefix}boards AS b
  590. LEFT JOIN {db_prefix}log_boards AS lb ON (lb.id_board = b.id_board AND lb.id_member = {int:current_member})
  591. WHERE b.id_board = {int:id_board}',
  592. array(
  593. 'current_member' => $user_info['id'],
  594. 'id_board' => $toBoard,
  595. )
  596. );
  597. list ($isSeen) = $smcFunc['db_fetch_row']($request);
  598. $smcFunc['db_free_result']($request);
  599. if (!empty($isSeen) && !$user_info['is_guest'])
  600. {
  601. $smcFunc['db_insert']('replace',
  602. '{db_prefix}log_boards',
  603. array('id_board' => 'int', 'id_member' => 'int', 'id_msg' => 'int'),
  604. array($toBoard, $user_info['id'], $modSettings['maxMsgID']),
  605. array('id_board', 'id_member')
  606. );
  607. }
  608. // Update the cache?
  609. if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 3)
  610. foreach ($topics as $topic_id)
  611. cache_put_data('topic_board-' . $topic_id, null, 120);
  612. require_once($sourcedir . '/Subs-Post.php');
  613. $updates = array_keys($fromBoards);
  614. $updates[] = $toBoard;
  615. updateLastMessages(array_unique($updates));
  616. // Update 'em pesky stats.
  617. updateStats('topic');
  618. updateStats('message');
  619. updateSettings(array(
  620. 'calendar_updated' => time(),
  621. ));
  622. }
  623. function moveTopicConcurrence()
  624. {
  625. global $board, $topic, $smcFunc, $scripturl;
  626. if (isset($_GET['current_board']))
  627. $move_from = (int) $_GET['current_board'];
  628. if (empty($move_from) || empty($board) || empty($topic))
  629. return true;
  630. if ($move_from == $board)
  631. return true;
  632. else
  633. {
  634. $request = $smcFunc['db_query']('', '
  635. SELECT m.subject, b.name
  636. FROM {db_prefix}topics as t
  637. LEFT JOIN {db_prefix}boards AS b ON (t.id_board = b.id_board)
  638. LEFT JOIN {db_prefix}messages AS m ON (t.id_first_msg = m.id_msg)
  639. WHERE t.id_topic = {int:topic_id}
  640. LIMIT 1',
  641. array(
  642. 'topic_id' => $topic,
  643. )
  644. );
  645. list($topic_subject, $board_name) = $smcFunc['db_fetch_row']($request);
  646. $smcFunc['db_free_result']($request);
  647. $board_link = '<a href="' . $scripturl . '?board=' . $board . '.0">' . $board_name . '</a>';
  648. $topic_link = '<a href="' . $scripturl . '?topic=' . $topic . '.0">' . $topic_subject . '</a>';
  649. fatal_lang_error('topic_already_moved', false, array($topic_link, $board_link));
  650. }
  651. }
  652. ?>