Subs-Admin.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. <?php
  2. /**
  3. * This file contains functions that are specifically done by administrators.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.1 Alpha 1
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * Get a list of versions that are currently installed on the server.
  18. * @param array $checkFor
  19. */
  20. function getServerVersions($checkFor)
  21. {
  22. global $txt, $db_connection, $_PHPA, $smcFunc, $memcached, $modSettings;
  23. loadLanguage('Admin');
  24. $versions = array();
  25. // Is GD available? If it is, we should show version information for it too.
  26. if (in_array('gd', $checkFor) && function_exists('gd_info'))
  27. {
  28. $temp = gd_info();
  29. $versions['gd'] = array('title' => $txt['support_versions_gd'], 'version' => $temp['GD Version']);
  30. }
  31. // Now lets check for the Database.
  32. if (in_array('db_server', $checkFor))
  33. {
  34. db_extend();
  35. if (!isset($db_connection) || $db_connection === false)
  36. trigger_error('getServerVersions(): you need to be connected to the database in order to get its server version', E_USER_NOTICE);
  37. else
  38. {
  39. $versions['db_server'] = array('title' => sprintf($txt['support_versions_db'], $smcFunc['db_title']), 'version' => '');
  40. $versions['db_server']['version'] = $smcFunc['db_get_version']();
  41. }
  42. }
  43. // If we're using memcache we need the server info.
  44. if (empty($memcached) && function_exists('memcache_get') && isset($modSettings['cache_memcached']) && trim($modSettings['cache_memcached']) != '')
  45. get_memcached_server();
  46. // Check to see if we have any accelerators installed...
  47. if (in_array('mmcache', $checkFor) && defined('MMCACHE_VERSION'))
  48. $versions['mmcache'] = array('title' => 'Turck MMCache', 'version' => MMCACHE_VERSION);
  49. if (in_array('eaccelerator', $checkFor) && defined('EACCELERATOR_VERSION'))
  50. $versions['eaccelerator'] = array('title' => 'eAccelerator', 'version' => EACCELERATOR_VERSION);
  51. if (in_array('phpa', $checkFor) && isset($_PHPA))
  52. $versions['phpa'] = array('title' => 'ionCube PHP-Accelerator', 'version' => $_PHPA['VERSION']);
  53. if (in_array('apc', $checkFor) && extension_loaded('apc'))
  54. $versions['apc'] = array('title' => 'Alternative PHP Cache', 'version' => phpversion('apc'));
  55. if (in_array('memcache', $checkFor) && function_exists('memcache_set'))
  56. $versions['memcache'] = array('title' => 'Memcached', 'version' => empty($memcached) ? '???' : memcache_get_version($memcached));
  57. if (in_array('xcache', $checkFor) && function_exists('xcache_set'))
  58. $versions['xcache'] = array('title' => 'XCache', 'version' => XCACHE_VERSION);
  59. if (in_array('php', $checkFor))
  60. $versions['php'] = array('title' => 'PHP', 'version' => PHP_VERSION, 'more' => '?action=admin;area=serversettings;sa=phpinfo');
  61. if (in_array('server', $checkFor))
  62. $versions['server'] = array('title' => $txt['support_versions_server'], 'version' => $_SERVER['SERVER_SOFTWARE']);
  63. return $versions;
  64. }
  65. /**
  66. * Search through source, theme and language files to determine their version.
  67. * Get detailed version information about the physical SMF files on the server.
  68. *
  69. * - the input parameter allows to set whether to include SSI.php and whether
  70. * the results should be sorted.
  71. * - returns an array containing information on source files, templates and
  72. * language files found in the default theme directory (grouped by language).
  73. *
  74. * @param array &$versionOptions
  75. */
  76. function getFileVersions(&$versionOptions)
  77. {
  78. global $boarddir, $sourcedir, $settings;
  79. // Default place to find the languages would be the default theme dir.
  80. $lang_dir = $settings['default_theme_dir'] . '/languages';
  81. $version_info = array(
  82. 'file_versions' => array(),
  83. 'default_template_versions' => array(),
  84. 'template_versions' => array(),
  85. 'default_language_versions' => array(),
  86. );
  87. // Find the version in SSI.php's file header.
  88. if (!empty($versionOptions['include_ssi']) && file_exists($boarddir . '/SSI.php'))
  89. {
  90. $fp = fopen($boarddir . '/SSI.php', 'rb');
  91. $header = fread($fp, 4096);
  92. fclose($fp);
  93. // The comment looks rougly like... that.
  94. if (preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $header, $match) == 1)
  95. $version_info['file_versions']['SSI.php'] = $match[1];
  96. // Not found! This is bad.
  97. else
  98. $version_info['file_versions']['SSI.php'] = '??';
  99. }
  100. // Do the paid subscriptions handler?
  101. if (!empty($versionOptions['include_subscriptions']) && file_exists($boarddir . '/subscriptions.php'))
  102. {
  103. $fp = fopen($boarddir . '/subscriptions.php', 'rb');
  104. $header = fread($fp, 4096);
  105. fclose($fp);
  106. // Found it?
  107. if (preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $header, $match) == 1)
  108. $version_info['file_versions']['subscriptions.php'] = $match[1];
  109. // If we haven't how do we all get paid?
  110. else
  111. $version_info['file_versions']['subscriptions.php'] = '??';
  112. }
  113. // Load all the files in the Sources directory, except this file and the redirect.
  114. $sources_dir = dir($sourcedir);
  115. while ($entry = $sources_dir->read())
  116. {
  117. if (substr($entry, -4) === '.php' && !is_dir($sourcedir . '/' . $entry) && $entry !== 'index.php')
  118. {
  119. // Read the first 4k from the file.... enough for the header.
  120. $fp = fopen($sourcedir . '/' . $entry, 'rb');
  121. $header = fread($fp, 4096);
  122. fclose($fp);
  123. // Look for the version comment in the file header.
  124. if (preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $header, $match) == 1)
  125. $version_info['file_versions'][$entry] = $match[1];
  126. // It wasn't found, but the file was... show a '??'.
  127. else
  128. $version_info['file_versions'][$entry] = '??';
  129. }
  130. }
  131. $sources_dir->close();
  132. // Load all the files in the default template directory - and the current theme if applicable.
  133. $directories = array('default_template_versions' => $settings['default_theme_dir']);
  134. if ($settings['theme_id'] != 1)
  135. $directories += array('template_versions' => $settings['theme_dir']);
  136. foreach ($directories as $type => $dirname)
  137. {
  138. $this_dir = dir($dirname);
  139. while ($entry = $this_dir->read())
  140. {
  141. if (substr($entry, -12) == 'template.php' && !is_dir($dirname . '/' . $entry))
  142. {
  143. // Read the first 768 bytes from the file.... enough for the header.
  144. $fp = fopen($dirname . '/' . $entry, 'rb');
  145. $header = fread($fp, 768);
  146. fclose($fp);
  147. // Look for the version comment in the file header.
  148. if (preg_match('~\*\s@version\s+(.+)[\s]{2}~i', $header, $match) == 1)
  149. $version_info[$type][$entry] = $match[1];
  150. // It wasn't found, but the file was... show a '??'.
  151. else
  152. $version_info[$type][$entry] = '??';
  153. }
  154. }
  155. $this_dir->close();
  156. }
  157. // Load up all the files in the default language directory and sort by language.
  158. $this_dir = dir($lang_dir);
  159. while ($entry = $this_dir->read())
  160. {
  161. if (substr($entry, -4) == '.php' && $entry != 'index.php' && !is_dir($lang_dir . '/' . $entry))
  162. {
  163. // Read the first 768 bytes from the file.... enough for the header.
  164. $fp = fopen($lang_dir . '/' . $entry, 'rb');
  165. $header = fread($fp, 768);
  166. fclose($fp);
  167. // Split the file name off into useful bits.
  168. list ($name, $language) = explode('.', $entry);
  169. // Look for the version comment in the file header.
  170. if (preg_match('~(?://|/\*)\s*Version:\s+(.+?);\s*' . preg_quote($name, '~') . '(?:[\s]{2}|\*/)~i', $header, $match) == 1)
  171. $version_info['default_language_versions'][$language][$name] = $match[1];
  172. // It wasn't found, but the file was... show a '??'.
  173. else
  174. $version_info['default_language_versions'][$language][$name] = '??';
  175. }
  176. }
  177. $this_dir->close();
  178. // Sort the file versions by filename.
  179. if (!empty($versionOptions['sort_results']))
  180. {
  181. ksort($version_info['file_versions']);
  182. ksort($version_info['default_template_versions']);
  183. ksort($version_info['template_versions']);
  184. ksort($version_info['default_language_versions']);
  185. // For languages sort each language too.
  186. foreach ($version_info['default_language_versions'] as $language => $dummy)
  187. ksort($version_info['default_language_versions'][$language]);
  188. }
  189. return $version_info;
  190. }
  191. /**
  192. * Update the Settings.php file.
  193. *
  194. * The most important function in this file for mod makers happens to be the
  195. * updateSettingsFile() function, but it shouldn't be used often anyway.
  196. *
  197. * - updates the Settings.php file with the changes supplied in config_vars.
  198. * - expects config_vars to be an associative array, with the keys as the
  199. * variable names in Settings.php, and the values the variable values.
  200. * - does not escape or quote values.
  201. * - preserves case, formatting, and additional options in file.
  202. * - writes nothing if the resulting file would be less than 10 lines
  203. * in length (sanity check for read lock.)
  204. * - check for changes to db_last_error and passes those off to a separate handler
  205. * - attempts to create a backup file and will use it should the writing of the
  206. * new settings file fail
  207. *
  208. * @param array $config_vars
  209. */
  210. function updateSettingsFile($config_vars)
  211. {
  212. global $boarddir, $cachedir, $context;
  213. // Updating the db_last_error, then don't mess around with Settings.php
  214. if (count($config_vars) === 1 && isset($config_vars['db_last_error']))
  215. {
  216. updateDbLastError($config_vars['db_last_error']);
  217. return;
  218. }
  219. // When was Settings.php last changed?
  220. $last_settings_change = filemtime($boarddir . '/Settings.php');
  221. // Load the settings file.
  222. $settingsArray = trim(file_get_contents($boarddir . '/Settings.php'));
  223. // Break it up based on \r or \n, and then clean out extra characters.
  224. if (strpos($settingsArray, "\n") !== false)
  225. $settingsArray = explode("\n", $settingsArray);
  226. elseif (strpos($settingsArray, "\r") !== false)
  227. $settingsArray = explode("\r", $settingsArray);
  228. else
  229. return;
  230. // Presumably, the file has to have stuff in it for this function to be called :P.
  231. if (count($settingsArray) < 10)
  232. return;
  233. // remove any /r's that made there way in here
  234. foreach ($settingsArray as $k => $dummy)
  235. $settingsArray[$k] = strtr($dummy, array("\r" => '')) . "\n";
  236. // go line by line and see whats changing
  237. for ($i = 0, $n = count($settingsArray); $i < $n; $i++)
  238. {
  239. // Don't trim or bother with it if it's not a variable.
  240. if (substr($settingsArray[$i], 0, 1) != '$')
  241. continue;
  242. $settingsArray[$i] = trim($settingsArray[$i]) . "\n";
  243. // Look through the variables to set....
  244. foreach ($config_vars as $var => $val)
  245. {
  246. // be sure someone is not updating db_last_error this with a group
  247. if ($var === 'db_last_error')
  248. {
  249. updateDbLastError($val);
  250. unset($config_vars[$var]);
  251. }
  252. elseif (strncasecmp($settingsArray[$i], '$' . $var, 1 + strlen($var)) == 0)
  253. {
  254. $comment = strstr(substr($settingsArray[$i], strpos($settingsArray[$i], ';')), '#');
  255. $settingsArray[$i] = '$' . $var . ' = ' . $val . ';' . ($comment == '' ? '' : "\t\t" . rtrim($comment)) . "\n";
  256. // This one's been 'used', so to speak.
  257. unset($config_vars[$var]);
  258. }
  259. }
  260. // End of the file ... maybe
  261. if (substr(trim($settingsArray[$i]), 0, 2) == '?' . '>')
  262. $end = $i;
  263. }
  264. // This should never happen, but apparently it is happening.
  265. if (empty($end) || $end < 10)
  266. $end = count($settingsArray) - 1;
  267. // Still more variables to go? Then lets add them at the end.
  268. if (!empty($config_vars))
  269. {
  270. if (trim($settingsArray[$end]) == '?' . '>')
  271. $settingsArray[$end++] = '';
  272. else
  273. $end++;
  274. // Add in any newly defined vars that were passed
  275. foreach ($config_vars as $var => $val)
  276. $settingsArray[$end++] = '$' . $var . ' = ' . $val . ';' . "\n";
  277. $settingsArray[$end] = '?' . '>';
  278. }
  279. else
  280. $settingsArray[$end] = trim($settingsArray[$end]);
  281. // Sanity error checking: the file needs to be at least 12 lines.
  282. if (count($settingsArray) < 12)
  283. return;
  284. // Try to avoid a few pitfalls:
  285. // - like a possible race condition,
  286. // - or a failure to write at low diskspace
  287. //
  288. // Check before you act: if cache is enabled, we can do a simple write test
  289. // to validate that we even write things on this filesystem.
  290. if ((empty($cachedir) || !file_exists($cachedir)) && file_exists($boarddir . '/cache'))
  291. $cachedir = $boarddir . '/cache';
  292. $test_fp = @fopen($cachedir . '/settings_update.tmp', "w+");
  293. if ($test_fp)
  294. {
  295. fclose($test_fp);
  296. $written_bytes = file_put_contents($cachedir . '/settings_update.tmp', 'test', LOCK_EX);
  297. @unlink($cachedir . '/settings_update.tmp');
  298. if ($written_bytes !== 4)
  299. {
  300. // Oops. Low disk space, perhaps. Don't mess with Settings.php then.
  301. // No means no. :P
  302. return;
  303. }
  304. }
  305. // Protect me from what I want! :P
  306. clearstatcache();
  307. if (filemtime($boarddir . '/Settings.php') === $last_settings_change)
  308. {
  309. // save the old before we do anything
  310. $settings_backup_fail = !@is_writable($boarddir . '/Settings_bak.php') || !@copy($boarddir . '/Settings.php', $boarddir . '/Settings_bak.php');
  311. // write out the new
  312. $write_settings = implode('', $settingsArray);
  313. $written_bytes = file_put_contents($boarddir . '/Settings.php', $write_settings, LOCK_EX);
  314. // survey says ...
  315. if ($written_bytes !== strlen($write_settings) && !$settings_backup_fail)
  316. {
  317. // Well this is not good at all, lets see if we can save this
  318. $context['settings_message'] = 'settings_error';
  319. if (file_exists($boarddir . '/Settings_bak.php'))
  320. @copy($boarddir . '/Settings_bak.php', $boarddir . '/Settings.php');
  321. }
  322. }
  323. }
  324. /**
  325. * Saves the time of the last db error for the error log
  326. * - Done separately from updateSettingsFile to avoid race conditions
  327. * which can occur during a db error
  328. * - If it fails Settings.php will assume 0
  329. */
  330. function updateDbLastError($time)
  331. {
  332. global $boarddir;
  333. // Write out the db_last_error file with the error timestamp
  334. file_put_contents($boarddir . '/db_last_error.php', '<' . '?' . "php\n" . '$db_last_error = ' . $time . ';' . "\n" . '?' . '>', LOCK_EX);
  335. @touch($boarddir . '/' . 'Settings.php');
  336. }
  337. /**
  338. * Saves the admins current preferences to the database.
  339. */
  340. function updateAdminPreferences()
  341. {
  342. global $options, $context, $smcFunc, $settings, $user_info;
  343. // This must exist!
  344. if (!isset($context['admin_preferences']))
  345. return false;
  346. // This is what we'll be saving.
  347. $options['admin_preferences'] = serialize($context['admin_preferences']);
  348. // Just check we haven't ended up with something theme exclusive somehow.
  349. $smcFunc['db_query']('', '
  350. DELETE FROM {db_prefix}themes
  351. WHERE id_theme != {int:default_theme}
  352. AND variable = {string:admin_preferences}',
  353. array(
  354. 'default_theme' => 1,
  355. 'admin_preferences' => 'admin_preferences',
  356. )
  357. );
  358. // Update the themes table.
  359. $smcFunc['db_insert']('replace',
  360. '{db_prefix}themes',
  361. array('id_member' => 'int', 'id_theme' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'),
  362. array($user_info['id'], 1, 'admin_preferences', $options['admin_preferences']),
  363. array('id_member', 'id_theme', 'variable')
  364. );
  365. // Make sure we invalidate any cache.
  366. cache_put_data('theme_settings-' . $settings['theme_id'] . ':' . $user_info['id'], null, 0);
  367. }
  368. /**
  369. * Send all the administrators a lovely email.
  370. * - loads all users who are admins or have the admin forum permission.
  371. * - uses the email template and replacements passed in the parameters.
  372. * - sends them an email.
  373. */
  374. function emailAdmins($template, $replacements = array(), $additional_recipients = array())
  375. {
  376. global $smcFunc, $sourcedir, $language, $modSettings;
  377. // We certainly want this.
  378. require_once($sourcedir . '/Subs-Post.php');
  379. // Load all groups which are effectively admins.
  380. $request = $smcFunc['db_query']('', '
  381. SELECT id_group
  382. FROM {db_prefix}permissions
  383. WHERE permission = {string:admin_forum}
  384. AND add_deny = {int:add_deny}
  385. AND id_group != {int:id_group}',
  386. array(
  387. 'add_deny' => 1,
  388. 'id_group' => 0,
  389. 'admin_forum' => 'admin_forum',
  390. )
  391. );
  392. $groups = array(1);
  393. while ($row = $smcFunc['db_fetch_assoc']($request))
  394. $groups[] = $row['id_group'];
  395. $smcFunc['db_free_result']($request);
  396. $request = $smcFunc['db_query']('', '
  397. SELECT id_member, member_name, real_name, lngfile, email_address
  398. FROM {db_prefix}members
  399. WHERE (id_group IN ({array_int:group_list}) OR FIND_IN_SET({raw:group_array_implode}, additional_groups) != 0)
  400. AND notify_types != {int:notify_types}
  401. ORDER BY lngfile',
  402. array(
  403. 'group_list' => $groups,
  404. 'notify_types' => 4,
  405. 'group_array_implode' => implode(', additional_groups) != 0 OR FIND_IN_SET(', $groups),
  406. )
  407. );
  408. $emails_sent = array();
  409. while ($row = $smcFunc['db_fetch_assoc']($request))
  410. {
  411. // Stick their particulars in the replacement data.
  412. $replacements['IDMEMBER'] = $row['id_member'];
  413. $replacements['REALNAME'] = $row['member_name'];
  414. $replacements['USERNAME'] = $row['real_name'];
  415. // Load the data from the template.
  416. $emaildata = loadEmailTemplate($template, $replacements, empty($row['lngfile']) || empty($modSettings['userLanguage']) ? $language : $row['lngfile']);
  417. // Then send the actual email.
  418. sendmail($row['email_address'], $emaildata['subject'], $emaildata['body'], null, null, false, 1);
  419. // Track who we emailed so we don't do it twice.
  420. $emails_sent[] = $row['email_address'];
  421. }
  422. $smcFunc['db_free_result']($request);
  423. // Any additional users we must email this to?
  424. if (!empty($additional_recipients))
  425. foreach ($additional_recipients as $recipient)
  426. {
  427. if (in_array($recipient['email'], $emails_sent))
  428. continue;
  429. $replacements['IDMEMBER'] = $recipient['id'];
  430. $replacements['REALNAME'] = $recipient['name'];
  431. $replacements['USERNAME'] = $recipient['name'];
  432. // Load the template again.
  433. $emaildata = loadEmailTemplate($template, $replacements, empty($recipient['lang']) || empty($modSettings['userLanguage']) ? $language : $recipient['lang']);
  434. // Send off the email.
  435. sendmail($recipient['email'], $emaildata['subject'], $emaildata['body'], null, null, false, 1);
  436. }
  437. }
  438. ?>