mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 19:06:27 +00:00
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?
|
|
if (!check_perms('users_view_ips')) {
|
|
error(403);
|
|
}
|
|
View::show_header('Dupe IPs');
|
|
define('USERS_PER_PAGE', 50);
|
|
define('IP_OVERLAPS', 5);
|
|
list($Page,$Limit) = Format::page_limit(USERS_PER_PAGE);
|
|
|
|
|
|
$RS = $DB->query("
|
|
SELECT
|
|
SQL_CALC_FOUND_ROWS
|
|
m.ID,
|
|
m.IP,
|
|
m.Username,
|
|
m.PermissionID,
|
|
m.Enabled,
|
|
i.Donor,
|
|
i.Warned,
|
|
i.JoinDate,
|
|
( SELECT
|
|
COUNT(DISTINCT h.UserID)
|
|
FROM users_history_ips AS h
|
|
WHERE h.IP=m.IP
|
|
) AS Uses
|
|
FROM users_main AS m
|
|
LEFT JOIN users_info AS i ON i.UserID=m.ID
|
|
WHERE
|
|
( SELECT
|
|
COUNT(DISTINCT h.UserID)
|
|
FROM users_history_ips AS h
|
|
WHERE h.IP=m.IP
|
|
) >= ".IP_OVERLAPS."
|
|
AND m.Enabled = '1'
|
|
AND m.IP != '127.0.0.1'
|
|
ORDER BY Uses DESC
|
|
LIMIT $Limit");
|
|
$DB->query("SELECT FOUND_ROWS()");
|
|
list($Results) = $DB->next_record();
|
|
$DB->set_query_id($RS);
|
|
|
|
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>IP address</td>
|
|
<td>Dupes</td>
|
|
<td>Registered</td>
|
|
</tr>
|
|
<?
|
|
while (list($UserID, $IP, $Username, $PermissionID, $Enabled, $Donor, $Warned, $Joined, $Uses) = $DB->next_record()) {
|
|
$Row = ($Row == 'b') ? 'a' : 'b';
|
|
?>
|
|
<tr class="row<?=$Row?>">
|
|
<td><?=Users::format_username($UserID, true, true, true, true)?></td>
|
|
<td>
|
|
<span style="float: left;"><?=Tools::get_host_by_ajax($IP)." ($IP)"?></span><span style="float: right;"><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>
|
|
</td>
|
|
<td><?=display_str($Uses)?></td>
|
|
<td><?=time_diff($Joined)?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table>
|
|
<div class="linkbox">
|
|
<? echo $Pages; ?>
|
|
</div>
|
|
<? } else { ?>
|
|
<h2 align="center">There are currently no users with more than <?=IP_OVERLAPS?> IP overlaps.</h2>
|
|
<? }
|
|
View::show_footer();
|
|
?>
|