PageRenderTime 48ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/Sources/Logging.php

https://github.com/smf-portal/SMF2.1
PHP | 531 lines | 370 code | 73 blank | 88 comment | 90 complexity | 3588645ac1686da9b806b6fe4a09840f MD5 | raw file
  1. <?php
  2. /**
  3. * This file concerns itself with logging, whether in the database or files.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2012 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. * Put this user in the online log.
  18. *
  19. * @param bool $force = false
  20. */
  21. function writeLog($force = false)
  22. {
  23. global $user_info, $user_settings, $context, $modSettings, $settings, $topic, $board, $smcFunc, $sourcedir;
  24. // If we are showing who is viewing a topic, let's see if we are, and force an update if so - to make it accurate.
  25. if (!empty($settings['display_who_viewing']) && ($topic || $board))
  26. {
  27. // Take the opposite approach!
  28. $force = true;
  29. // Don't update for every page - this isn't wholly accurate but who cares.
  30. if ($topic)
  31. {
  32. if (isset($_SESSION['last_topic_id']) && $_SESSION['last_topic_id'] == $topic)
  33. $force = false;
  34. $_SESSION['last_topic_id'] = $topic;
  35. }
  36. }
  37. // Are they a spider we should be tracking? Mode = 1 gets tracked on its spider check...
  38. if (!empty($user_info['possibly_robot']) && !empty($modSettings['spider_mode']) && $modSettings['spider_mode'] > 1)
  39. {
  40. require_once($sourcedir . '/ManageSearchEngines.php');
  41. logSpider();
  42. }
  43. // Don't mark them as online more than every so often.
  44. if (!empty($_SESSION['log_time']) && $_SESSION['log_time'] >= (time() - 8) && !$force)
  45. return;
  46. if (!empty($modSettings['who_enabled']))
  47. {
  48. $serialized = $_GET + array('USER_AGENT' => $_SERVER['HTTP_USER_AGENT']);
  49. // In the case of a dlattach action, session_var may not be set.
  50. if (!isset($context['session_var']))
  51. $context['session_var'] = $_SESSION['session_var'];
  52. unset($serialized['sesc'], $serialized[$context['session_var']]);
  53. $serialized = serialize($serialized);
  54. }
  55. else
  56. $serialized = '';
  57. // Guests use 0, members use their session ID.
  58. $session_id = $user_info['is_guest'] ? 'ip' . $user_info['ip'] : session_id();
  59. // Grab the last all-of-SMF-specific log_online deletion time.
  60. $do_delete = cache_get_data('log_online-update', 30) < time() - 30;
  61. // If the last click wasn't a long time ago, and there was a last click...
  62. if (!empty($_SESSION['log_time']) && $_SESSION['log_time'] >= time() - $modSettings['lastActive'] * 20)
  63. {
  64. if ($do_delete)
  65. {
  66. $smcFunc['db_query']('delete_log_online_interval', '
  67. DELETE FROM {db_prefix}log_online
  68. WHERE log_time < {int:log_time}
  69. AND session != {string:session}',
  70. array(
  71. 'log_time' => time() - $modSettings['lastActive'] * 60,
  72. 'session' => $session_id,
  73. )
  74. );
  75. // Cache when we did it last.
  76. cache_put_data('log_online-update', time(), 30);
  77. }
  78. $smcFunc['db_query']('', '
  79. UPDATE {db_prefix}log_online
  80. SET log_time = {int:log_time}, ip = IFNULL(INET_ATON({string:ip}), 0), url = {string:url}
  81. WHERE session = {string:session}',
  82. array(
  83. 'log_time' => time(),
  84. 'ip' => $user_info['ip'],
  85. 'url' => $serialized,
  86. 'session' => $session_id,
  87. )
  88. );
  89. // Guess it got deleted.
  90. if ($smcFunc['db_affected_rows']() == 0)
  91. $_SESSION['log_time'] = 0;
  92. }
  93. else
  94. $_SESSION['log_time'] = 0;
  95. // Otherwise, we have to delete and insert.
  96. if (empty($_SESSION['log_time']))
  97. {
  98. if ($do_delete || !empty($user_info['id']))
  99. $smcFunc['db_query']('', '
  100. DELETE FROM {db_prefix}log_online
  101. WHERE ' . ($do_delete ? 'log_time < {int:log_time}' : '') . ($do_delete && !empty($user_info['id']) ? ' OR ' : '') . (empty($user_info['id']) ? '' : 'id_member = {int:current_member}'),
  102. array(
  103. 'current_member' => $user_info['id'],
  104. 'log_time' => time() - $modSettings['lastActive'] * 60,
  105. )
  106. );
  107. $smcFunc['db_insert']($do_delete ? 'ignore' : 'replace',
  108. '{db_prefix}log_online',
  109. array('session' => 'string', 'id_member' => 'int', 'id_spider' => 'int', 'log_time' => 'int', 'ip' => 'raw', 'url' => 'string'),
  110. array($session_id, $user_info['id'], empty($_SESSION['id_robot']) ? 0 : $_SESSION['id_robot'], time(), 'IFNULL(INET_ATON(\'' . $user_info['ip'] . '\'), 0)', $serialized),
  111. array('session')
  112. );
  113. }
  114. // Mark your session as being logged.
  115. $_SESSION['log_time'] = time();
  116. // Well, they are online now.
  117. if (empty($_SESSION['timeOnlineUpdated']))
  118. $_SESSION['timeOnlineUpdated'] = time();
  119. // Set their login time, if not already done within the last minute.
  120. if (SMF != 'SSI' && !empty($user_info['last_login']) && $user_info['last_login'] < time() - 60)
  121. {
  122. // Don't count longer than 15 minutes.
  123. if (time() - $_SESSION['timeOnlineUpdated'] > 60 * 15)
  124. $_SESSION['timeOnlineUpdated'] = time();
  125. $user_settings['total_time_logged_in'] += time() - $_SESSION['timeOnlineUpdated'];
  126. updateMemberData($user_info['id'], array('last_login' => time(), 'member_ip' => $user_info['ip'], 'member_ip2' => $_SERVER['BAN_CHECK_IP'], 'total_time_logged_in' => $user_settings['total_time_logged_in']));
  127. if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)
  128. cache_put_data('user_settings-' . $user_info['id'], $user_settings, 60);
  129. $user_info['total_time_logged_in'] += time() - $_SESSION['timeOnlineUpdated'];
  130. $_SESSION['timeOnlineUpdated'] = time();
  131. }
  132. }
  133. /**
  134. * Logs the last database error into a file.
  135. * Attempts to use the backup file first, to store the last database error
  136. * and only update db_last_error.php if the first was successful.
  137. */
  138. function logLastDatabaseError()
  139. {
  140. global $boarddir;
  141. // Make a note of the last modified time in case someone does this before us
  142. $last_db_error_change = @filemtime($boarddir . '/db_last_error.php');
  143. // save the old file before we do anything
  144. $file = $boarddir . '/db_last_error.php';
  145. $dberror_backup_fail = !@is_writable($boarddir . '/db_last_error_bak.php') || !@copy($file, $boarddir . '/db_last_error_bak.php');
  146. $dberror_backup_fail = !$dberror_backup_fail ? (!file_exists($boarddir . '/db_last_error_bak.php') || filesize($boarddir . '/db_last_error_bak.php') === 0) : $dberror_backup_fail;
  147. clearstatcache();
  148. if (filemtime($boarddir . '/db_last_error.php') === $last_db_error_change)
  149. {
  150. // Write the change
  151. $write_db_change = '<' . '?' . "php\n" . '$db_last_error = ' . time() . ';' . "\n" . '?' . '>';
  152. $written_bytes = file_put_contents($boarddir . '/db_last_error.php', $write_db_change, LOCK_EX);
  153. // survey says ...
  154. if ($written_bytes !== strlen($write_db_change) && !$dberror_backup_fail)
  155. {
  156. // Oops. maybe we have no more disk space left, or some other troubles, troubles...
  157. // Copy the file back and run for your life!
  158. @copy($boarddir . '/db_last_error_bak.php', $boarddir . '/db_last_error.php');
  159. }
  160. else
  161. {
  162. @touch($boarddir . '/' . 'Settings.php');
  163. return true;
  164. }
  165. }
  166. return false;
  167. }
  168. /**
  169. * This function shows the debug information tracked when $db_show_debug = true
  170. * in Settings.php
  171. */
  172. function displayDebug()
  173. {
  174. global $context, $scripturl, $boarddir, $modSettings, $boarddir;
  175. global $db_cache, $db_count, $db_show_debug, $cache_count, $cache_hits, $txt;
  176. // Add to Settings.php if you want to show the debugging information.
  177. if (!isset($db_show_debug) || $db_show_debug !== true || (isset($_GET['action']) && $_GET['action'] == 'viewquery') || WIRELESS)
  178. return;
  179. if (empty($_SESSION['view_queries']))
  180. $_SESSION['view_queries'] = 0;
  181. if (empty($context['debug']['language_files']))
  182. $context['debug']['language_files'] = array();
  183. if (empty($context['debug']['sheets']))
  184. $context['debug']['sheets'] = array();
  185. $files = get_included_files();
  186. $total_size = 0;
  187. for ($i = 0, $n = count($files); $i < $n; $i++)
  188. {
  189. if (file_exists($files[$i]))
  190. $total_size += filesize($files[$i]);
  191. $files[$i] = strtr($files[$i], array($boarddir => '.'));
  192. }
  193. $warnings = 0;
  194. if (!empty($db_cache))
  195. {
  196. foreach ($db_cache as $q => $qq)
  197. {
  198. if (!empty($qq['w']))
  199. $warnings += count($qq['w']);
  200. }
  201. $_SESSION['debug'] = &$db_cache;
  202. }
  203. // Gotta have valid HTML ;).
  204. $temp = ob_get_contents();
  205. ob_clean();
  206. echo preg_replace('~</body>\s*</html>~', '', $temp), '
  207. <div class="smalltext" style="text-align: left; margin: 1ex;">
  208. ', $txt['debug_browser'], $context['browser_body_id'], ' <em>(', implode('</em>, <em>', array_reverse(array_keys($context['browser'], true))), ')</em><br />
  209. ', $txt['debug_templates'], count($context['debug']['templates']), ': <em>', implode('</em>, <em>', $context['debug']['templates']), '</em>.<br />
  210. ', $txt['debug_subtemplates'], count($context['debug']['sub_templates']), ': <em>', implode('</em>, <em>', $context['debug']['sub_templates']), '</em>.<br />
  211. ', $txt['debug_language_files'], count($context['debug']['language_files']), ': <em>', implode('</em>, <em>', $context['debug']['language_files']), '</em>.<br />
  212. ', $txt['debug_stylesheets'], count($context['debug']['sheets']), ': <em>', implode('</em>, <em>', $context['debug']['sheets']), '</em>.<br />
  213. ', $txt['debug_hooks'], empty($context['debug']['hooks']) ? 0 : count($context['debug']['hooks']) . ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_hooks\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_hooks" style="display: none;"><em>' . implode('</em>, <em>', $context['debug']['hooks']), '</em></span>)', '<br />
  214. ', $txt['debug_files_included'], count($files), ' - ', round($total_size / 1024), $txt['debug_kb'], ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_include_info\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_include_info" style="display: none;"><em>', implode('</em>, <em>', $files), '</em></span>)<br />';
  215. // What tokens are active?
  216. if (isset($_SESSION['token']))
  217. {
  218. $token_list = array();
  219. foreach ($_SESSION['token'] as $key => $data)
  220. $token_list[] = $key;
  221. echo $txt['debug_tokens'] . '<em>' . implode(',</em> <em>', $token_list), '</em>.<br />';
  222. }
  223. if (!empty($modSettings['cache_enable']) && !empty($cache_hits))
  224. {
  225. $entries = array();
  226. $total_t = 0;
  227. $total_s = 0;
  228. foreach ($cache_hits as $cache_hit)
  229. {
  230. $entries[] = $cache_hit['d'] . ' ' . $cache_hit['k'] . ': ' . sprintf($txt['debug_cache_seconds_bytes'], comma_format($cache_hit['t'], 5), $cache_hit['s']);
  231. $total_t += $cache_hit['t'];
  232. $total_s += $cache_hit['s'];
  233. }
  234. echo '
  235. ', $txt['debug_cache_hits'], $cache_count, ': ', sprintf($txt['debug_cache_seconds_bytes_total'], comma_format($total_t, 5), comma_format($total_s)), ' (<a href="javascript:void(0);" onclick="document.getElementById(\'debug_cache_info\').style.display = \'inline\'; this.style.display = \'none\'; return false;">', $txt['debug_show'], '</a><span id="debug_cache_info" style="display: none;"><em>', implode('</em>, <em>', $entries), '</em></span>)<br />';
  236. }
  237. echo '
  238. <a href="', $scripturl, '?action=viewquery" target="_blank" class="new_win">', $warnings == 0 ? sprintf($txt['debug_queries_used'], (int) $db_count) : sprintf($txt['debug_queries_used_and_warnings'], (int) $db_count, $warnings), '</a><br />
  239. <br />';
  240. if ($_SESSION['view_queries'] == 1 && !empty($db_cache))
  241. foreach ($db_cache as $q => $qq)
  242. {
  243. $is_select = strpos(trim($qq['q']), 'SELECT') === 0 || preg_match('~^INSERT(?: IGNORE)? INTO \w+(?:\s+\([^)]+\))?\s+SELECT .+$~s', trim($qq['q'])) != 0;
  244. // Temporary tables created in earlier queries are not explainable.
  245. if ($is_select)
  246. {
  247. foreach (array('log_topics_unread', 'topics_posted_in', 'tmp_log_search_topics', 'tmp_log_search_messages') as $tmp)
  248. if (strpos(trim($qq['q']), $tmp) !== false)
  249. {
  250. $is_select = false;
  251. break;
  252. }
  253. }
  254. // But actual creation of the temporary tables are.
  255. elseif (preg_match('~^CREATE TEMPORARY TABLE .+?SELECT .+$~s', trim($qq['q'])) != 0)
  256. $is_select = true;
  257. // Make the filenames look a bit better.
  258. if (isset($qq['f']))
  259. $qq['f'] = preg_replace('~^' . preg_quote($boarddir, '~') . '~', '...', $qq['f']);
  260. echo '
  261. <strong>', $is_select ? '<a href="' . $scripturl . '?action=viewquery;qq=' . ($q + 1) . '#qq' . $q . '" target="_blank" class="new_win" style="text-decoration: none;">' : '', nl2br(str_replace("\t", '&nbsp;&nbsp;&nbsp;', htmlspecialchars(ltrim($qq['q'], "\n\r")))) . ($is_select ? '</a></strong>' : '</strong>') . '<br />
  262. &nbsp;&nbsp;&nbsp;';
  263. if (!empty($qq['f']) && !empty($qq['l']))
  264. echo sprintf($txt['debug_query_in_line'], $qq['f'], $qq['l']);
  265. if (isset($qq['s'], $qq['t']) && isset($txt['debug_query_which_took_at']))
  266. echo sprintf($txt['debug_query_which_took_at'], round($qq['t'], 8), round($qq['s'], 8)) . '<br />';
  267. elseif (isset($qq['t']))
  268. echo sprintf($txt['debug_query_which_took'], round($qq['t'], 8)) . '<br />';
  269. echo '
  270. <br />';
  271. }
  272. echo '
  273. <a href="' . $scripturl . '?action=viewquery;sa=hide">', $txt['debug_' . (empty($_SESSION['view_queries']) ? 'show' : 'hide') . '_queries'], '</a>
  274. </div></body></html>';
  275. }
  276. /**
  277. * Track Statistics.
  278. * Caches statistics changes, and flushes them if you pass nothing.
  279. * If '+' is used as a value, it will be incremented.
  280. * It does not actually commit the changes until the end of the page view.
  281. * It depends on the trackStats setting.
  282. *
  283. * @param array $stats = array()
  284. * @return boolean|array
  285. */
  286. function trackStats($stats = array())
  287. {
  288. global $modSettings, $smcFunc;
  289. static $cache_stats = array();
  290. if (empty($modSettings['trackStats']))
  291. return false;
  292. if (!empty($stats))
  293. return $cache_stats = array_merge($cache_stats, $stats);
  294. elseif (empty($cache_stats))
  295. return false;
  296. $setStringUpdate = '';
  297. $insert_keys = array();
  298. $date = strftime('%Y-%m-%d', forum_time(false));
  299. $update_parameters = array(
  300. 'current_date' => $date,
  301. );
  302. foreach ($cache_stats as $field => $change)
  303. {
  304. $setStringUpdate .= '
  305. ' . $field . ' = ' . ($change === '+' ? $field . ' + 1' : '{int:' . $field . '}') . ',';
  306. if ($change === '+')
  307. $cache_stats[$field] = 1;
  308. else
  309. $update_parameters[$field] = $change;
  310. $insert_keys[$field] = 'int';
  311. }
  312. $smcFunc['db_query']('', '
  313. UPDATE {db_prefix}log_activity
  314. SET' . substr($setStringUpdate, 0, -1) . '
  315. WHERE date = {date:current_date}',
  316. $update_parameters
  317. );
  318. if ($smcFunc['db_affected_rows']() == 0)
  319. {
  320. $smcFunc['db_insert']('ignore',
  321. '{db_prefix}log_activity',
  322. array_merge($insert_keys, array('date' => 'date')),
  323. array_merge($cache_stats, array($date)),
  324. array('date')
  325. );
  326. }
  327. // Don't do this again.
  328. $cache_stats = array();
  329. return true;
  330. }
  331. /**
  332. * This function logs an action in the respective log. (database log)
  333. * You should use {@link logActions()} instead.
  334. * @example logAction('remove', array('starter' => $id_member_started));
  335. *
  336. * @deprecated deprecated since version 2.1
  337. *
  338. * @param string $action
  339. * @param array $extra = array()
  340. * @param string $log_type options: 'moderate', 'admin', ...etc.
  341. */
  342. function logAction($action, $extra = array(), $log_type = 'moderate')
  343. {
  344. return logActions(array(array(
  345. 'action' => $action,
  346. 'log_type' => $log_type,
  347. 'extra' => $extra,
  348. )));
  349. }
  350. /**
  351. * Log changes to the forum, such as moderation events or administrative changes.
  352. * This behaves just like logAction() in SMF 2.0, except that it is designed to log multiple actions at once.
  353. *
  354. * @param array $logs
  355. * @return the last logged ID
  356. */
  357. function logActions($logs)
  358. {
  359. global $modSettings, $user_info, $smcFunc, $sourcedir;
  360. $inserts = array();
  361. $log_types = array(
  362. 'moderate' => 1,
  363. 'user' => 2,
  364. 'admin' => 3,
  365. );
  366. call_integration_hook('integrate_log_types', array($log_types));
  367. // No point in doing anything, if the log isn't even enabled.
  368. if (empty($modSettings['modlog_enabled']))
  369. return false;
  370. foreach ($logs as $log)
  371. {
  372. if (!isset($log_types[$log['log_type']]))
  373. return false;
  374. if (!is_array($log['extra']))
  375. trigger_error('logActions(): data is not an array with action \'' . $action . '\'', E_USER_NOTICE);
  376. // Pull out the parts we want to store separately, but also make sure that the data is proper
  377. if (isset($log['extra']['topic']))
  378. {
  379. if (!is_numeric($log['extra']['topic']))
  380. trigger_error('logActions(): data\'s topic is not a number', E_USER_NOTICE);
  381. $topic_id = empty($log['extra']['topic']) ? 0 : (int) $log['extra']['topic'];
  382. unset($log['extra']['topic']);
  383. }
  384. else
  385. $topic_id = 0;
  386. if (isset($log['extra']['message']))
  387. {
  388. if (!is_numeric($log['extra']['message']))
  389. trigger_error('logActions(): data\'s message is not a number', E_USER_NOTICE);
  390. $msg_id = empty($log['extra']['message']) ? 0 : (int) $log['extra']['message'];
  391. unset($log['extra']['message']);
  392. }
  393. else
  394. $msg_id = 0;
  395. // @todo cache this?
  396. // Is there an associated report on this?
  397. if (in_array($log['action'], array('move', 'remove', 'split', 'merge')))
  398. {
  399. $request = $smcFunc['db_query']('', '
  400. SELECT id_report
  401. FROM {db_prefix}log_reported
  402. WHERE {raw:column_name} = {int:reported}
  403. LIMIT 1',
  404. array(
  405. 'column_name' => !empty($msg_id) ? 'id_msg' : 'id_topic',
  406. 'reported' => !empty($msg_id) ? $msg_id : $topic_id,
  407. ));
  408. // Alright, if we get any result back, update open reports.
  409. if ($smcFunc['db_num_rows']($request) > 0)
  410. {
  411. require_once($sourcedir . '/ModerationCenter.php');
  412. updateSettings(array('last_mod_report_action' => time()));
  413. recountOpenReports();
  414. }
  415. $smcFunc['db_free_result']($request);
  416. }
  417. if (isset($log['extra']['member']) && !is_numeric($log['extra']['member']))
  418. trigger_error('logActions(): data\'s member is not a number', E_USER_NOTICE);
  419. if (isset($log['extra']['board']))
  420. {
  421. if (!is_numeric($log['extra']['board']))
  422. trigger_error('logActions(): data\'s board is not a number', E_USER_NOTICE);
  423. $board_id = empty($log['extra']['board']) ? 0 : (int) $log['extra']['board'];
  424. unset($log['extra']['board']);
  425. }
  426. else
  427. $board_id = 0;
  428. if (isset($log['extra']['board_to']))
  429. {
  430. if (!is_numeric($log['extra']['board_to']))
  431. trigger_error('logActions(): data\'s board_to is not a number', E_USER_NOTICE);
  432. if (empty($board_id))
  433. {
  434. $board_id = empty($log['extra']['board_to']) ? 0 : (int) $log['extra']['board_to'];
  435. unset($log['extra']['board_to']);
  436. }
  437. }
  438. if (isset($log['extra']['member_affected']))
  439. $memID = $log['extra']['member_affected'];
  440. else
  441. $memID = $user_info['id'];
  442. $inserts[] = array(
  443. time(), $log_types[$log['log_type']], $memID, $user_info['ip'], $log['action'],
  444. $board_id, $topic_id, $msg_id, serialize($log['extra']),
  445. );
  446. }
  447. $smcFunc['db_insert']('',
  448. '{db_prefix}log_actions',
  449. array(
  450. 'log_time' => 'int', 'id_log' => 'int', 'id_member' => 'int', 'ip' => 'string-16', 'action' => 'string',
  451. 'id_board' => 'int', 'id_topic' => 'int', 'id_msg' => 'int', 'extra' => 'string-65534',
  452. ),
  453. $inserts,
  454. array('id_action')
  455. );
  456. return $smcFunc['db_insert_id']('{db_prefix}log_actions', 'id_action');
  457. }
  458. ?>