PageRenderTime 39ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 1ms

/Sources/ManageSettings.php

https://github.com/smf-portal/SMF2.1
PHP | 2631 lines | 1984 code | 307 blank | 340 comment | 291 complexity | 1f2a3ca856ab95c326064265286385a2 MD5 | raw file
  1. <?php
  2. /**
  3. * This file is here to make it easier for installed mods to have
  4. * settings and options.
  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 just avoids some repetition.
  19. *
  20. * @param array $subActions = array()
  21. * @param string $defaultAction = ''
  22. */
  23. function loadGeneralSettingParameters($subActions = array(), $defaultAction = '')
  24. {
  25. global $context, $txt, $sourcedir;
  26. // You need to be an admin to edit settings!
  27. isAllowedTo('admin_forum');
  28. loadLanguage('Help');
  29. loadLanguage('ManageSettings');
  30. // Will need the utility functions from here.
  31. require_once($sourcedir . '/ManageServer.php');
  32. $context['sub_template'] = 'show_settings';
  33. // By default do the basic settings.
  34. $_REQUEST['sa'] = isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']]) ? $_REQUEST['sa'] : (!empty($defaultAction) ? $defaultAction : array_pop($temp = array_keys($subActions)));
  35. $context['sub_action'] = $_REQUEST['sa'];
  36. }
  37. /**
  38. * This function passes control through to the relevant tab.
  39. */
  40. function ModifyFeatureSettings()
  41. {
  42. global $context, $txt, $scripturl, $modSettings, $settings;
  43. $context['page_title'] = $txt['modSettings_title'];
  44. $subActions = array(
  45. 'basic' => 'ModifyBasicSettings',
  46. 'layout' => 'ModifyLayoutSettings',
  47. 'karma' => 'ModifyKarmaSettings',
  48. 'sig' => 'ModifySignatureSettings',
  49. 'profile' => 'ShowCustomProfiles',
  50. 'profileedit' => 'EditCustomProfiles',
  51. );
  52. call_integration_hook('integrate_modify_features', array($subActions));
  53. // If Advanced Profile Fields are disabled don't show the setting page
  54. if (!in_array('cp', $context['admin_features']))
  55. unset($subActions['profile']);
  56. // Same for Karma
  57. if (!in_array('k', $context['admin_features']))
  58. unset($subActions['karma']);
  59. loadGeneralSettingParameters($subActions, 'basic');
  60. // Load up all the tabs...
  61. $context[$context['admin_menu_name']]['tab_data'] = array(
  62. 'title' => $txt['modSettings_title'],
  63. 'help' => 'featuresettings',
  64. 'description' => sprintf($txt['modSettings_desc'], $settings['theme_id'], $context['session_id'], $context['session_var']),
  65. 'tabs' => array(
  66. 'basic' => array(
  67. ),
  68. 'layout' => array(
  69. ),
  70. 'karma' => array(
  71. ),
  72. 'sig' => array(
  73. 'description' => $txt['signature_settings_desc'],
  74. ),
  75. 'profile' => array(
  76. 'description' => $txt['custom_profile_desc'],
  77. ),
  78. ),
  79. );
  80. // Call the right function for this sub-acton.
  81. $subActions[$_REQUEST['sa']]();
  82. }
  83. /**
  84. * This function passes control through to the relevant security tab.
  85. */
  86. function ModifySecuritySettings()
  87. {
  88. global $context, $txt, $scripturl, $modSettings, $settings;
  89. $context['page_title'] = $txt['admin_security_moderation'];
  90. $subActions = array(
  91. 'general' => 'ModifyGeneralSecuritySettings',
  92. 'spam' => 'ModifySpamSettings',
  93. 'moderation' => 'ModifyModerationSettings',
  94. );
  95. call_integration_hook('integrate_modify_security', array($subActions));
  96. // If Warning System is disabled don't show the setting page
  97. if (!in_array('w', $context['admin_features']))
  98. unset($subActions['moderation']);
  99. loadGeneralSettingParameters($subActions, 'general');
  100. // Load up all the tabs...
  101. $context[$context['admin_menu_name']]['tab_data'] = array(
  102. 'title' => $txt['admin_security_moderation'],
  103. 'help' => 'securitysettings',
  104. 'description' => $txt['security_settings_desc'],
  105. 'tabs' => array(
  106. 'general' => array(
  107. ),
  108. 'spam' => array(
  109. 'description' => $txt['antispam_Settings_desc'] ,
  110. ),
  111. 'moderation' => array(
  112. ),
  113. ),
  114. );
  115. // Call the right function for this sub-acton.
  116. $subActions[$_REQUEST['sa']]();
  117. }
  118. /**
  119. * This my friend, is for all the mod authors out there.
  120. */
  121. function ModifyModSettings()
  122. {
  123. global $context, $txt, $scripturl, $modSettings, $settings;
  124. $context['page_title'] = $txt['admin_modifications'];
  125. $subActions = array(
  126. 'general' => 'ModifyGeneralModSettings',
  127. 'hooks' => 'list_integration_hooks',
  128. // Mod authors, once again, if you have a whole section to add do it AFTER this line, and keep a comma at the end.
  129. );
  130. // Make it easier for mods to add new areas.
  131. call_integration_hook('integrate_modify_modifications', array(&$subActions));
  132. loadGeneralSettingParameters($subActions, 'general');
  133. // Load up all the tabs...
  134. $context[$context['admin_menu_name']]['tab_data'] = array(
  135. 'title' => $txt['admin_modifications'],
  136. 'help' => 'modsettings',
  137. 'description' => $txt['modification_settings_desc'],
  138. 'tabs' => array(
  139. 'general' => array(
  140. ),
  141. 'hooks' => array(
  142. ),
  143. ),
  144. );
  145. // Call the right function for this sub-acton.
  146. $subActions[$_REQUEST['sa']]();
  147. }
  148. /**
  149. * This is an overall control panel enabling/disabling lots of SMF's key feature components.
  150. *
  151. * @param $return_config
  152. */
  153. function ModifyCoreFeatures($return_config = false)
  154. {
  155. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  156. /* This is an array of all the features that can be enabled/disabled - each option can have the following:
  157. title - Text title of this item (If standard string does not exist).
  158. desc - Description of this feature (If standard string does not exist).
  159. settings - Array of settings to change (For each name => value) on enable - reverse is done for disable. If > 1 will not change value if set.
  160. setting_callback- Function that returns an array of settings to save - takes one parameter which is value for this feature.
  161. save_callback - Function called on save, takes state as parameter.
  162. */
  163. $core_features = array(
  164. // cd = calendar.
  165. 'cd' => array(
  166. 'url' => 'action=admin;area=managecalendar',
  167. 'settings' => array(
  168. 'cal_enabled' => 1,
  169. ),
  170. ),
  171. // cp = custom profile fields.
  172. 'cp' => array(
  173. 'url' => 'action=admin;area=featuresettings;sa=profile',
  174. 'save_callback' => create_function('$value', '
  175. global $smcFunc;
  176. if (!$value)
  177. {
  178. $smcFunc[\'db_query\'](\'\', \'
  179. UPDATE {db_prefix}custom_fields
  180. SET active = 0\');
  181. }
  182. '),
  183. 'setting_callback' => create_function('$value', '
  184. if (!$value)
  185. return array(
  186. \'disabled_profile_fields\' => \'\',
  187. \'registration_fields\' => \'\',
  188. \'displayFields\' => \'\',
  189. );
  190. else
  191. return array();
  192. '),
  193. ),
  194. // dr = drafts
  195. 'dr' => array(
  196. 'url' => 'action=admin;area=managedrafts',
  197. 'settings' => array(
  198. 'drafts_enabled' => 1,
  199. 'drafts_post_enabled' => 2,
  200. 'drafts_pm_enabled' => 2,
  201. 'drafts_autosave_enabled' => 2,
  202. 'drafts_show_saved_enabled' => 2,
  203. ),
  204. 'setting_callback' => create_function('$value', '
  205. global $smcFunc, $sourcedir;
  206. // Set the correct disabled value for the scheduled task.
  207. $smcFunc[\'db_query\'](\'\', \'
  208. UPDATE {db_prefix}scheduled_tasks
  209. SET disabled = {int:disabled}
  210. WHERE task = {string:task}\',
  211. array(
  212. \'disabled\' => $value ? 0 : 1,
  213. \'task\' => \'remove_old_drafts\',
  214. )
  215. );
  216. '),
  217. ),
  218. // ih = Integration Hooks Handling.
  219. 'ih' => array(
  220. 'url' => 'action=admin;area=modsettings;sa=hooks',
  221. 'settings' => array(
  222. 'handlinghooks_enabled' => 1,
  223. ),
  224. ),
  225. // k = karma.
  226. 'k' => array(
  227. 'url' => 'action=admin;area=featuresettings;sa=karma',
  228. 'settings' => array(
  229. 'karmaMode' => 2,
  230. ),
  231. ),
  232. // ml = moderation log.
  233. 'ml' => array(
  234. 'url' => 'action=admin;area=logs;sa=modlog',
  235. 'settings' => array(
  236. 'modlog_enabled' => 1,
  237. ),
  238. ),
  239. // pm = post moderation.
  240. 'pm' => array(
  241. 'url' => 'action=admin;area=permissions;sa=postmod',
  242. 'setting_callback' => create_function('$value', '
  243. global $sourcedir;
  244. // Cant use warning post moderation if disabled!
  245. if (!$value)
  246. {
  247. require_once($sourcedir . \'/PostModeration.php\');
  248. approveAllData();
  249. return array(\'warning_moderate\' => 0);
  250. }
  251. else
  252. return array();
  253. '),
  254. ),
  255. // ps = Paid Subscriptions.
  256. 'ps' => array(
  257. 'url' => 'action=admin;area=paidsubscribe',
  258. 'settings' => array(
  259. 'paid_enabled' => 1,
  260. ),
  261. 'setting_callback' => create_function('$value', '
  262. global $smcFunc, $sourcedir;
  263. // Set the correct disabled value for scheduled task.
  264. $smcFunc[\'db_query\'](\'\', \'
  265. UPDATE {db_prefix}scheduled_tasks
  266. SET disabled = {int:disabled}
  267. WHERE task = {string:task}\',
  268. array(
  269. \'disabled\' => $value ? 0 : 1,
  270. \'task\' => \'paid_subscriptions\',
  271. )
  272. );
  273. // Should we calculate next trigger?
  274. if ($value)
  275. {
  276. require_once($sourcedir . \'/ScheduledTasks.php\');
  277. CalculateNextTrigger(\'paid_subscriptions\');
  278. }
  279. '),
  280. ),
  281. // rg = report generator.
  282. 'rg' => array(
  283. 'url' => 'action=admin;area=reports',
  284. ),
  285. // w = warning.
  286. 'w' => array(
  287. 'url' => 'action=admin;area=securitysettings;sa=moderation',
  288. 'setting_callback' => create_function('$value', '
  289. global $modSettings;
  290. list ($modSettings[\'warning_enable\'], $modSettings[\'user_limit\'], $modSettings[\'warning_decrement\']) = explode(\',\', $modSettings[\'warning_settings\']);
  291. $warning_settings = ($value ? 1 : 0) . \',\' . $modSettings[\'user_limit\'] . \',\' . $modSettings[\'warning_decrement\'];
  292. if (!$value)
  293. {
  294. $returnSettings = array(
  295. \'warning_watch\' => 0,
  296. \'warning_moderate\' => 0,
  297. \'warning_mute\' => 0,
  298. );
  299. }
  300. elseif (empty($modSettings[\'warning_enable\']) && $value)
  301. {
  302. $returnSettings = array(
  303. \'warning_watch\' => 10,
  304. \'warning_moderate\' => 35,
  305. \'warning_mute\' => 60,
  306. );
  307. }
  308. else
  309. $returnSettings = array();
  310. $returnSettings[\'warning_settings\'] = $warning_settings;
  311. return $returnSettings;
  312. '),
  313. ),
  314. // Search engines
  315. 'sp' => array(
  316. 'url' => 'action=admin;area=sengines',
  317. 'settings' => array(
  318. 'spider_mode' => 1,
  319. ),
  320. 'setting_callback' => create_function('$value', '
  321. // Turn off the spider group if disabling.
  322. if (!$value)
  323. return array(\'spider_group\' => 0, \'show_spider_online\' => 0);
  324. '),
  325. 'on_save' => create_function('', '
  326. global $sourcedir, $modSettings;
  327. require_once($sourcedir . \'/ManageSearchEngines.php\');
  328. recacheSpiderNames();
  329. '),
  330. ),
  331. );
  332. // Anyone who would like to add a core feature?
  333. call_integration_hook('integrate_core_features', array(&$core_features));
  334. // Are we getting info for the help section.
  335. if ($return_config)
  336. {
  337. $return_data = array();
  338. foreach ($core_features as $id => $data)
  339. $return_data[] = array('switch', isset($data['title']) ? $data['title'] : $txt['core_settings_item_' . $id]);
  340. return $return_data;
  341. }
  342. loadGeneralSettingParameters();
  343. // Are we saving?
  344. if (isset($_POST['save']))
  345. {
  346. checkSession();
  347. if (isset($_GET['xml']))
  348. {
  349. $tokenValidation = validateToken('admin-core', 'post', false);
  350. if (empty($tokenValidation))
  351. return 'token_verify_fail';
  352. }
  353. else
  354. validateToken('admin-core');
  355. $setting_changes = array('admin_features' => array());
  356. // Cycle each feature and change things as required!
  357. foreach ($core_features as $id => $feature)
  358. {
  359. // Enabled?
  360. if (!empty($_POST['feature_' . $id]))
  361. $setting_changes['admin_features'][] = $id;
  362. // Setting values to change?
  363. if (isset($feature['settings']))
  364. {
  365. foreach ($feature['settings'] as $key => $value)
  366. {
  367. if (empty($_POST['feature_' . $id]) || (!empty($_POST['feature_' . $id]) && ($value < 2 || empty($modSettings[$key]))))
  368. $setting_changes[$key] = !empty($_POST['feature_' . $id]) ? $value : !$value;
  369. }
  370. }
  371. // Is there a call back for settings?
  372. if (isset($feature['setting_callback']))
  373. {
  374. $returned_settings = $feature['setting_callback'](!empty($_POST['feature_' . $id]));
  375. if (!empty($returned_settings))
  376. $setting_changes = array_merge($setting_changes, $returned_settings);
  377. }
  378. // Standard save callback?
  379. if (isset($feature['on_save']))
  380. $feature['on_save']();
  381. }
  382. // Make sure this one setting is a string!
  383. $setting_changes['admin_features'] = implode(',', $setting_changes['admin_features']);
  384. // Make any setting changes!
  385. updateSettings($setting_changes);
  386. // This is needed to let menus appear if cache > 2
  387. clean_cache('data');
  388. // Any post save things?
  389. foreach ($core_features as $id => $feature)
  390. {
  391. // Standard save callback?
  392. if (isset($feature['save_callback']))
  393. $feature['save_callback'](!empty($_POST['feature_' . $id]));
  394. }
  395. if (!isset($_REQUEST['xml']))
  396. redirectexit('action=admin;area=corefeatures;' . $context['session_var'] . '=' . $context['session_id']);
  397. }
  398. // Put them in context.
  399. $context['features'] = array();
  400. foreach ($core_features as $id => $feature)
  401. $context['features'][$id] = array(
  402. 'title' => isset($feature['title']) ? $feature['title'] : $txt['core_settings_item_' . $id],
  403. 'desc' => isset($feature['desc']) ? $feature['desc'] : $txt['core_settings_item_' . $id . '_desc'],
  404. 'enabled' => in_array($id, $context['admin_features']),
  405. 'state' => in_array($id, $context['admin_features']) ? 'on' : 'off',
  406. 'url' => !empty($feature['url']) ? $scripturl . '?' . $feature['url'] . ';' . $context['session_var'] . '=' . $context['session_id'] : '',
  407. 'image' => (file_exists($settings['theme_dir'] . '/images/admin/feature_' . $id . '.png') ? $settings['images_url'] : $settings['default_images_url']) . '/admin/feature_' . $id . '.png',
  408. );
  409. // Are they a new user?
  410. $context['is_new_install'] = !isset($modSettings['admin_features']);
  411. $context['force_disable_tabs'] = $context['is_new_install'];
  412. // Don't show them this twice!
  413. if ($context['is_new_install'])
  414. updateSettings(array('admin_features' => ''));
  415. // sub_template is already generic_xml and the token is created somewhere else
  416. if (isset($_REQUEST['xml']))
  417. return;
  418. $context['sub_template'] = 'core_features';
  419. $context['page_title'] = $txt['core_settings_title'];
  420. // We love our tokens.
  421. createToken('admin-core');
  422. }
  423. /**
  424. * Config array for chaning the basic forum settings
  425. * Accessed from ?action=admin;area=featuresettings;sa=basic;
  426. *
  427. * @param $return_config
  428. */
  429. function ModifyBasicSettings($return_config = false)
  430. {
  431. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  432. $config_vars = array(
  433. // Big Options... polls, sticky, bbc....
  434. array('select', 'pollMode', array($txt['disable_polls'], $txt['enable_polls'], $txt['polls_as_topics'])),
  435. '',
  436. // Basic stuff, titles, flash, permissions...
  437. array('check', 'allow_guestAccess'),
  438. array('check', 'enable_buddylist'),
  439. array('check', 'allow_editDisplayName'),
  440. array('check', 'allow_hideOnline'),
  441. array('check', 'titlesEnable'),
  442. array('text', 'default_personal_text', 'subtext' => $txt['default_personal_text_note']),
  443. '',
  444. // Jquery source
  445. array('select', 'jquery_source', array('auto' => $txt['jquery_auto'], 'local' => $txt['jquery_local'], 'cdn' => $txt['jquery_cdn'])),
  446. '',
  447. // SEO stuff
  448. array('check', 'queryless_urls', 'subtext' => '<strong>' . $txt['queryless_urls_note'] . '</strong>'),
  449. array('text', 'meta_keywords', 'subtext' => $txt['meta_keywords_note'], 'size' => 50),
  450. '',
  451. // Number formatting, timezones.
  452. array('text', 'time_format'),
  453. array('float', 'time_offset', 'subtext' => $txt['setting_time_offset_note'], 6, 'postinput' => $txt['hours']),
  454. 'default_timezone' => array('select', 'default_timezone', array()),
  455. '',
  456. // Who's online?
  457. array('check', 'who_enabled'),
  458. array('int', 'lastActive', 6, 'postinput' => $txt['minutes']),
  459. '',
  460. // Statistics.
  461. array('check', 'trackStats'),
  462. array('check', 'hitStats'),
  463. '',
  464. // Option-ish things... miscellaneous sorta.
  465. array('check', 'allow_disableAnnounce'),
  466. array('check', 'disallow_sendBody'),
  467. );
  468. // Get all the time zones.
  469. if (function_exists('timezone_identifiers_list') && function_exists('date_default_timezone_set'))
  470. {
  471. $all_zones = timezone_identifiers_list();
  472. // Make sure we set the value to the same as the printed value.
  473. foreach ($all_zones as $zone)
  474. $config_vars['default_timezone'][2][$zone] = $zone;
  475. }
  476. else
  477. unset($config_vars['default_timezone']);
  478. call_integration_hook('integrate_modify_basic_settings', array($config_vars));
  479. if ($return_config)
  480. return $config_vars;
  481. // Saving?
  482. if (isset($_GET['save']))
  483. {
  484. checkSession();
  485. // Prevent absurd boundaries here - make it a day tops.
  486. if (isset($_POST['lastActive']))
  487. $_POST['lastActive'] = min((int) $_POST['lastActive'], 1440);
  488. call_integration_hook('integrate_save_basic_settings');
  489. saveDBSettings($config_vars);
  490. writeLog();
  491. redirectexit('action=admin;area=featuresettings;sa=basic');
  492. }
  493. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=basic';
  494. $context['settings_title'] = $txt['mods_cat_features'];
  495. prepareDBSettingContext($config_vars);
  496. }
  497. /**
  498. * Settings really associated with general security aspects.
  499. *
  500. * @param $return_config
  501. */
  502. function ModifyGeneralSecuritySettings($return_config = false)
  503. {
  504. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  505. $config_vars = array(
  506. array('check', 'guest_hideContacts'),
  507. array('check', 'make_email_viewable'),
  508. '',
  509. array('int', 'failed_login_threshold'),
  510. array('int', 'loginHistoryDays'),
  511. '',
  512. array('check', 'enableErrorLogging'),
  513. array('check', 'enableErrorQueryLogging'),
  514. '',
  515. array('check', 'securityDisable'),
  516. array('check', 'securityDisable_moderate'),
  517. '',
  518. // Reactive on email, and approve on delete
  519. array('check', 'send_validation_onChange'),
  520. array('check', 'approveAccountDeletion'),
  521. '',
  522. // Password strength.
  523. array('select', 'password_strength', array($txt['setting_password_strength_low'], $txt['setting_password_strength_medium'], $txt['setting_password_strength_high'])),
  524. array('check', 'enable_password_conversion'),
  525. '',
  526. // Reporting of personal messages?
  527. array('check', 'enableReportPM'),
  528. );
  529. call_integration_hook('integrate_general_security_settings', array($config_vars));
  530. if ($return_config)
  531. return $config_vars;
  532. // Saving?
  533. if (isset($_GET['save']))
  534. {
  535. checkSession();
  536. saveDBSettings($config_vars);
  537. call_integration_hook('integrate_save_general_security_settings');
  538. writeLog();
  539. redirectexit('action=admin;area=securitysettings;sa=general');
  540. }
  541. $context['post_url'] = $scripturl . '?action=admin;area=securitysettings;save;sa=general';
  542. $context['settings_title'] = $txt['mods_cat_security_general'];
  543. prepareDBSettingContext($config_vars);
  544. }
  545. /**
  546. * Allows modifying the global layout settings in the forum
  547. * Accessed through ?action=admin;area=featuresettings;sa=layout;
  548. *
  549. * @param $return_config
  550. */
  551. function ModifyLayoutSettings($return_config = false)
  552. {
  553. global $txt, $scripturl, $context, $settings, $sc;
  554. $config_vars = array(
  555. // Pagination stuff.
  556. array('check', 'compactTopicPagesEnable'),
  557. array('int', 'compactTopicPagesContiguous', null, $txt['contiguous_page_display'] . '<div class="smalltext">' . str_replace(' ', '&nbsp;', '"3" ' . $txt['to_display'] . ': <strong>1 ... 4 [5] 6 ... 9</strong>') . '<br />' . str_replace(' ', '&nbsp;', '"5" ' . $txt['to_display'] . ': <strong>1 ... 3 4 [5] 6 7 ... 9</strong>') . '</div>'),
  558. array('int', 'defaultMaxMembers'),
  559. '',
  560. // Stuff that just is everywhere - today, search, online, etc.
  561. array('select', 'todayMod', array($txt['today_disabled'], $txt['today_only'], $txt['yesterday_today'])),
  562. array('check', 'topbottomEnable'),
  563. array('check', 'onlineEnable'),
  564. array('check', 'enableVBStyleLogin'),
  565. '',
  566. // Automagic image resizing.
  567. array('int', 'max_image_width', 'subtext' => $txt['zero_for_no_limit']),
  568. array('int', 'max_image_height', 'subtext' => $txt['zero_for_no_limit']),
  569. '',
  570. // This is like debugging sorta.
  571. array('check', 'timeLoadPageEnable'),
  572. );
  573. call_integration_hook('integrate_layout_settings', array($config_vars));
  574. if ($return_config)
  575. return $config_vars;
  576. // Saving?
  577. if (isset($_GET['save']))
  578. {
  579. checkSession();
  580. call_integration_hook('integrate_save_layout_settings');
  581. saveDBSettings($config_vars);
  582. writeLog();
  583. redirectexit('action=admin;area=featuresettings;sa=layout');
  584. }
  585. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=layout';
  586. $context['settings_title'] = $txt['mods_cat_layout'];
  587. prepareDBSettingContext($config_vars);
  588. }
  589. /**
  590. * Config array for chaning the karma settings
  591. * Accessed from ?action=admin;area=featuresettings;sa=karma;
  592. *
  593. * @param $return_config
  594. */
  595. function ModifyKarmaSettings($return_config = false)
  596. {
  597. global $txt, $scripturl, $context, $settings, $sc;
  598. $config_vars = array(
  599. // Karma - On or off?
  600. array('select', 'karmaMode', explode('|', $txt['karma_options'])),
  601. '',
  602. // Who can do it.... and who is restricted by time limits?
  603. array('int', 'karmaMinPosts', 6, 'postinput' => strtolower($txt['posts'])),
  604. array('float', 'karmaWaitTime', 6, 'postinput' => $txt['hours']),
  605. array('check', 'karmaTimeRestrictAdmins'),
  606. '',
  607. // What does it look like? [smite]?
  608. array('text', 'karmaLabel'),
  609. array('text', 'karmaApplaudLabel'),
  610. array('text', 'karmaSmiteLabel'),
  611. );
  612. call_integration_hook('integrate_karma_settings', array($config_vars));
  613. if ($return_config)
  614. return $config_vars;
  615. // Saving?
  616. if (isset($_GET['save']))
  617. {
  618. checkSession();
  619. call_integration_hook('integrate_save_karma_settings');
  620. saveDBSettings($config_vars);
  621. redirectexit('action=admin;area=featuresettings;sa=karma');
  622. }
  623. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=karma';
  624. $context['settings_title'] = $txt['karma'];
  625. prepareDBSettingContext($config_vars);
  626. }
  627. /**
  628. * Moderation type settings - although there are fewer than we have you believe ;)
  629. *
  630. * @param bool $return_config = false
  631. */
  632. function ModifyModerationSettings($return_config = false)
  633. {
  634. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  635. $config_vars = array(
  636. // Warning system?
  637. array('int', 'warning_watch', 'subtext' => $txt['setting_warning_watch_note'], 'help' => 'warning_enable'),
  638. 'moderate' => array('int', 'warning_moderate', 'subtext' => $txt['setting_warning_moderate_note']),
  639. array('int', 'warning_mute', 'subtext' => $txt['setting_warning_mute_note']),
  640. 'rem1' => array('int', 'user_limit', 'subtext' => $txt['setting_user_limit_note']),
  641. 'rem2' => array('int', 'warning_decrement', 'subtext' => $txt['setting_warning_decrement_note']),
  642. array('select', 'warning_show', 'subtext' => $txt['setting_warning_show_note'], array($txt['setting_warning_show_mods'], $txt['setting_warning_show_user'], $txt['setting_warning_show_all'])),
  643. );
  644. call_integration_hook('integrate_moderation_settings', array($config_vars));
  645. if ($return_config)
  646. return $config_vars;
  647. // Cannot use moderation if post moderation is not enabled.
  648. if (!$modSettings['postmod_active'])
  649. unset($config_vars['moderate']);
  650. // Saving?
  651. if (isset($_GET['save']))
  652. {
  653. checkSession();
  654. // Make sure these don't have an effect.
  655. if (substr($modSettings['warning_settings'], 0, 1) != 1)
  656. {
  657. $_POST['warning_watch'] = 0;
  658. $_POST['warning_moderate'] = 0;
  659. $_POST['warning_mute'] = 0;
  660. }
  661. else
  662. {
  663. $_POST['warning_watch'] = min($_POST['warning_watch'], 100);
  664. $_POST['warning_moderate'] = $modSettings['postmod_active'] ? min($_POST['warning_moderate'], 100) : 0;
  665. $_POST['warning_mute'] = min($_POST['warning_mute'], 100);
  666. }
  667. // Fix the warning setting array!
  668. $_POST['warning_settings'] = '1,' . min(100, (int) $_POST['user_limit']) . ',' . min(100, (int) $_POST['warning_decrement']);
  669. $save_vars = $config_vars;
  670. $save_vars[] = array('text', 'warning_settings');
  671. unset($save_vars['rem1'], $save_vars['rem2']);
  672. call_integration_hook('integrate_save_karma_settings', array($save_vars));
  673. saveDBSettings($save_vars);
  674. redirectexit('action=admin;area=securitysettings;sa=moderation');
  675. }
  676. // We actually store lots of these together - for efficiency.
  677. list ($modSettings['warning_enable'], $modSettings['user_limit'], $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']);
  678. $context['post_url'] = $scripturl . '?action=admin;area=securitysettings;save;sa=moderation';
  679. $context['settings_title'] = $txt['moderation_settings'];
  680. prepareDBSettingContext($config_vars);
  681. }
  682. /**
  683. * Let's try keep the spam to a minimum ah Thantos?
  684. * @param bool $return_config = false
  685. */
  686. function ModifySpamSettings($return_config = false)
  687. {
  688. global $txt, $scripturl, $context, $settings, $sc, $modSettings, $smcFunc;
  689. // Generate a sample registration image.
  690. $context['use_graphic_library'] = in_array('gd', get_loaded_extensions());
  691. $context['verification_image_href'] = $scripturl . '?action=verificationcode;rand=' . md5(mt_rand());
  692. $config_vars = array(
  693. array('check', 'reg_verification'),
  694. array('check', 'search_enable_captcha'),
  695. // This, my friend, is a cheat :p
  696. 'guest_verify' => array('check', 'guests_require_captcha', 'subtext' => $txt['setting_guests_require_captcha_desc']),
  697. array('int', 'posts_require_captcha', 'subtext' => $txt['posts_require_captcha_desc'], 'onchange' => 'if (this.value > 0){ document.getElementById(\'guests_require_captcha\').checked = true; document.getElementById(\'guests_require_captcha\').disabled = true;} else {document.getElementById(\'guests_require_captcha\').disabled = false;}'),
  698. array('check', 'guests_report_require_captcha'),
  699. '',
  700. // PM Settings
  701. 'pm1' => array('int', 'max_pm_recipients', 'subtext' => $txt['max_pm_recipients_note']),
  702. 'pm2' => array('int', 'pm_posts_verification', 'subtext' => $txt['pm_posts_verification_note']),
  703. 'pm3' => array('int', 'pm_posts_per_hour', 'subtext' => $txt['pm_posts_per_hour_note']),
  704. // Visual verification.
  705. array('title', 'configure_verification_means'),
  706. array('desc', 'configure_verification_means_desc'),
  707. 'vv' => array('select', 'visual_verification_type', array($txt['setting_image_verification_off'], $txt['setting_image_verification_vsimple'], $txt['setting_image_verification_simple'], $txt['setting_image_verification_medium'], $txt['setting_image_verification_high'], $txt['setting_image_verification_extreme']), 'subtext'=> $txt['setting_visual_verification_type_desc'], 'onchange' => $context['use_graphic_library'] ? 'refreshImages();' : ''),
  708. // Clever Thomas, who is looking sheepy now? Not I, the mighty sword swinger did say.
  709. array('title', 'setup_verification_questions'),
  710. array('desc', 'setup_verification_questions_desc'),
  711. array('int', 'qa_verification_number', 'subtext' => $txt['setting_qa_verification_number_desc']),
  712. array('callback', 'question_answer_list'),
  713. );
  714. call_integration_hook('integrate_spam_settings', array($config_vars));
  715. if ($return_config)
  716. return $config_vars;
  717. // Load any question and answers!
  718. $context['question_answers'] = array();
  719. $request = $smcFunc['db_query']('', '
  720. SELECT id_comment, body AS question, recipient_name AS answer
  721. FROM {db_prefix}log_comments
  722. WHERE comment_type = {string:ver_test}',
  723. array(
  724. 'ver_test' => 'ver_test',
  725. )
  726. );
  727. while ($row = $smcFunc['db_fetch_assoc']($request))
  728. {
  729. $context['question_answers'][$row['id_comment']] = array(
  730. 'id' => $row['id_comment'],
  731. 'question' => $row['question'],
  732. 'answer' => $row['answer'],
  733. );
  734. }
  735. $smcFunc['db_free_result']($request);
  736. // Saving?
  737. if (isset($_GET['save']))
  738. {
  739. checkSession();
  740. // Fix PM settings.
  741. $_POST['pm_spam_settings'] = (int) $_POST['max_pm_recipients'] . ',' . (int) $_POST['pm_posts_verification'] . ',' . (int) $_POST['pm_posts_per_hour'];
  742. // Hack in guest requiring verification!
  743. if (empty($_POST['posts_require_captcha']) && !empty($_POST['guests_require_captcha']))
  744. $_POST['posts_require_captcha'] = -1;
  745. $save_vars = $config_vars;
  746. unset($save_vars['pm1'], $save_vars['pm2'], $save_vars['pm3'], $save_vars['guest_verify']);
  747. $save_vars[] = array('text', 'pm_spam_settings');
  748. // Handle verification questions.
  749. $questionInserts = array();
  750. $count_questions = 0;
  751. foreach ($_POST['question'] as $id => $question)
  752. {
  753. $question = trim($smcFunc['htmlspecialchars']($question, ENT_COMPAT, $context['character_set']));
  754. $answer = trim($smcFunc['strtolower']($smcFunc['htmlspecialchars']($_POST['answer'][$id], ENT_COMPAT, $context['character_set'])));
  755. // Already existed?
  756. if (isset($context['question_answers'][$id]))
  757. {
  758. $count_questions++;
  759. // Changed?
  760. if ($context['question_answers'][$id]['question'] != $question || $context['question_answers'][$id]['answer'] != $answer)
  761. {
  762. if ($question == '' || $answer == '')
  763. {
  764. $smcFunc['db_query']('', '
  765. DELETE FROM {db_prefix}log_comments
  766. WHERE comment_type = {string:ver_test}
  767. AND id_comment = {int:id}',
  768. array(
  769. 'id' => $id,
  770. 'ver_test' => 'ver_test',
  771. )
  772. );
  773. $count_questions--;
  774. }
  775. else
  776. $request = $smcFunc['db_query']('', '
  777. UPDATE {db_prefix}log_comments
  778. SET body = {string:question}, recipient_name = {string:answer}
  779. WHERE comment_type = {string:ver_test}
  780. AND id_comment = {int:id}',
  781. array(
  782. 'id' => $id,
  783. 'ver_test' => 'ver_test',
  784. 'question' => $question,
  785. 'answer' => $answer,
  786. )
  787. );
  788. }
  789. }
  790. // It's so shiney and new!
  791. elseif ($question != '' && $answer != '')
  792. {
  793. $questionInserts[] = array(
  794. 'comment_type' => 'ver_test',
  795. 'body' => $question,
  796. 'recipient_name' => $answer,
  797. );
  798. }
  799. }
  800. // Any questions to insert?
  801. if (!empty($questionInserts))
  802. {
  803. $smcFunc['db_insert']('',
  804. '{db_prefix}log_comments',
  805. array('comment_type' => 'string', 'body' => 'string-65535', 'recipient_name' => 'string-80'),
  806. $questionInserts,
  807. array('id_comment')
  808. );
  809. $count_questions++;
  810. }
  811. if (empty($count_questions) || $_POST['qa_verification_number'] > $count_questions)
  812. $_POST['qa_verification_number'] = $count_questions;
  813. call_integration_hook('integrate_save_spam_settings', array($save_vars));
  814. // Now save.
  815. saveDBSettings($save_vars);
  816. cache_put_data('verificationQuestionIds', null, 300);
  817. redirectexit('action=admin;area=securitysettings;sa=spam');
  818. }
  819. $character_range = array_merge(range('A', 'H'), array('K', 'M', 'N', 'P', 'R'), range('T', 'Y'));
  820. $_SESSION['visual_verification_code'] = '';
  821. for ($i = 0; $i < 6; $i++)
  822. $_SESSION['visual_verification_code'] .= $character_range[array_rand($character_range)];
  823. // Some javascript for CAPTCHA.
  824. $context['settings_post_javascript'] = '';
  825. if ($context['use_graphic_library'])
  826. $context['settings_post_javascript'] .= '
  827. function refreshImages()
  828. {
  829. var imageType = document.getElementById(\'visual_verification_type\').value;
  830. document.getElementById(\'verification_image\').src = \'' . $context['verification_image_href'] . ';type=\' + imageType;
  831. }';
  832. // Show the image itself, or text saying we can't.
  833. if ($context['use_graphic_library'])
  834. $config_vars['vv']['postinput'] = '<br /><img src="' . $context['verification_image_href'] . ';type=' . (empty($modSettings['visual_verification_type']) ? 0 : $modSettings['visual_verification_type']) . '" alt="' . $txt['setting_image_verification_sample'] . '" id="verification_image" /><br />';
  835. else
  836. $config_vars['vv']['postinput'] = '<br /><span class="smalltext">' . $txt['setting_image_verification_nogd'] . '</span>';
  837. // Hack for PM spam settings.
  838. list ($modSettings['max_pm_recipients'], $modSettings['pm_posts_verification'], $modSettings['pm_posts_per_hour']) = explode(',', $modSettings['pm_spam_settings']);
  839. // Hack for guests requiring verification.
  840. $modSettings['guests_require_captcha'] = !empty($modSettings['posts_require_captcha']);
  841. $modSettings['posts_require_captcha'] = !isset($modSettings['posts_require_captcha']) || $modSettings['posts_require_captcha'] == -1 ? 0 : $modSettings['posts_require_captcha'];
  842. // Some minor javascript for the guest post setting.
  843. if ($modSettings['posts_require_captcha'])
  844. $context['settings_post_javascript'] .= '
  845. document.getElementById(\'guests_require_captcha\').disabled = true;';
  846. $context['post_url'] = $scripturl . '?action=admin;area=securitysettings;save;sa=spam';
  847. $context['settings_title'] = $txt['antispam_Settings'];
  848. prepareDBSettingContext($config_vars);
  849. }
  850. /**
  851. * You'll never guess what this function does...
  852. *
  853. * @param $return_config
  854. */
  855. function ModifySignatureSettings($return_config = false)
  856. {
  857. global $context, $txt, $modSettings, $sig_start, $smcFunc, $helptxt, $scripturl;
  858. $config_vars = array(
  859. // Are signatures even enabled?
  860. array('check', 'signature_enable'),
  861. '',
  862. // Tweaking settings!
  863. array('int', 'signature_max_length', 'subtext' => $txt['zero_for_no_limit']),
  864. array('int', 'signature_max_lines', 'subtext' => $txt['zero_for_no_limit']),
  865. array('int', 'signature_max_font_size', 'subtext' => $txt['zero_for_no_limit']),
  866. array('check', 'signature_allow_smileys', 'onclick' => 'document.getElementById(\'signature_max_smileys\').disabled = !this.checked;'),
  867. array('int', 'signature_max_smileys', 'subtext' => $txt['zero_for_no_limit']),
  868. '',
  869. // Image settings.
  870. array('int', 'signature_max_images', 'subtext' => $txt['signature_max_images_note']),
  871. array('int', 'signature_max_image_width', 'subtext' => $txt['zero_for_no_limit']),
  872. array('int', 'signature_max_image_height', 'subtext' => $txt['zero_for_no_limit']),
  873. '',
  874. array('bbc', 'signature_bbc'),
  875. );
  876. call_integration_hook('integrate_signature_settings', array($config_vars));
  877. if ($return_config)
  878. return $config_vars;
  879. // Setup the template.
  880. $context['page_title'] = $txt['signature_settings'];
  881. $context['sub_template'] = 'show_settings';
  882. // Disable the max smileys option if we don't allow smileys at all!
  883. $context['settings_post_javascript'] = 'document.getElementById(\'signature_max_smileys\').disabled = !document.getElementById(\'signature_allow_smileys\').checked;';
  884. // Load all the signature settings.
  885. list ($sig_limits, $sig_bbc) = explode(':', $modSettings['signature_settings']);
  886. $sig_limits = explode(',', $sig_limits);
  887. $disabledTags = !empty($sig_bbc) ? explode(',', $sig_bbc) : array();
  888. // Applying to ALL signatures?!!
  889. if (isset($_GET['apply']))
  890. {
  891. // Security!
  892. checkSession('get');
  893. $sig_start = time();
  894. // This is horrid - but I suppose some people will want the option to do it.
  895. $_GET['step'] = isset($_GET['step']) ? (int) $_GET['step'] : 0;
  896. $done = false;
  897. $request = $smcFunc['db_query']('', '
  898. SELECT MAX(id_member)
  899. FROM {db_prefix}members',
  900. array(
  901. )
  902. );
  903. list ($context['max_member']) = $smcFunc['db_fetch_row']($request);
  904. $smcFunc['db_free_result']($request);
  905. while (!$done)
  906. {
  907. $changes = array();
  908. $request = $smcFunc['db_query']('', '
  909. SELECT id_member, signature
  910. FROM {db_prefix}members
  911. WHERE id_member BETWEEN ' . $_GET['step'] . ' AND ' . $_GET['step'] . ' + 49
  912. AND id_group != {int:admin_group}
  913. AND FIND_IN_SET({int:admin_group}, additional_groups) = 0',
  914. array(
  915. 'admin_group' => 1,
  916. )
  917. );
  918. while ($row = $smcFunc['db_fetch_assoc']($request))
  919. {
  920. // Apply all the rules we can realistically do.
  921. $sig = strtr($row['signature'], array('<br />' => "\n"));
  922. // Max characters...
  923. if (!empty($sig_limits[1]))
  924. $sig = $smcFunc['substr']($sig, 0, $sig_limits[1]);
  925. // Max lines...
  926. if (!empty($sig_limits[2]))
  927. {
  928. $count = 0;
  929. for ($i = 0; $i < strlen($sig); $i++)
  930. {
  931. if ($sig[$i] == "\n")
  932. {
  933. $count++;
  934. if ($count >= $sig_limits[2])
  935. $sig = substr($sig, 0, $i) . strtr(substr($sig, $i), array("\n" => ' '));
  936. }
  937. }
  938. }
  939. if (!empty($sig_limits[7]) && preg_match_all('~\[size=([\d\.]+)?(px|pt|em|x-large|larger)~i', $sig, $matches) !== false && isset($matches[2]))
  940. {
  941. foreach ($matches[1] as $ind => $size)
  942. {
  943. $limit_broke = 0;
  944. // Attempt to allow all sizes of abuse, so to speak.
  945. if ($matches[2][$ind] == 'px' && $size > $sig_limits[7])
  946. $limit_broke = $sig_limits[7] . 'px';
  947. elseif ($matches[2][$ind] == 'pt' && $size > ($sig_limits[7] * 0.75))
  948. $limit_broke = ((int) $sig_limits[7] * 0.75) . 'pt';
  949. elseif ($matches[2][$ind] == 'em' && $size > ((float) $sig_limits[7] / 16))
  950. $limit_broke = ((float) $sig_limits[7] / 16) . 'em';
  951. elseif ($matches[2][$ind] != 'px' && $matches[2][$ind] != 'pt' && $matches[2][$ind] != 'em' && $sig_limits[7] < 18)
  952. $limit_broke = 'large';
  953. if ($limit_broke)
  954. $sig = str_replace($matches[0][$ind], '[size=' . $sig_limits[7] . 'px', $sig);
  955. }
  956. }
  957. // Stupid images - this is stupidly, stupidly challenging.
  958. if ((!empty($sig_limits[3]) || !empty($sig_limits[5]) || !empty($sig_limits[6])))
  959. {
  960. $replaces = array();
  961. $img_count = 0;
  962. // Get all BBC tags...
  963. preg_match_all('~\[img(\s+width=([\d]+))?(\s+height=([\d]+))?(\s+width=([\d]+))?\s*\](?:<br />)*([^<">]+?)(?:<br />)*\[/img\]~i', $sig, $matches);
  964. // ... and all HTML ones.
  965. preg_match_all('~&lt;img\s+src=(?:&quot;)?((?:http://|ftp://|https://|ftps://).+?)(?:&quot;)?(?:\s+alt=(?:&quot;)?(.*?)(?:&quot;)?)?(?:\s?/)?&gt;~i', $sig, $matches2, PREG_PATTERN_ORDER);
  966. // And stick the HTML in the BBC.
  967. if (!empty($matches2))
  968. {
  969. foreach ($matches2[0] as $ind => $dummy)
  970. {
  971. $matches[0][] = $matches2[0][$ind];
  972. $matches[1][] = '';
  973. $matches[2][] = '';
  974. $matches[3][] = '';
  975. $matches[4][] = '';
  976. $matches[5][] = '';
  977. $matches[6][] = '';
  978. $matches[7][] = $matches2[1][$ind];
  979. }
  980. }
  981. // Try to find all the images!
  982. if (!empty($matches))
  983. {
  984. $image_count_holder = array();
  985. foreach ($matches[0] as $key => $image)
  986. {
  987. $width = -1; $height = -1;
  988. $img_count++;
  989. // Too many images?
  990. if (!empty($sig_limits[3]) && $img_count > $sig_limits[3])
  991. {
  992. // If we've already had this before we only want to remove the excess.
  993. if (isset($image_count_holder[$image]))
  994. {
  995. $img_offset = -1;
  996. $rep_img_count = 0;
  997. while ($img_offset !== false)
  998. {
  999. $img_offset = strpos($sig, $image, $img_offset + 1);
  1000. $rep_img_count++;
  1001. if ($rep_img_count > $image_count_holder[$image])
  1002. {
  1003. // Only replace the excess.
  1004. $sig = substr($sig, 0, $img_offset) . str_replace($image, '', substr($sig, $img_offset));
  1005. // Stop looping.
  1006. $img_offset = false;
  1007. }
  1008. }
  1009. }
  1010. else
  1011. $replaces[$image] = '';
  1012. continue;
  1013. }
  1014. // Does it have predefined restraints? Width first.
  1015. if ($matches[6][$key])
  1016. $matches[2][$key] = $matches[6][$key];
  1017. if ($matches[2][$key] && $sig_limits[5] && $matches[2][$key] > $sig_limits[5])
  1018. {
  1019. $width = $sig_limits[5];
  1020. $matches[4][$key] = $matches[4][$key] * ($width / $matches[2][$key]);
  1021. }
  1022. elseif ($matches[2][$key])
  1023. $width = $matches[2][$key];
  1024. // ... and height.
  1025. if ($matches[4][$key] && $sig_limits[6] && $matches[4][$key] > $sig_limits[6])
  1026. {
  1027. $height = $sig_limits[6];
  1028. if ($width != -1)
  1029. $width = $width * ($height / $matches[4][$key]);
  1030. }
  1031. elseif ($matches[4][$key])
  1032. $height = $matches[4][$key];
  1033. // If the dimensions are still not fixed - we need to check the actual image.
  1034. if (($width == -1 && $sig_limits[5]) || ($height == -1 && $sig_limits[6]))
  1035. {
  1036. $sizes = url_image_size($matches[7][$key]);
  1037. if (is_array($sizes))
  1038. {
  1039. // Too wide?
  1040. if ($sizes[0] > $sig_limits[5] && $sig_limits[5])
  1041. {
  1042. $width = $sig_limits[5];
  1043. $sizes[1] = $sizes[1] * ($width / $sizes[0]);
  1044. }
  1045. // Too high?
  1046. if ($sizes[1] > $sig_limits[6] && $sig_limits[6])
  1047. {
  1048. $height = $sig_limits[6];
  1049. if ($width == -1)
  1050. $width = $sizes[0];
  1051. $width = $width * ($height / $sizes[1]);
  1052. }
  1053. elseif ($width != -1)
  1054. $height = $sizes[1];
  1055. }
  1056. }
  1057. // Did we come up with some changes? If so remake the string.
  1058. if ($width != -1 || $height != -1)
  1059. {
  1060. $replaces[$image] = '[img' . ($width != -1 ? ' width=' . round($width) : '') . ($height != -1 ? ' height=' . round($height) : '') . ']' . $matches[7][$key] . '[/img]';
  1061. }
  1062. // Record that we got one.
  1063. $image_count_holder[$image] = isset($image_count_holder[$image]) ? $image_count_holder[$image] + 1 : 1;
  1064. }
  1065. if (!empty($replaces))
  1066. $sig = str_replace(array_keys($replaces), array_values($replaces), $sig);
  1067. }
  1068. }
  1069. // Try to fix disabled tags.
  1070. if (!empty($disabledTags))
  1071. {
  1072. $sig = preg_replace('~\[(?:' . implode('|', $disabledTags) . ').+?\]~i', '', $sig);
  1073. $sig = preg_replace('~\[/(?:' . implode('|', $disabledTags) . ')\]~i', '', $sig);
  1074. }
  1075. $sig = strtr($sig, array("\n" => '<br />'));
  1076. call_integration_hook('integrate_apply_signature_settings', array($sig, $sig_limits, $disabledTags));
  1077. if ($sig != $row['signature'])
  1078. $changes[$row['id_member']] = $sig;
  1079. }
  1080. if ($smcFunc['db_num_rows']($request) == 0)
  1081. $done = true;
  1082. $smcFunc['db_free_result']($request);
  1083. // Do we need to delete what we have?
  1084. if (!empty($changes))
  1085. {
  1086. foreach ($changes as $id => $sig)
  1087. $smcFunc['db_query']('', '
  1088. UPDATE {db_prefix}members
  1089. SET signature = {string:signature}
  1090. WHERE id_member = {int:id_member}',
  1091. array(
  1092. 'id_member' => $id,
  1093. 'signature' => $sig,
  1094. )
  1095. );
  1096. }
  1097. $_GET['step'] += 50;
  1098. if (!$done)
  1099. pauseSignatureApplySettings();
  1100. }
  1101. $settings_applied = true;
  1102. }
  1103. $context['signature_settings'] = array(
  1104. 'enable' => isset($sig_limits[0]) ? $sig_limits[0] : 0,
  1105. 'max_length' => isset($sig_limits[1]) ? $sig_limits[1] : 0,
  1106. 'max_lines' => isset($sig_limits[2]) ? $sig_limits[2] : 0,
  1107. 'max_images' => isset($sig_limits[3]) ? $sig_limits[3] : 0,
  1108. 'allow_smileys' => isset($sig_limits[4]) && $sig_limits[4] == -1 ? 0 : 1,
  1109. 'max_smileys' => isset($sig_limits[4]) && $sig_limits[4] != -1 ? $sig_limits[4] : 0,
  1110. 'max_image_width' => isset($sig_limits[5]) ? $sig_limits[5] : 0,
  1111. 'max_image_height' => isset($sig_limits[6]) ? $sig_limits[6] : 0,
  1112. 'max_font_size' => isset($sig_limits[7]) ? $sig_limits[7] : 0,
  1113. );
  1114. // Temporarily make each setting a modSetting!
  1115. foreach ($context['signature_settings'] as $key => $value)
  1116. $modSettings['signature_' . $key] = $value;
  1117. // Make sure we check the right tags!
  1118. $modSettings['bbc_disabled_signature_bbc'] = $disabledTags;
  1119. // Saving?
  1120. if (isset($_GET['save']))
  1121. {
  1122. checkSession();
  1123. // Clean up the tag stuff!
  1124. $bbcTags = array();
  1125. foreach (parse_bbc(false) as $tag)
  1126. $bbcTags[] = $tag['tag'];
  1127. if (!isset($_POST['signature_bbc_enabledTags']))
  1128. $_POST['signature_bbc_enabledTags'] = array();
  1129. elseif (!is_array($_POST['signature_bbc_enabledTags']))
  1130. $_POST['signature_bbc_enabledTags'] = array($_POST['signature_bbc_enabledTags']);
  1131. $sig_limits = array();
  1132. foreach ($context['signature_settings'] as $key => $value)
  1133. {
  1134. if ($key == 'allow_smileys')
  1135. continue;
  1136. elseif ($key == 'max_smileys' && empty($_POST['signature_allow_smileys']))
  1137. $sig_limits[] = -1;
  1138. else
  1139. $sig_limits[] = !empty($_POST['signature_' . $key]) ? max(1, (int) $_POST['signature_' . $key]) : 0;
  1140. }
  1141. call_integration_hook('integrate_save_signature_settings', array($sig_limits, $bbcTags));
  1142. $_POST['signature_settings'] = implode(',', $sig_limits) . ':' . implode(',', array_diff($bbcTags, $_POST['signature_bbc_enabledTags']));
  1143. // Even though we have practically no settings let's keep the convention going!
  1144. $save_vars = array();
  1145. $save_vars[] = array('text', 'signature_settings');
  1146. saveDBSettings($save_vars);
  1147. redirectexit('action=admin;area=featuresettings;sa=sig');
  1148. }
  1149. $context['post_url'] = $scripturl . '?action=admin;area=featuresettings;save;sa=sig';
  1150. $context['settings_title'] = $txt['signature_settings'];
  1151. $context['settings_message'] = !empty($settings_applied) ? '<div class="infobox">' . $txt['signature_settings_applied'] . '</div>' : '<p class="centertext">' . sprintf($txt['signature_settings_warning'], $context['session_id'], $context['session_var']) . '</p>';
  1152. prepareDBSettingContext($config_vars);
  1153. }
  1154. /**
  1155. * Just pause the signature applying thing.
  1156. */
  1157. function pauseSignatureApplySettings()
  1158. {
  1159. global $context, $txt, $sig_start;
  1160. // Try get more time...
  1161. @set_time_limit(600);
  1162. if (function_exists('apache_reset_timeout'))
  1163. @apache_reset_timeout();
  1164. // Have we exhausted all the time we allowed?
  1165. if (time() - array_sum(explode(' ', $sig_start)) < 3)
  1166. return;
  1167. $context['continue_get_data'] = '?action=admin;area=featuresettings;sa=sig;apply;step=' . $_GET['step'] . ';' . $context['session_var'] . '=' . $context['session_id'];
  1168. $context['page_title'] = $txt['not_done_title'];
  1169. $context['continue_post_data'] = '';
  1170. $context['continue_countdown'] = '2';
  1171. $context['sub_template'] = 'not_done';
  1172. // Specific stuff to not break this template!
  1173. $context[$context['admin_menu_name']]['current_subsection'] = 'sig';
  1174. // Get the right percent.
  1175. $context['continue_percent'] = round(($_GET['step'] / $context['max_member']) * 100);
  1176. // Never more than 100%!
  1177. $context['continue_percent'] = min($context['continue_percent'], 100);
  1178. obExit();
  1179. }
  1180. /**
  1181. * Show all the custom profile fields available to the user.
  1182. */
  1183. function ShowCustomProfiles()
  1184. {
  1185. global $txt, $scripturl, $context, $settings, $sc, $smcFunc;
  1186. global $modSettings, $sourcedir;
  1187. $context['page_title'] = $txt['custom_profile_title'];
  1188. $context['sub_template'] = 'show_custom_profile';
  1189. // What about standard fields they can tweak?
  1190. $standard_fields = array('icq', 'msn', 'aim', 'yim', 'location', 'gender', 'website', 'posts', 'warning_status');
  1191. // What fields can't you put on the registration page?
  1192. $context['fields_no_registration'] = array('posts', 'warning_status');
  1193. // Are we saving any standard field changes?
  1194. if (isset($_POST['save']))
  1195. {
  1196. checkSession();
  1197. validateToken('admin-scp');
  1198. // Do the active ones first.
  1199. $disable_fields = array_flip($standard_fields);
  1200. if (!empty($_POST['active']))
  1201. {
  1202. foreach ($_POST['active'] as $value)
  1203. if (isset($disable_fields[$value]))
  1204. unset($disable_fields[$value]);
  1205. }
  1206. // What we have left!
  1207. $changes['disabled_profile_fields'] = empty($disable_fields) ? '' : implode(',', array_keys($disable_fields));
  1208. // Things we want to show on registration?
  1209. $reg_fields = array();
  1210. if (!empty($_POST['reg']))
  1211. {
  1212. foreach ($_POST['reg'] as $value)
  1213. if (in_array($value, $standard_fields) && !isset($disable_fields[$value]))
  1214. $reg_fields[] = $value;
  1215. }
  1216. // What we have left!
  1217. $changes['registration_fields'] = empty($reg_fields) ? '' : implode(',', $reg_fields);
  1218. if (!empty($changes))
  1219. updateSettings($changes);
  1220. }
  1221. createToken('admin-scp');
  1222. require_once($sourcedir . '/Subs-List.php');
  1223. $listOptions = array(
  1224. 'id' => 'standard_profile_fields',
  1225. 'title' => $txt['standard_profile_title'],
  1226. 'base_href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1227. 'get_items' => array(
  1228. 'function' => 'list_getProfileFields',
  1229. 'params' => array(
  1230. true,
  1231. ),
  1232. ),
  1233. 'columns' => array(
  1234. 'field' => array(
  1235. 'header' => array(
  1236. 'value' => $txt['standard_profile_field'],
  1237. ),
  1238. 'data' => array(
  1239. 'db' => 'label',
  1240. 'style' => 'width: 60%;',
  1241. ),
  1242. ),
  1243. 'active' => array(
  1244. 'header' => array(
  1245. 'value' => $txt['custom_edit_active'],
  1246. 'class' => 'centercol',
  1247. ),
  1248. 'data' => array(
  1249. 'function' => create_function('$rowData', '
  1250. $isChecked = $rowData[\'disabled\'] ? \'\' : \' checked="checked"\';
  1251. $onClickHandler = $rowData[\'can_show_register\'] ? sprintf(\'onclick="document.getElementById(\\\'reg_%1$s\\\').disabled = !this.checked;"\', $rowData[\'id\']) : \'\';
  1252. return sprintf(\'<input type="checkbox" name="active[]" id="active_%1$s" value="%1$s" class="input_check"%2$s%3$s />\', $rowData[\'id\'], $isChecked, $onClickHandler);
  1253. '),
  1254. 'style' => 'width: 20%;',
  1255. 'class' => 'centercol',
  1256. ),
  1257. ),
  1258. 'show_on_registration' => array(
  1259. 'header' => array(
  1260. 'value' => $txt['custom_edit_registration'],
  1261. 'class' => 'centercol',
  1262. ),
  1263. 'data' => array(
  1264. 'function' => create_function('$rowData', '
  1265. $isChecked = $rowData[\'on_register\'] && !$rowData[\'disabled\'] ? \' checked="checked"\' : \'\';
  1266. $isDisabled = $rowData[\'can_show_register\'] ? \'\' : \' disabled="disabled"\';
  1267. return sprintf(\'<input type="checkbox" name="reg[]" id="reg_%1$s" value="%1$s" class="input_check"%2$s%3$s />\', $rowData[\'id\'], $isChecked, $isDisabled);
  1268. '),
  1269. 'style' => 'width: 20%;',
  1270. 'class' => 'centercol',
  1271. ),
  1272. ),
  1273. ),
  1274. 'form' => array(
  1275. 'href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1276. 'name' => 'standardProfileFields',
  1277. 'token' => 'admin-scp',
  1278. ),
  1279. 'additional_rows' => array(
  1280. array(
  1281. 'position' => 'below_table_data',
  1282. 'value' => '<input type="submit" name="save" value="' . $txt['save'] . '" class="button_submit" />',
  1283. ),
  1284. ),
  1285. );
  1286. createList($listOptions);
  1287. $listOptions = array(
  1288. 'id' => 'custom_profile_fields',
  1289. 'title' => $txt['custom_profile_title'],
  1290. 'base_href' => $scripturl . '?action=admin;area=featuresettings;sa=profile',
  1291. 'default_sort_col' => 'field_name',
  1292. 'no_items_label' => $txt['custom_profile_none'],
  1293. 'items_per_page' => 25,
  1294. 'get_items' => array(
  1295. 'function' => 'list_getProfileFields',
  1296. 'params' => array(
  1297. false,
  1298. ),
  1299. ),
  1300. 'get_count' => array(
  1301. 'function' => 'list_getProfileFieldSize',
  1302. ),
  1303. 'columns' => array(
  1304. 'field_name' => array(
  1305. 'header' => array(
  1306. 'value' => $txt['custom_profile_fieldname'],
  1307. ),
  1308. 'data' => array(
  1309. 'function' => create_function('$rowData', '
  1310. global $scripturl;
  1311. return sprintf(\'<a href="%1$s?action=admin;area=featuresettings;sa=profileedit;fid=%2$d">%3$s</a><div class="smalltext">%4$s</div>\', $scripturl, $rowData[\'id_field\'], $rowData[\'field_name\'], $rowData[\'field_desc\']);
  1312. '),
  1313. 'style' => 'width: 62%;',
  1314. ),
  1315. 'sort' => array(
  1316. 'default' => 'field_name',
  1317. 'reverse' => 'field_name DESC',
  1318. ),
  1319. ),
  1320. 'field_type' => array(
  1321. 'header' => array(
  1322. 'value' => $txt['custom_profile_fieldtype'],
  1323. ),
  1324. 'data' => array(
  1325. 'function' => create_function('$rowData', '
  1326. global $txt;
  1327. $textKey = sprintf(\'custom_profile_type_%1$s\', $rowData[\'field_type\']);
  1328. return isset($txt[$textKey]) ? $txt[$textKey] : $textKey;
  1329. '),
  1330. 'style' => 'width: 15%;',
  1331. ),
  1332. 'sort' => array(
  1333. 'default' => 'field_type',
  1334. 'reverse' => 'field_type DESC',
  1335. ),
  1336. ),
  1337. 'active' => array(
  1338. 'header' => array(
  1339. 'value' => $txt['custom_profile_active'],
  1340. ),
  1341. 'data' => array(
  1342. 'function' => create_function('$rowData', '
  1343. global $txt;
  1344. return $rowData[\'active\'] ? $txt[\'yes\'] : $txt[\'no\'];
  1345. '),
  1346. 'style' => 'width: 8%;',
  1347. ),
  1348. 'sort' => array(
  1349. 'default' => 'active DESC',
  1350. 'reverse' => 'active',
  1351. ),
  1352. ),
  1353. 'placement' => array(
  1354. 'header' => array(
  1355. 'value' => $txt['custom_profile_placement'],
  1356. ),
  1357. 'data' => array(
  1358. 'function' => create_function('$rowData', '
  1359. global $txt;
  1360. return $txt[\'custom_profile_placement_\' . (empty($rowData[\'placement\']) ? \'standard\' : ($rowData[\'placement\'] == 1 ? \'withicons\' : \'abovesignature\'))];
  1361. '),
  1362. 'style' => 'width: 8%;',
  1363. ),
  1364. 'sort' => array(
  1365. 'default' => 'placement DESC',
  1366. 'reverse' => 'placement',
  1367. ),
  1368. ),
  1369. 'show_on_registration' => array(
  1370. 'data' => array(
  1371. 'sprintf' => array(
  1372. 'format' => '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=%1$s">' . $txt['modify'] . '</a>',
  1373. 'params' => array(
  1374. 'id_field' => false,
  1375. ),
  1376. ),
  1377. 'style' => 'width: 15%;',
  1378. ),
  1379. ),
  1380. ),
  1381. 'form' => array(
  1382. 'href' => $scripturl . '?action=admin;area=featuresettings;sa=profileedit',
  1383. 'name' => 'customProfileFields',
  1384. ),
  1385. 'additional_rows' => array(
  1386. array(
  1387. 'position' => 'below_table_data',
  1388. 'value' => '<input type="submit" name="new" value="' . $txt['custom_profile_make_new'] . '" class="button_submit" />',
  1389. ),
  1390. ),
  1391. );
  1392. createList($listOptions);
  1393. }
  1394. /**
  1395. * Callback for createList().
  1396. *
  1397. * @param $start
  1398. * @param $items_per_page
  1399. * @param $sort
  1400. * @param $standardFields
  1401. */
  1402. function list_getProfileFields($start, $items_per_page, $sort, $standardFields)
  1403. {
  1404. global $txt, $modSettings, $smcFunc;
  1405. $list = array();
  1406. if ($standardFields)
  1407. {
  1408. $standard_fields = array('icq', 'msn', 'aim', 'yim', 'location', 'gender', 'website', 'posts', 'warning_status');
  1409. $fields_no_registration = array('posts', 'warning_status');
  1410. $disabled_fields = isset($modSettings['disabled_profile_fields']) ? explode(',', $modSettings['disabled_profile_fields']) : array();
  1411. $registration_fields = isset($modSettings['registration_fields']) ? explode(',', $modSettings['registration_fields']) : array();
  1412. foreach ($standard_fields as $field)
  1413. $list[] = array(
  1414. 'id' => $field,
  1415. 'label' => isset($txt['standard_profile_field_' . $field]) ? $txt['standard_profile_field_' . $field] : (isset($txt[$field]) ? $txt[$field] : $field),
  1416. 'disabled' => in_array($field, $disabled_fields),
  1417. 'on_register' => in_array($field, $registration_fields) && !in_array($field, $fields_no_registration),
  1418. 'can_show_register' => !in_array($field, $fields_no_registration),
  1419. );
  1420. }
  1421. else
  1422. {
  1423. // Load all the fields.
  1424. $request = $smcFunc['db_query']('', '
  1425. SELECT id_field, col_name, field_name, field_desc, field_type, active, placement
  1426. FROM {db_prefix}custom_fields
  1427. ORDER BY {raw:sort}
  1428. LIMIT {int:start}, {int:items_per_page}',
  1429. array(
  1430. 'sort' => $sort,
  1431. 'start' => $start,
  1432. 'items_per_page' => $items_per_page,
  1433. )
  1434. );
  1435. while ($row = $smcFunc['db_fetch_assoc']($request))
  1436. $list[] = $row;
  1437. $smcFunc['db_free_result']($request);
  1438. }
  1439. return $list;
  1440. }
  1441. /**
  1442. * Callback for createList().
  1443. */
  1444. function list_getProfileFieldSize()
  1445. {
  1446. global $smcFunc;
  1447. $request = $smcFunc['db_query']('', '
  1448. SELECT COUNT(*)
  1449. FROM {db_prefix}custom_fields',
  1450. array(
  1451. )
  1452. );
  1453. list ($numProfileFields) = $smcFunc['db_fetch_row']($request);
  1454. $smcFunc['db_free_result']($request);
  1455. return $numProfileFields;
  1456. }
  1457. /**
  1458. * Edit some profile fields?
  1459. */
  1460. function EditCustomProfiles()
  1461. {
  1462. global $txt, $scripturl, $context, $settings, $sc, $smcFunc;
  1463. // Sort out the context!
  1464. $context['fid'] = isset($_GET['fid']) ? (int) $_GET['fid'] : 0;
  1465. $context[$context['admin_menu_name']]['current_subsection'] = 'profile';
  1466. $context['page_title'] = $context['fid'] ? $txt['custom_edit_title'] : $txt['custom_add_title'];
  1467. $context['sub_template'] = 'edit_profile_field';
  1468. // Load the profile language for section names.
  1469. loadLanguage('Profile');
  1470. if ($context['fid'])
  1471. {
  1472. $request = $smcFunc['db_query']('', '
  1473. SELECT
  1474. id_field, col_name, field_name, field_desc, field_type, field_length, field_options,
  1475. show_reg, show_display, show_profile, private, active, default_value, can_search,
  1476. bbc, mask, enclose, placement
  1477. FROM {db_prefix}custom_fields
  1478. WHERE id_field = {int:current_field}',
  1479. array(
  1480. 'current_field' => $context['fid'],
  1481. )
  1482. );
  1483. $context['field'] = array();
  1484. while ($row = $smcFunc['db_fetch_assoc']($request))
  1485. {
  1486. if ($row['field_type'] == 'textarea')
  1487. @list ($rows, $cols) = @explode(',', $row['default_value']);
  1488. else
  1489. {
  1490. $rows = 3;
  1491. $cols = 30;
  1492. }
  1493. $context['field'] = array(
  1494. 'name' => $row['field_name'],
  1495. 'desc' => $row['field_desc'],
  1496. 'colname' => $row['col_name'],
  1497. 'profile_area' => $row['show_profile'],
  1498. 'reg' => $row['show_reg'],
  1499. 'display' => $row['show_display'],
  1500. 'type' => $row['field_type'],
  1501. 'max_length' => $row['field_length'],
  1502. 'rows' => $rows,
  1503. 'cols' => $cols,
  1504. 'bbc' => $row['bbc'] ? true : false,
  1505. 'default_check' => $row['field_type'] == 'check' && $row['default_value'] ? true : false,
  1506. 'default_select' => $row['field_type'] == 'select' || $row['field_type'] == 'radio' ? $row['default_value'] : '',
  1507. 'options' => strlen($row['field_options']) > 1 ? explode(',', $row['field_options']) : array('', '', ''),
  1508. 'active' => $row['active'],
  1509. 'private' => $row['private'],
  1510. 'can_search' => $row['can_search'],
  1511. 'mask' => $row['mask'],
  1512. 'regex' => substr($row['mask'], 0, 5) == 'regex' ? substr($row['mask'], 5) : '',
  1513. 'enclose' => $row['enclose'],
  1514. 'placement' => $row['placement'],
  1515. );
  1516. }
  1517. $smcFunc['db_free_result']($request);
  1518. }
  1519. // Setup the default values as needed.
  1520. if (empty($context['field']))
  1521. $context['field'] = array(
  1522. 'name' => '',
  1523. 'colname' => '???',
  1524. 'desc' => '',
  1525. 'profile_area' => 'forumprofile',
  1526. 'reg' => false,
  1527. 'display' => false,
  1528. 'type' => 'text',
  1529. 'max_length' => 255,
  1530. 'rows' => 4,
  1531. 'cols' => 30,
  1532. 'bbc' => false,
  1533. 'default_check' => false,
  1534. 'default_select' => '',
  1535. 'options' => array('', '', ''),
  1536. 'active' => true,
  1537. 'private' => false,
  1538. 'can_search' => false,
  1539. 'mask' => 'nohtml',
  1540. 'regex' => '',
  1541. 'enclose' => '',
  1542. 'placement' => 0,
  1543. );
  1544. // Are we saving?
  1545. if (isset($_POST['save']))
  1546. {
  1547. checkSession();
  1548. validateToken('admin-ecp');
  1549. // Everyone needs a name - even the (bracket) unknown...
  1550. if (trim($_POST['field_name']) == '')
  1551. redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=need_name');
  1552. // Regex you say? Do a very basic test to see if the pattern is valid
  1553. if (!empty($_POST['regex']) && @preg_match($_POST['regex'], 'dummy') === false)
  1554. redirectexit($scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $_GET['fid'] . ';msg=regex_error');
  1555. $_POST['field_name'] = $smcFunc['htmlspecialchars']($_POST['field_name']);
  1556. $_POST['field_desc'] = $smcFunc['htmlspecialchars']($_POST['field_desc']);
  1557. // Checkboxes...
  1558. $show_reg = isset($_POST['reg']) ? (int) $_POST['reg'] : 0;
  1559. $show_display = isset($_POST['display']) ? 1 : 0;
  1560. $bbc = isset($_POST['bbc']) ? 1 : 0;
  1561. $show_profile = $_POST['profile_area'];
  1562. $active = isset($_POST['active']) ? 1 : 0;
  1563. $private = isset($_POST['private']) ? (int) $_POST['private'] : 0;
  1564. $can_search = isset($_POST['can_search']) ? 1 : 0;
  1565. // Some masking stuff...
  1566. $mask = isset($_POST['mask']) ? $_POST['mask'] : '';
  1567. if ($mask == 'regex' && isset($_POST['regex']))
  1568. $mask .= $_POST['regex'];
  1569. $field_length = isset($_POST['max_length']) ? (int) $_POST['max_length'] : 255;
  1570. $enclose = isset($_POST['enclose']) ? $_POST['enclose'] : '';
  1571. $placement = isset($_POST['placement']) ? (int) $_POST['placement'] : 0;
  1572. // Select options?
  1573. $field_options = '';
  1574. $newOptions = array();
  1575. $default = isset($_POST['default_check']) && $_POST['field_type'] == 'check' ? 1 : '';
  1576. if (!empty($_POST['select_option']) && ($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio'))
  1577. {
  1578. foreach ($_POST['select_option'] as $k => $v)
  1579. {
  1580. // Clean, clean, clean...
  1581. $v = $smcFunc['htmlspecialchars']($v);
  1582. $v = strtr($v, array(',' => ''));
  1583. // Nada, zip, etc...
  1584. if (trim($v) == '')
  1585. continue;
  1586. // Otherwise, save it boy.
  1587. $field_options .= $v . ',';
  1588. // This is just for working out what happened with old options...
  1589. $newOptions[$k] = $v;
  1590. // Is it default?
  1591. if (isset($_POST['default_select']) && $_POST['default_select'] == $k)
  1592. $default = $v;
  1593. }
  1594. $field_options = substr($field_options, 0, -1);
  1595. }
  1596. // Text area has default has dimensions
  1597. if ($_POST['field_type'] == 'textarea')
  1598. $default = (int) $_POST['rows'] . ',' . (int) $_POST['cols'];
  1599. // Come up with the unique name?
  1600. if (empty($context['fid']))
  1601. {
  1602. $colname = $smcFunc['substr'](strtr($_POST['field_name'], array(' ' => '')), 0, 6);
  1603. preg_match('~([\w\d_-]+)~', $colname, $matches);
  1604. // If there is nothing to the name, then let's start out own - for foreign languages etc.
  1605. if (isset($matches[1]))
  1606. $colname = $initial_colname = 'cust_' . strtolower($matches[1]);
  1607. else
  1608. $colname = $initial_colname = 'cust_' . mt_rand(1, 999);
  1609. // Make sure this is unique.
  1610. // @todo This may not be the most efficient way to do this.
  1611. $unique = false;
  1612. for ($i = 0; !$unique && $i < 9; $i ++)
  1613. {
  1614. $request = $smcFunc['db_query']('', '
  1615. SELECT id_field
  1616. FROM {db_prefix}custom_fields
  1617. WHERE col_name = {string:current_column}',
  1618. array(
  1619. 'current_column' => $colname,
  1620. )
  1621. );
  1622. if ($smcFunc['db_num_rows']($request) == 0)
  1623. $unique = true;
  1624. else
  1625. $colname = $initial_colname . $i;
  1626. $smcFunc['db_free_result']($request);
  1627. }
  1628. // Still not a unique colum name? Leave it up to the user, then.
  1629. if (!$unique)
  1630. fatal_lang_error('custom_option_not_unique');
  1631. }
  1632. // Work out what to do with the user data otherwise...
  1633. else
  1634. {
  1635. // Anything going to check or select is pointless keeping - as is anything coming from check!
  1636. if (($_POST['field_type'] == 'check' && $context['field']['type'] != 'check')
  1637. || (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && $context['field']['type'] != 'select' && $context['field']['type'] != 'radio')
  1638. || ($context['field']['type'] == 'check' && $_POST['field_type'] != 'check'))
  1639. {
  1640. $smcFunc['db_query']('', '
  1641. DELETE FROM {db_prefix}themes
  1642. WHERE variable = {string:current_column}
  1643. AND id_member > {int:no_member}',
  1644. array(
  1645. 'no_member' => 0,
  1646. 'current_column' => $context['field']['colname'],
  1647. )
  1648. );
  1649. }
  1650. // Otherwise - if the select is edited may need to adjust!
  1651. elseif ($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio')
  1652. {
  1653. $optionChanges = array();
  1654. $takenKeys = array();
  1655. // Work out what's changed!
  1656. foreach ($context['field']['options'] as $k => $option)
  1657. {
  1658. if (trim($option) == '')
  1659. continue;
  1660. // Still exists?
  1661. if (in_array($option, $newOptions))
  1662. {
  1663. $takenKeys[] = $k;
  1664. continue;
  1665. }
  1666. }
  1667. // Finally - have we renamed it - or is it really gone?
  1668. foreach ($optionChanges as $k => $option)
  1669. {
  1670. // Just been renamed?
  1671. if (!in_array($k, $takenKeys) && !empty($newOptions[$k]))
  1672. $smcFunc['db_query']('', '
  1673. UPDATE {db_prefix}themes
  1674. SET value = {string:new_value}
  1675. WHERE variable = {string:current_column}
  1676. AND value = {string:old_value}
  1677. AND id_member > {int:no_member}',
  1678. array(
  1679. 'no_member' => 0,
  1680. 'new_value' => $newOptions[$k],
  1681. 'current_column' => $context['field']['colname'],
  1682. 'old_value' => $option,
  1683. )
  1684. );
  1685. }
  1686. }
  1687. // @todo Maybe we should adjust based on new text length limits?
  1688. }
  1689. // Do the insertion/updates.
  1690. if ($context['fid'])
  1691. {
  1692. $smcFunc['db_query']('', '
  1693. UPDATE {db_prefix}custom_fields
  1694. SET
  1695. field_name = {string:field_name}, field_desc = {string:field_desc},
  1696. field_type = {string:field_type}, field_length = {int:field_length},
  1697. field_options = {string:field_options}, show_reg = {int:show_reg},
  1698. show_display = {int:show_display}, show_profile = {string:show_profile},
  1699. private = {int:private}, active = {int:active}, default_value = {string:default_value},
  1700. can_search = {int:can_search}, bbc = {int:bbc}, mask = {string:mask},
  1701. enclose = {string:enclose}, placement = {int:placement}
  1702. WHERE id_field = {int:current_field}',
  1703. array(
  1704. 'field_length' => $field_length,
  1705. 'show_reg' => $show_reg,
  1706. 'show_display' => $show_display,
  1707. 'private' => $private,
  1708. 'active' => $active,
  1709. 'can_search' => $can_search,
  1710. 'bbc' => $bbc,
  1711. 'current_field' => $context['fid'],
  1712. 'field_name' => $_POST['field_name'],
  1713. 'field_desc' => $_POST['field_desc'],
  1714. 'field_type' => $_POST['field_type'],
  1715. 'field_options' => $field_options,
  1716. 'show_profile' => $show_profile,
  1717. 'default_value' => $default,
  1718. 'mask' => $mask,
  1719. 'enclose' => $enclose,
  1720. 'placement' => $placement,
  1721. )
  1722. );
  1723. // Just clean up any old selects - these are a pain!
  1724. if (($_POST['field_type'] == 'select' || $_POST['field_type'] == 'radio') && !empty($newOptions))
  1725. $smcFunc['db_query']('', '
  1726. DELETE FROM {db_prefix}themes
  1727. WHERE variable = {string:current_column}
  1728. AND value NOT IN ({array_string:new_option_values})
  1729. AND id_member > {int:no_member}',
  1730. array(
  1731. 'no_member' => 0,
  1732. 'new_option_values' => $newOptions,
  1733. 'current_column' => $context['field']['colname'],
  1734. )
  1735. );
  1736. }
  1737. else
  1738. {
  1739. $smcFunc['db_insert']('',
  1740. '{db_prefix}custom_fields',
  1741. array(
  1742. 'col_name' => 'string', 'field_name' => 'string', 'field_desc' => 'string',
  1743. 'field_type' => 'string', 'field_length' => 'string', 'field_options' => 'string',
  1744. 'show_reg' => 'int', 'show_display' => 'int', 'show_profile' => 'string',
  1745. 'private' => 'int', 'active' => 'int', 'default_value' => 'string', 'can_search' => 'int',
  1746. 'bbc' => 'int', 'mask' => 'string', 'enclose' => 'string', 'placement' => 'int',
  1747. ),
  1748. array(
  1749. $colname, $_POST['field_name'], $_POST['field_desc'],
  1750. $_POST['field_type'], $field_length, $field_options,
  1751. $show_reg, $show_display, $show_profile,
  1752. $private, $active, $default, $can_search,
  1753. $bbc, $mask, $enclose, $placement,
  1754. ),
  1755. array('id_field')
  1756. );
  1757. }
  1758. // As there's currently no option to priorize certain fields over others, let's order them alphabetically.
  1759. $smcFunc['db_query']('alter_table_boards', '
  1760. ALTER TABLE {db_prefix}custom_fields
  1761. ORDER BY field_name',
  1762. array(
  1763. 'db_error_skip' => true,
  1764. )
  1765. );
  1766. }
  1767. // Deleting?
  1768. elseif (isset($_POST['delete']) && $context['field']['colname'])
  1769. {
  1770. checkSession();
  1771. validateToken('admin-ecp');
  1772. // Delete the user data first.
  1773. $smcFunc['db_query']('', '
  1774. DELETE FROM {db_prefix}themes
  1775. WHERE variable = {string:current_column}
  1776. AND id_member > {int:no_member}',
  1777. array(
  1778. 'no_member' => 0,
  1779. 'current_column' => $context['field']['colname'],
  1780. )
  1781. );
  1782. // Finally - the field itself is gone!
  1783. $smcFunc['db_query']('', '
  1784. DELETE FROM {db_prefix}custom_fields
  1785. WHERE id_field = {int:current_field}',
  1786. array(
  1787. 'current_field' => $context['fid'],
  1788. )
  1789. );
  1790. }
  1791. // Rebuild display cache etc.
  1792. if (isset($_POST['delete']) || isset($_POST['save']))
  1793. {
  1794. checkSession();
  1795. $request = $smcFunc['db_query']('', '
  1796. SELECT col_name, field_name, field_type, bbc, enclose, placement
  1797. FROM {db_prefix}custom_fields
  1798. WHERE show_display = {int:is_displayed}
  1799. AND active = {int:active}
  1800. AND private != {int:not_owner_only}
  1801. AND private != {int:not_admin_only}',
  1802. array(
  1803. 'is_displayed' => 1,
  1804. 'active' => 1,
  1805. 'not_owner_only' => 2,
  1806. 'not_admin_only' => 3,
  1807. )
  1808. );
  1809. $fields = array();
  1810. while ($row = $smcFunc['db_fetch_assoc']($request))
  1811. {
  1812. $fields[] = array(
  1813. 'colname' => strtr($row['col_name'], array('|' => '', ';' => '')),
  1814. 'title' => strtr($row['field_name'], array('|' => '', ';' => '')),
  1815. 'type' => $row['field_type'],
  1816. 'bbc' => $row['bbc'] ? '1' : '0',
  1817. 'placement' => !empty($row['placement']) ? $row['placement'] : '0',
  1818. 'enclose' => !empty($row['enclose']) ? $row['enclose'] : '',
  1819. );
  1820. }
  1821. $smcFunc['db_free_result']($request);
  1822. updateSettings(array('displayFields' => serialize($fields)));
  1823. redirectexit('action=admin;area=featuresettings;sa=profile');
  1824. }
  1825. createToken('admin-ecp');
  1826. }
  1827. /**
  1828. * Allow to edit the settings on the pruning screen.
  1829. * @param $return_config
  1830. */
  1831. function ModifyPruningSettings($return_config = false)
  1832. {
  1833. global $txt, $scripturl, $sourcedir, $context, $settings, $sc, $modSettings;
  1834. // Make sure we understand what's going on.
  1835. loadLanguage('ManageSettings');
  1836. $context['page_title'] = $txt['pruning_title'];
  1837. $config_vars = array(
  1838. // Even do the pruning?
  1839. // The array indexes are there so we can remove/change them before saving.
  1840. 'pruningOptions' => array('check', 'pruningOptions'),
  1841. '',
  1842. // Various logs that could be pruned.
  1843. array('int', 'pruneErrorLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Error log.
  1844. array('int', 'pruneModLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Moderation log.
  1845. array('int', 'pruneBanLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Ban hit log.
  1846. array('int', 'pruneReportLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Report to moderator log.
  1847. array('int', 'pruneScheduledTaskLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Log of the scheduled tasks and how long they ran.
  1848. array('int', 'pruneSpiderHitLog', 'postinput' => $txt['days_word'], 'subtext' => $txt['zero_to_disable']), // Log of the scheduled tasks and how long they ran.
  1849. // If you add any additional logs make sure to add them after this point. Additionally, make sure you add them to the weekly scheduled task.
  1850. // Mod Developers: Do NOT use the pruningOptions master variable for this as SMF Core may overwrite your setting in the future!
  1851. );
  1852. call_integration_hook('integrate_prune_settings', array($config_vars));
  1853. if ($return_config)
  1854. return $config_vars;
  1855. // We'll need this in a bit.
  1856. require_once($sourcedir . '/ManageServer.php');
  1857. // Saving?
  1858. if (isset($_GET['save']))
  1859. {
  1860. checkSession();
  1861. $savevar = array(
  1862. array('text', 'pruningOptions')
  1863. );
  1864. if (!empty($_POST['pruningOptions']))
  1865. {
  1866. $vals = array();
  1867. foreach ($config_vars as $index => $dummy)
  1868. {
  1869. if (!is_array($dummy) || $index == 'pruningOptions')
  1870. continue;
  1871. $vals[] = empty($_POST[$dummy[1]]) || $_POST[$dummy[1]] < 0 ? 0 : (int) $_POST[$dummy[1]];
  1872. }
  1873. $_POST['pruningOptions'] = implode(',', $vals);
  1874. }
  1875. else
  1876. $_POST['pruningOptions'] = '';
  1877. saveDBSettings($savevar);
  1878. redirectexit('action=admin;area=logs;sa=pruning');
  1879. }
  1880. $context['post_url'] = $scripturl . '?action=admin;area=logs;save;sa=pruning';
  1881. $context['settings_title'] = $txt['pruning_title'];
  1882. $context['sub_template'] = 'show_settings';
  1883. // Get the actual values
  1884. if (!empty($modSettings['pruningOptions']))
  1885. @list ($modSettings['pruneErrorLog'], $modSettings['pruneModLog'], $modSettings['pruneBanLog'], $modSettings['pruneReportLog'], $modSettings['pruneScheduledTaskLog'], $modSettings['pruneSpiderHitLog']) = explode(',', $modSettings['pruningOptions']);
  1886. else
  1887. $modSettings['pruneErrorLog'] = $modSettings['pruneModLog'] = $modSettings['pruneBanLog'] = $modSettings['pruneReportLog'] = $modSettings['pruneScheduledTaskLog'] = $modSettings['pruneSpiderHitLog'] = 0;
  1888. prepareDBSettingContext($config_vars);
  1889. }
  1890. /**
  1891. * If you have a general mod setting to add stick it here.
  1892. *
  1893. * @param $return_config
  1894. */
  1895. function ModifyGeneralModSettings($return_config = false)
  1896. {
  1897. global $txt, $scripturl, $context, $settings, $sc, $modSettings;
  1898. $config_vars = array(
  1899. // Mod authors, add any settings UNDER this line. Include a comma at the end of the line and don't remove this statement!!
  1900. );
  1901. // Make it even easier to add new settings.
  1902. call_integration_hook('integrate_general_mod_settings', array(&$config_vars));
  1903. if ($return_config)
  1904. return $config_vars;
  1905. $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=general';
  1906. $context['settings_title'] = $txt['mods_cat_modifications_misc'];
  1907. // No removing this line you, dirty unwashed mod authors. :p
  1908. if (empty($config_vars))
  1909. {
  1910. $context['settings_save_dont_show'] = true;
  1911. $context['settings_message'] = '<div class="centertext">' . $txt['modification_no_misc_settings'] . '</div>';
  1912. return prepareDBSettingContext($config_vars);
  1913. }
  1914. // Saving?
  1915. if (isset($_GET['save']))
  1916. {
  1917. checkSession();
  1918. $save_vars = $config_vars;
  1919. call_integration_hook('integrate_save_general_mod_settings', array($save_vars));
  1920. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: FOOT TAPPING SUCKS!
  1921. saveDBSettings($save_vars);
  1922. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: I LOVE TEA!
  1923. redirectexit('action=admin;area=modsettings;sa=general');
  1924. }
  1925. // This line is to help mod authors do a search/add after if you want to add something here. Keyword: RED INK IS FOR TEACHERS AND THOSE WHO LIKE PAIN!
  1926. prepareDBSettingContext($config_vars);
  1927. }
  1928. /**
  1929. * Generates a list of integration hooks for display
  1930. * Accessed through ?action=admin;area=modsettings;sa=hooks;
  1931. * Allows for removal or disabing of selected hooks
  1932. */
  1933. function list_integration_hooks()
  1934. {
  1935. global $sourcedir, $scripturl, $context, $txt, $modSettings, $settings;
  1936. $context['filter_url'] = '';
  1937. $context['current_filter'] = '';
  1938. $currentHooks = get_integration_hooks();
  1939. if (isset($_GET['filter']) && in_array($_GET['filter'], array_keys($currentHooks)))
  1940. {
  1941. $context['filter_url'] = ';filter=' . $_GET['filter'];
  1942. $context['current_filter'] = $_GET['filter'];
  1943. }
  1944. if (!empty($modSettings['handlinghooks_enabled']))
  1945. {
  1946. if (!empty($_REQUEST['do']) && isset($_REQUEST['hook']) && isset($_REQUEST['function']))
  1947. {
  1948. checkSession('request');
  1949. validateToken('admin-hook', 'request');
  1950. if ($_REQUEST['do'] == 'remove')
  1951. remove_integration_function($_REQUEST['hook'], urldecode($_REQUEST['function']));
  1952. else
  1953. {
  1954. if ($_REQUEST['do'] == 'disable')
  1955. {
  1956. // It's a hack I know...but I'm way too lazy!!!
  1957. $function_remove = $_REQUEST['function'];
  1958. $function_add = $_REQUEST['function'] . ']';
  1959. }
  1960. else
  1961. {
  1962. $function_remove = $_REQUEST['function'] . ']';
  1963. $function_add = $_REQUEST['function'];
  1964. }
  1965. $file = !empty($_REQUEST['includedfile']) ? urldecode($_REQUEST['includedfile']) : '';
  1966. remove_integration_function($_REQUEST['hook'], $function_remove, $file);
  1967. add_integration_function($_REQUEST['hook'], $function_add, $file);
  1968. redirectexit('action=admin;area=modsettings;sa=hooks' . $context['filter_url']);
  1969. }
  1970. }
  1971. }
  1972. $list_options = array(
  1973. 'id' => 'list_integration_hooks',
  1974. 'title' => $txt['hooks_title_list'],
  1975. 'items_per_page' => 20,
  1976. 'base_href' => $scripturl . '?action=admin;area=modsettings;sa=hooks' . $context['filter_url'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  1977. 'default_sort_col' => 'hook_name',
  1978. 'get_items' => array(
  1979. 'function' => 'get_integration_hooks_data',
  1980. ),
  1981. 'get_count' => array(
  1982. 'function' => 'get_integration_hooks_count',
  1983. ),
  1984. 'no_items_label' => $txt['hooks_no_hooks'],
  1985. 'columns' => array(
  1986. 'hook_name' => array(
  1987. 'header' => array(
  1988. 'value' => $txt['hooks_field_hook_name'],
  1989. ),
  1990. 'data' => array(
  1991. 'db' => 'hook_name',
  1992. ),
  1993. 'sort' => array(
  1994. 'default' => 'hook_name',
  1995. 'reverse' => 'hook_name DESC',
  1996. ),
  1997. ),
  1998. 'function_name' => array(
  1999. 'header' => array(
  2000. 'value' => $txt['hooks_field_function_name'],
  2001. ),
  2002. 'data' => array(
  2003. 'function' => create_function('$data', '
  2004. global $txt;
  2005. if (!empty($data[\'included_file\']))
  2006. return $txt[\'hooks_field_function\'] . \': \' . $data[\'real_function\'] . \'<br />\' . $txt[\'hooks_field_included_file\'] . \': \' . $data[\'included_file\'];
  2007. else
  2008. return $data[\'real_function\'];
  2009. '),
  2010. ),
  2011. 'sort' => array(
  2012. 'default' => 'function_name',
  2013. 'reverse' => 'function_name DESC',
  2014. ),
  2015. ),
  2016. 'file_name' => array(
  2017. 'header' => array(
  2018. 'value' => $txt['hooks_field_file_name'],
  2019. ),
  2020. 'data' => array(
  2021. 'db' => 'file_name',
  2022. ),
  2023. 'sort' => array(
  2024. 'default' => 'file_name',
  2025. 'reverse' => 'file_name DESC',
  2026. ),
  2027. ),
  2028. 'status' => array(
  2029. 'header' => array(
  2030. 'value' => $txt['hooks_field_hook_exists'],
  2031. 'style' => 'width:3%;',
  2032. ),
  2033. 'data' => array(
  2034. 'function' => create_function('$data', '
  2035. global $txt, $settings, $scripturl, $context;
  2036. $change_status = array(\'before\' => \'\', \'after\' => \'\');
  2037. if ($data[\'can_be_disabled\'] && $data[\'status\'] != \'deny\')
  2038. {
  2039. $change_status[\'before\'] = \'<a href="\' . $scripturl . \'?action=admin;area=modsettings;sa=hooks;do=\' . ($data[\'enabled\'] ? \'disable\' : \'enable\') . \';hook=\' . $data[\'hook_name\'] . \';function=\' . $data[\'real_function\'] . (!empty($data[\'included_file\']) ? \';includedfile=\' . urlencode($data[\'included_file\']) : \'\') . $context[\'filter_url\'] . \';\' . $context[\'admin-hook_token_var\'] . \'=\' . $context[\'admin-hook_token\'] . \';\' . $context[\'session_var\'] . \'=\' . $context[\'session_id\'] . \'" onclick="return confirm(\' . javaScriptEscape($txt[\'quickmod_confirm\']) . \');">\';
  2040. $change_status[\'after\'] = \'</a>\';
  2041. }
  2042. return $change_status[\'before\'] . \'<img src="\' . $settings[\'images_url\'] . \'/admin/post_moderation_\' . $data[\'status\'] . \'.png" alt="\' . $data[\'img_text\'] . \'" title="\' . $data[\'img_text\'] . \'" />\' . $change_status[\'after\'];
  2043. '),
  2044. 'class' => 'centertext',
  2045. ),
  2046. 'sort' => array(
  2047. 'default' => 'status',
  2048. 'reverse' => 'status DESC',
  2049. ),
  2050. ),
  2051. ),
  2052. 'additional_rows' => array(
  2053. array(
  2054. 'position' => 'after_title',
  2055. 'value' => $txt['hooks_disable_instructions'] . '<br />
  2056. ' . $txt['hooks_disable_legend'] . ':
  2057. <ul style="list-style: none;">
  2058. <li><img src="' . $settings['images_url'] . '/admin/post_moderation_allow.png" alt="' . $txt['hooks_active'] . '" title="' . $txt['hooks_active'] . '" /> ' . $txt['hooks_disable_legend_exists'] . '</li>
  2059. <li><img src="' . $settings['images_url'] . '/admin/post_moderation_moderate.png" alt="' . $txt['hooks_disabled'] . '" title="' . $txt['hooks_disabled'] . '" /> ' . $txt['hooks_disable_legend_disabled'] . '</li>
  2060. <li><img src="' . $settings['images_url'] . '/admin/post_moderation_deny.png" alt="' . $txt['hooks_missing'] . '" title="' . $txt['hooks_missing'] . '" /> ' . $txt['hooks_disable_legend_missing'] . '</li>
  2061. </ul>'
  2062. ),
  2063. ),
  2064. );
  2065. if (!empty($modSettings['handlinghooks_enabled']))
  2066. {
  2067. createToken('admin-hook', 'request');
  2068. $list_options['columns']['remove'] = array(
  2069. 'header' => array(
  2070. 'value' => $txt['hooks_button_remove'],
  2071. 'style' => 'width:3%',
  2072. ),
  2073. 'data' => array(
  2074. 'function' => create_function('$data', '
  2075. global $txt, $settings, $scripturl, $context;
  2076. if (!$data[\'hook_exists\'])
  2077. return \'
  2078. <a href="\' . $scripturl . \'?action=admin;area=modsettings;sa=hooks;do=remove;hook=\' . $data[\'hook_name\'] . \';function=\' . urlencode($data[\'function_name\']) . $context[\'filter_url\'] . \';\' . $context[\'admin-hook_token_var\'] . \'=\' . $context[\'admin-hook_token\'] . \';\' . $context[\'session_var\'] . \'=\' . $context[\'session_id\'] . \'" onclick="return confirm(\' . javaScriptEscape($txt[\'quickmod_confirm\']) . \');">
  2079. <img src="\' . $settings[\'images_url\'] . \'/icons/quick_remove.png" alt="\' . $txt[\'hooks_button_remove\'] . \'" title="\' . $txt[\'hooks_button_remove\'] . \'" />
  2080. </a>\';
  2081. '),
  2082. 'class' => 'centertext',
  2083. ),
  2084. );
  2085. $list_options['form'] = array(
  2086. 'href' => $scripturl . '?action=admin;area=modsettings;sa=hooks' . $context['filter_url'] . ';' . $context['session_var'] . '=' . $context['session_id'],
  2087. 'name' => 'list_integration_hooks',
  2088. );
  2089. }
  2090. require_once($sourcedir . '/Subs-List.php');
  2091. createList($list_options);
  2092. $context['page_title'] = $txt['hooks_title_list'];
  2093. $context['sub_template'] = 'show_list';
  2094. $context['default_list'] = 'list_integration_hooks';
  2095. }
  2096. /**
  2097. * Gets all of the files in a directory and its chidren directories
  2098. *
  2099. * @param type $dir_path
  2100. * @return array
  2101. */
  2102. function get_files_recursive($dir_path)
  2103. {
  2104. $files = array();
  2105. if ($dh = opendir($dir_path))
  2106. {
  2107. while (($file = readdir($dh)) !== false)
  2108. {
  2109. if ($file != '.' && $file != '..')
  2110. {
  2111. if (is_dir($dir_path . '/' . $file))
  2112. $files = array_merge($files, get_files_recursive($dir_path . '/' . $file));
  2113. else
  2114. $files[] = array('dir' => $dir_path, 'name' => $file);
  2115. }
  2116. }
  2117. }
  2118. closedir($dh);
  2119. return $files;
  2120. }
  2121. /**
  2122. * Callback function for the integration hooks list (list_integration_hooks)
  2123. * Gets all of the hooks in the system and their status
  2124. * Would be better documented if Ema was not lazy
  2125. *
  2126. * @param type $start
  2127. * @param type $per_page
  2128. * @param type $sort
  2129. * @return array
  2130. */
  2131. function get_integration_hooks_data($start, $per_page, $sort)
  2132. {
  2133. global $boarddir, $sourcedir, $settings, $txt, $context, $scripturl, $modSettings;
  2134. $hooks = $temp_hooks = get_integration_hooks();
  2135. $hooks_data = $temp_data = $hook_status = array();
  2136. $files = get_files_recursive($sourcedir);
  2137. if (!empty($files))
  2138. {
  2139. foreach ($files as $file)
  2140. {
  2141. if (is_file($file['dir'] . '/' . $file['name']) && substr($file['name'], -4) === '.php')
  2142. {
  2143. $fp = fopen($file['dir'] . '/' . $file['name'], 'rb');
  2144. $fc = fread($fp, filesize($file['dir'] . '/' . $file['name']));
  2145. fclose($fp);
  2146. foreach ($temp_hooks as $hook => $functions)
  2147. {
  2148. foreach ($functions as $function_o)
  2149. {
  2150. $hook_name = str_replace(']', '', $function_o);
  2151. if (strpos($hook_name, '::') !== false)
  2152. {
  2153. $function = explode('::', $hook_name);
  2154. $function = $function[1];
  2155. }
  2156. else
  2157. $function = $hook_name;
  2158. $function = explode(':', $function);
  2159. $function = $function[0];
  2160. if (substr($hook, -8) === '_include')
  2161. {
  2162. $hook_status[$hook][$function]['exists'] = file_exists(strtr(trim($function), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir'])));
  2163. // I need to know if there is at least one function called in this file.
  2164. $temp_data['include'][basename($function)] = array('hook' => $hook, 'function' => $function);
  2165. unset($temp_hooks[$hook][$function_o]);
  2166. }
  2167. elseif (strpos(str_replace(' (', '(', $fc), 'function ' . trim($function) . '(') !== false)
  2168. {
  2169. $hook_status[$hook][$hook_name]['exists'] = true;
  2170. $hook_status[$hook][$hook_name]['in_file'] = $file['name'];
  2171. // I want to remember all the functions called within this file (to check later if they are enabled or disabled and decide if the integrare_*_include of that file can be disabled too)
  2172. $temp_data['function'][$file['name']][] = $function_o;
  2173. unset($temp_hooks[$hook][$function_o]);
  2174. }
  2175. }
  2176. }
  2177. }
  2178. }
  2179. }
  2180. $sort_types = array(
  2181. 'hook_name' => array('hook', SORT_ASC),
  2182. 'hook_name DESC' => array('hook', SORT_DESC),
  2183. 'function_name' => array('function', SORT_ASC),
  2184. 'function_name DESC' => array('function', SORT_DESC),
  2185. 'file_name' => array('file_name', SORT_ASC),
  2186. 'file_name DESC' => array('file_name', SORT_DESC),
  2187. 'status' => array('status', SORT_ASC),
  2188. 'status DESC' => array('status', SORT_DESC),
  2189. );
  2190. $sort_options = $sort_types[$sort];
  2191. $sort = array();
  2192. $hooks_filters = array();
  2193. foreach ($hooks as $hook => $functions)
  2194. {
  2195. $hooks_filters[] = '<option ' . ($context['current_filter'] == $hook ? 'selected="selected" ' : '') . 'onclick="window.location = \'' . $scripturl . '?action=admin;area=modsettings;sa=hooks;filter=' . $hook . '\';">' . $hook . '</option>';
  2196. foreach ($functions as $function)
  2197. {
  2198. $enabled = strstr($function, ']') === false;
  2199. $function = str_replace(']', '', $function);
  2200. // This is a not an include and the function is included in a certain file (if not it doesn't exists so don't care)
  2201. if (substr($hook, -8) !== '_include' && isset($hook_status[$hook][$function]['in_file']))
  2202. {
  2203. $current_hook = isset($temp_data['include'][$hook_status[$hook][$function]['in_file']]) ? $temp_data['include'][$hook_status[$hook][$function]['in_file']] : '';
  2204. $enabled = false;
  2205. // Checking all the functions within this particular file
  2206. // if any of them is enable then the file *must* be included and the integrate_*_include hook cannot be disabled
  2207. foreach ($temp_data['function'][$hook_status[$hook][$function]['in_file']] as $func)
  2208. $enabled = $enabled || strstr($func, ']') !== false;
  2209. if (!$enabled && !empty($current_hook))
  2210. $hook_status[$current_hook['hook']][$current_hook['function']]['enabled'] = true;
  2211. }
  2212. }
  2213. }
  2214. if (!empty($hooks_filters))
  2215. $context['insert_after_template'] .= '
  2216. <script type="text/javascript"><!-- // --><![CDATA[
  2217. var hook_name_header = document.getElementById(\'header_list_integration_hooks_hook_name\');
  2218. hook_name_header.innerHTML += ' . JavaScriptEscape('<select style="margin-left:15px;"><option>---</option><option onclick="window.location = \'' . $scripturl . '?action=admin;area=modsettings;sa=hooks\';">' . $txt['hooks_reset_filter'] . '</option>' . implode('', $hooks_filters) . '</select>'). ';
  2219. // ]]></script>';
  2220. $temp_data = array();
  2221. $id = 0;
  2222. foreach ($hooks as $hook => $functions)
  2223. {
  2224. if (empty($context['filter']) || (!empty($context['filter']) && $context['filter'] == $hook))
  2225. {
  2226. foreach ($functions as $function)
  2227. {
  2228. $enabled = strstr($function, ']') === false;
  2229. $function = str_replace(']', '', $function);
  2230. $hook_exists = !empty($hook_status[$hook][$function]['exists']);
  2231. $file_name = isset($hook_status[$hook][$function]['in_file']) ? $hook_status[$hook][$function]['in_file'] : ((substr($hook, -8) === '_include') ? 'zzzzzzzzz' : 'zzzzzzzza');
  2232. $sort[] = $$sort_options[0];
  2233. if (strpos($function, '::') !== false)
  2234. {
  2235. $function = explode('::', $function);
  2236. $function = $function[1];
  2237. }
  2238. $exploded = explode(':', $function);
  2239. $temp_data[] = array(
  2240. 'id' => 'hookid_' . $id++,
  2241. 'hook_name' => $hook,
  2242. 'function_name' => $function,
  2243. 'real_function' => $exploded[0],
  2244. 'included_file' => isset($exploded[1]) ? strtr(trim($exploded[1]), array('$boarddir' => $boarddir, '$sourcedir' => $sourcedir, '$themedir' => $settings['theme_dir'])) : '',
  2245. 'file_name' => (isset($hook_status[$hook][$function]['in_file']) ? $hook_status[$hook][$function]['in_file'] : ''),
  2246. 'hook_exists' => $hook_exists,
  2247. 'status' => $hook_exists ? ($enabled ? 'allow' : 'moderate') : 'deny',
  2248. 'img_text' => $txt['hooks_' . ($hook_exists ? ($enabled ? 'active' : 'disabled') : 'missing')],
  2249. 'enabled' => $enabled,
  2250. 'can_be_disabled' => !empty($modSettings['handlinghooks_enabled']) && !isset($hook_status[$hook][$function]['enabled']),
  2251. );
  2252. }
  2253. }
  2254. }
  2255. array_multisort($sort, $sort_options[1], $temp_data);
  2256. $counter = 0;
  2257. $start++;
  2258. foreach ($temp_data as $data)
  2259. {
  2260. if (++$counter < $start)
  2261. continue;
  2262. elseif ($counter == $start + $per_page)
  2263. break;
  2264. $hooks_data[] = $data;
  2265. }
  2266. return $hooks_data;
  2267. }
  2268. /**
  2269. * Simply returns the total count of integraion hooks
  2270. * Used but the intergation hooks list function (list_integration_hooks)
  2271. *
  2272. * @global type $context
  2273. * @return int
  2274. */
  2275. function get_integration_hooks_count()
  2276. {
  2277. global $context;
  2278. $hooks = get_integration_hooks();
  2279. $hooks_count = 0;
  2280. $context['filter'] = false;
  2281. if (isset($_GET['filter']))
  2282. $context['filter'] = $_GET['filter'];
  2283. foreach ($hooks as $hook => $functions)
  2284. {
  2285. if (empty($context['filter']) || (!empty($context['filter']) && $context['filter'] == $hook))
  2286. $hooks_count += count($functions);
  2287. }
  2288. return $hooks_count;
  2289. }
  2290. /**
  2291. * Parses modSettings to create integration hook array
  2292. *
  2293. * @staticvar type $integration_hooks
  2294. * @return type
  2295. */
  2296. function get_integration_hooks()
  2297. {
  2298. global $modSettings;
  2299. static $integration_hooks;
  2300. if (!isset($integration_hooks))
  2301. {
  2302. $integration_hooks = array();
  2303. foreach ($modSettings as $key => $value)
  2304. {
  2305. if (!empty($value) && substr($key, 0, 10) === 'integrate_')
  2306. $integration_hooks[$key] = explode(',', $value);
  2307. }
  2308. }
  2309. return $integration_hooks;
  2310. }
  2311. ?>