Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 178 |
| mcp_notes | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
1122 | |
0.00% |
0 / 174 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
|||
| main | |
0.00% |
0 / 1 |
20 | |
0.00% |
0 / 26 |
|||
| mcp_notes_user_view | |
0.00% |
0 / 1 |
812 | |
0.00% |
0 / 145 |
|||
| <?php | |
| /** | |
| * | |
| * This file is part of the phpBB Forum Software package. | |
| * | |
| * @copyright (c) phpBB Limited <https://www.phpbb.com> | |
| * @license GNU General Public License, version 2 (GPL-2.0) | |
| * | |
| * For full copyright and license information, please see | |
| * the docs/CREDITS.txt file. | |
| * | |
| */ | |
| /** | |
| * @ignore | |
| */ | |
| if (!defined('IN_PHPBB')) | |
| { | |
| exit; | |
| } | |
| /** | |
| * mcp_notes | |
| * Displays notes about a user | |
| */ | |
| class mcp_notes | |
| { | |
| var $p_master; | |
| var $u_action; | |
| function __construct($p_master) | |
| { | |
| $this->p_master = $p_master; | |
| } | |
| function main($id, $mode) | |
| { | |
| global $user, $template, $request; | |
| global $phpbb_root_path, $phpEx; | |
| $action = $request->variable('action', array('' => '')); | |
| if (is_array($action)) | |
| { | |
| list($action, ) = each($action); | |
| } | |
| $this->page_title = 'MCP_NOTES'; | |
| switch ($mode) | |
| { | |
| case 'front': | |
| $template->assign_vars(array( | |
| 'U_FIND_USERNAME' => append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=searchuser&form=mcp&field=username&select_single=true'), | |
| 'U_POST_ACTION' => append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes'), | |
| 'L_TITLE' => $user->lang['MCP_NOTES'], | |
| )); | |
| $this->tpl_name = 'mcp_notes_front'; | |
| break; | |
| case 'user_notes': | |
| $user->add_lang('acp/common'); | |
| $this->mcp_notes_user_view($action); | |
| $this->tpl_name = 'mcp_notes_user'; | |
| break; | |
| } | |
| } | |
| /** | |
| * Display user notes | |
| */ | |
| function mcp_notes_user_view($action) | |
| { | |
| global $config, $phpbb_log, $request, $phpbb_root_path, $phpEx; | |
| global $template, $db, $user, $auth, $phpbb_container; | |
| $user_id = $request->variable('u', 0); | |
| $username = $request->variable('username', '', true); | |
| $start = $request->variable('start', 0); | |
| $st = $request->variable('st', 0); | |
| $sk = $request->variable('sk', 'b'); | |
| $sd = $request->variable('sd', 'd'); | |
| /* @var $pagination \phpbb\pagination */ | |
| $pagination = $phpbb_container->get('pagination'); | |
| add_form_key('mcp_notes'); | |
| $sql_where = ($user_id) ? "user_id = $user_id" : "username_clean = '" . $db->sql_escape(utf8_clean_string($username)) . "'"; | |
| $sql = 'SELECT * | |
| FROM ' . USERS_TABLE . " | |
| WHERE $sql_where"; | |
| $result = $db->sql_query($sql); | |
| $userrow = $db->sql_fetchrow($result); | |
| $db->sql_freeresult($result); | |
| if (!$userrow) | |
| { | |
| trigger_error('NO_USER'); | |
| } | |
| $user_id = $userrow['user_id']; | |
| // Populate user id to the currently active module (this module) | |
| // The following method is another way of adjusting module urls. It is the easy variant if we want | |
| // to directly adjust the current module url based on data retrieved within the same module. | |
| if (strpos($this->u_action, "&u=$user_id") === false) | |
| { | |
| $this->p_master->adjust_url('&u=' . $user_id); | |
| $this->u_action .= "&u=$user_id"; | |
| } | |
| $deletemark = ($action == 'del_marked') ? true : false; | |
| $deleteall = ($action == 'del_all') ? true : false; | |
| $marked = $request->variable('marknote', array(0)); | |
| $usernote = $request->variable('usernote', '', true); | |
| // Handle any actions | |
| if (($deletemark || $deleteall) && $auth->acl_get('a_clearlogs')) | |
| { | |
| $where_sql = ''; | |
| if ($deletemark && $marked) | |
| { | |
| $sql_in = array(); | |
| foreach ($marked as $mark) | |
| { | |
| $sql_in[] = $mark; | |
| } | |
| $where_sql = ' AND ' . $db->sql_in_set('log_id', $sql_in); | |
| unset($sql_in); | |
| } | |
| if ($where_sql || $deleteall) | |
| { | |
| if (check_form_key('mcp_notes')) | |
| { | |
| $sql = 'DELETE FROM ' . LOG_TABLE . ' | |
| WHERE log_type = ' . LOG_USERS . " | |
| AND reportee_id = $user_id | |
| $where_sql"; | |
| $db->sql_query($sql); | |
| $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_CLEAR_USER', false, array($userrow['username'])); | |
| $msg = ($deletemark) ? 'MARKED_NOTES_DELETED' : 'ALL_NOTES_DELETED'; | |
| } | |
| else | |
| { | |
| $msg = 'FORM_INVALID'; | |
| } | |
| $redirect = $this->u_action . '&u=' . $user_id; | |
| meta_refresh(3, $redirect); | |
| trigger_error($user->lang[$msg] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . $redirect . '">', '</a>')); | |
| } | |
| } | |
| if ($usernote && $action == 'add_feedback') | |
| { | |
| if (check_form_key('mcp_notes')) | |
| { | |
| $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_USER_FEEDBACK', false, array($userrow['username'])); | |
| $phpbb_log->add('mod', $user->data['user_id'], $user->ip, 'LOG_USER_FEEDBACK', false, array( | |
| 'forum_id' => 0, | |
| 'topic_id' => 0, | |
| $userrow['username'] | |
| )); | |
| $phpbb_log->add('user', $user->data['user_id'], $user->ip, 'LOG_USER_GENERAL', false, array( | |
| 'reportee_id' => $user_id, | |
| $usernote | |
| )); | |
| $msg = $user->lang['USER_FEEDBACK_ADDED']; | |
| } | |
| else | |
| { | |
| $msg = $user->lang['FORM_INVALID']; | |
| } | |
| $redirect = $this->u_action; | |
| meta_refresh(3, $redirect); | |
| trigger_error($msg . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . $redirect . '">', '</a>')); | |
| } | |
| if (!function_exists('phpbb_get_user_rank')) | |
| { | |
| include($phpbb_root_path . 'includes/functions_display.' . $phpEx); | |
| } | |
| // Generate the appropriate user information for the user we are looking at | |
| $rank_data = phpbb_get_user_rank($userrow, $userrow['user_posts']); | |
| $avatar_img = phpbb_get_user_avatar($userrow); | |
| $limit_days = array(0 => $user->lang['ALL_ENTRIES'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']); | |
| $sort_by_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_DATE'], 'c' => $user->lang['SORT_IP'], 'd' => $user->lang['SORT_ACTION']); | |
| $sort_by_sql = array('a' => 'u.username_clean', 'b' => 'l.log_time', 'c' => 'l.log_ip', 'd' => 'l.log_operation'); | |
| $s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = ''; | |
| gen_sort_selects($limit_days, $sort_by_text, $st, $sk, $sd, $s_limit_days, $s_sort_key, $s_sort_dir, $u_sort_param); | |
| // Define where and sort sql for use in displaying logs | |
| $sql_where = ($st) ? (time() - ($st * 86400)) : 0; | |
| $sql_sort = $sort_by_sql[$sk] . ' ' . (($sd == 'd') ? 'DESC' : 'ASC'); | |
| $keywords = $request->variable('keywords', '', true); | |
| $keywords_param = !empty($keywords) ? '&keywords=' . urlencode(htmlspecialchars_decode($keywords)) : ''; | |
| $log_data = array(); | |
| $log_count = 0; | |
| $start = view_log('user', $log_data, $log_count, $config['topics_per_page'], $start, 0, 0, $user_id, $sql_where, $sql_sort, $keywords); | |
| if ($log_count) | |
| { | |
| $template->assign_var('S_USER_NOTES', true); | |
| foreach ($log_data as $row) | |
| { | |
| $template->assign_block_vars('usernotes', array( | |
| 'REPORT_BY' => $row['username_full'], | |
| 'REPORT_AT' => $user->format_date($row['time']), | |
| 'ACTION' => $row['action'], | |
| 'IP' => $row['ip'], | |
| 'ID' => $row['id']) | |
| ); | |
| } | |
| } | |
| $base_url = $this->u_action . "&$u_sort_param$keywords_param"; | |
| $pagination->generate_template_pagination($base_url, 'pagination', 'start', $log_count, $config['topics_per_page'], $start); | |
| $template->assign_vars(array( | |
| 'U_POST_ACTION' => $this->u_action, | |
| 'S_CLEAR_ALLOWED' => ($auth->acl_get('a_clearlogs')) ? true : false, | |
| 'S_SELECT_SORT_DIR' => $s_sort_dir, | |
| 'S_SELECT_SORT_KEY' => $s_sort_key, | |
| 'S_SELECT_SORT_DAYS' => $s_limit_days, | |
| 'S_KEYWORDS' => $keywords, | |
| 'L_TITLE' => $user->lang['MCP_NOTES_USER'], | |
| 'TOTAL_REPORTS' => $user->lang('LIST_REPORTS', (int) $log_count), | |
| 'JOINED' => $user->format_date($userrow['user_regdate']), | |
| 'POSTS' => ($userrow['user_posts']) ? $userrow['user_posts'] : 0, | |
| 'WARNINGS' => ($userrow['user_warnings']) ? $userrow['user_warnings'] : 0, | |
| 'USERNAME_FULL' => get_username_string('full', $userrow['user_id'], $userrow['username'], $userrow['user_colour']), | |
| 'USERNAME_COLOUR' => get_username_string('colour', $userrow['user_id'], $userrow['username'], $userrow['user_colour']), | |
| 'USERNAME' => get_username_string('username', $userrow['user_id'], $userrow['username'], $userrow['user_colour']), | |
| 'U_PROFILE' => get_username_string('profile', $userrow['user_id'], $userrow['username'], $userrow['user_colour']), | |
| 'AVATAR_IMG' => $avatar_img, | |
| 'RANK_IMG' => $rank_data['img'], | |
| 'RANK_TITLE' => $rank_data['title'], | |
| )); | |
| } | |
| } |