mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
135 lines
4.8 KiB
PHP
135 lines
4.8 KiB
PHP
<?
|
|
if(!check_perms('users_view_ips') || !check_perms('users_view_email')) { error(403); }
|
|
View::show_header('Registration log');
|
|
define('USERS_PER_PAGE', 50);
|
|
list($Page,$Limit) = Format::page_limit(USERS_PER_PAGE);
|
|
|
|
$AfterDate = $_POST['after_date'];
|
|
$BeforeDate = $_POST['before_date'];
|
|
$DateSearch = false;
|
|
if(!empty($AfterDate) && !empty($BeforeDate)) {
|
|
list($Y, $M, $D) = explode("-", $AfterDate);
|
|
if(!checkdate($M, $D, $Y)) {
|
|
error("Incorrect 'after' date format");
|
|
}
|
|
list($Y, $M, $D) = explode("-", $BeforeDate);
|
|
if(!checkdate($M, $D, $Y)) {
|
|
error("Incorrect 'before' date format");
|
|
}
|
|
$AfterDate = db_string($AfterDate);
|
|
$BeforeDate = db_string($BeforeDate);
|
|
$DateSearch = true;
|
|
}
|
|
|
|
$RS = "SELECT
|
|
SQL_CALC_FOUND_ROWS
|
|
m.ID,
|
|
m.IP,
|
|
m.ipcc,
|
|
m.Email,
|
|
m.Username,
|
|
m.PermissionID,
|
|
m.Uploaded,
|
|
m.Downloaded,
|
|
m.Enabled,
|
|
i.Donor,
|
|
i.Warned,
|
|
i.JoinDate,
|
|
(SELECT COUNT(h1.UserID) FROM users_history_ips AS h1 WHERE h1.IP=m.IP) AS Uses,
|
|
im.ID,
|
|
im.IP,
|
|
im.ipcc,
|
|
im.Email,
|
|
im.Username,
|
|
im.PermissionID,
|
|
im.Uploaded,
|
|
im.Downloaded,
|
|
im.Enabled,
|
|
ii.Donor,
|
|
ii.Warned,
|
|
ii.JoinDate,
|
|
(SELECT COUNT(h2.UserID) FROM users_history_ips AS h2 WHERE h2.IP=im.IP) AS InviterUses
|
|
FROM users_main AS m
|
|
LEFT JOIN users_info AS i ON i.UserID=m.ID
|
|
LEFT JOIN users_main AS im ON i.Inviter = im.ID
|
|
LEFT JOIN users_info AS ii ON i.Inviter = ii.UserID
|
|
WHERE";
|
|
if($DateSearch) {
|
|
$RS .= " i.JoinDate BETWEEN '$AfterDate' AND '$BeforeDate' ";
|
|
} else {
|
|
$RS .= " i.JoinDate > '".time_minus(3600*24*3)."'";
|
|
}
|
|
$RS .= " ORDER BY i.Joindate DESC LIMIT $Limit";
|
|
$QueryID = $DB->query($RS);
|
|
$DB->query("SELECT FOUND_ROWS()");
|
|
list($Results) = $DB->next_record();
|
|
$DB->set_query_id($QueryID);
|
|
?>
|
|
|
|
<form action="" method="post" acclass="thin box pad">
|
|
<input type="hidden" name="action" value="registration_log" />
|
|
Joined after: <input type="date" name="after_date" />
|
|
Joined before: <input type="date" name="before_date" />
|
|
<input type="submit" />
|
|
</form>
|
|
|
|
<?
|
|
if ($DB->record_count()) {
|
|
?>
|
|
<div class="linkbox">
|
|
<?
|
|
$Pages=Format::get_pages($Page,$Results,USERS_PER_PAGE,11) ;
|
|
echo $Pages;
|
|
?>
|
|
</div>
|
|
|
|
<table width="100%">
|
|
<tr class="colhead">
|
|
<td>User</td>
|
|
<td>Ratio</td>
|
|
<td>Email</td>
|
|
<td>IP address</td>
|
|
<td>Country</td>
|
|
<td>Host</td>
|
|
<td>Registered</td>
|
|
</tr>
|
|
<?
|
|
while (list($UserID, $IP, $IPCC, $Email, $Username, $PermissionID, $Uploaded, $Downloaded, $Enabled, $Donor, $Warned, $Joined, $Uses, $InviterID, $InviterIP, $InviterIPCC, $InviterEmail, $InviterUsername, $InviterPermissionID, $InviterUploaded, $InviterDownloaded, $InviterEnabled, $InviterDonor, $InviterWarned, $InviterJoined, $InviterUses)=$DB->next_record()) {
|
|
$Row = ($IP == $InviterIP) ? 'a' : 'b';
|
|
?>
|
|
<tr class="row<?=$Row?>">
|
|
<td><?=Users::format_username($UserID, true, true, true, true)?><br /><?=Users::format_username($InviterID, true, true, true, true)?></td>
|
|
<td><?=Format::get_ratio_html($Uploaded,$Downloaded)?><br /><?=Format::get_ratio_html($InviterUploaded,$InviterDownloaded)?></td>
|
|
<td>
|
|
<span style="float: left;"><?=display_str($Email)?></span>
|
|
<span style="float: right;"><a href="userhistory.php?action=email&userid=<?=$UserID?>" title="History" class="brackets">H</a> <a href="/user.php?action=search&email_history=on&email=<?=display_str($Email)?>" title="Search" class="brackets">S</a></span><br />
|
|
<span style="float: left;"><?=display_str($InviterEmail)?></span>
|
|
<span style="float: right;"><a href="userhistory.php?action=email&userid=<?=$InviterID?>" title="History" class="brackets">H</a> <a href="/user.php?action=search&email_history=on&email=<?=display_str($InviterEmail)?>" title="Search" class="brackets">S</a></span><br />
|
|
</td>
|
|
<td>
|
|
<span style="float: left;"><?=display_str($IP)?></span>
|
|
<span style="float: right;"><?=display_str($Uses)?> <a href="userhistory.php?action=ips&userid=<?=$UserID?>" title="History" class="brackets">H</a> <a href="/user.php?action=search&ip_history=on&ip=<?=display_str($IP)?>" title="Search" class="brackets">S</a></span><br />
|
|
<span style="float: left;"><?=display_str($InviterIP)?></span>
|
|
<span style="float: right;"><?=display_str($InviterUses)?> <a href="userhistory.php?action=ips&userid=<?=$InviterID?>" title="History" class="brackets">H</a> <a href="/user.php?action=search&ip_history=on&ip=<?=display_str($InviterIP)?>" title="Search" class="brackets">S</a></span><br />
|
|
</td>
|
|
<td>
|
|
<?=$IPCC?> <br />
|
|
<?=$InviterIPCC?>
|
|
</td>
|
|
<td>
|
|
<?=Tools::get_host_by_ajax($IP)?><br />
|
|
<?=Tools::get_host_by_ajax($InviterIP)?>
|
|
</td>
|
|
<td><?=time_diff($Joined)?><br /><?=time_diff($InviterJoined)?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<div class="linkbox">
|
|
<? echo $Pages; ?>
|
|
</div>
|
|
<? } else { ?>
|
|
<h2 align="center">There have been no new registrations in the past 72 hours.</h2>
|
|
<? }
|
|
View::show_footer();
|
|
?>
|