Zeile 13 | Zeile 13 |
---|
/** * Fetch a users activity and any corresponding details from their location. *
|
/** * Fetch a users activity and any corresponding details from their location. *
|
* @param string The location (URL) of the user.
| * @param string $location The location (URL) of the user. * @param bool $nopermission
|
* @return array Array of location and activity information */ function fetch_wol_activity($location, $nopermission=false)
| * @return array Array of location and activity information */ function fetch_wol_activity($location, $nopermission=false)
|
Zeile 160 | Zeile 161 |
---|
elseif($parameters['action'] == "profile") { $user_activity['activity'] = "member_profile";
|
elseif($parameters['action'] == "profile") { $user_activity['activity'] = "member_profile";
|
|
|
if(!isset($parameters['uid']))
|
if(!isset($parameters['uid']))
|
{
| {
|
$parameters['uid'] = 0;
|
$parameters['uid'] = 0;
|
}
| }
|
$parameters['uid'] = (int)$parameters['uid'];
|
$parameters['uid'] = (int)$parameters['uid'];
|
| if($parameters['uid'] == 0) { global $memprofile;
// $user is available in Who's Online but not in Member Profile, use $memprofile instead if(!empty($user['uid'])) { $parameters['uid'] = $user['uid']; } elseif(!empty($memprofile['uid'])) { $parameters['uid'] = $memprofile['uid']; } }
|
if($parameters['uid'] > 0) { $uid_list[$parameters['uid']] = $parameters['uid'];
|
if($parameters['uid'] > 0) { $uid_list[$parameters['uid']] = $parameters['uid'];
|
}
| }
|
$user_activity['uid'] = $parameters['uid'];
|
$user_activity['uid'] = $parameters['uid'];
|
}
| }
|
elseif($parameters['action'] == "emailuser" || $parameters['action'] == "do_emailuser") { $user_activity['activity'] = "member_emailuser"; } elseif($parameters['action'] == "rate" || $parameters['action'] == "do_rate")
|
elseif($parameters['action'] == "emailuser" || $parameters['action'] == "do_emailuser") { $user_activity['activity'] = "member_emailuser"; } elseif($parameters['action'] == "rate" || $parameters['action'] == "do_rate")
|
{
| {
|
$user_activity['activity'] = "member_rate";
|
$user_activity['activity'] = "member_rate";
|
}
| }
|
elseif($parameters['action'] == "resendactivation" || $parameters['action'] == "do_resendactivation") { $user_activity['activity'] = "member_resendactivation"; } elseif($parameters['action'] == "lostpw" || $parameters['action'] == "do_lostpw" || $parameters['action'] == "resetpassword")
|
elseif($parameters['action'] == "resendactivation" || $parameters['action'] == "do_resendactivation") { $user_activity['activity'] = "member_resendactivation"; } elseif($parameters['action'] == "lostpw" || $parameters['action'] == "do_lostpw" || $parameters['action'] == "resetpassword")
|
{
| {
|
$user_activity['activity'] = "member_lostpw"; } else
| $user_activity['activity'] = "member_lostpw"; } else
|
Zeile 225 | Zeile 243 |
---|
} break; case "modcp":
|
} break; case "modcp":
|
if(!isset($parameters['action']))
| if(!isset($parameters['action']))
|
{
|
{
|
$parameters['action'] = 0;
| $parameters['action'] = '';
|
}
$accepted_parameters = array("modlogs", "announcements", "finduser", "warninglogs", "ipsearch");
| }
$accepted_parameters = array("modlogs", "announcements", "finduser", "warninglogs", "ipsearch");
|
Zeile 354 | Zeile 372 |
---|
$user_activity['tid'] = $parameters['tid']; break; case "private":
|
$user_activity['tid'] = $parameters['tid']; break; case "private":
|
if(!isset($parameters['action'])) { $parameters['action'] = ''; }
| if(!isset($parameters['action'])) { $parameters['action'] = ''; }
|
if($parameters['action'] == "send" || $parameters['action'] == "do_send") { $user_activity['activity'] = "private_send";
| if($parameters['action'] == "send" || $parameters['action'] == "do_send") { $user_activity['activity'] = "private_send";
|
Zeile 373 | Zeile 391 |
---|
else { $user_activity['activity'] = "private";
|
else { $user_activity['activity'] = "private";
|
} break;
| } break;
|
case "ratethread": $user_activity['activity'] = "ratethread"; break;
| case "ratethread": $user_activity['activity'] = "ratethread"; break;
|
Zeile 390 | Zeile 408 |
---|
if($parameters['uid'] > 0) { $uid_list[$parameters['uid']] = $parameters['uid'];
|
if($parameters['uid'] > 0) { $uid_list[$parameters['uid']] = $parameters['uid'];
|
}
| }
|
$user_activity['uid'] = $parameters['uid'];
if($parameters['action'] == "add")
| $user_activity['uid'] = $parameters['uid'];
if($parameters['action'] == "add")
|
Zeile 398 | Zeile 416 |
---|
$user_activity['activity'] = "reputation"; } else
|
$user_activity['activity'] = "reputation"; } else
|
{
| {
|
$user_activity['activity'] = "reputation_report"; } break;
| $user_activity['activity'] = "reputation_report"; } break;
|
Zeile 422 | Zeile 440 |
---|
$user_activity['activity'] = "showteam"; break; case "showthread":
|
$user_activity['activity'] = "showteam"; break; case "showthread":
|
if(!isset($parameters['action']))
| if(!isset($parameters['action']))
|
{
|
{
|
$parameters['action'] = 0;
| $parameters['action'] = '';
|
} if(!isset($parameters['pid'])) {
| } if(!isset($parameters['pid'])) {
|
Zeile 553 | Zeile 571 |
---|
default: $user_activity['activity'] = "unknown"; break;
|
default: $user_activity['activity'] = "unknown"; break;
|
}
| }
|
// Expects $location to be passed through already sanitized $user_activity['location'] = $location;
| // Expects $location to be passed through already sanitized $user_activity['location'] = $location;
|
Zeile 566 | Zeile 584 |
---|
/** * Builds a friendly named Who's Online location from an "activity" and array of user data. Assumes fetch_wol_activity has already been called. *
|
/** * Builds a friendly named Who's Online location from an "activity" and array of user data. Assumes fetch_wol_activity has already been called. *
|
* @param array Array containing activity and essential IDs.
| * @param array $user_activity Array containing activity and essential IDs.
|
* @return string Location name for the activity being performed. */ function build_friendly_wol_location($user_activity)
| * @return string Location name for the activity being performed. */ function build_friendly_wol_location($user_activity)
|
Zeile 578 | Zeile 596 |
---|
$unviewableforums = get_unviewable_forums(); $inactiveforums = get_inactive_forums(); $fidnot = '';
|
$unviewableforums = get_unviewable_forums(); $inactiveforums = get_inactive_forums(); $fidnot = '';
|
| $unviewablefids = $inactivefids = array();
|
if($unviewableforums) { $fidnot = " AND fid NOT IN ($unviewableforums)";
|
if($unviewableforums) { $fidnot = " AND fid NOT IN ($unviewableforums)";
|
| $unviewablefids = explode(',', $unviewableforums);
|
} if($inactiveforums) { $fidnot .= " AND fid NOT IN ($inactiveforums)";
|
} if($inactiveforums) { $fidnot .= " AND fid NOT IN ($inactiveforums)";
|
| $inactivefids = explode(',', $inactiveforums);
|
}
// Fetch any users
| }
// Fetch any users
|
Zeile 596 | Zeile 617 |
---|
$query = $db->simple_select("users", "uid,username", "uid IN ($uid_sql)"); while($user = $db->fetch_array($query)) {
|
$query = $db->simple_select("users", "uid,username", "uid IN ($uid_sql)"); while($user = $db->fetch_array($query)) {
|
$usernames[$user['uid']] = $user['username'];
| $usernames[$user['uid']] = htmlspecialchars_uni($user['username']);
|
} } else {
|
} } else {
|
$usernames[$mybb->user['uid']] = $mybb->user['username'];
| $usernames[$mybb->user['uid']] = htmlspecialchars_uni($mybb->user['username']);
|
} }
| } }
|
Zeile 686 | Zeile 707 |
---|
// Fetch any forums if(!is_array($forums) && count($fid_list) > 0) {
|
// Fetch any forums if(!is_array($forums) && count($fid_list) > 0) {
|
if($fidnot) { $fidnot = explode(',', str_replace('\'', '', (string)$unviewableforums).$inactiveforums); }
| $fidnot = array_merge($unviewablefids, $inactivefids);
|
foreach($forum_cache as $fid => $forum) {
|
foreach($forum_cache as $fid => $forum) {
|
if(in_array($fid, $fid_list) && (!$fidnot || is_array($fidnot) && !in_array($fid, $fidnot)))
| if(in_array($fid, $fid_list) && !in_array($fid, $fidnot))
|
{ $forums[$fid] = $forum['name']; $forums_linkto[$fid] = $forum['linkto'];
| { $forums[$fid] = $forum['name']; $forums_linkto[$fid] = $forum['linkto'];
|
Zeile 1117 | Zeile 1135 |
---|
/** * Build a Who's Online row for a specific user *
|
/** * Build a Who's Online row for a specific user *
|
* @param array Array of user information including activity information
| * @param array $user Array of user information including activity information
|
* @return string Formatted online row */ function build_wol_row($user)
| * @return string Formatted online row */ function build_wol_row($user)
|
Zeile 1140 | Zeile 1158 |
---|
$invisible_mark = ''; }
|
$invisible_mark = ''; }
|
$user['username'] = format_name($user['username'], $user['usergroup'], $user['displaygroup']);
| $user['username'] = format_name(htmlspecialchars_uni($user['username']), $user['usergroup'], $user['displaygroup']);
|
$online_name = build_profile_link($user['username'], $user['uid']).$invisible_mark; } }
| $online_name = build_profile_link($user['username'], $user['uid']).$invisible_mark; } }
|
Zeile 1177 | Zeile 1195 |
---|
$user_ip = $lookup = $user['ip'] = ''; }
|
$user_ip = $lookup = $user['ip'] = ''; }
|
| $online_row = '';
|
// And finally if we have permission to view this user, return the completed online row if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid']) {
| // And finally if we have permission to view this user, return the completed online row if($user['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $user['uid'] == $mybb->user['uid']) {
|