ManagePosts.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. <?php
  2. /**
  3. * This file contains all the administration settings for topics and posts.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2013 Simple Machines and individual contributors
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('No direct access...');
  16. /**
  17. * The main entrance point for the 'Posts and topics' screen.
  18. * Like all others, it checks permissions, then forwards to the right function
  19. * based on the given sub-action.
  20. * Defaults to sub-action 'posts'.
  21. * Accessed from ?action=admin;area=postsettings.
  22. * Requires (and checks for) the admin_forum permission.
  23. */
  24. function ManagePostSettings()
  25. {
  26. global $context, $txt, $scripturl;
  27. // Make sure you can be here.
  28. isAllowedTo('admin_forum');
  29. loadLanguage('Drafts');
  30. $subActions = array(
  31. 'posts' => 'ModifyPostSettings',
  32. 'bbc' => 'ModifyBBCSettings',
  33. 'censor' => 'SetCensor',
  34. 'topics' => 'ModifyTopicSettings',
  35. 'drafts' => 'ModifyDraftSettings',
  36. );
  37. call_integration_hook('integrate_manage_posts', array(&$subActions));
  38. // Default the sub-action to 'posts'.
  39. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : 'posts';
  40. $context['page_title'] = $txt['manageposts_title'];
  41. // Tabs for browsing the different post functions.
  42. $context[$context['admin_menu_name']]['tab_data'] = array(
  43. 'title' => $txt['manageposts_title'],
  44. 'help' => 'posts_and_topics',
  45. 'description' => $txt['manageposts_description'],
  46. 'tabs' => array(
  47. 'posts' => array(
  48. 'description' => $txt['manageposts_settings_description'],
  49. ),
  50. 'bbc' => array(
  51. 'description' => $txt['manageposts_bbc_settings_description'],
  52. ),
  53. 'censor' => array(
  54. 'description' => $txt['admin_censored_desc'],
  55. ),
  56. 'topics' => array(
  57. 'description' => $txt['manageposts_topic_settings_description'],
  58. ),
  59. 'drafts' => array(
  60. 'description' => $txt['drafts_show_desc'],
  61. ),
  62. ),
  63. );
  64. // Call the right function for this sub-action.
  65. $subActions[$_REQUEST['sa']]();
  66. }
  67. /**
  68. * Shows an interface to set and test censored words.
  69. * It uses the censor_vulgar, censor_proper, censorWholeWord, and censorIgnoreCase
  70. * settings.
  71. * Requires the admin_forum permission.
  72. * Accessed from ?action=admin;area=postsettings;sa=censor.
  73. *
  74. * @uses the Admin template and the edit_censored sub template.
  75. */
  76. function SetCensor()
  77. {
  78. global $txt, $modSettings, $context, $smcFunc, $sourcedir;
  79. if (!empty($_POST['save_censor']))
  80. {
  81. // Make sure censoring is something they can do.
  82. checkSession();
  83. validateToken('admin-censor');
  84. $censored_vulgar = array();
  85. $censored_proper = array();
  86. // Rip it apart, then split it into two arrays.
  87. if (isset($_POST['censortext']))
  88. {
  89. $_POST['censortext'] = explode("\n", strtr($_POST['censortext'], array("\r" => '')));
  90. foreach ($_POST['censortext'] as $c)
  91. list ($censored_vulgar[], $censored_proper[]) = array_pad(explode('=', trim($c)), 2, '');
  92. }
  93. elseif (isset($_POST['censor_vulgar'], $_POST['censor_proper']))
  94. {
  95. if (is_array($_POST['censor_vulgar']))
  96. {
  97. foreach ($_POST['censor_vulgar'] as $i => $value)
  98. {
  99. if (trim(strtr($value, '*', ' ')) == '')
  100. unset($_POST['censor_vulgar'][$i], $_POST['censor_proper'][$i]);
  101. }
  102. $censored_vulgar = $_POST['censor_vulgar'];
  103. $censored_proper = $_POST['censor_proper'];
  104. }
  105. else
  106. {
  107. $censored_vulgar = explode("\n", strtr($_POST['censor_vulgar'], array("\r" => '')));
  108. $censored_proper = explode("\n", strtr($_POST['censor_proper'], array("\r" => '')));
  109. }
  110. }
  111. // Set the new arrays and settings in the database.
  112. $updates = array(
  113. 'censor_vulgar' => implode("\n", $censored_vulgar),
  114. 'censor_proper' => implode("\n", $censored_proper),
  115. 'allow_no_censored' => empty($_POST['allow_no_censored']) ? '0' : '1',
  116. 'censorWholeWord' => empty($_POST['censorWholeWord']) ? '0' : '1',
  117. 'censorIgnoreCase' => empty($_POST['censorIgnoreCase']) ? '0' : '1',
  118. );
  119. call_integration_hook('integrate_save_censors', array(&$updates));
  120. updateSettings($updates);
  121. }
  122. if (isset($_POST['censortest']))
  123. {
  124. require_once($sourcedir . '/Subs-Post.php');
  125. $censorText = $smcFunc['htmlspecialchars']($_POST['censortest'], ENT_QUOTES);
  126. preparsecode($censorText);
  127. $context['censor_test'] = strtr(censorText($censorText), array('"' => '&quot;'));
  128. }
  129. // Set everything up for the template to do its thang.
  130. $censor_vulgar = explode("\n", $modSettings['censor_vulgar']);
  131. $censor_proper = explode("\n", $modSettings['censor_proper']);
  132. $context['censored_words'] = array();
  133. for ($i = 0, $n = count($censor_vulgar); $i < $n; $i++)
  134. {
  135. if (empty($censor_vulgar[$i]))
  136. continue;
  137. // Skip it, it's either spaces or stars only.
  138. if (trim(strtr($censor_vulgar[$i], '*', ' ')) == '')
  139. continue;
  140. $context['censored_words'][$smcFunc['htmlspecialchars'](trim($censor_vulgar[$i]))] = isset($censor_proper[$i]) ? $smcFunc['htmlspecialchars']($censor_proper[$i]) : '';
  141. }
  142. call_integration_hook('integrate_censors');
  143. // Since the "Allow users to disable the word censor" stuff was moved from a theme setting to a global one, we need this...
  144. loadLanguage('Themes');
  145. $context['sub_template'] = 'edit_censored';
  146. $context['page_title'] = $txt['admin_censored_words'];
  147. createToken('admin-censor');
  148. }
  149. /**
  150. * Modify any setting related to posts and posting.
  151. * Requires the admin_forum permission.
  152. * Accessed from ?action=admin;area=postsettings;sa=posts.
  153. *
  154. * @param bool $return_config = false
  155. * @uses Admin template, edit_post_settings sub-template.
  156. */
  157. function ModifyPostSettings($return_config = false)
  158. {
  159. global $context, $txt, $modSettings, $scripturl, $sourcedir, $smcFunc, $db_prefix, $db_type;
  160. // All the settings...
  161. $config_vars = array(
  162. // Simple post options...
  163. array('check', 'removeNestedQuotes'),
  164. array('check', 'enableEmbeddedFlash', 'subtext' => $txt['enableEmbeddedFlash_warning']),
  165. // Note show the warning as read if pspell not installed!
  166. array('check', 'enableSpellChecking', 'subtext' => (function_exists('pspell_new') ? $txt['enableSpellChecking_warning'] : ('<span class="alert">' . $txt['enableSpellChecking_warning'] . '</span>'))),
  167. array('check', 'disable_wysiwyg'),
  168. '',
  169. // Posting limits...
  170. array('int', 'max_messageLength', 'subtext' => $txt['max_messageLength_zero'], 'postinput' => $txt['manageposts_characters']),
  171. array('int', 'topicSummaryPosts', 'postinput' => $txt['manageposts_posts']),
  172. '',
  173. // Posting time limits...
  174. array('int', 'spamWaitTime', 'postinput' => $txt['manageposts_seconds']),
  175. array('int', 'edit_wait_time', 'postinput' => $txt['manageposts_seconds']),
  176. array('int', 'edit_disable_time', 'subtext' => $txt['edit_disable_time_zero'], 'postinput' => $txt['manageposts_minutes']),
  177. '',
  178. // Automagic image resizing.
  179. array('int', 'max_image_width', 'subtext' => $txt['zero_for_no_limit']),
  180. array('int', 'max_image_height', 'subtext' => $txt['zero_for_no_limit']),
  181. '',
  182. // First & Last message preview lengths
  183. array('int', 'preview_characters', 'subtext' => $txt['preview_characters_zero'], 'postinput' => $txt['preview_characters_units']),
  184. );
  185. call_integration_hook('integrate_modify_post_settings', array(&$config_vars));
  186. if ($return_config)
  187. return $config_vars;
  188. // We'll want this for our easy save.
  189. require_once($sourcedir . '/ManageServer.php');
  190. // Setup the template.
  191. $context['page_title'] = $txt['manageposts_settings'];
  192. $context['sub_template'] = 'show_settings';
  193. // Are we saving them - are we??
  194. if (isset($_GET['save']))
  195. {
  196. checkSession();
  197. // If we're changing the message length (and we are using MySQL) let's check the column is big enough.
  198. if (isset($_POST['max_messageLength']) && $_POST['max_messageLength'] != $modSettings['max_messageLength'] && ($db_type == 'mysql' || $db_type == 'mysqli'))
  199. {
  200. db_extend('packages');
  201. $colData = $smcFunc['db_list_columns']('{db_prefix}messages', true);
  202. foreach ($colData as $column)
  203. if ($column['name'] == 'body')
  204. $body_type = $column['type'];
  205. if (isset($body_type) && ($_POST['max_messageLength'] > 65535 || $_POST['max_messageLength'] == 0) && $body_type == 'text')
  206. fatal_lang_error('convert_to_mediumtext', false, array($scripturl . '?action=admin;area=maintain;sa=database'));
  207. }
  208. // If we're changing the post preview length let's check its valid
  209. if (!empty($_POST['preview_characters']))
  210. $_POST['preview_characters'] = (int) min(max(0, $_POST['preview_characters']), 512);
  211. call_integration_hook('integrate_save_post_settings');
  212. saveDBSettings($config_vars);
  213. redirectexit('action=admin;area=postsettings;sa=posts');
  214. }
  215. // Final settings...
  216. $context['post_url'] = $scripturl . '?action=admin;area=postsettings;save;sa=posts';
  217. $context['settings_title'] = $txt['manageposts_settings'];
  218. // Prepare the settings...
  219. prepareDBSettingContext($config_vars);
  220. }
  221. /**
  222. * Set a few Bulletin Board Code settings. It loads a list of Bulletin Board Code tags to allow disabling tags.
  223. * Requires the admin_forum permission.
  224. * Accessed from ?action=admin;area=postsettings;sa=bbc.
  225. *
  226. * @param bool $return_config = false
  227. * @uses Admin template, edit_bbc_settings sub-template.
  228. */
  229. function ModifyBBCSettings($return_config = false)
  230. {
  231. global $context, $txt, $modSettings, $helptxt, $scripturl, $sourcedir;
  232. $config_vars = array(
  233. // Main tweaks
  234. array('check', 'enableBBC'),
  235. array('check', 'enableBBC', 0, 'onchange' => 'toggleBBCDisabled(\'disabledBBC\', !this.checked);'),
  236. array('check', 'enablePostHTML'),
  237. array('check', 'autoLinkUrls'),
  238. '',
  239. array('bbc', 'disabledBBC'),
  240. );
  241. $context['settings_post_javascript'] = '
  242. toggleBBCDisabled(\'disabledBBC\', ' . (empty($modSettings['enableBBC']) ? 'true' : 'false') . ');';
  243. call_integration_hook('integrate_modify_bbc_settings', array(&$config_vars));
  244. if ($return_config)
  245. return $config_vars;
  246. // Setup the template.
  247. require_once($sourcedir . '/ManageServer.php');
  248. $context['sub_template'] = 'show_settings';
  249. $context['page_title'] = $txt['manageposts_bbc_settings_title'];
  250. // Make sure we check the right tags!
  251. $modSettings['bbc_disabled_disabledBBC'] = empty($modSettings['disabledBBC']) ? array() : explode(',', $modSettings['disabledBBC']);
  252. // Saving?
  253. if (isset($_GET['save']))
  254. {
  255. checkSession();
  256. // Clean up the tags.
  257. $bbcTags = array();
  258. foreach (parse_bbc(false) as $tag)
  259. $bbcTags[] = $tag['tag'];
  260. if (!isset($_POST['disabledBBC_enabledTags']))
  261. $_POST['disabledBBC_enabledTags'] = array();
  262. elseif (!is_array($_POST['disabledBBC_enabledTags']))
  263. $_POST['disabledBBC_enabledTags'] = array($_POST['disabledBBC_enabledTags']);
  264. // Work out what is actually disabled!
  265. $_POST['disabledBBC'] = implode(',', array_diff($bbcTags, $_POST['disabledBBC_enabledTags']));
  266. call_integration_hook('integrate_save_bbc_settings', array($bbcTags));
  267. saveDBSettings($config_vars);
  268. redirectexit('action=admin;area=postsettings;sa=bbc');
  269. }
  270. $context['post_url'] = $scripturl . '?action=admin;area=postsettings;save;sa=bbc';
  271. $context['settings_title'] = $txt['manageposts_bbc_settings_title'];
  272. prepareDBSettingContext($config_vars);
  273. }
  274. /**
  275. * Modify any setting related to topics.
  276. * Requires the admin_forum permission.
  277. * Accessed from ?action=admin;area=postsettings;sa=topics.
  278. * @param bool $return_config = false
  279. * @uses Admin template, edit_topic_settings sub-template.
  280. */
  281. function ModifyTopicSettings($return_config = false)
  282. {
  283. global $context, $txt, $modSettings, $sourcedir, $scripturl;
  284. // Here are all the topic settings.
  285. $config_vars = array(
  286. // Some simple bools...
  287. array('check', 'enableStickyTopics'),
  288. array('check', 'enableParticipation'),
  289. '',
  290. // Pagination etc...
  291. array('int', 'oldTopicDays', 'postinput' => $txt['manageposts_days'], 'subtext' => $txt['oldTopicDays_zero']),
  292. array('int', 'defaultMaxTopics', 'postinput' => $txt['manageposts_topics']),
  293. array('int', 'defaultMaxMessages', 'postinput' => $txt['manageposts_posts']),
  294. array('check', 'disable_print_topic'),
  295. '',
  296. // Hot topics (etc)...
  297. array('int', 'hotTopicPosts', 'postinput' => $txt['manageposts_posts']),
  298. array('int', 'hotTopicVeryPosts', 'postinput' => $txt['manageposts_posts']),
  299. '',
  300. // All, next/prev...
  301. array('int', 'enableAllMessages', 'postinput' => $txt['manageposts_posts'], 'subtext' => $txt['enableAllMessages_zero']),
  302. array('check', 'disableCustomPerPage'),
  303. array('check', 'enablePreviousNext'),
  304. );
  305. call_integration_hook('integrate_modify_topic_settings', array(&$config_vars));
  306. if ($return_config)
  307. return $config_vars;
  308. // Get the settings template ready.
  309. require_once($sourcedir . '/ManageServer.php');
  310. // Setup the template.
  311. $context['page_title'] = $txt['manageposts_topic_settings'];
  312. $context['sub_template'] = 'show_settings';
  313. // Are we saving them - are we??
  314. if (isset($_GET['save']))
  315. {
  316. checkSession();
  317. call_integration_hook('integrate_save_topic_settings');
  318. saveDBSettings($config_vars);
  319. redirectexit('action=admin;area=postsettings;sa=topics');
  320. }
  321. // Final settings...
  322. $context['post_url'] = $scripturl . '?action=admin;area=postsettings;save;sa=topics';
  323. $context['settings_title'] = $txt['manageposts_topic_settings'];
  324. // Prepare the settings...
  325. prepareDBSettingContext($config_vars);
  326. }
  327. /**
  328. * Modify any setting related to drafts.
  329. * Requires the admin_forum permission.
  330. * Accessed from ?action=admin;area=postsettings;sa=drafts
  331. *
  332. * @param bool $return_config = false
  333. * @uses Admin template, edit_topic_settings sub-template.
  334. */
  335. function ModifyDraftSettings($return_config = false)
  336. {
  337. global $context, $txt, $sourcedir, $scripturl, $smcFunc;
  338. // Here are all the draft settings, a bit lite for now, but we can add more :P
  339. $config_vars = array(
  340. // Draft settings ...
  341. array('check', 'drafts_post_enabled'),
  342. array('check', 'drafts_pm_enabled'),
  343. array('check', 'drafts_show_saved_enabled', 'subtext' => $txt['drafts_show_saved_enabled_subnote']),
  344. array('int', 'drafts_keep_days', 'postinput' => $txt['days_word'], 'subtext' => $txt['drafts_keep_days_subnote']),
  345. '',
  346. array('check', 'drafts_autosave_enabled', 'subtext' => $txt['drafts_autosave_enabled_subnote']),
  347. array('int', 'drafts_autosave_frequency', 'postinput' => $txt['manageposts_seconds'], 'subtext' => $txt['drafts_autosave_frequency_subnote']),
  348. );
  349. if ($return_config)
  350. return $config_vars;
  351. // Get the settings template ready.
  352. require_once($sourcedir . '/ManageServer.php');
  353. // Setup the template.
  354. $context['page_title'] = $txt['managedrafts_settings'];
  355. $context['sub_template'] = 'show_settings';
  356. // Saving them ?
  357. if (isset($_GET['save']))
  358. {
  359. checkSession();
  360. // Protect them from themselves.
  361. $_POST['drafts_autosave_frequency'] = !isset($_POST['drafts_autosave_frequency']) || $_POST['drafts_autosave_frequency'] < 30 ? 30 : $_POST['drafts_autosave_frequency'];
  362. // Also disable the scheduled task if we're not using it.
  363. $smcFunc['db_query']('', '
  364. UPDATE {db_prefix}scheduled_tasks
  365. SET disabled = {int:disabled}
  366. WHERE task = {string:task}',
  367. array(
  368. 'disabled' => !empty($_POST['drafts_keep_days']) ? 0 : 1,
  369. 'task' => 'remove_old_drafts',
  370. )
  371. );
  372. require_once($sourcedir . '/ScheduledTasks.php');
  373. CalculateNextTrigger();
  374. // Save everything else and leave.
  375. saveDBSettings($config_vars);
  376. redirectexit('action=admin;area=postsettings;sa=drafts');
  377. }
  378. // some javascript to enable / disable the frequency input box
  379. $context['settings_post_javascript'] = '
  380. function toggle()
  381. {
  382. $("#drafts_autosave_frequency").prop("disabled", !($("#drafts_autosave_enabled").prop("checked")));
  383. };
  384. toggle();
  385. $("#drafts_autosave_enabled").click(function() { toggle(); });
  386. ';
  387. // Final settings...
  388. $context['post_url'] = $scripturl . '?action=admin;area=postsettings;sa=drafts;save';
  389. $context['settings_title'] = $txt['managedrafts_settings'];
  390. // Prepare the settings...
  391. prepareDBSettingContext($config_vars);
  392. }
  393. ?>