mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
209 lines
6.4 KiB
PHP
209 lines
6.4 KiB
PHP
<?
|
|
|
|
|
|
if(isset($_GET['userid']) && check_perms('users_view_invites')){
|
|
if(!is_number($_GET['userid'])){ error(403); }
|
|
|
|
$UserID=$_GET['userid'];
|
|
$Sneaky = true;
|
|
} else {
|
|
if(!$UserCount = $Cache->get_value('stats_user_count')){
|
|
$DB->query("SELECT COUNT(ID) FROM users_main WHERE Enabled='1'");
|
|
list($UserCount) = $DB->next_record();
|
|
$Cache->cache_value('stats_user_count', $UserCount, 0);
|
|
}
|
|
|
|
$UserID = $LoggedUser['ID'];
|
|
$Sneaky = false;
|
|
}
|
|
|
|
list($UserID, $Username, $PermissionID) = array_values(user_info($UserID));
|
|
|
|
|
|
$DB->query("SELECT InviteKey, Email, Expires FROM invites WHERE InviterID='$UserID' ORDER BY Expires");
|
|
$Pending = $DB->to_array();
|
|
|
|
$OrderWays = array("username", "email", "joined", "lastseen", "uploaded", "downloaded", "ratio");
|
|
|
|
if(empty($_GET['order'])) {
|
|
$CurrentOrder = "id";
|
|
$CurrentSort = "asc";
|
|
$NewSort = "desc";
|
|
} else {
|
|
if(in_array($_GET['order'], $OrderWays)) {
|
|
$CurrentOrder = $_GET['order'];
|
|
if($_GET['sort'] == 'asc' || $_GET['sort'] == 'desc') {
|
|
$CurrentSort = $_GET['sort'];
|
|
$NewSort = ($_GET['sort'] == 'asc' ? 'desc' : 'asc');
|
|
} else {
|
|
error(404);
|
|
}
|
|
} else {
|
|
error(404);
|
|
}
|
|
}
|
|
|
|
switch($CurrentOrder) {
|
|
case 'username' :
|
|
$OrderBy = "um.Username";
|
|
break;
|
|
case 'email' :
|
|
$OrderBy = "um.Email";
|
|
break;
|
|
case 'joined' :
|
|
$OrderBy = "ui.JoinDate";
|
|
break;
|
|
case 'lastseen' :
|
|
$OrderBy = "um.LastAccess";
|
|
break;
|
|
case 'uploaded' :
|
|
$OrderBy = "um.Uploaded";
|
|
break;
|
|
case 'downloaded' :
|
|
$OrderBy = "um.Downloaded";
|
|
break;
|
|
case 'ratio' :
|
|
$OrderBy = "(um.Uploaded / um.Downloaded)";
|
|
break;
|
|
default :
|
|
$OrderBy = "um.ID";
|
|
break;
|
|
}
|
|
|
|
$CurrentURL = get_url(array('action', 'order', 'sort'));
|
|
|
|
$DB->query("SELECT
|
|
ID,
|
|
Username,
|
|
Donor,
|
|
Warned,
|
|
Enabled,
|
|
PermissionID,
|
|
Email,
|
|
Uploaded,
|
|
Downloaded,
|
|
JoinDate,
|
|
LastAccess
|
|
FROM users_main as um
|
|
LEFT JOIN users_info AS ui ON ui.UserID=um.ID
|
|
WHERE ui.Inviter='$UserID'
|
|
ORDER BY ".$OrderBy." ".$CurrentSort);
|
|
|
|
$Invited = $DB->to_array();
|
|
|
|
show_header('Invites');
|
|
?>
|
|
<div class="thin">
|
|
<h2><?=format_username($UserID,$Username)?> > Invites</h2>
|
|
<div class="linkbox">
|
|
[<a href="user.php?action=invitetree<? if($Sneaky){ echo '&userid='.$UserID; }?>">Invite tree</a>]
|
|
</div>
|
|
<? if ($UserCount >= USER_LIMIT && !check_perms('site_can_invite_always')) { ?>
|
|
<div class="box pad notice">
|
|
<p>Because the user limit has been reached you are unable to send invites at this time.</p>
|
|
</div>
|
|
<? }
|
|
|
|
/*
|
|
Users cannot send invites if they:
|
|
-Are on ratio watch
|
|
-Have disabled leeching
|
|
-Have disabled invites
|
|
-Have no invites (Unless have unlimited)
|
|
-Cannot 'invite always' and the user limit is reached
|
|
*/
|
|
|
|
$DB->query("SELECT can_leech FROM users_main WHERE ID = ".$UserID);
|
|
list($CanLeech) = $DB->next_record();
|
|
|
|
if(!$Sneaky
|
|
&& !$LoggedUser['RatioWatch']
|
|
&& $CanLeech
|
|
&& empty($LoggedUser['DisableInvites'])
|
|
&& ($LoggedUser['Invites']>0 || check_perms('site_send_unlimited_invites'))
|
|
&& ($UserCount <= USER_LIMIT || USER_LIMIT == 0 || check_perms('site_can_invite_always'))
|
|
){ ?>
|
|
<div class="box pad">
|
|
<p>Please note that the selling, trading or public giving away of our invitations is strictly forbidden, and will result in you and your entire invite tree being banned. This includes offering to give away our invitations on any forum which is not a class-restricted forum on another private tracker.</p>
|
|
</div>
|
|
<div class="box pad">
|
|
<form action="user.php" method="post">
|
|
<input type="hidden" name="action" value="takeinvite" />
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
<input type="hidden" name="auth" value="<?=$LoggedUser['AuthKey']?>" />
|
|
<table cellpadding="6" cellspacing="1" border="0" class="border" width="100%">
|
|
<tr>
|
|
<td class="label">Email:</td>
|
|
<td>
|
|
<input type="text" name="email" size="60" />
|
|
<input type="submit" value="Invite" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?
|
|
}
|
|
|
|
if (!empty($Pending)) {
|
|
?>
|
|
<h3>Pending invites</h3>
|
|
<div class="box pad">
|
|
<table width="100%">
|
|
<tr class="colhead">
|
|
<td>Email</td>
|
|
<td>Expires in</td>
|
|
<td>Delete invite</td>
|
|
</tr>
|
|
<?
|
|
$Row = 'a';
|
|
foreach ($Pending as $Invite) {
|
|
list($InviteKey, $Email, $Expires) = $Invite;
|
|
$Row = ($Row == 'a') ? 'b' : 'a';
|
|
?>
|
|
<tr class="row<?=$Row?>">
|
|
<td><?=display_str($Email)?></td>
|
|
<td><?=time_diff($Expires)?></td>
|
|
<td><a href="user.php?action=deleteinvite&invite=<?=$InviteKey?>&auth=<?=$LoggedUser['AuthKey']?>" onclick="return confirm('Are you sure you want to delete this invite?');">Delete invite</a></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
</div>
|
|
<?
|
|
}
|
|
|
|
?>
|
|
<h3>Invitee list</h3>
|
|
<div class="box pad">
|
|
<table width="100%">
|
|
<tr class="colhead">
|
|
<td><a href="user.php?action=invite&order=username&sort=<?=(($CurrentOrder == 'username') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Username</a></td>
|
|
<td><a href="user.php?action=invite&order=email&sort=<?=(($CurrentOrder == 'email') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Email</a></td>
|
|
<td><a href="user.php?action=invite&order=joined&sort=<?=(($CurrentOrder == 'joined') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Joined</a></td>
|
|
<td><a href="user.php?action=invite&order=lastseen&sort=<?=(($CurrentOrder == 'lastseen') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Last Seen</a></td>
|
|
<td><a href="user.php?action=invite&order=uploaded&sort=<?=(($CurrentOrder == 'uploaded') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Uploaded</a></td>
|
|
<td><a href="user.php?action=invite&order=downloaded&sort=<?=(($CurrentOrder == 'downloaded') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Downloaded</td>
|
|
<td><a href="user.php?action=invite&order=ratio&sort=<?=(($CurrentOrder == 'ratio') ? $NewSort : 'desc')?>&<?=$CurrentURL ?>">Ratio</a></td>
|
|
</tr>
|
|
<?
|
|
$Row = 'a';
|
|
foreach ($Invited as $User) {
|
|
list($ID, $Username, $Donor, $Warned, $Enabled, $Class, $Email, $Uploaded, $Downloaded, $JoinDate, $LastAccess) = $User;
|
|
$Row = ($Row == 'a') ? 'b' : 'a';
|
|
?>
|
|
<tr class="row<?=$Row?>">
|
|
<td><?=format_username($ID, $Username, $Donor, $Warned, $Enabled == 2 ? false : true, $Class)?></td>
|
|
<td><?=display_str($Email)?></td>
|
|
<td><?=time_diff($JoinDate,1)?></td>
|
|
<td><?=time_diff($LastAccess,1);?></td>
|
|
<td><?=get_size($Uploaded)?></td>
|
|
<td><?=get_size($Downloaded)?></td>
|
|
<td><?=ratio($Uploaded, $Downloaded)?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?
|
|
show_footer();
|