PageRenderTime 54ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Sources/Modlog.php

https://github.com/smf-portal/SMF2.1
PHP | 630 lines | 486 code | 61 blank | 83 comment | 93 complexity | a924f0b7e0724961c31c86a0917ca0c2 MD5 | raw file
  1. <?php
  2. /**
  3. * The moderation log is this file's only job.
  4. * It views it, and that's about all it does.
  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. * Prepares the information from the moderation log for viewing.
  19. * Show the moderation log.
  20. * Disallows the deletion of events within twenty-four hours of now.
  21. * Requires the admin_forum permission.
  22. * Accessed via ?action=moderate;area=modlog.
  23. *
  24. * @uses Modlog template, main sub-template.
  25. */
  26. function ViewModlog()
  27. {
  28. global $txt, $modSettings, $context, $scripturl, $sourcedir, $user_info, $smcFunc, $settings;
  29. // Are we looking at the moderation log or the administration log.
  30. $context['log_type'] = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'adminlog' ? 3 : 1;
  31. if ($context['log_type'] == 3)
  32. isAllowedTo('admin_forum');
  33. // These change dependant on whether we are viewing the moderation or admin log.
  34. if ($context['log_type'] == 3 || $_REQUEST['action'] == 'admin')
  35. $context['url_start'] = '?action=admin;area=logs;sa=' . ($context['log_type'] == 3 ? 'adminlog' : 'modlog') . ';type=' . $context['log_type'];
  36. else
  37. $context['url_start'] = '?action=moderate;area=modlog;type=' . $context['log_type'];
  38. $context['can_delete'] = allowedTo('admin_forum');
  39. loadLanguage('Modlog');
  40. $context['page_title'] = $context['log_type'] == 3 ? $txt['modlog_admin_log'] : $txt['modlog_view'];
  41. // The number of entries to show per page of log file.
  42. $context['displaypage'] = 30;
  43. // Amount of hours that must pass before allowed to delete file.
  44. $context['hoursdisable'] = 24;
  45. // Handle deletion...
  46. if (isset($_POST['removeall']) && $context['can_delete'])
  47. {
  48. checkSession();
  49. validateToken('mod-ml');
  50. $smcFunc['db_query']('', '
  51. DELETE FROM {db_prefix}log_actions
  52. WHERE id_log = {int:moderate_log}
  53. AND log_time < {int:twenty_four_hours_wait}',
  54. array(
  55. 'twenty_four_hours_wait' => time() - $context['hoursdisable'] * 3600,
  56. 'moderate_log' => $context['log_type'],
  57. )
  58. );
  59. }
  60. elseif (!empty($_POST['remove']) && isset($_POST['delete']) && $context['can_delete'])
  61. {
  62. checkSession();
  63. validateToken('mod-ml');
  64. $smcFunc['db_query']('', '
  65. DELETE FROM {db_prefix}log_actions
  66. WHERE id_log = {int:moderate_log}
  67. AND id_action IN ({array_string:delete_actions})
  68. AND log_time < {int:twenty_four_hours_wait}',
  69. array(
  70. 'twenty_four_hours_wait' => time() - $context['hoursdisable'] * 3600,
  71. 'delete_actions' => array_unique($_POST['delete']),
  72. 'moderate_log' => $context['log_type'],
  73. )
  74. );
  75. }
  76. // Do the column stuff!
  77. $sort_types = array(
  78. 'action' =>'lm.action',
  79. 'time' => 'lm.log_time',
  80. 'member' => 'mem.real_name',
  81. 'group' => 'mg.group_name',
  82. 'ip' => 'lm.ip',
  83. );
  84. // Setup the direction stuff...
  85. $context['order'] = isset($_REQUEST['sort']) && isset($sort_types[$_REQUEST['sort']]) ? $_REQUEST['sort'] : 'time';
  86. // If we're coming from a search, get the variables.
  87. if (!empty($_REQUEST['params']) && empty($_REQUEST['is_search']))
  88. {
  89. $search_params = base64_decode(strtr($_REQUEST['params'], array(' ' => '+')));
  90. $search_params = @unserialize($search_params);
  91. }
  92. // This array houses all the valid search types.
  93. $searchTypes = array(
  94. 'action' => array('sql' => 'lm.action', 'label' => $txt['modlog_action']),
  95. 'member' => array('sql' => 'mem.real_name', 'label' => $txt['modlog_member']),
  96. 'group' => array('sql' => 'mg.group_name', 'label' => $txt['modlog_position']),
  97. 'ip' => array('sql' => 'lm.ip', 'label' => $txt['modlog_ip'])
  98. );
  99. if (!isset($search_params['string']) || (!empty($_REQUEST['search']) && $search_params['string'] != $_REQUEST['search']))
  100. $search_params_string = empty($_REQUEST['search']) ? '' : $_REQUEST['search'];
  101. else
  102. $search_params_string = $search_params['string'];
  103. if (isset($_REQUEST['search_type']) || empty($search_params['type']) || !isset($searchTypes[$search_params['type']]))
  104. $search_params_type = isset($_REQUEST['search_type']) && isset($searchTypes[$_REQUEST['search_type']]) ? $_REQUEST['search_type'] : (isset($searchTypes[$context['order']]) ? $context['order'] : 'member');
  105. else
  106. $search_params_type = $search_params['type'];
  107. $search_params_column = $searchTypes[$search_params_type]['sql'];
  108. $search_params = array(
  109. 'string' => $search_params_string,
  110. 'type' => $search_params_type,
  111. );
  112. // Setup the search context.
  113. $context['search_params'] = empty($search_params['string']) ? '' : base64_encode(serialize($search_params));
  114. $context['search'] = array(
  115. 'string' => $search_params['string'],
  116. 'type' => $search_params['type'],
  117. 'label' => $searchTypes[$search_params_type]['label'],
  118. );
  119. // If they are searching by action, then we must do some manual intervention to search in their language!
  120. if ($search_params['type'] == 'action' && !empty($search_params['string']))
  121. {
  122. // For the moment they can only search for ONE action!
  123. foreach ($txt as $key => $text)
  124. {
  125. if (substr($key, 0, 10) == 'modlog_ac_' && strpos($text, $search_params['string']) !== false)
  126. {
  127. $search_params['string'] = substr($key, 10);
  128. break;
  129. }
  130. }
  131. }
  132. require_once($sourcedir . '/Subs-List.php');
  133. // This is all the information required for a watched user listing.
  134. $listOptions = array(
  135. 'id' => 'moderation_log_list',
  136. 'title' => '<a href="' . $scripturl . '?action=helpadmin;help=' . ($context['log_type'] == 3 ? 'adminlog' : 'modlog') . '" onclick="return reqOverlayDiv(this.href);" class="help"><img src="' . $settings['images_url'] . '/helptopics.png" alt="' . $txt['help'] . '" /></a> ' . $txt['modlog_' . ($context['log_type'] == 3 ? 'admin' : 'moderation') . '_log'],
  137. 'width' => '100%',
  138. 'items_per_page' => $context['displaypage'],
  139. 'no_items_label' => $txt['modlog_' . ($context['log_type'] == 3 ? 'admin_log_' : '') . 'no_entries_found'],
  140. 'base_href' => $scripturl . $context['url_start'] . (!empty($context['search_params']) ? ';params=' . $context['search_params'] : ''),
  141. 'default_sort_col' => 'time',
  142. 'get_items' => array(
  143. 'function' => 'list_getModLogEntries',
  144. 'params' => array(
  145. (!empty($search_params['string']) ? ' INSTR({raw:sql_type}, {string:search_string})' : ''),
  146. array('sql_type' => $search_params_column, 'search_string' => $search_params['string']),
  147. $context['log_type'],
  148. ),
  149. ),
  150. 'get_count' => array(
  151. 'function' => 'list_getModLogEntryCount',
  152. 'params' => array(
  153. (!empty($search_params['string']) ? ' INSTR({raw:sql_type}, {string:search_string})' : ''),
  154. array('sql_type' => $search_params_column, 'search_string' => $search_params['string']),
  155. $context['log_type'],
  156. ),
  157. ),
  158. // This assumes we are viewing by user.
  159. 'columns' => array(
  160. 'action' => array(
  161. 'header' => array(
  162. 'value' => $txt['modlog_action'],
  163. 'class' => 'lefttext first_th',
  164. ),
  165. 'data' => array(
  166. 'db' => 'action_text',
  167. 'class' => 'smalltext',
  168. ),
  169. 'sort' => array(
  170. 'default' => 'lm.action',
  171. 'reverse' => 'lm.action DESC',
  172. ),
  173. ),
  174. 'time' => array(
  175. 'header' => array(
  176. 'value' => $txt['modlog_date'],
  177. 'class' => 'lefttext',
  178. ),
  179. 'data' => array(
  180. 'db' => 'time',
  181. 'class' => 'smalltext',
  182. ),
  183. 'sort' => array(
  184. 'default' => 'lm.log_time DESC',
  185. 'reverse' => 'lm.log_time',
  186. ),
  187. ),
  188. 'moderator' => array(
  189. 'header' => array(
  190. 'value' => $txt['modlog_member'],
  191. 'class' => 'lefttext',
  192. ),
  193. 'data' => array(
  194. 'db' => 'moderator_link',
  195. 'class' => 'smalltext',
  196. ),
  197. 'sort' => array(
  198. 'default' => 'mem.real_name',
  199. 'reverse' => 'mem.real_name DESC',
  200. ),
  201. ),
  202. 'position' => array(
  203. 'header' => array(
  204. 'value' => $txt['modlog_position'],
  205. 'class' => 'lefttext',
  206. ),
  207. 'data' => array(
  208. 'db' => 'position',
  209. 'class' => 'smalltext',
  210. ),
  211. 'sort' => array(
  212. 'default' => 'mg.group_name',
  213. 'reverse' => 'mg.group_name DESC',
  214. ),
  215. ),
  216. 'ip' => array(
  217. 'header' => array(
  218. 'value' => $txt['modlog_ip'],
  219. 'class' => 'lefttext',
  220. ),
  221. 'data' => array(
  222. 'db' => 'ip',
  223. 'class' => 'smalltext',
  224. ),
  225. 'sort' => array(
  226. 'default' => 'lm.ip',
  227. 'reverse' => 'lm.ip DESC',
  228. ),
  229. ),
  230. 'delete' => array(
  231. 'header' => array(
  232. 'value' => '<input type="checkbox" name="all" class="input_check" onclick="invertAll(this, this.form);" />',
  233. 'class' => 'centercol',
  234. ),
  235. 'data' => array(
  236. 'function' => create_function('$entry', '
  237. return \'<input type="checkbox" class="input_check" name="delete[]" value="\' . $entry[\'id\'] . \'"\' . ($entry[\'editable\'] ? \'\' : \' disabled="disabled"\') . \' />\';
  238. '),
  239. 'class' => 'centercol',
  240. ),
  241. ),
  242. ),
  243. 'form' => array(
  244. 'href' => $scripturl . $context['url_start'],
  245. 'include_sort' => true,
  246. 'include_start' => true,
  247. 'hidden_fields' => array(
  248. $context['session_var'] => $context['session_id'],
  249. 'params' => $context['search_params']
  250. ),
  251. 'token' => 'mod-ml',
  252. ),
  253. 'additional_rows' => array(
  254. array(
  255. 'position' => 'after_title',
  256. 'value' => $txt['modlog_' . ($context['log_type'] == 3 ? 'admin' : 'moderation') . '_log_desc'],
  257. 'style' => 'padding: 1ex 2ex;',
  258. ),
  259. array(
  260. 'position' => 'below_table_data',
  261. 'value' => '
  262. ' . $txt['modlog_search'] . ' (' . $txt['modlog_by'] . ': ' . $context['search']['label'] . '):
  263. <input type="text" name="search" size="18" value="' . $context['search']['string'] . '" class="input_text" />
  264. <input type="submit" name="is_search" value="' . $txt['modlog_go'] . '" class="button_submit" style="float:none" />
  265. ' . ($context['can_delete'] ? '&nbsp;|
  266. <input type="submit" name="remove" value="' . $txt['modlog_remove'] . '" onclick="return confirm(\'' . $txt['modlog_remove_selected_confirm'] . '\');" class="button_submit" />
  267. <input type="submit" name="removeall" value="' . $txt['modlog_removeall'] . '" onclick="return confirm(\'' . $txt['modlog_remove_all_confirm'] . '\');" class="button_submit" />' : ''),
  268. 'class' => 'floatright',
  269. ),
  270. ),
  271. );
  272. createToken('mod-ml');
  273. // Create the watched user list.
  274. createList($listOptions);
  275. $context['sub_template'] = 'show_list';
  276. $context['default_list'] = 'moderation_log_list';
  277. }
  278. /**
  279. * Get the number of mod log entries.
  280. * Callback for createList() in ViewModlog().
  281. *
  282. * @param $query_string
  283. * @param $query_params
  284. * @param $log_type
  285. */
  286. function list_getModLogEntryCount($query_string = '', $query_params = array(), $log_type = 1)
  287. {
  288. global $smcFunc, $user_info;
  289. $modlog_query = allowedTo('admin_forum') || $user_info['mod_cache']['bq'] == '1=1' ? '1=1' : ($user_info['mod_cache']['bq'] == '0=1' ? 'lm.id_board = 0 AND lm.id_topic = 0' : (strtr($user_info['mod_cache']['bq'], array('id_board' => 'b.id_board')) . ' AND ' . strtr($user_info['mod_cache']['bq'], array('id_board' => 't.id_board'))));
  290. $result = $smcFunc['db_query']('', '
  291. SELECT COUNT(*)
  292. FROM {db_prefix}log_actions AS lm
  293. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lm.id_member)
  294. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:reg_group_id} THEN mem.id_post_group ELSE mem.id_group END)
  295. LEFT JOIN {db_prefix}boards AS b ON (b.id_board = lm.id_board)
  296. LEFT JOIN {db_prefix}topics AS t ON (t.id_topic = lm.id_topic)
  297. WHERE id_log = {int:log_type}
  298. AND {raw:modlog_query}'
  299. . (!empty($query_string) ? '
  300. AND ' . $query_string : ''),
  301. array_merge($query_params, array(
  302. 'reg_group_id' => 0,
  303. 'log_type' => $log_type,
  304. 'modlog_query' => $modlog_query,
  305. ))
  306. );
  307. list ($entry_count) = $smcFunc['db_fetch_row']($result);
  308. $smcFunc['db_free_result']($result);
  309. return $entry_count;
  310. }
  311. /**
  312. * Gets the moderation log entries that match the specified parameters.
  313. * Callback for createList() in ViewModlog().
  314. *
  315. * @param $start
  316. * @param $items_per_page
  317. * @param $sort
  318. * @param $query_string
  319. * @param $query_params
  320. * @param $log_type
  321. */
  322. function list_getModLogEntries($start, $items_per_page, $sort, $query_string = '', $query_params = array(), $log_type = 1)
  323. {
  324. global $context, $scripturl, $txt, $smcFunc, $user_info;
  325. $modlog_query = allowedTo('admin_forum') || $user_info['mod_cache']['bq'] == '1=1' ? '1=1' : ($user_info['mod_cache']['bq'] == '0=1' ? 'lm.id_board = 0 AND lm.id_topic = 0' : (strtr($user_info['mod_cache']['bq'], array('id_board' => 'b.id_board')) . ' AND ' . strtr($user_info['mod_cache']['bq'], array('id_board' => 't.id_board'))));
  326. // Do a little bit of self protection.
  327. if (!isset($context['hoursdisable']))
  328. $context['hoursdisable'] = 24;
  329. // Can they see the IP address?
  330. $seeIP = allowedTo('moderate_forum');
  331. // Here we have the query getting the log details.
  332. $result = $smcFunc['db_query']('', '
  333. SELECT
  334. lm.id_action, lm.id_member, lm.ip, lm.log_time, lm.action, lm.id_board, lm.id_topic, lm.id_msg, lm.extra,
  335. mem.real_name, mg.group_name
  336. FROM {db_prefix}log_actions AS lm
  337. LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = lm.id_member)
  338. LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = CASE WHEN mem.id_group = {int:reg_group_id} THEN mem.id_post_group ELSE mem.id_group END)
  339. LEFT JOIN {db_prefix}boards AS b ON (b.id_board = lm.id_board)
  340. LEFT JOIN {db_prefix}topics AS t ON (t.id_topic = lm.id_topic)
  341. WHERE id_log = {int:log_type}
  342. AND {raw:modlog_query}'
  343. . (!empty($query_string) ? '
  344. AND ' . $query_string : '') . '
  345. ORDER BY ' . $sort . '
  346. LIMIT ' . $start . ', ' . $items_per_page,
  347. array_merge($query_params, array(
  348. 'reg_group_id' => 0,
  349. 'log_type' => $log_type,
  350. 'modlog_query' => $modlog_query,
  351. ))
  352. );
  353. // Arrays for decoding objects into.
  354. $topics = array();
  355. $boards = array();
  356. $members = array();
  357. $messages = array();
  358. $entries = array();
  359. while ($row = $smcFunc['db_fetch_assoc']($result))
  360. {
  361. $row['extra'] = @unserialize($row['extra']);
  362. // Corrupt?
  363. $row['extra'] = is_array($row['extra']) ? $row['extra'] : array();
  364. // Add on some of the column stuff info
  365. if (!empty($row['id_board']))
  366. {
  367. if ($row['action'] == 'move')
  368. $row['extra']['board_to'] = $row['id_board'];
  369. else
  370. $row['extra']['board'] = $row['id_board'];
  371. }
  372. if (!empty($row['id_topic']))
  373. $row['extra']['topic'] = $row['id_topic'];
  374. if (!empty($row['id_msg']))
  375. $row['extra']['message'] = $row['id_msg'];
  376. // Is this associated with a topic?
  377. if (isset($row['extra']['topic']))
  378. $topics[(int) $row['extra']['topic']][] = $row['id_action'];
  379. if (isset($row['extra']['new_topic']))
  380. $topics[(int) $row['extra']['new_topic']][] = $row['id_action'];
  381. // How about a member?
  382. if (isset($row['extra']['member']))
  383. {
  384. // Guests don't have names!
  385. if (empty($row['extra']['member']))
  386. $row['extra']['member'] = $txt['modlog_parameter_guest'];
  387. else
  388. {
  389. // Try to find it...
  390. $members[(int) $row['extra']['member']][] = $row['id_action'];
  391. }
  392. }
  393. // Associated with a board?
  394. if (isset($row['extra']['board_to']))
  395. $boards[(int) $row['extra']['board_to']][] = $row['id_action'];
  396. if (isset($row['extra']['board_from']))
  397. $boards[(int) $row['extra']['board_from']][] = $row['id_action'];
  398. if (isset($row['extra']['board']))
  399. $boards[(int) $row['extra']['board']][] = $row['id_action'];
  400. // A message?
  401. if (isset($row['extra']['message']))
  402. $messages[(int) $row['extra']['message']][] = $row['id_action'];
  403. // IP Info?
  404. if (isset($row['extra']['ip_range']))
  405. if ($seeIP)
  406. $row['extra']['ip_range'] = '<a href="' . $scripturl . '?action=trackip;searchip=' . $row['extra']['ip_range'] . '">' . $row['extra']['ip_range'] . '</a>';
  407. else
  408. $row['extra']['ip_range'] = $txt['logged'];
  409. // Email?
  410. if (isset($row['extra']['email']))
  411. $row['extra']['email'] = '<a href="mailto:' . $row['extra']['email'] . '">' . $row['extra']['email'] . '</a>';
  412. // Bans are complex.
  413. if ($row['action'] == 'ban')
  414. {
  415. $row['action_text'] = $txt['modlog_ac_ban'];
  416. foreach (array('member', 'email', 'ip_range', 'hostname') as $type)
  417. if (isset($row['extra'][$type]))
  418. $row['action_text'] .= $txt['modlog_ac_ban_trigger_' . $type];
  419. }
  420. // The array to go to the template. Note here that action is set to a "default" value of the action doesn't match anything in the descriptions. Allows easy adding of logging events with basic details.
  421. $entries[$row['id_action']] = array(
  422. 'id' => $row['id_action'],
  423. 'ip' => $seeIP ? $row['ip'] : $txt['logged'],
  424. 'position' => empty($row['real_name']) && empty($row['group_name']) ? $txt['guest'] : $row['group_name'],
  425. 'moderator_link' => $row['id_member'] ? '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>' : (empty($row['real_name']) ? ($txt['guest'] . (!empty($row['extra']['member_acted']) ? ' (' . $row['extra']['member_acted'] . ')' : '')) : $row['real_name']),
  426. 'time' => timeformat($row['log_time']),
  427. 'timestamp' => forum_time(true, $row['log_time']),
  428. 'editable' => time() > $row['log_time'] + $context['hoursdisable'] * 3600,
  429. 'extra' => $row['extra'],
  430. 'action' => $row['action'],
  431. 'action_text' => isset($row['action_text']) ? $row['action_text'] : '',
  432. );
  433. }
  434. $smcFunc['db_free_result']($result);
  435. if (!empty($boards))
  436. {
  437. $request = $smcFunc['db_query']('', '
  438. SELECT id_board, name
  439. FROM {db_prefix}boards
  440. WHERE id_board IN ({array_int:board_list})
  441. LIMIT ' . count(array_keys($boards)),
  442. array(
  443. 'board_list' => array_keys($boards),
  444. )
  445. );
  446. while ($row = $smcFunc['db_fetch_assoc']($request))
  447. {
  448. foreach ($boards[$row['id_board']] as $action)
  449. {
  450. // Make the board number into a link - dealing with moving too.
  451. if (isset($entries[$action]['extra']['board_to']) && $entries[$action]['extra']['board_to'] == $row['id_board'])
  452. $entries[$action]['extra']['board_to'] = '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>';
  453. elseif (isset($entries[$action]['extra']['board_from']) && $entries[$action]['extra']['board_from'] == $row['id_board'])
  454. $entries[$action]['extra']['board_from'] = '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>';
  455. elseif (isset($entries[$action]['extra']['board']) && $entries[$action]['extra']['board'] == $row['id_board'])
  456. $entries[$action]['extra']['board'] = '<a href="' . $scripturl . '?board=' . $row['id_board'] . '.0">' . $row['name'] . '</a>';
  457. }
  458. }
  459. $smcFunc['db_free_result']($request);
  460. }
  461. if (!empty($topics))
  462. {
  463. $request = $smcFunc['db_query']('', '
  464. SELECT ms.subject, t.id_topic
  465. FROM {db_prefix}topics AS t
  466. INNER JOIN {db_prefix}messages AS ms ON (ms.id_msg = t.id_first_msg)
  467. WHERE t.id_topic IN ({array_int:topic_list})
  468. LIMIT ' . count(array_keys($topics)),
  469. array(
  470. 'topic_list' => array_keys($topics),
  471. )
  472. );
  473. while ($row = $smcFunc['db_fetch_assoc']($request))
  474. {
  475. foreach ($topics[$row['id_topic']] as $action)
  476. {
  477. $this_action = &$entries[$action];
  478. // This isn't used in the current theme.
  479. $this_action['topic'] = array(
  480. 'id' => $row['id_topic'],
  481. 'subject' => $row['subject'],
  482. 'href' => $scripturl . '?topic=' . $row['id_topic'] . '.0',
  483. 'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['subject'] . '</a>'
  484. );
  485. // Make the topic number into a link - dealing with splitting too.
  486. if (isset($this_action['extra']['topic']) && $this_action['extra']['topic'] == $row['id_topic'])
  487. $this_action['extra']['topic'] = '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.' . (isset($this_action['extra']['message']) ? 'msg' . $this_action['extra']['message'] . '#msg' . $this_action['extra']['message'] : '0') . '">' . $row['subject'] . '</a>';
  488. elseif (isset($this_action['extra']['new_topic']) && $this_action['extra']['new_topic'] == $row['id_topic'])
  489. $this_action['extra']['new_topic'] = '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.' . (isset($this_action['extra']['message']) ? 'msg' . $this_action['extra']['message'] . '#msg' . $this_action['extra']['message'] : '0') . '">' . $row['subject'] . '</a>';
  490. }
  491. }
  492. $smcFunc['db_free_result']($request);
  493. }
  494. if (!empty($messages))
  495. {
  496. $request = $smcFunc['db_query']('', '
  497. SELECT id_msg, subject
  498. FROM {db_prefix}messages
  499. WHERE id_msg IN ({array_int:message_list})
  500. LIMIT ' . count(array_keys($messages)),
  501. array(
  502. 'message_list' => array_keys($messages),
  503. )
  504. );
  505. while ($row = $smcFunc['db_fetch_assoc']($request))
  506. {
  507. foreach ($messages[$row['id_msg']] as $action)
  508. {
  509. $this_action = &$entries[$action];
  510. // This isn't used in the current theme.
  511. $this_action['message'] = array(
  512. 'id' => $row['id_msg'],
  513. 'subject' => $row['subject'],
  514. 'href' => $scripturl . '?msg=' . $row['id_msg'],
  515. 'link' => '<a href="' . $scripturl . '?msg=' . $row['id_msg'] . '">' . $row['subject'] . '</a>',
  516. );
  517. // Make the message number into a link.
  518. if (isset($this_action['extra']['message']) && $this_action['extra']['message'] == $row['id_msg'])
  519. $this_action['extra']['message'] = '<a href="' . $scripturl . '?msg=' . $row['id_msg'] . '">' . $row['subject'] . '</a>';
  520. }
  521. }
  522. $smcFunc['db_free_result']($request);
  523. }
  524. if (!empty($members))
  525. {
  526. $request = $smcFunc['db_query']('', '
  527. SELECT real_name, id_member
  528. FROM {db_prefix}members
  529. WHERE id_member IN ({array_int:member_list})
  530. LIMIT ' . count(array_keys($members)),
  531. array(
  532. 'member_list' => array_keys($members),
  533. )
  534. );
  535. while ($row = $smcFunc['db_fetch_assoc']($request))
  536. {
  537. foreach ($members[$row['id_member']] as $action)
  538. {
  539. // Not used currently.
  540. $entries[$action]['member'] = array(
  541. 'id' => $row['id_member'],
  542. 'name' => $row['real_name'],
  543. 'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
  544. 'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'
  545. );
  546. // Make the member number into a name.
  547. $entries[$action]['extra']['member'] = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>';
  548. }
  549. }
  550. $smcFunc['db_free_result']($request);
  551. }
  552. // Do some formatting of the action string.
  553. foreach ($entries as $k => $entry)
  554. {
  555. // Make any message info links so its easier to go find that message.
  556. if (isset($entry['extra']['message']) && (empty($entry['message']) || empty($entry['message']['id'])))
  557. $entries[$k]['extra']['message'] = '<a href="' . $scripturl . '?msg=' . $entry['extra']['message'] . '">' . $entry['extra']['message'] . '</a>';
  558. // Mark up any deleted members, topics and boards.
  559. foreach (array('board', 'board_from', 'board_to', 'member', 'topic', 'new_topic') as $type)
  560. if (!empty($entry['extra'][$type]) && is_numeric($entry['extra'][$type]))
  561. $entries[$k]['extra'][$type] = sprintf($txt['modlog_id'], $entry['extra'][$type]);
  562. if (empty($entries[$k]['action_text']))
  563. $entries[$k]['action_text'] = isset($txt['modlog_ac_' . $entry['action']]) ? $txt['modlog_ac_' . $entry['action']] : $entry['action'];
  564. $entries[$k]['action_text'] = preg_replace('~\{([A-Za-z\d_]+)\}~ie', 'isset($entries[$k][\'extra\'][\'$1\']) ? $entries[$k][\'extra\'][\'$1\'] : \'\'', $entries[$k]['action_text']);
  565. }
  566. // Back we go!
  567. return $entries;
  568. }
  569. ?>