sprintf($txt['profile_of_username'], $memberContext[$memID]['name']), 'can_send_pm' => allowedTo('pm_send'), 'can_have_buddy' => allowedTo('profile_identity_own') && !empty($modSettings['enable_buddylist']), 'can_issue_warning' => allowedTo('issue_warning') && $modSettings['warning_settings'][0] == 1, 'can_view_warning' => (allowedTo('moderate_forum') || allowedTo('issue_warning') || allowedTo('view_warning_any') || ($context['user']['is_owner'] && allowedTo('view_warning_own')) && $modSettings['warning_settings'][0] === 1) ); $context['member'] = &$memberContext[$memID]; // Set a canonical URL for this page. $context['canonical_url'] = $scripturl . '?action=profile;u=' . $memID; // Are there things we don't show? $context['disabled_fields'] = isset($modSettings['disabled_profile_fields']) ? array_flip(explode(',', $modSettings['disabled_profile_fields'])) : array(); // Menu tab $context[$context['profile_menu_name']]['tab_data'] = array( 'title' => $txt['summary'], 'icon' => 'profile_hd.png' ); // See if they have broken any warning levels... list ($modSettings['warning_enable'], $modSettings['user_limit']) = explode(',', $modSettings['warning_settings']); if (!empty($modSettings['warning_mute']) && $modSettings['warning_mute'] <= $context['member']['warning']) $context['warning_status'] = $txt['profile_warning_is_muted']; elseif (!empty($modSettings['warning_moderate']) && $modSettings['warning_moderate'] <= $context['member']['warning']) $context['warning_status'] = $txt['profile_warning_is_moderation']; elseif (!empty($modSettings['warning_watch']) && $modSettings['warning_watch'] <= $context['member']['warning']) $context['warning_status'] = $txt['profile_warning_is_watch']; // They haven't even been registered for a full day!? $days_registered = (int) ((time() - $user_profile[$memID]['date_registered']) / (3600 * 24)); if (empty($user_profile[$memID]['date_registered']) || $days_registered < 1) $context['member']['posts_per_day'] = $txt['not_applicable']; else $context['member']['posts_per_day'] = comma_format($context['member']['real_posts'] / $days_registered, 3); // Set the age... if (empty($context['member']['birth_date'])) { $context['member'] += array( 'age' => $txt['not_applicable'], 'today_is_birthday' => false ); } else { list ($birth_year, $birth_month, $birth_day) = sscanf($context['member']['birth_date'], '%d-%d-%d'); $datearray = getdate(forum_time()); $context['member'] += array( 'age' => $birth_year <= 4 ? $txt['not_applicable'] : $datearray['year'] - $birth_year - (($datearray['mon'] > $birth_month || ($datearray['mon'] == $birth_month && $datearray['mday'] >= $birth_day)) ? 0 : 1), 'today_is_birthday' => $datearray['mon'] == $birth_month && $datearray['mday'] == $birth_day ); } if (allowedTo('moderate_forum')) { // Make sure it's a valid ip address; otherwise, don't bother... if (preg_match('/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/', $memberContext[$memID]['ip']) == 1 && empty($modSettings['disableHostnameLookup'])) $context['member']['hostname'] = host_from_ip($memberContext[$memID]['ip']); else $context['member']['hostname'] = ''; $context['can_see_ip'] = true; } else $context['can_see_ip'] = false; if (!empty($modSettings['who_enabled'])) { include_once($sourcedir . '/Who.php'); $action = determineActions($user_profile[$memID]['url']); if ($action !== false) $context['member']['action'] = $action; } // If the user is awaiting activation, and the viewer has permission - setup some activation context messages. if ($context['member']['is_activated'] % 10 != 1 && allowedTo('moderate_forum')) { $context['activate_type'] = $context['member']['is_activated']; // What should the link text be? $context['activate_link_text'] = in_array($context['member']['is_activated'], array(3, 4, 5, 13, 14, 15)) ? $txt['account_approve'] : $txt['account_activate']; // Should we show a custom message? $context['activate_message'] = isset($txt['account_activate_method_' . $context['member']['is_activated'] % 10]) ? $txt['account_activate_method_' . $context['member']['is_activated'] % 10] : $txt['account_not_activated']; // If they can be approved, we need to set up a token for them. $context['token_check'] = 'profile-aa' . $memID; createToken($context['token_check'], 'get'); $context['activate_link'] = $scripturl . '?action=profile;save;area=activateaccount;u=' . $context['id_member'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';' . $context[$context['token_check'] . '_token_var'] . '=' . $context[$context['token_check'] . '_token']; } // Is the signature even enabled on this forum? $context['signature_enabled'] = substr($modSettings['signature_settings'], 0, 1) == 1; // How about, are they banned? $context['member']['bans'] = array(); if (allowedTo('moderate_forum')) { // Can they edit the ban? $context['can_edit_ban'] = allowedTo('manage_bans'); $ban_query = array(); $ban_query_vars = array( 'time' => time(), ); $ban_query[] = 'id_member = ' . $context['member']['id']; $ban_query[] = constructBanQueryIP($memberContext[$memID]['ip']); // Do we have a hostname already? if (!empty($context['member']['hostname'])) { $ban_query[] = '({string:hostname} LIKE hostname)'; $ban_query_vars['hostname'] = $context['member']['hostname']; } // Check their email as well... if (strlen($context['member']['email']) != 0) { $ban_query[] = '({string:email} LIKE bi.email_address)'; $ban_query_vars['email'] = $context['member']['email']; } // So... are they banned? Dying to know! $request = $smcFunc['db_query']('', ' SELECT bg.id_ban_group, bg.name, bg.cannot_access, bg.cannot_post, bg.cannot_register, bg.cannot_login, bg.reason FROM {db_prefix}ban_items AS bi INNER JOIN {db_prefix}ban_groups AS bg ON (bg.id_ban_group = bi.id_ban_group AND (bg.expire_time IS NULL OR bg.expire_time > {int:time})) WHERE (' . implode(' OR ', $ban_query) . ')', $ban_query_vars ); while ($row = $smcFunc['db_fetch_assoc']($request)) { // Work out what restrictions we actually have. $ban_restrictions = array(); foreach (array('access', 'register', 'login', 'post') as $type) if ($row['cannot_' . $type]) $ban_restrictions[] = $txt['ban_type_' . $type]; // No actual ban in place? if (empty($ban_restrictions)) continue; // Prepare the link for context. $ban_explanation = sprintf($txt['user_cannot_due_to'], implode(', ', $ban_restrictions), '' . $row['name'] . ''); $context['member']['bans'][$row['id_ban_group']] = array( 'reason' => empty($row['reason']) ? '' : '

