2011-03-28 14:21:28 +00:00
< ?
/************************************************************************
||------------|| User email history page ||---------------------------||
This page lists previous email addresses a user has used on the site . It
gets called if $_GET [ 'action' ] == 'email' .
It also requires $_GET [ 'userid' ] in order to get the data for the correct
user .
************************************************************************/
$UserID = $_GET [ 'userid' ];
if ( ! is_number ( $UserID )) { error ( 404 ); }
2012-03-28 08:00:20 +00:00
$DB -> query ( " SELECT ui.JoinDate, p.Level AS Class FROM users_main AS um JOIN users_info AS ui ON um.ID=ui.UserID JOIN permissions AS p ON p.ID=um.PermissionID WHERE um.ID = $UserID " );
list ( $Joined , $Class ) = $DB -> next_record ();
2011-06-23 08:00:06 +00:00
if ( ! check_perms ( 'users_view_email' , $Class )) {
error ( 403 );
}
$UsersOnly = $_GET [ 'usersonly' ];
2011-03-28 14:21:28 +00:00
2012-03-29 08:00:19 +00:00
$DB -> query ( " SELECT Username FROM users_main WHERE ID = " . $UserID );
list ( $Username ) = $DB -> next_record ();
2011-03-28 14:21:28 +00:00
show_header ( " Email history for $Username " );
if ( $UsersOnly == 1 ) {
$DB -> query ( " SELECT
u . Email ,
'".sqltime()."' AS Time ,
u . IP ,
c . Code
FROM users_main AS u
LEFT JOIN users_main AS u2 ON u2 . Email = u . Email AND u2 . ID != '$UserID'
LEFT JOIN geoip_country AS c ON INET_ATON ( u . IP ) BETWEEN c . StartIP AND c . EndIP
WHERE u . ID = '$UserID' AND u2 . ID > 0
UNION SELECT
h . Email ,
h . Time ,
h . IP ,
c . Code
FROM users_history_emails AS h
LEFT JOIN users_history_emails AS h2 ON h2 . email = h . email and h2 . UserID != '$UserID'
LEFT JOIN geoip_country AS c ON INET_ATON ( h . IP ) BETWEEN c . StartIP AND c . EndIP
WHERE h . UserID = '$UserID' AND h2 . UserID > 0 " /*AND Time<>'0000-00-00 00:00:00'*/. "
ORDER BY Time DESC " );
} else {
$DB -> query ( " SELECT
u . Email ,
'".sqltime()."' AS Time ,
u . IP ,
c . Code
FROM users_main AS u
LEFT JOIN geoip_country AS c ON INET_ATON ( u . IP ) BETWEEN c . StartIP AND c . EndIP
WHERE u . ID = '$UserID'
UNION SELECT
h . Email ,
h . Time ,
h . IP ,
c . Code
FROM users_history_emails AS h
LEFT JOIN geoip_country AS c ON INET_ATON ( h . IP ) BETWEEN c . StartIP AND c . EndIP
WHERE UserID = '$UserID' " /*AND Time<>'0000-00-00 00:00:00'*/. "
ORDER BY Time DESC " );
}
$History = $DB -> to_array ();
?>
< h2 > Email history for < a href = " user.php?id=<?= $UserID ?> " >< ? = $Username ?> </a></h2>
< table width = " 100% " >
< tr class = " colhead " >
< td > Email </ td >
< td > Set </ td >
< td > IP [ < a href = " userhistory.php?action=ips&userid=<?= $UserID ?> " > H </ a > ] </ td >
< ? if ( $UsersOnly == 1 ) {
?>
< td > User </ td >
< ?
}
?>
</ tr >
< ?
foreach ( $History as $Key => $Values ){
if ( isset ( $History [ $Key + 1 ])) {
$Values [ 'Time' ] = $History [ $Key + 1 ][ 'Time' ];
} else {
$Values [ 'Time' ] = $Joined ;
}
?>
< tr class = " rowa " >
< td >< ? = display_str ( $Values [ 'Email' ]) ?> </td>
< td >< ? = time_diff ( $Values [ 'Time' ]) ?> </td>
< td >< ? = display_str ( $Values [ 'IP' ]) ?> (<?=display_str($Values['Code'])?>) [<a href="user.php?action=search&ip_history=on&ip=<?=display_str($Values['IP'])?>" title="Search">S</a>]</td>
< ?
if ( $UsersOnly == 1 ) {
$ueQuery = $DB -> query ( " SELECT ue.UserID, Username, ue.Time, ue.IP FROM users_history_emails AS ue, users_main WHERE ue.Email = ' " . db_string ( $Values [ 'Email' ]) . " ' AND UserID != " . $UserID . " AND ID = UserID " );
2012-03-28 08:00:20 +00:00
while ( list ( $UserID2 , $Time , $IP ) = $DB -> next_record ()) { ?>
2011-03-28 14:21:28 +00:00
</ tr >
< tr >
< td />
< td >< ? = time_diff ( $Time ) ?> </td>
< td >< ? = display_str ( $IP ) ?> </td>
< ? $UserURL = " http:// " . NONSSL_SITE_URL . " /user.php?id= $UserID2 " ;
$DB -> query ( " SELECT Enabled FROM users_main WHERE ID = " . $UserID2 );
list ( $Enabled ) = $DB -> next_record ();
$DB -> set_query_id ( $ueQuery );
?>
2012-03-28 08:00:20 +00:00
< td >< a href = " <?=display_str( $UserURL )?> " >< ? = format_username ( $UserID2 , false , false , true ) ?> </a></td>
2011-03-28 14:21:28 +00:00
</ tr >
< ?
}
}
?>
< ? } ?>
</ table >
< ? show_footer (); ?>