MoveTopic.php 22 KB

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