' . $txt['ban_reason'] . ': ' . $row['reason'], 'cannot' => array( 'access' => !empty($row['cannot_access']), 'register' => !empty($row['cannot_register']), 'post' => !empty($row['cannot_post']), 'login' => !empty($row['cannot_login']), ), 'explanation' => $ban_explanation, ); } $smcFunc['db_free_result']($request); } // Are they hidden? if ($context['member']['online']['is_online'] && empty($user_profile[$memID]['show_online'])) $context['member']['is_hidden'] = true; loadCustomFields($memID); } /** * Fetch the alerts a user currently has. * * @param int $memID id_member * @param bool $all Fetch all, or only fetch unread. */ function fetch_alerts($memID, $all = false) { global $smcFunc, $txt, $scripturl, $memberContext; $alerts = array(); $request = $smcFunc['db_query']('', ' SELECT id_alert, alert_time, mem.id_member AS sender_id, IFNULL(mem.real_name, ua.member_name) AS sender_name, content_type, content_id, content_action, is_read, extra FROM {db_prefix}user_alerts AS ua LEFT JOIN {db_prefix}members AS mem ON (ua.id_member_started = mem.id_member) WHERE ua.id_member = {int:id_member}' . (!$all ? ' AND is_read = 0' : '') . ' ORDER BY id_alert DESC', array( 'id_member' => $memID, ) ); $senders = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) { $id_alert = array_shift($row); $row['time'] = timeformat($row['alert_time']); $row['extra'] = !empty($row['extra']) ? @unserialize($row['extra']) : array(); $alerts[$id_alert] = $row; if (!empty($row['sender_id'])) $senders[] = $row['sender_id']; } $smcFunc['db_free_result']($request); // Hooks might want to do something snazzy around their own content types - including enforcing permissions if appropriate. call_integration_hook('integrate_fetch_alerts', array(&$alerts)); if (!empty($senders)) { $senders = loadMemberData($senders); foreach ($senders as $member) loadMemberContext($member); } // Now go through and actually make with the text. loadLanguage('Alerts'); // For anything that wants us to check board or topic access, let's do that. $boards = array(); $topics = array(); $msgs = array(); foreach ($alerts as $id_alert => $alert) { if (isset($alert['extra']['board'])) $boards[$alert['extra']['board']] = $txt['board_na']; if (isset($alert['extra']['topic'])) $topics[$alert['extra']['topic']] = $txt['topic_na']; if ($alert['content_type'] == 'msg') $msgs[$alert['content_id']] = $txt['topic_na']; } // Having figured out what boards etc. there are, let's now get the names of them if we can see them. If not, there's already a fallback set up. if (!empty($boards)) { $request = $smcFunc['db_query']('', ' SELECT id_board, name FROM {db_prefix}boards AS b WHERE {query_see_board} AND id_board IN ({array_int:boards})', array( 'boards' => array_keys($boards), ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $boards[$row['id_board']] = '' . $row['name'] . ''; } if (!empty($topics)) { $request = $smcFunc['db_query']('', ' SELECT t.id_topic, m.subject FROM {db_prefix}topics AS t INNER JOIN {db_prefix}messages AS m ON (t.id_first_msg = m.id_msg) INNER JOIN {db_prefix}boards AS b ON (t.id_board = b.id_board) WHERE {query_see_board} AND t.id_topic IN ({array_int:topics})', array( 'topics' => array_keys($topics), ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $topics[$row['id_topic']] = '' . $row['subject'] . ''; } if (!empty($msgs)) { $request = $smcFunc['db_query']('', ' SELECT m.id_msg, t.id_topic, m.subject FROM {db_prefix}messages AS m INNER JOIN {db_prefix}topics AS t ON (t.id_first_msg = m.id_msg) INNER JOIN {db_prefix}boards AS b ON (m.id_board = b.id_board) WHERE {query_see_board} AND m.id_msg IN ({array_int:msgs})', array( 'msgs' => array_keys($msgs), ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $msgs[$row['id_msg']] = '' . $row['subject'] . ''; } // Now to go back through the alerts, reattach this extra information and then try to build the string out of it (if a hook didn't already) foreach ($alerts as $id_alert => $alert) { if (!empty($alert['text'])) continue; if (isset($alert['extra']['board'])) $alerts[$id_alert]['extra']['board_msg'] = $boards[$alert['extra']['board']]; if (isset($alert['extra']['topic'])) $alerts[$id_alert]['extra']['topic_msg'] = $topics[$alert['extra']['topic']]; if ($alert['content_type'] == 'msg') $alerts[$id_alert]['extra']['msg_msg'] = $msgs[$alert['content_id']]; if ($alert['content_type'] == 'profile') $alerts[$id_alert]['extra']['profile_msg'] = '' . $alerts[$id_alert]['extra']['user_name'] . ''; if (!empty($memberContext[$alert['sender_id']])) $alerts[$id_alert]['sender'] = &$memberContext[$alert['sender_id']]; $string = 'alert_' . $alert['content_type'] . '_' . $alert['content_action']; if (isset($txt[$string])) { $extra = $alerts[$id_alert]['extra']; $search = array('{member_link}', '{scripturl}'); $repl = array(!empty($alert['sender_id']) ? '' . $alert['sender_name'] . '' : $alert['sender_name'], $scripturl); foreach ($extra as $k => $v) { $search[] = '{' . $k . '}'; $repl[] = $v; } $alerts[$id_alert]['text'] = str_replace($search, $repl, $txt[$string]); } } return $alerts; } /** * Show all posts by the current user * @todo This function needs to be split up properly. * * @param int $memID id_member */ function showPosts($memID) { global $txt, $user_info, $scripturl, $modSettings; global $context, $user_profile, $sourcedir, $smcFunc, $board; // Some initial context. $context['start'] = (int) $_REQUEST['start']; $context['current_member'] = $memID; // Create the tabs for the template. $context[$context['profile_menu_name']]['tab_data'] = array( 'title' => $txt['showPosts'], 'description' => $txt['showPosts_help'], 'icon' => 'profile_hd.png', 'tabs' => array( 'messages' => array( ), 'topics' => array( ), 'unwatchedtopics' => array( ), 'attach' => array( ), ), ); // Shortcut used to determine which $txt['show*'] string to use for the title, based on the SA $title = array( 'attach' => 'Attachments', 'unwatchedtopics' => 'Unwatched', 'topics' => 'Topics' ); // Set the page title if (isset($_GET['sa']) && array_key_exists($_GET['sa'], $title)) $context['page_title'] = $txt['show' . $title[$_GET['sa']]]; else $context['page_title'] = $txt['showPosts']; $context['page_title'] .= ' - ' . $user_profile[$memID]['real_name']; // Is the load average too high to allow searching just now? if (!empty($context['load_average']) && !empty($modSettings['loadavg_show_posts']) && $context['load_average'] >= $modSettings['loadavg_show_posts']) fatal_lang_error('loadavg_show_posts_disabled', false); // If we're specifically dealing with attachments use that function! if (isset($_GET['sa']) && $_GET['sa'] == 'attach') return showAttachments($memID); // Instead, if we're dealing with unwatched topics (and the feature is enabled) use that other function. elseif (isset($_GET['sa']) && $_GET['sa'] == 'unwatchedtopics' && $modSettings['enable_unwatch']) return showUnwatched($memID); // Are we just viewing topics? $context['is_topics'] = isset($_GET['sa']) && $_GET['sa'] == 'topics' ? true : false; // If just deleting a message, do it and then redirect back. if (isset($_GET['delete']) && !$context['is_topics']) { checkSession('get'); // We need msg info for logging. $request = $smcFunc['db_query']('', ' SELECT subject, id_member, id_topic, id_board FROM {db_prefix}messages WHERE id_msg = {int:id_msg}', array( 'id_msg' => (int) $_GET['delete'], ) ); $info = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // Trying to remove a message that doesn't exist. if (empty($info)) redirectexit('action=profile;u=' . $memID . ';area=showposts;start=' . $_GET['start']); // We can be lazy, since removeMessage() will check the permissions for us. require_once($sourcedir . '/RemoveTopic.php'); removeMessage((int) $_GET['delete']); // Add it to the mod log. if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) logAction('delete', array('topic' => $info[2], 'subject' => $info[0], 'member' => $info[1], 'board' => $info[3])); // Back to... where we are now ;). redirectexit('action=profile;u=' . $memID . ';area=showposts;start=' . $_GET['start']); } // Default to 10. if (empty($_REQUEST['viewscount']) || !is_numeric($_REQUEST['viewscount'])) $_REQUEST['viewscount'] = '10'; if ($context['is_topics']) $request = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}topics AS t' . ($user_info['query_see_board'] == '1=1' ? '' : ' INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board AND {query_see_board})') . ' WHERE t.id_member_started = {int:current_member}' . (!empty($board) ? ' AND t.id_board = {int:board}' : '') . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND t.approved = {int:is_approved}'), array( 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); else $request = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}messages AS m' . ($user_info['query_see_board'] == '1=1' ? '' : ' INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board AND {query_see_board})') . ' WHERE m.id_member = {int:current_member}' . (!empty($board) ? ' AND m.id_board = {int:board}' : '') . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND m.approved = {int:is_approved}'), array( 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); list ($msgCount) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); $request = $smcFunc['db_query']('', ' SELECT MIN(id_msg), MAX(id_msg) FROM {db_prefix}messages AS m WHERE m.id_member = {int:current_member}' . (!empty($board) ? ' AND m.id_board = {int:board}' : '') . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND m.approved = {int:is_approved}'), array( 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); list ($min_msg_member, $max_msg_member) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); $reverse = false; $range_limit = ''; $maxIndex = (int) $modSettings['defaultMaxMessages']; // Make sure the starting place makes sense and construct our friend the page index. $context['page_index'] = constructPageIndex($scripturl . '?action=profile;u=' . $memID . ';area=showposts' . ($context['is_topics'] ? ';sa=topics' : '') . (!empty($board) ? ';board=' . $board : ''), $context['start'], $msgCount, $maxIndex); $context['current_page'] = $context['start'] / $maxIndex; // Reverse the query if we're past 50% of the pages for better performance. $start = $context['start']; $reverse = $_REQUEST['start'] > $msgCount / 2; if ($reverse) { $maxIndex = $msgCount < $context['start'] + $modSettings['defaultMaxMessages'] + 1 && $msgCount > $context['start'] ? $msgCount - $context['start'] : (int) $modSettings['defaultMaxMessages']; $start = $msgCount < $context['start'] + $modSettings['defaultMaxMessages'] + 1 || $msgCount < $context['start'] + $modSettings['defaultMaxMessages'] ? 0 : $msgCount - $context['start'] - $modSettings['defaultMaxMessages']; } // Guess the range of messages to be shown. if ($msgCount > 1000) { $margin = floor(($max_msg_member - $min_msg_member) * (($start + $modSettings['defaultMaxMessages']) / $msgCount) + .1 * ($max_msg_member - $min_msg_member)); // Make a bigger margin for topics only. if ($context['is_topics']) { $margin *= 5; $range_limit = $reverse ? 't.id_first_msg < ' . ($min_msg_member + $margin) : 't.id_first_msg > ' . ($max_msg_member - $margin); } else $range_limit = $reverse ? 'm.id_msg < ' . ($min_msg_member + $margin) : 'm.id_msg > ' . ($max_msg_member - $margin); } // Find this user's posts. The left join on categories somehow makes this faster, weird as it looks. $looped = false; while (true) { if ($context['is_topics']) { $request = $smcFunc['db_query']('', ' SELECT b.id_board, b.name AS bname, c.id_cat, c.name AS cname, t.id_member_started, t.id_first_msg, t.id_last_msg, t.approved, m.body, m.smileys_enabled, m.subject, m.poster_time, m.id_topic, m.id_msg FROM {db_prefix}topics AS t INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board) LEFT JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat) INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg) WHERE t.id_member_started = {int:current_member}' . (!empty($board) ? ' AND t.id_board = {int:board}' : '') . (empty($range_limit) ? '' : ' AND ' . $range_limit) . ' AND {query_see_board}' . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND t.approved = {int:is_approved} AND m.approved = {int:is_approved}') . ' ORDER BY t.id_first_msg ' . ($reverse ? 'ASC' : 'DESC') . ' LIMIT ' . $start . ', ' . $maxIndex, array( 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); } else { $request = $smcFunc['db_query']('', ' SELECT b.id_board, b.name AS bname, c.id_cat, c.name AS cname, m.id_topic, m.id_msg, t.id_member_started, t.id_first_msg, t.id_last_msg, m.body, m.smileys_enabled, m.subject, m.poster_time, m.approved FROM {db_prefix}messages AS m INNER JOIN {db_prefix}topics AS t ON (t.id_topic = m.id_topic) INNER JOIN {db_prefix}boards AS b ON (b.id_board = t.id_board) LEFT JOIN {db_prefix}categories AS c ON (c.id_cat = b.id_cat) WHERE m.id_member = {int:current_member}' . (!empty($board) ? ' AND b.id_board = {int:board}' : '') . (empty($range_limit) ? '' : ' AND ' . $range_limit) . ' AND {query_see_board}' . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND t.approved = {int:is_approved} AND m.approved = {int:is_approved}') . ' ORDER BY m.id_msg ' . ($reverse ? 'ASC' : 'DESC') . ' LIMIT ' . $start . ', ' . $maxIndex, array( 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); } // Make sure we quit this loop. if ($smcFunc['db_num_rows']($request) === $maxIndex || $looped) break; $looped = true; $range_limit = ''; } // Start counting at the number of the first message displayed. $counter = $reverse ? $context['start'] + $maxIndex + 1 : $context['start']; $context['posts'] = array(); $board_ids = array('own' => array(), 'any' => array()); while ($row = $smcFunc['db_fetch_assoc']($request)) { // Censor.... censorText($row['body']); censorText($row['subject']); // Do the code. $row['body'] = parse_bbc($row['body'], $row['smileys_enabled'], $row['id_msg']); // And the array... $context['posts'][$counter += $reverse ? -1 : 1] = array( 'body' => $row['body'], 'counter' => $counter, 'alternate' => $counter % 2, 'category' => array( 'name' => $row['cname'], 'id' => $row['id_cat'] ), 'board' => array( 'name' => $row['bname'], 'id' => $row['id_board'] ), 'topic' => $row['id_topic'], 'subject' => $row['subject'], 'start' => 'msg' . $row['id_msg'], 'time' => timeformat($row['poster_time']), 'timestamp' => forum_time(true, $row['poster_time']), 'id' => $row['id_msg'], 'can_reply' => false, 'can_mark_notify' => !$context['user']['is_guest'], 'can_delete' => false, 'delete_possible' => ($row['id_first_msg'] != $row['id_msg'] || $row['id_last_msg'] == $row['id_msg']) && (empty($modSettings['edit_disable_time']) || $row['poster_time'] + $modSettings['edit_disable_time'] * 60 >= time()), 'approved' => $row['approved'], ); if ($user_info['id'] == $row['id_member_started']) $board_ids['own'][$row['id_board']][] = $counter; $board_ids['any'][$row['id_board']][] = $counter; } $smcFunc['db_free_result']($request); // All posts were retrieved in reverse order, get them right again. if ($reverse) $context['posts'] = array_reverse($context['posts'], true); // These are all the permissions that are different from board to board.. if ($context['is_topics']) $permissions = array( 'own' => array( 'post_reply_own' => 'can_reply', ), 'any' => array( 'post_reply_any' => 'can_reply', ) ); else $permissions = array( 'own' => array( 'post_reply_own' => 'can_reply', 'delete_own' => 'can_delete', ), 'any' => array( 'post_reply_any' => 'can_reply', 'delete_any' => 'can_delete', ) ); // For every permission in the own/any lists... foreach ($permissions as $type => $list) { foreach ($list as $permission => $allowed) { // Get the boards they can do this on... $boards = boardsAllowedTo($permission); // Hmm, they can do it on all boards, can they? if (!empty($boards) && $boards[0] == 0) $boards = array_keys($board_ids[$type]); // Now go through each board they can do the permission on. foreach ($boards as $board_id) { // There aren't any posts displayed from this board. if (!isset($board_ids[$type][$board_id])) continue; // Set the permission to true ;). foreach ($board_ids[$type][$board_id] as $counter) $context['posts'][$counter][$allowed] = true; } } } // Clean up after posts that cannot be deleted and quoted. $quote_enabled = empty($modSettings['disabledBBC']) || !in_array('quote', explode(',', $modSettings['disabledBBC'])); foreach ($context['posts'] as $counter => $dummy) { $context['posts'][$counter]['can_delete'] &= $context['posts'][$counter]['delete_possible']; $context['posts'][$counter]['can_quote'] = $context['posts'][$counter]['can_reply'] && $quote_enabled; } } /** * Show all the attachments of a user. * * @param int $memID id_member */ function showAttachments($memID) { global $txt, $scripturl, $modSettings, $board; global $context, $user_profile, $sourcedir, $smcFunc; // OBEY permissions! $boardsAllowed = boardsAllowedTo('view_attachments'); // Make sure we can't actually see anything... if (empty($boardsAllowed)) $boardsAllowed = array(-1); require_once($sourcedir . '/Subs-List.php'); // This is all the information required to list attachments. $listOptions = array( 'id' => 'attachments', 'width' => '100%', 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['show_attachments_none'], 'base_href' => $scripturl . '?action=profile;area=showposts;sa=attach;u=' . $memID, 'default_sort_col' => 'filename', 'get_items' => array( 'function' => 'list_getAttachments', 'params' => array( $boardsAllowed, $memID, ), ), 'get_count' => array( 'function' => 'list_getNumAttachments', 'params' => array( $boardsAllowed, $memID, ), ), 'data_check' => array( 'class' => create_function('$data', ' return $data[\'approved\'] ? \'\' : \'approvebg\'; ') ), 'columns' => array( 'filename' => array( 'header' => array( 'value' => $txt['show_attach_filename'], 'class' => 'lefttext', 'style' => 'width: 25%;', ), 'data' => array( 'sprintf' => array( 'format' => '%3$s', 'params' => array( 'topic' => true, 'id' => true, 'filename' => false, ), ), ), 'sort' => array( 'default' => 'a.filename', 'reverse' => 'a.filename DESC', ), ), 'downloads' => array( 'header' => array( 'value' => $txt['show_attach_downloads'], 'style' => 'width: 12%;', ), 'data' => array( 'db' => 'downloads', 'comma_format' => true, ), 'sort' => array( 'default' => 'a.downloads', 'reverse' => 'a.downloads DESC', ), ), 'subject' => array( 'header' => array( 'value' => $txt['message'], 'class' => 'lefttext', 'style' => 'width: 30%;', ), 'data' => array( 'sprintf' => array( 'format' => '%2$s', 'params' => array( 'msg' => true, 'subject' => false, ), ), ), 'sort' => array( 'default' => 'm.subject', 'reverse' => 'm.subject DESC', ), ), 'posted' => array( 'header' => array( 'value' => $txt['show_attach_posted'], 'class' => 'lefttext', ), 'data' => array( 'db' => 'posted', 'timeformat' => true, ), 'sort' => array( 'default' => 'm.poster_time', 'reverse' => 'm.poster_time DESC', ), ), ), ); // Create the request list. createList($listOptions); } /** * Get a list of attachments for this user * * @param int $start * @param int $items_per_page * @param string $sort * @param array $boardsAllowed * @param ing $memID * @return array */ function list_getAttachments($start, $items_per_page, $sort, $boardsAllowed, $memID) { global $smcFunc, $board, $modSettings, $context; // Retrieve some attachments. $request = $smcFunc['db_query']('', ' SELECT a.id_attach, a.id_msg, a.filename, a.downloads, a.approved, m.id_msg, m.id_topic, m.id_board, m.poster_time, m.subject, b.name FROM {db_prefix}attachments AS a INNER JOIN {db_prefix}messages AS m ON (m.id_msg = a.id_msg) INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board AND {query_see_board}) WHERE a.attachment_type = {int:attachment_type} AND a.id_msg != {int:no_message} AND m.id_member = {int:current_member}' . (!empty($board) ? ' AND b.id_board = {int:board}' : '') . (!in_array(0, $boardsAllowed) ? ' AND b.id_board IN ({array_int:boards_list})' : '') . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND m.approved = {int:is_approved}') . ' ORDER BY {raw:sort} LIMIT {int:offset}, {int:limit}', array( 'boards_list' => $boardsAllowed, 'attachment_type' => 0, 'no_message' => 0, 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, 'sort' => $sort, 'offset' => $start, 'limit' => $items_per_page, ) ); $attachments = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $attachments[] = array( 'id' => $row['id_attach'], 'filename' => $row['filename'], 'downloads' => $row['downloads'], 'subject' => censorText($row['subject']), 'posted' => $row['poster_time'], 'msg' => $row['id_msg'], 'topic' => $row['id_topic'], 'board' => $row['id_board'], 'board_name' => $row['name'], 'approved' => $row['approved'], ); $smcFunc['db_free_result']($request); return $attachments; } /** * Gets the total number of attachments for the user * * @param type $boardsAllowed * @param type $memID * @return type */ function list_getNumAttachments($boardsAllowed, $memID) { global $board, $smcFunc, $modSettings, $context; // Get the total number of attachments they have posted. $request = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}attachments AS a INNER JOIN {db_prefix}messages AS m ON (m.id_msg = a.id_msg) INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board AND {query_see_board}) WHERE a.attachment_type = {int:attachment_type} AND a.id_msg != {int:no_message} AND m.id_member = {int:current_member}' . (!empty($board) ? ' AND b.id_board = {int:board}' : '') . (!in_array(0, $boardsAllowed) ? ' AND b.id_board IN ({array_int:boards_list})' : '') . (!$modSettings['postmod_active'] || $context['user']['is_owner'] ? '' : ' AND m.approved = {int:is_approved}'), array( 'boards_list' => $boardsAllowed, 'attachment_type' => 0, 'no_message' => 0, 'current_member' => $memID, 'is_approved' => 1, 'board' => $board, ) ); list ($attachCount) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); return $attachCount; } /** * Show all the unwatched topics. * * @param int $memID id_member */ function showUnwatched($memID) { global $txt, $user_info, $scripturl, $modSettings, $board, $context, $sourcedir, $smcFunc; // Only the owner can see the list (if the function is enabled of course) if ($user_info['id'] != $memID || !$modSettings['enable_unwatch']) return; require_once($sourcedir . '/Subs-List.php'); // And here they are: the topics you don't like $listOptions = array( 'id' => 'unwatched_topics', 'width' => '100%', 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['unwatched_topics_none'], 'base_href' => $scripturl . '?action=profile;area=showposts;sa=unwatchedtopics;u=' . $memID, 'default_sort_col' => 'started_on', 'get_items' => array( 'function' => 'list_getUnwatched', 'params' => array( $memID, ), ), 'get_count' => array( 'function' => 'list_getNumUnwatched', 'params' => array( $memID, ), ), 'columns' => array( 'subject' => array( 'header' => array( 'value' => $txt['subject'], 'class' => 'lefttext', 'style' => 'width: 30%;', ), 'data' => array( 'sprintf' => array( 'format' => '%2$s', 'params' => array( 'id_topic' => false, 'subject' => false, ), ), ), 'sort' => array( 'default' => 'm.subject', 'reverse' => 'm.subject DESC', ), ), 'started_by' => array( 'header' => array( 'value' => $txt['started_by'], 'style' => 'width: 15%;', ), 'data' => array( 'db' => 'started_by', ), 'sort' => array( 'default' => 'mem.real_name', 'reverse' => 'mem.real_name DESC', ), ), 'started_on' => array( 'header' => array( 'value' => $txt['on'], 'class' => 'lefttext', 'style' => 'width: 20%;', ), 'data' => array( 'db' => 'started_on', 'timeformat' => true, ), 'sort' => array( 'default' => 'm.poster_time', 'reverse' => 'm.poster_time DESC', ), ), 'last_post_by' => array( 'header' => array( 'value' => $txt['last_post'], 'style' => 'width: 15%;', ), 'data' => array( 'db' => 'last_post_by', ), 'sort' => array( 'default' => 'mem.real_name', 'reverse' => 'mem.real_name DESC', ), ), 'last_post_on' => array( 'header' => array( 'value' => $txt['on'], 'class' => 'lefttext', 'style' => 'width: 20%;', ), 'data' => array( 'db' => 'last_post_on', 'timeformat' => true, ), 'sort' => array( 'default' => 'm.poster_time', 'reverse' => 'm.poster_time DESC', ), ), ), ); // Create the request list. createList($listOptions); $context['sub_template'] = 'show_list'; $context['default_list'] = 'unwatched_topics'; } /** * Get the relevant topics in the unwatched list */ function list_getUnwatched($start, $items_per_page, $sort, $memID) { global $smcFunc; // Get the list of topics we can see $request = $smcFunc['db_query']('', ' SELECT lt.id_topic FROM {db_prefix}log_topics as lt LEFT JOIN {db_prefix}topics as t ON (lt.id_topic = t.id_topic) LEFT JOIN {db_prefix}boards as b ON (t.id_board = b.id_board) LEFT JOIN {db_prefix}messages as m ON (t.id_first_msg = m.id_msg)' . (in_array($sort, array('mem.real_name', 'mem.real_name DESC', 'mem.poster_time', 'mem.poster_time DESC')) ? ' LEFT JOIN {db_prefix}members as mem ON (m.id_member = mem.id_member)' : '') . ' WHERE lt.id_member = {int:current_member} AND unwatched = 1 AND {query_see_board} ORDER BY {raw:sort} LIMIT {int:offset}, {int:limit}', array( 'current_member' => $memID, 'sort' => $sort, 'offset' => $start, 'limit' => $items_per_page, ) ); $topics = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $topics[] = $row['id_topic']; $smcFunc['db_free_result']($request); // Any topics found? $topicsInfo = array(); if (!empty($topics)) { $request = $smcFunc['db_query']('', ' SELECT mf.subject, mf.poster_time as started_on, IFNULL(memf.real_name, mf.poster_name) as started_by, ml.poster_time as last_post_on, IFNULL(meml.real_name, ml.poster_name) as last_post_by, t.id_topic FROM {db_prefix}topics AS t INNER JOIN {db_prefix}messages AS ml ON (ml.id_msg = t.id_last_msg) INNER JOIN {db_prefix}messages AS mf ON (mf.id_msg = t.id_first_msg) LEFT JOIN {db_prefix}members AS meml ON (meml.id_member = ml.id_member) LEFT JOIN {db_prefix}members AS memf ON (memf.id_member = mf.id_member) WHERE t.id_topic IN ({array_int:topics})', array( 'topics' => $topics, ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $topicsInfo[] = $row; $smcFunc['db_free_result']($request); } return $topicsInfo; } /** * Count the number of topics in the unwatched list * * @param int $memID */ function list_getNumUnwatched($memID) { global $smcFunc; // Get the total number of attachments they have posted. $request = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}log_topics as lt LEFT JOIN {db_prefix}topics as t ON (lt.id_topic = t.id_topic) LEFT JOIN {db_prefix}boards as b ON (t.id_board = b.id_board) WHERE id_member = {int:current_member} AND unwatched = 1 AND {query_see_board}', array( 'current_member' => $memID, ) ); list ($unwatchedCount) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); return $unwatchedCount; } /** * Gets the user stats for display * * @param int $memID id_member */ function statPanel($memID) { global $txt, $scripturl, $context, $user_profile, $user_info, $modSettings, $smcFunc; $context['page_title'] = $txt['statPanel_showStats'] . ' ' . $user_profile[$memID]['real_name']; // Is the load average too high to allow searching just now? if (!empty($context['load_average']) && !empty($modSettings['loadavg_userstats']) && $context['load_average'] >= $modSettings['loadavg_userstats']) fatal_lang_error('loadavg_userstats_disabled', false); // General user statistics. $timeDays = floor($user_profile[$memID]['total_time_logged_in'] / 86400); $timeHours = floor(($user_profile[$memID]['total_time_logged_in'] % 86400) / 3600); $context['time_logged_in'] = ($timeDays > 0 ? $timeDays . $txt['totalTimeLogged2'] : '') . ($timeHours > 0 ? $timeHours . $txt['totalTimeLogged3'] : '') . floor(($user_profile[$memID]['total_time_logged_in'] % 3600) / 60) . $txt['totalTimeLogged4']; $context['num_posts'] = comma_format($user_profile[$memID]['posts']); // Menu tab $context[$context['profile_menu_name']]['tab_data'] = array( 'title' => $txt['statPanel_generalStats'] . ' - ' . $context['member']['name'], 'icon' => 'stats_info_hd.png' ); // Number of topics started. $result = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}topics WHERE id_member_started = {int:current_member}' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? ' AND id_board != {int:recycle_board}' : ''), array( 'current_member' => $memID, 'recycle_board' => $modSettings['recycle_board'], ) ); list ($context['num_topics']) = $smcFunc['db_fetch_row']($result); $smcFunc['db_free_result']($result); // Number polls started. $result = $smcFunc['db_query']('', ' SELECT COUNT(*) FROM {db_prefix}topics WHERE id_member_started = {int:current_member}' . (!empty($modSettings['recycle_enable']) && $modSettings['recycle_board'] > 0 ? ' AND id_board != {int:recycle_board}' : '') . ' AND id_poll != {int:no_poll}', array( 'current_member' => $memID, 'recycle_board' => $modSettings['recycle_board'], 'no_poll' => 0, ) ); list ($context['num_polls']) = $smcFunc['db_fetch_row']($result); $smcFunc['db_free_result']($result); // Number polls voted in. $result = $smcFunc['db_query']('distinct_poll_votes', ' SELECT COUNT(DISTINCT id_poll) FROM {db_prefix}log_polls WHERE id_member = {int:current_member}', array( 'current_member' => $memID, ) ); list ($context['num_votes']) = $smcFunc['db_fetch_row']($result); $smcFunc['db_free_result']($result); // Format the numbers... $context['num_topics'] = comma_format($context['num_topics']); $context['num_polls'] = comma_format($context['num_polls']); $context['num_votes'] = comma_format($context['num_votes']); // Grab the board this member posted in most often. $result = $smcFunc['db_query']('', ' SELECT b.id_board, MAX(b.name) AS name, MAX(b.num_posts) AS num_posts, COUNT(*) AS message_count FROM {db_prefix}messages AS m INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board) WHERE m.id_member = {int:current_member} AND b.count_posts = {int:count_enabled} AND {query_see_board} GROUP BY b.id_board ORDER BY message_count DESC LIMIT 10', array( 'current_member' => $memID, 'count_enabled' => 0, ) ); $context['popular_boards'] = array(); while ($row = $smcFunc['db_fetch_assoc']($result)) { $context['popular_boards'][$row['id_board']] = array( 'id' => $row['id_board'], 'posts' => $row['message_count'], 'href' => $scripturl . '?board=' . $row['id_board'] . '.0', 'link' => '' . $row['name'] . '', 'posts_percent' => $user_profile[$memID]['posts'] == 0 ? 0 : ($row['message_count'] * 100) / $user_profile[$memID]['posts'], 'total_posts' => $row['num_posts'], 'total_posts_member' => $user_profile[$memID]['posts'], ); } $smcFunc['db_free_result']($result); // Now get the 10 boards this user has most often participated in. $result = $smcFunc['db_query']('profile_board_stats', ' SELECT b.id_board, MAX(b.name) AS name, b.num_posts, COUNT(*) AS message_count, CASE WHEN COUNT(*) > MAX(b.num_posts) THEN 1 ELSE COUNT(*) / MAX(b.num_posts) END * 100 AS percentage FROM {db_prefix}messages AS m INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board) WHERE m.id_member = {int:current_member} AND {query_see_board} GROUP BY b.id_board, b.num_posts ORDER BY percentage DESC LIMIT 10', array( 'current_member' => $memID, ) ); $context['board_activity'] = array(); while ($row = $smcFunc['db_fetch_assoc']($result)) { $context['board_activity'][$row['id_board']] = array( 'id' => $row['id_board'], 'posts' => $row['message_count'], 'href' => $scripturl . '?board=' . $row['id_board'] . '.0', 'link' => '' . $row['name'] . '', 'percent' => comma_format((float) $row['percentage'], 2), 'posts_percent' => (float) $row['percentage'], 'total_posts' => $row['num_posts'], ); } $smcFunc['db_free_result']($result); // Posting activity by time. $result = $smcFunc['db_query']('user_activity_by_time', ' SELECT HOUR(FROM_UNIXTIME(poster_time + {int:time_offset})) AS hour, COUNT(*) AS post_count FROM {db_prefix}messages WHERE id_member = {int:current_member}' . ($modSettings['totalMessages'] > 100000 ? ' AND id_topic > {int:top_ten_thousand_topics}' : '') . ' GROUP BY hour', array( 'current_member' => $memID, 'top_ten_thousand_topics' => $modSettings['totalTopics'] - 10000, 'time_offset' => (($user_info['time_offset'] + $modSettings['time_offset']) * 3600), ) ); $maxPosts = $realPosts = 0; $context['posts_by_time'] = array(); while ($row = $smcFunc['db_fetch_assoc']($result)) { // Cast as an integer to remove the leading 0. $row['hour'] = (int) $row['hour']; $maxPosts = max($row['post_count'], $maxPosts); $realPosts += $row['post_count']; $context['posts_by_time'][$row['hour']] = array( 'hour' => $row['hour'], 'hour_format' => stripos($user_info['time_format'], '%p') === false ? $row['hour'] : date('g a', mktime($row['hour'])), 'posts' => $row['post_count'], 'posts_percent' => 0, 'is_last' => $row['hour'] == 23, ); } $smcFunc['db_free_result']($result); if ($maxPosts > 0) for ($hour = 0; $hour < 24; $hour++) { if (!isset($context['posts_by_time'][$hour])) $context['posts_by_time'][$hour] = array( 'hour' => $hour, 'hour_format' => stripos($user_info['time_format'], '%p') === false ? $hour : date('g a', mktime($hour)), 'posts' => 0, 'posts_percent' => 0, 'relative_percent' => 0, 'is_last' => $hour == 23, ); else { $context['posts_by_time'][$hour]['posts_percent'] = round(($context['posts_by_time'][$hour]['posts'] * 100) / $realPosts); $context['posts_by_time'][$hour]['relative_percent'] = round(($context['posts_by_time'][$hour]['posts'] * 100) / $maxPosts); } } // Put it in the right order. ksort($context['posts_by_time']); // Custom stats (just add a template_layer to add it to the template!) call_integration_hook('integrate_profile_stats', array($memID)); } /** * @todo needs a description * * @param int $memID id_member */ function tracking($memID) { global $sourcedir, $context, $txt, $scripturl, $modSettings, $user_profile; $subActions = array( 'activity' => array('trackActivity', $txt['trackActivity'], 'moderate_forum'), 'ip' => array('TrackIP', $txt['trackIP'], 'moderate_forum'), 'edits' => array('trackEdits', $txt['trackEdits'], 'moderate_forum'), 'groupreq' => array('trackGroupReq', $txt['trackGroupRequests'], 'approve_group_requests'), 'logins' => array('TrackLogins', $txt['trackLogins'], 'moderate_forum'), ); foreach ($subActions as $sa => $action) { if (!allowedTo($action[2])) unset($subActions[$sa]); } // Create the tabs for the template. $context[$context['profile_menu_name']]['tab_data'] = array( 'title' => $txt['tracking'], 'description' => $txt['tracking_description'], 'icon' => 'profile_hd.png', 'tabs' => array( 'activity' => array(), 'ip' => array(), 'edits' => array(), 'groupreq' => array(), 'logins' => array(), ), ); // Moderation must be on to track edits. if (empty($modSettings['userlog_enabled'])) unset($context[$context['profile_menu_name']]['tab_data']['edits'], $subActions['edits']); // Group requests must be active to show it... if (empty($modSettings['show_group_membership'])) unset($context[$context['profile_menu_name']]['tab_data']['groupreq'], $subActions['groupreq']); if (empty($subActions)) fatal_lang_error('no_access', false); $keys = array_keys($subActions); $default = array_shift($keys); $context['tracking_area'] = isset($_GET['sa']) && isset($subActions[$_GET['sa']]) ? $_GET['sa'] : $default; // Set a page title. $context['page_title'] = $txt['trackUser'] . ' - ' . $subActions[$context['tracking_area']][1] . ' - ' . $user_profile[$memID]['real_name']; // Pass on to the actual function. $context['sub_template'] = $subActions[$context['tracking_area']][0]; $subActions[$context['tracking_area']][0]($memID); } /** * @todo needs a description * * @param int $memID id_member */ function trackActivity($memID) { global $scripturl, $txt, $modSettings, $sourcedir; global $user_profile, $context, $smcFunc; // Verify if the user has sufficient permissions. isAllowedTo('moderate_forum'); $context['last_ip'] = $user_profile[$memID]['member_ip']; if ($context['last_ip'] != $user_profile[$memID]['member_ip2']) $context['last_ip2'] = $user_profile[$memID]['member_ip2']; $context['member']['name'] = $user_profile[$memID]['real_name']; // Set the options for the list component. $listOptions = array( 'id' => 'track_user_list', 'title' => $txt['errors_by'] . ' ' . $context['member']['name'], 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['no_errors_from_user'], 'base_href' => $scripturl . '?action=profile;area=tracking;sa=user;u=' . $memID, 'default_sort_col' => 'date', 'get_items' => array( 'function' => 'list_getUserErrors', 'params' => array( 'le.id_member = {int:current_member}', array('current_member' => $memID), ), ), 'get_count' => array( 'function' => 'list_getUserErrorCount', 'params' => array( 'id_member = {int:current_member}', array('current_member' => $memID), ), ), 'columns' => array( 'ip_address' => array( 'header' => array( 'value' => $txt['ip_address'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s', 'params' => array( 'ip' => false, ), ), ), 'sort' => array( 'default' => 'le.ip', 'reverse' => 'le.ip DESC', ), ), 'message' => array( 'header' => array( 'value' => $txt['message'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s
%2$s', 'params' => array( 'message' => false, 'url' => false, ), ), ), ), 'date' => array( 'header' => array( 'value' => $txt['date'], ), 'data' => array( 'db' => 'time', ), 'sort' => array( 'default' => 'le.id_error DESC', 'reverse' => 'le.id_error', ), ), ), 'additional_rows' => array( array( 'position' => 'after_title', 'value' => $txt['errors_desc'], 'class' => 'windowbg2', 'style' => 'padding: 1ex 2ex;', ), ), ); // Create the list for viewing. require_once($sourcedir . '/Subs-List.php'); createList($listOptions); // @todo cache this // If this is a big forum, or a large posting user, let's limit the search. if ($modSettings['totalMessages'] > 50000 && $user_profile[$memID]['posts'] > 500) { $request = $smcFunc['db_query']('', ' SELECT MAX(id_msg) FROM {db_prefix}messages AS m WHERE m.id_member = {int:current_member}', array( 'current_member' => $memID, ) ); list ($max_msg_member) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // There's no point worrying ourselves with messages made yonks ago, just get recent ones! $min_msg_member = max(0, $max_msg_member - $user_profile[$memID]['posts'] * 3); } // Default to at least the ones we know about. $ips = array( $user_profile[$memID]['member_ip'], $user_profile[$memID]['member_ip2'], ); // @todo cache this // Get all IP addresses this user has used for his messages. $request = $smcFunc['db_query']('', ' SELECT poster_ip FROM {db_prefix}messages WHERE id_member = {int:current_member} ' . (isset($min_msg_member) ? ' AND id_msg >= {int:min_msg_member} AND id_msg <= {int:max_msg_member}' : '') . ' GROUP BY poster_ip', array( 'current_member' => $memID, 'min_msg_member' => !empty($min_msg_member) ? $min_msg_member : 0, 'max_msg_member' => !empty($max_msg_member) ? $max_msg_member : 0, ) ); $context['ips'] = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) { $context['ips'][] = '' . $row['poster_ip'] . ''; $ips[] = $row['poster_ip']; } $smcFunc['db_free_result']($request); // Now also get the IP addresses from the error messages. $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS error_count, ip FROM {db_prefix}log_errors WHERE id_member = {int:current_member} GROUP BY ip', array( 'current_member' => $memID, ) ); $context['error_ips'] = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) { $context['error_ips'][] = '' . $row['ip'] . ''; $ips[] = $row['ip']; } $smcFunc['db_free_result']($request); // Find other users that might use the same IP. $ips = array_unique($ips); $context['members_in_range'] = array(); if (!empty($ips)) { // Get member ID's which are in messages... $request = $smcFunc['db_query']('', ' SELECT mem.id_member FROM {db_prefix}messages AS m INNER JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member) WHERE m.poster_ip IN ({array_string:ip_list}) GROUP BY mem.id_member HAVING mem.id_member != {int:current_member}', array( 'current_member' => $memID, 'ip_list' => $ips, ) ); $message_members = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $message_members[] = $row['id_member']; $smcFunc['db_free_result']($request); // Fetch their names, cause of the GROUP BY doesn't like giving us that normally. if (!empty($message_members)) { $request = $smcFunc['db_query']('', ' SELECT id_member, real_name FROM {db_prefix}members WHERE id_member IN ({array_int:message_members})', array( 'message_members' => $message_members, 'ip_list' => $ips, ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $context['members_in_range'][$row['id_member']] = '' . $row['real_name'] . ''; $smcFunc['db_free_result']($request); } $request = $smcFunc['db_query']('', ' SELECT id_member, real_name FROM {db_prefix}members WHERE id_member != {int:current_member} AND member_ip IN ({array_string:ip_list})', array( 'current_member' => $memID, 'ip_list' => $ips, ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) $context['members_in_range'][$row['id_member']] = '' . $row['real_name'] . ''; $smcFunc['db_free_result']($request); } } /** * Get the number of user errors * * @param string $where * @param array $where_vars = array() * @return string number of user errors */ function list_getUserErrorCount($where, $where_vars = array()) { global $smcFunc; $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS error_count FROM {db_prefix}log_errors WHERE ' . $where, $where_vars ); list ($count) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // @todo cast this to an integer return $count; } /** * @todo needs a description * * @param int $start * @param int $items_per_page * @param string $sort * @param string $where * @param array $where_vars * @return array error messages */ function list_getUserErrors($start, $items_per_page, $sort, $where, $where_vars = array()) { global $smcFunc, $txt, $scripturl; // Get a list of error messages from this ip (range). $request = $smcFunc['db_query']('', ' SELECT le.log_time, le.ip, le.url, le.message, IFNULL(mem.id_member, 0) AS id_member, IFNULL(mem.real_name, {string:guest_title}) AS display_name, mem.member_name FROM {db_prefix}log_errors AS le LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = le.id_member) WHERE ' . $where . ' ORDER BY ' . $sort . ' LIMIT ' . $start . ', ' . $items_per_page, array_merge($where_vars, array( 'guest_title' => $txt['guest_title'], )) ); $error_messages = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $error_messages[] = array( 'ip' => $row['ip'], 'member_link' => $row['id_member'] > 0 ? '' . $row['display_name'] . '' : $row['display_name'], 'message' => strtr($row['message'], array('<span class="remove">' => '', '</span>' => '')), 'url' => $row['url'], 'time' => timeformat($row['log_time']), 'timestamp' => forum_time(true, $row['log_time']), ); $smcFunc['db_free_result']($request); return $error_messages; } /** * @todo needs a description * * @param string $where * @param array $where_vars * @return string count of messages matching the IP */ function list_getIPMessageCount($where, $where_vars = array()) { global $smcFunc; $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS message_count FROM {db_prefix}messages AS m INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board) WHERE {query_see_board} AND ' . $where, $where_vars ); list ($count) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // @todo cast to integer return $count; } /** * @todo needs a description * * @param int $start * @param int $items_per_page * @param string $sort * @param string $where * @param array $where_vars * @return array an array of messages */ function list_getIPMessages($start, $items_per_page, $sort, $where, $where_vars = array()) { global $smcFunc, $txt, $scripturl; // Get all the messages fitting this where clause. // @todo SLOW This query is using a filesort. $request = $smcFunc['db_query']('', ' SELECT m.id_msg, m.poster_ip, IFNULL(mem.real_name, m.poster_name) AS display_name, mem.id_member, m.subject, m.poster_time, m.id_topic, m.id_board FROM {db_prefix}messages AS m INNER JOIN {db_prefix}boards AS b ON (b.id_board = m.id_board) LEFT JOIN {db_prefix}members AS mem ON (mem.id_member = m.id_member) WHERE {query_see_board} AND ' . $where . ' ORDER BY ' . $sort . ' LIMIT ' . $start . ', ' . $items_per_page, array_merge($where_vars, array( )) ); $messages = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $messages[] = array( 'ip' => $row['poster_ip'], 'member_link' => empty($row['id_member']) ? $row['display_name'] : '' . $row['display_name'] . '', 'board' => array( 'id' => $row['id_board'], 'href' => $scripturl . '?board=' . $row['id_board'] ), 'topic' => $row['id_topic'], 'id' => $row['id_msg'], 'subject' => $row['subject'], 'time' => timeformat($row['poster_time']), 'timestamp' => forum_time(true, $row['poster_time']) ); $smcFunc['db_free_result']($request); return $messages; } /** * @todo needs a description * * @param int $memID = 0 id_member */ function TrackIP($memID = 0) { global $user_profile, $scripturl, $txt, $user_info, $modSettings, $sourcedir; global $context, $smcFunc; // Can the user do this? isAllowedTo('moderate_forum'); if ($memID == 0) { $context['ip'] = $user_info['ip']; loadTemplate('Profile'); loadLanguage('Profile'); $context['sub_template'] = 'trackIP'; $context['page_title'] = $txt['profile']; $context['base_url'] = $scripturl . '?action=trackip'; } else { $context['ip'] = $user_profile[$memID]['member_ip']; $context['base_url'] = $scripturl . '?action=profile;area=tracking;sa=ip;u=' . $memID; } // Searching? if (isset($_REQUEST['searchip'])) $context['ip'] = trim($_REQUEST['searchip']); if (preg_match('/^\d{1,3}\.(\d{1,3}|\*)\.(\d{1,3}|\*)\.(\d{1,3}|\*)$/', $context['ip']) == 0 && isValidIPv6($context['ip']) === false) fatal_lang_error('invalid_tracking_ip', false); $ip_var = str_replace('*', '%', $context['ip']); $ip_string = strpos($ip_var, '%') === false ? '= {string:ip_address}' : 'LIKE {string:ip_address}'; if (empty($context['tracking_area'])) $context['page_title'] = $txt['trackIP'] . ' - ' . $context['ip']; $request = $smcFunc['db_query']('', ' SELECT id_member, real_name AS display_name, member_ip FROM {db_prefix}members WHERE member_ip ' . $ip_string, array( 'ip_address' => $ip_var, ) ); $context['ips'] = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $context['ips'][$row['member_ip']][] = '' . $row['display_name'] . ''; $smcFunc['db_free_result']($request); ksort($context['ips']); // Gonna want this for the list. require_once($sourcedir . '/Subs-List.php'); // Start with the user messages. $listOptions = array( 'id' => 'track_message_list', 'title' => $txt['messages_from_ip'] . ' ' . $context['ip'], 'start_var_name' => 'messageStart', 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['no_messages_from_ip'], 'base_href' => $context['base_url'] . ';searchip=' . $context['ip'], 'default_sort_col' => 'date', 'get_items' => array( 'function' => 'list_getIPMessages', 'params' => array( 'm.poster_ip ' . $ip_string, array('ip_address' => $ip_var), ), ), 'get_count' => array( 'function' => 'list_getIPMessageCount', 'params' => array( 'm.poster_ip ' . $ip_string, array('ip_address' => $ip_var), ), ), 'columns' => array( 'ip_address' => array( 'header' => array( 'value' => $txt['ip_address'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s', 'params' => array( 'ip' => false, ), ), ), 'sort' => array( 'default' => 'INET_ATON(m.poster_ip)', 'reverse' => 'INET_ATON(m.poster_ip) DESC', ), ), 'poster' => array( 'header' => array( 'value' => $txt['poster'], ), 'data' => array( 'db' => 'member_link', ), ), 'subject' => array( 'header' => array( 'value' => $txt['subject'], ), 'data' => array( 'sprintf' => array( 'format' => '%3$s', 'params' => array( 'topic' => false, 'id' => false, 'subject' => false, ), ), ), ), 'date' => array( 'header' => array( 'value' => $txt['date'], ), 'data' => array( 'db' => 'time', ), 'sort' => array( 'default' => 'm.id_msg DESC', 'reverse' => 'm.id_msg', ), ), ), 'additional_rows' => array( array( 'position' => 'after_title', 'value' => $txt['messages_from_ip_desc'], 'class' => 'windowbg2', 'style' => 'padding: 1ex 2ex;', ), ), ); // Create the messages list. createList($listOptions); // Set the options for the error lists. $listOptions = array( 'id' => 'track_user_list', 'title' => $txt['errors_from_ip'] . ' ' . $context['ip'], 'start_var_name' => 'errorStart', 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['no_errors_from_ip'], 'base_href' => $context['base_url'] . ';searchip=' . $context['ip'], 'default_sort_col' => 'date2', 'get_items' => array( 'function' => 'list_getUserErrors', 'params' => array( 'le.ip ' . $ip_string, array('ip_address' => $ip_var), ), ), 'get_count' => array( 'function' => 'list_getUserErrorCount', 'params' => array( 'ip ' . $ip_string, array('ip_address' => $ip_var), ), ), 'columns' => array( 'ip_address2' => array( 'header' => array( 'value' => $txt['ip_address'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s', 'params' => array( 'ip' => false, ), ), ), 'sort' => array( 'default' => 'INET_ATON(le.ip)', 'reverse' => 'INET_ATON(le.ip) DESC', ), ), 'display_name' => array( 'header' => array( 'value' => $txt['display_name'], ), 'data' => array( 'db' => 'member_link', ), ), 'message' => array( 'header' => array( 'value' => $txt['message'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s
%2$s', 'params' => array( 'message' => false, 'url' => false, ), ), ), ), 'date2' => array( 'header' => array( 'value' => $txt['date'], ), 'data' => array( 'db' => 'time', ), 'sort' => array( 'default' => 'le.id_error DESC', 'reverse' => 'le.id_error', ), ), ), 'additional_rows' => array( array( 'position' => 'after_title', 'value' => $txt['errors_from_ip_desc'], 'class' => 'windowbg2', 'style' => 'padding: 1ex 2ex;', ), ), ); // Create the error list. createList($listOptions); $context['single_ip'] = strpos($context['ip'], '*') === false; if ($context['single_ip']) { $context['whois_servers'] = array( 'afrinic' => array( 'name' => $txt['whois_afrinic'], 'url' => 'http://www.afrinic.net/cgi-bin/whois?searchtext=' . $context['ip'], 'range' => array(41, 154, 196), ), 'apnic' => array( 'name' => $txt['whois_apnic'], 'url' => 'http://wq.apnic.net/apnic-bin/whois.pl?searchtext=' . $context['ip'], 'range' => array(58, 59, 60, 61, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 133, 150, 153, 163, 171, 202, 203, 210, 211, 218, 219, 220, 221, 222), ), 'arin' => array( 'name' => $txt['whois_arin'], 'url' => 'http://whois.arin.net/rest/ip/' . $context['ip'], 'range' => array(7, 24, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 96, 97, 98, 99, 128, 129, 130, 131, 132, 134, 135, 136, 137, 138, 139, 140, 142, 143, 144, 146, 147, 148, 149, 152, 155, 156, 157, 158, 159, 160, 161, 162, 164, 165, 166, 167, 168, 169, 170, 172, 173, 174, 192, 198, 199, 204, 205, 206, 207, 208, 209, 216), ), 'lacnic' => array( 'name' => $txt['whois_lacnic'], 'url' => 'http://lacnic.net/cgi-bin/lacnic/whois?query=' . $context['ip'], 'range' => array(186, 187, 189, 190, 191, 200, 201), ), 'ripe' => array( 'name' => $txt['whois_ripe'], 'url' => 'https://apps.db.ripe.net/search/query.html?searchtext=' . $context['ip'], 'range' => array(62, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 141, 145, 151, 188, 193, 194, 195, 212, 213, 217), ), ); foreach ($context['whois_servers'] as $whois) { // Strip off the "decimal point" and anything following... if (in_array((int) $context['ip'], $whois['range'])) $context['auto_whois_server'] = $whois; } } } /** * Tracks a users logins. * * @param int $memID = 0 id_member */ function TrackLogins($memID = 0) { global $scripturl, $txt, $sourcedir, $context; // Gonna want this for the list. require_once($sourcedir . '/Subs-List.php'); if ($memID == 0) $context['base_url'] = $scripturl . '?action=trackip'; else $context['base_url'] = $scripturl . '?action=profile;area=tracking;sa=ip;u=' . $memID; // Start with the user messages. $listOptions = array( 'id' => 'track_logins_list', 'title' => $txt['trackLogins'], 'no_items_label' => $txt['trackLogins_none_found'], 'base_href' => $context['base_url'], 'get_items' => array( 'function' => 'list_getLogins', 'params' => array( 'id_member = {int:current_member}', array('current_member' => $memID), ), ), 'get_count' => array( 'function' => 'list_getLoginCount', 'params' => array( 'id_member = {int:current_member}', array('current_member' => $memID), ), ), 'columns' => array( 'time' => array( 'header' => array( 'value' => $txt['date'], ), 'data' => array( 'db' => 'time', ), ), 'ip' => array( 'header' => array( 'value' => $txt['ip_address'], ), 'data' => array( 'sprintf' => array( 'format' => '%1$s (%2$s) ', 'params' => array( 'ip' => false, 'ip2' => false ), ), ), ), ), 'additional_rows' => array( array( 'position' => 'after_title', 'value' => $txt['trackLogins_desc'], 'class' => 'windowbg2', 'style' => 'padding: 1ex 2ex;', ), ), ); // Create the messages list. createList($listOptions); $context['sub_template'] = 'show_list'; $context['default_list'] = 'track_logins_list'; } /** * Callback for trackLogins for counting history. * * @param string $where * @param array $where_vars * @return string count of messages matching the IP */ function list_getLoginCount($where, $where_vars = array()) { global $smcFunc; $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS message_count FROM {db_prefix}member_logins WHERE id_member = {int:id_member}', array( 'id_member' => $where_vars['current_member'], ) ); list ($count) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // @todo cast to integer return $count; } /** * Callback for trackLogins data. * * @param int $start * @param int $items_per_page * @param string $sort * @param string $where * @param array $where_vars * @return array an array of messages */ function list_getLogins($start, $items_per_page, $sort, $where, $where_vars = array()) { global $smcFunc, $txt, $scripturl; $request = $smcFunc['db_query']('', ' SELECT time, ip, ip2 FROM {db_prefix}member_logins WHERE {int:id_member} ORDER BY time DESC', array( 'id_member' => $where_vars['current_member'], ) ); $logins = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $logins[] = array( 'time' => timeformat($row['time']), 'ip' => $row['ip'], 'ip2' => $row['ip2'], ); $smcFunc['db_free_result']($request); return $logins; } /** * @todo needs a description * * @param int $memID id_member */ function trackEdits($memID) { global $scripturl, $txt, $modSettings, $sourcedir, $context, $smcFunc; require_once($sourcedir . '/Subs-List.php'); // Get the names of any custom fields. $request = $smcFunc['db_query']('', ' SELECT col_name, field_name, bbc FROM {db_prefix}custom_fields', array( ) ); $context['custom_field_titles'] = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $context['custom_field_titles']['customfield_' . $row['col_name']] = array( 'title' => $row['field_name'], 'parse_bbc' => $row['bbc'], ); $smcFunc['db_free_result']($request); // Set the options for the error lists. $listOptions = array( 'id' => 'edit_list', 'title' => $txt['trackEdits'], 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['trackEdit_no_edits'], 'base_href' => $scripturl . '?action=profile;area=tracking;sa=edits;u=' . $memID, 'default_sort_col' => 'time', 'get_items' => array( 'function' => 'list_getProfileEdits', 'params' => array( $memID, ), ), 'get_count' => array( 'function' => 'list_getProfileEditCount', 'params' => array( $memID, ), ), 'columns' => array( 'action' => array( 'header' => array( 'value' => $txt['trackEdit_action'], ), 'data' => array( 'db' => 'action_text', ), ), 'before' => array( 'header' => array( 'value' => $txt['trackEdit_before'], ), 'data' => array( 'db' => 'before', ), ), 'after' => array( 'header' => array( 'value' => $txt['trackEdit_after'], ), 'data' => array( 'db' => 'after', ), ), 'time' => array( 'header' => array( 'value' => $txt['date'], ), 'data' => array( 'db' => 'time', ), 'sort' => array( 'default' => 'id_action DESC', 'reverse' => 'id_action', ), ), 'applicator' => array( 'header' => array( 'value' => $txt['trackEdit_applicator'], ), 'data' => array( 'db' => 'member_link', ), ), ), ); // Create the error list. createList($listOptions); $context['sub_template'] = 'show_list'; $context['default_list'] = 'edit_list'; } /** * How many edits? * * @param int $memID id_member * @return string number of profile edits */ function list_getProfileEditCount($memID) { global $smcFunc; $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS edit_count FROM {db_prefix}log_actions WHERE id_log = {int:log_type} AND id_member = {int:owner}', array( 'log_type' => 2, 'owner' => $memID, ) ); list ($edit_count) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); // @todo cast to integer return $edit_count; } /** * @todo needs a description * * @param int $start * @param int $items_per_page * @param string $sort * @param int $memID * @return array */ function list_getProfileEdits($start, $items_per_page, $sort, $memID) { global $smcFunc, $txt, $scripturl, $context; // Get a list of error messages from this ip (range). $request = $smcFunc['db_query']('', ' SELECT id_action, id_member, ip, log_time, action, extra FROM {db_prefix}log_actions WHERE id_log = {int:log_type} AND id_member = {int:owner} ORDER BY ' . $sort . ' LIMIT ' . $start . ', ' . $items_per_page, array( 'log_type' => 2, 'owner' => $memID, ) ); $edits = array(); $members = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) { $extra = @unserialize($row['extra']); if (!empty($extra['applicator'])) $members[] = $extra['applicator']; // Work out what the name of the action is. if (isset($txt['trackEdit_action_' . $row['action']])) $action_text = $txt['trackEdit_action_' . $row['action']]; elseif (isset($txt[$row['action']])) $action_text = $txt[$row['action']]; // Custom field? elseif (isset($context['custom_field_titles'][$row['action']])) $action_text = $context['custom_field_titles'][$row['action']]['title']; else $action_text = $row['action']; // Parse BBC? $parse_bbc = isset($context['custom_field_titles'][$row['action']]) && $context['custom_field_titles'][$row['action']]['parse_bbc'] ? true : false; $edits[] = array( 'id' => $row['id_action'], 'ip' => $row['ip'], 'id_member' => !empty($extra['applicator']) ? $extra['applicator'] : 0, 'member_link' => $txt['trackEdit_deleted_member'], 'action' => $row['action'], 'action_text' => $action_text, 'before' => !empty($extra['previous']) ? ($parse_bbc ? parse_bbc($extra['previous']) : $extra['previous']) : '', 'after' => !empty($extra['new']) ? ($parse_bbc ? parse_bbc($extra['new']) : $extra['new']) : '', 'time' => timeformat($row['log_time']), ); } $smcFunc['db_free_result']($request); // Get any member names. if (!empty($members)) { $request = $smcFunc['db_query']('', ' SELECT id_member, real_name FROM {db_prefix}members WHERE id_member IN ({array_int:members})', array( 'members' => $members, ) ); $members = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) $members[$row['id_member']] = $row['real_name']; $smcFunc['db_free_result']($request); foreach ($edits as $key => $value) if (isset($members[$value['id_member']])) $edits[$key]['member_link'] = '' . $members[$value['id_member']] . ''; } return $edits; } /** * Display the history of group requests made by the user whose profile we are viewing. * * @param int $memID id_member */ function trackGroupReq($memID) { global $scripturl, $txt, $modSettings, $sourcedir, $context; require_once($sourcedir . '/Subs-List.php'); // Set the options for the error lists. $listOptions = array( 'id' => 'request_list', 'title' => sprintf($txt['trackGroupRequests_title'], $context['member']['name']), 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['requested_none'], 'base_href' => $scripturl . '?action=profile;area=tracking;sa=groupreq;u=' . $memID, 'default_sort_col' => 'time_applied', 'get_items' => array( 'function' => 'list_getGroupRequests', 'params' => array( $memID, ), ), 'get_count' => array( 'function' => 'list_getGroupRequestsCount', 'params' => array( $memID, ), ), 'columns' => array( 'group' => array( 'header' => array( 'value' => $txt['requested_group'], ), 'data' => array( 'db' => 'group_name', ), ), 'group_reason' => array( 'header' => array( 'value' => $txt['requested_group_reason'], ), 'data' => array( 'db' => 'group_reason', ), ), 'time_applied' => array( 'header' => array( 'value' => $txt['requested_group_time'], ), 'data' => array( 'db' => 'time_applied', 'timeformat' => true, ), 'sort' => array( 'default' => 'time_applied DESC', 'reverse' => 'time_applied', ), ), 'outcome' => array( 'header' => array( 'value' => $txt['requested_group_outcome'], ), 'data' => array( 'db' => 'outcome', ), ), ), ); // Create the error list. createList($listOptions); $context['sub_template'] = 'show_list'; $context['default_list'] = 'request_list'; } /** * How many edits? * * @param int $memID id_member * @return string number of profile edits */ function list_getGroupRequestsCount($memID) { global $smcFunc, $user_info; $request = $smcFunc['db_query']('', ' SELECT COUNT(*) AS req_count FROM {db_prefix}log_group_requests AS lgr WHERE id_member = {int:memID} AND ' . ($user_info['mod_cache']['gq'] == '1=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']), array( 'memID' => $memID, ) ); list ($report_count) = $smcFunc['db_fetch_row']($request); $smcFunc['db_free_result']($request); return (int) $report_count; } /** * @todo needs a description * * @param int $start * @param int $items_per_page * @param string $sort * @param int $memID * @return array */ function list_getGroupRequests($start, $items_per_page, $sort, $memID) { global $smcFunc, $txt, $scripturl, $user_info; $groupreq = array(); $request = $smcFunc['db_query']('', ' SELECT lgr.id_group, mg.group_name, mg.online_color, lgr.time_applied, lgr.reason, lgr.status, ma.id_member AS id_member_acted, IFNULL(ma.member_name, lgr.member_name_acted) AS act_name, lgr.time_acted, lgr.act_reason FROM {db_prefix}log_group_requests AS lgr LEFT JOIN {db_prefix}members AS ma ON (lgr.id_member_acted = ma.id_member) INNER JOIN {db_prefix}membergroups AS mg ON (lgr.id_group = mg.id_group) WHERE lgr.id_member = {int:memID} AND ' . ($user_info['mod_cache']['gq'] == '1=1' ? $user_info['mod_cache']['gq'] : 'lgr.' . $user_info['mod_cache']['gq']) . ' ORDER BY ' . $sort . ' LIMIT ' . $start . ', ' . $items_per_page, array( 'memID' => $memID, ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) { $this_req = array( 'group_name' => empty($row['online_color']) ? $row['group_name'] : '' . $row['group_name'] . '', 'group_reason' => $row['reason'], 'time_applied' => $row['time_applied'], ); switch ($row['status']) { case 0: $this_req['outcome'] = $txt['outcome_pending']; break; case 1: $member_link = empty($row['id_member_acted']) ? $row['act_name'] : '' . $row['act_name'] . ''; $this_req['outcome'] = sprintf($txt['outcome_approved'], $member_link, timeformat($row['time_acted'])); break; case 2: $member_link = empty($row['id_member_acted']) ? $row['act_name'] : '' . $row['act_name'] . ''; $this_req['outcome'] = sprintf(!empty($row['act_reason']) ? $txt['outcome_refused_reason'] : $txt['outcome_refused'], $member_link, timeformat($row['time_acted']), $row['act_reason']); break; } $groupreq[] = $this_req; } $smcFunc['db_free_result']($request); return $groupreq; } /** * @todo needs a description * * @param int $memID id_member */ function showPermissions($memID) { global $scripturl, $txt, $board, $modSettings; global $user_profile, $context, $sourcedir, $smcFunc; // Verify if the user has sufficient permissions. isAllowedTo('manage_permissions'); loadLanguage('ManagePermissions'); loadLanguage('Admin'); loadTemplate('ManageMembers'); // Load all the permission profiles. require_once($sourcedir . '/ManagePermissions.php'); loadPermissionProfiles(); $context['member']['id'] = $memID; $context['member']['name'] = $user_profile[$memID]['real_name']; $context['page_title'] = $txt['showPermissions']; $board = empty($board) ? 0 : (int) $board; $context['board'] = $board; // Determine which groups this user is in. if (empty($user_profile[$memID]['additional_groups'])) $curGroups = array(); else $curGroups = explode(',', $user_profile[$memID]['additional_groups']); $curGroups[] = $user_profile[$memID]['id_group']; $curGroups[] = $user_profile[$memID]['id_post_group']; // Load a list of boards for the jump box - except the defaults. $request = $smcFunc['db_query']('order_by_board_order', ' SELECT b.id_board, b.name, b.id_profile, b.member_groups, IFNULL(mods.id_member, IFNULL(modgs.id_group, 0)) AS is_mod FROM {db_prefix}boards AS b LEFT JOIN {db_prefix}moderators AS mods ON (mods.id_board = b.id_board AND mods.id_member = {int:current_member}) LEFT JOIN {db_prefix}moderator_groups AS modgs ON (modgs.id_board = b.id_board AND modgs.id_group IN ({array_int:current_groups})) WHERE {query_see_board}', array( 'current_member' => $memID, 'current_groups' => $curGroups, ) ); $context['boards'] = array(); $context['no_access_boards'] = array(); while ($row = $smcFunc['db_fetch_assoc']($request)) { if (count(array_intersect($curGroups, explode(',', $row['member_groups']))) === 0 && !$row['is_mod']) $context['no_access_boards'][] = array( 'id' => $row['id_board'], 'name' => $row['name'], 'is_last' => false, ); elseif ($row['id_profile'] != 1 || $row['is_mod']) $context['boards'][$row['id_board']] = array( 'id' => $row['id_board'], 'name' => $row['name'], 'selected' => $board == $row['id_board'], 'profile' => $row['id_profile'], 'profile_name' => $context['profiles'][$row['id_profile']]['name'], ); } $smcFunc['db_free_result']($request); if (!empty($context['no_access_boards'])) $context['no_access_boards'][count($context['no_access_boards']) - 1]['is_last'] = true; $context['member']['permissions'] = array( 'general' => array(), 'board' => array() ); // If you're an admin we know you can do everything, we might as well leave. $context['member']['has_all_permissions'] = in_array(1, $curGroups); if ($context['member']['has_all_permissions']) return; $denied = array(); // Get all general permissions. $result = $smcFunc['db_query']('', ' SELECT p.permission, p.add_deny, mg.group_name, p.id_group FROM {db_prefix}permissions AS p LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = p.id_group) WHERE p.id_group IN ({array_int:group_list}) ORDER BY p.add_deny DESC, p.permission, mg.min_posts, CASE WHEN mg.id_group < {int:newbie_group} THEN mg.id_group ELSE 4 END, mg.group_name', array( 'group_list' => $curGroups, 'newbie_group' => 4, ) ); while ($row = $smcFunc['db_fetch_assoc']($result)) { // We don't know about this permission, it doesn't exist :P. if (!isset($txt['permissionname_' . $row['permission']])) continue; if (empty($row['add_deny'])) $denied[] = $row['permission']; // Permissions that end with _own or _any consist of two parts. if (in_array(substr($row['permission'], -4), array('_own', '_any')) && isset($txt['permissionname_' . substr($row['permission'], 0, -4)])) $name = $txt['permissionname_' . substr($row['permission'], 0, -4)] . ' - ' . $txt['permissionname_' . $row['permission']]; else $name = $txt['permissionname_' . $row['permission']]; // Add this permission if it doesn't exist yet. if (!isset($context['member']['permissions']['general'][$row['permission']])) $context['member']['permissions']['general'][$row['permission']] = array( 'id' => $row['permission'], 'groups' => array( 'allowed' => array(), 'denied' => array() ), 'name' => $name, 'is_denied' => false, 'is_global' => true, ); // Add the membergroup to either the denied or the allowed groups. $context['member']['permissions']['general'][$row['permission']]['groups'][empty($row['add_deny']) ? 'denied' : 'allowed'][] = $row['id_group'] == 0 ? $txt['membergroups_members'] : $row['group_name']; // Once denied is always denied. $context['member']['permissions']['general'][$row['permission']]['is_denied'] |= empty($row['add_deny']); } $smcFunc['db_free_result']($result); $request = $smcFunc['db_query']('', ' SELECT bp.add_deny, bp.permission, bp.id_group, mg.group_name' . (empty($board) ? '' : ', b.id_profile, CASE WHEN (mods.id_member IS NULL AND modgs.id_group IS NULL) THEN 0 ELSE 1 END AS is_moderator') . ' FROM {db_prefix}board_permissions AS bp' . (empty($board) ? '' : ' INNER JOIN {db_prefix}boards AS b ON (b.id_board = {int:current_board}) LEFT JOIN {db_prefix}moderators AS mods ON (mods.id_board = b.id_board AND mods.id_member = {int:current_member}) LEFT JOIN {db_prefix}moderator_groups AS modgs ON (modgs.id_board = b.id_board AND modgs.id_group IN ({array_int:group_list}))') . ' LEFT JOIN {db_prefix}membergroups AS mg ON (mg.id_group = bp.id_group) WHERE bp.id_profile = {raw:current_profile} AND bp.id_group IN ({array_int:group_list}' . (empty($board) ? ')' : ', {int:moderator_group}) AND (mods.id_member IS NOT NULL OR modgs.id_group IS NOT NULL OR bp.id_group != {int:moderator_group})'), array( 'current_board' => $board, 'group_list' => $curGroups, 'current_member' => $memID, 'current_profile' => empty($board) ? '1' : 'b.id_profile', 'moderator_group' => 3, ) ); while ($row = $smcFunc['db_fetch_assoc']($request)) { // We don't know about this permission, it doesn't exist :P. if (!isset($txt['permissionname_' . $row['permission']])) continue; // The name of the permission using the format 'permission name' - 'own/any topic/event/etc.'. if (in_array(substr($row['permission'], -4), array('_own', '_any')) && isset($txt['permissionname_' . substr($row['permission'], 0, -4)])) $name = $txt['permissionname_' . substr($row['permission'], 0, -4)] . ' - ' . $txt['permissionname_' . $row['permission']]; else $name = $txt['permissionname_' . $row['permission']]; // Create the structure for this permission. if (!isset($context['member']['permissions']['board'][$row['permission']])) $context['member']['permissions']['board'][$row['permission']] = array( 'id' => $row['permission'], 'groups' => array( 'allowed' => array(), 'denied' => array() ), 'name' => $name, 'is_denied' => false, 'is_global' => empty($board), ); $context['member']['permissions']['board'][$row['permission']]['groups'][empty($row['add_deny']) ? 'denied' : 'allowed'][$row['id_group']] = $row['id_group'] == 0 ? $txt['membergroups_members'] : $row['group_name']; $context['member']['permissions']['board'][$row['permission']]['is_denied'] |= empty($row['add_deny']); } $smcFunc['db_free_result']($request); } /** * View a members warnings? * * @param int $memID id_member */ function viewWarning($memID) { global $modSettings, $context, $sourcedir, $txt, $scripturl; // Firstly, can we actually even be here? if (!($context['user']['is_owner'] && allowedTo('view_warning_own')) && !allowedTo('view_warning_any') && !allowedTo('issue_warning') && !allowedTo('moderate_forum')) fatal_lang_error('no_access', false); // Make sure things which are disabled stay disabled. $modSettings['warning_watch'] = !empty($modSettings['warning_watch']) ? $modSettings['warning_watch'] : 110; $modSettings['warning_moderate'] = !empty($modSettings['warning_moderate']) && !empty($modSettings['postmod_active']) ? $modSettings['warning_moderate'] : 110; $modSettings['warning_mute'] = !empty($modSettings['warning_mute']) ? $modSettings['warning_mute'] : 110; // Let's use a generic list to get all the current warnings, and use the issue warnings grab-a-granny thing. require_once($sourcedir . '/Subs-List.php'); require_once($sourcedir . '/Profile-Actions.php'); $listOptions = array( 'id' => 'view_warnings', 'title' => $txt['profile_viewwarning_previous_warnings'], 'items_per_page' => $modSettings['defaultMaxMessages'], 'no_items_label' => $txt['profile_viewwarning_no_warnings'], 'base_href' => $scripturl . '?action=profile;area=viewwarning;sa=user;u=' . $memID, 'default_sort_col' => 'log_time', 'get_items' => array( 'function' => 'list_getUserWarnings', 'params' => array( $memID, ), ), 'get_count' => array( 'function' => 'list_getUserWarningCount', 'params' => array( $memID, ), ), 'columns' => array( 'log_time' => array( 'header' => array( 'value' => $txt['profile_warning_previous_time'], ), 'data' => array( 'db' => 'time', ), 'sort' => array( 'default' => 'lc.log_time DESC', 'reverse' => 'lc.log_time', ), ), 'reason' => array( 'header' => array( 'value' => $txt['profile_warning_previous_reason'], 'style' => 'width: 50%;', ), 'data' => array( 'db' => 'reason', ), ), 'level' => array( 'header' => array( 'value' => $txt['profile_warning_previous_level'], ), 'data' => array( 'db' => 'counter', ), 'sort' => array( 'default' => 'lc.counter DESC', 'reverse' => 'lc.counter', ), ), ), 'additional_rows' => array( array( 'position' => 'after_title', 'value' => $txt['profile_viewwarning_desc'], 'class' => 'smalltext', 'style' => 'padding: 2ex;', ), ), ); // Create the list for viewing. require_once($sourcedir . '/Subs-List.php'); createList($listOptions); // Create some common text bits for the template. $context['level_effects'] = array( 0 => '', $modSettings['warning_watch'] => $txt['profile_warning_effect_own_watched'], $modSettings['warning_moderate'] => $txt['profile_warning_effect_own_moderated'], $modSettings['warning_mute'] => $txt['profile_warning_effect_own_muted'], ); $context['current_level'] = 0; foreach ($context['level_effects'] as $limit => $dummy) if ($context['member']['warning'] >= $limit) $context['current_level'] = $limit; } ?>