2004-10-28 02:13:59 +00:00
|
|
|
<? /*
|
2008-04-06 19:45:09 +00:00
|
|
|
LibreSSL - CAcert web application
|
|
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
2004-10-28 02:13:59 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; version 2 of the License.
|
2004-10-28 02:13:59 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2004-10-28 02:13:59 +00:00
|
|
|
|
2008-04-06 19:45:09 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-10-28 02:13:59 +00:00
|
|
|
*/ ?>
|
|
|
|
<?
|
2011-10-05 20:03:22 +00:00
|
|
|
include_once($_SESSION['_config']['filepath']."/includes/notary.inc.php");
|
|
|
|
|
|
|
|
|
2008-09-05 15:31:11 +00:00
|
|
|
if(array_key_exists('assurance',$_REQUEST) && $_REQUEST['assurance'] > 0)
|
2008-05-11 15:14:30 +00:00
|
|
|
{
|
2008-08-22 12:00:33 +00:00
|
|
|
$assurance = mysql_escape_string(intval($_REQUEST['assurance']));
|
2009-04-05 00:31:11 +00:00
|
|
|
$row = 0;
|
|
|
|
$res = mysql_query("select `to` from `notary` where `id`='$assurance'");
|
2012-01-05 21:03:10 +00:00
|
|
|
if ($res) {
|
2009-04-05 00:31:11 +00:00
|
|
|
$row = mysql_fetch_assoc($res);
|
|
|
|
}
|
2012-01-05 21:03:10 +00:00
|
|
|
mysql_query("delete from `notary` where `id`='$assurance'");
|
2009-04-05 00:31:11 +00:00
|
|
|
if ($row) {
|
|
|
|
fix_assurer_flag($row['to']);
|
|
|
|
}
|
2008-05-11 15:14:30 +00:00
|
|
|
}
|
2005-12-04 21:04:05 +00:00
|
|
|
|
2008-09-19 21:54:52 +00:00
|
|
|
if(intval(array_key_exists('userid',$_REQUEST)?$_REQUEST['userid']:0) <= 0)
|
2008-05-11 15:14:30 +00:00
|
|
|
{
|
2013-07-15 08:32:06 +00:00
|
|
|
$_REQUEST['userid'] = 0;
|
|
|
|
|
2008-05-11 15:14:30 +00:00
|
|
|
$emailsearch = $email = mysql_escape_string(stripslashes($_REQUEST['email']));
|
2009-03-09 23:28:18 +00:00
|
|
|
|
|
|
|
//Disabled to speed up the queries
|
|
|
|
//if(!strstr($email, "%"))
|
|
|
|
// $emailsearch = "%$email%";
|
|
|
|
|
2011-10-12 08:20:01 +00:00
|
|
|
// bug-975 ted+uli changes --- begin
|
|
|
|
if(preg_match("/^[0-9]+$/", $email)) {
|
|
|
|
// $email consists of digits only ==> search for IDs
|
|
|
|
// Be defensive here (outer join) if primary mail is not listed in email table
|
|
|
|
$query = "select `users`.`id` as `id`, `email`.`email` as `email`
|
|
|
|
from `users` left outer join `email` on (`users`.`id`=`email`.`memid`)
|
|
|
|
where (`email`.`id`='$email' or `users`.`id`='$email')
|
|
|
|
and `users`.`deleted`=0
|
|
|
|
group by `users`.`id` limit 100";
|
|
|
|
} else {
|
|
|
|
// $email contains non-digits ==> search for mail addresses
|
|
|
|
// Be defensive here (outer join) if primary mail is not listed in email table
|
2013-06-26 11:02:45 +00:00
|
|
|
$query = "select `users`.`id` as `id`, `email`.`email` as `email`
|
2011-10-12 08:20:01 +00:00
|
|
|
from `users` left outer join `email` on (`users`.`id`=`email`.`memid`)
|
2013-06-26 11:02:45 +00:00
|
|
|
where (`email`.`email` like '$emailsearch'
|
2011-10-12 08:20:01 +00:00
|
|
|
or `users`.`email` like '$emailsearch')
|
|
|
|
and `users`.`deleted`=0
|
|
|
|
group by `users`.`id` limit 100";
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
// bug-975 ted+uli changes --- end
|
2008-05-11 15:14:30 +00:00
|
|
|
$res = mysql_query($query);
|
|
|
|
if(mysql_num_rows($res) > 1) { ?>
|
2004-10-28 02:13:59 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
|
|
|
</tr>
|
2005-12-04 21:04:05 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("User ID")?></td>
|
|
|
|
<td class="DataTD"><?=_("Email")?></td>
|
|
|
|
</tr>
|
2004-10-28 02:13:59 +00:00
|
|
|
<?
|
2008-05-11 15:14:30 +00:00
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{ ?>
|
2004-10-28 02:13:59 +00:00
|
|
|
<tr>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($row['id'])?>"><?=intval($row['id'])?></a></td>
|
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($row['id'])?>"><?=sanitizeHTML($row['email'])?></a></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
2004-11-03 01:45:21 +00:00
|
|
|
<? } if(mysql_num_rows($res) >= 100) { ?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" colspan="2"><?=_("Only the first 100 rows are displayed.")?></td>
|
|
|
|
</tr>
|
|
|
|
<? } else { ?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" colspan="2"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td>
|
|
|
|
</tr>
|
2004-10-28 02:13:59 +00:00
|
|
|
<? } ?>
|
2004-11-03 01:45:21 +00:00
|
|
|
</table><br><br>
|
2008-05-11 15:14:30 +00:00
|
|
|
<? } elseif(mysql_num_rows($res) == 1) {
|
|
|
|
$row = mysql_fetch_assoc($res);
|
|
|
|
$_REQUEST['userid'] = $row['id'];
|
|
|
|
} else {
|
2008-11-24 12:50:09 +00:00
|
|
|
printf(_("No users found matching %s"), sanitizeHTML($email));
|
2008-05-11 15:14:30 +00:00
|
|
|
}
|
|
|
|
}
|
2004-10-28 02:13:59 +00:00
|
|
|
|
2008-05-11 15:14:30 +00:00
|
|
|
if(intval($_REQUEST['userid']) > 0)
|
|
|
|
{
|
2013-09-06 15:21:06 +00:00
|
|
|
$userid = intval($_REQUEST['userid']);
|
|
|
|
$query = "select * from `users` where `users`.`id`='$userid' and `users`.`deleted`=0";
|
2008-05-11 15:14:30 +00:00
|
|
|
$res = mysql_query($query);
|
|
|
|
if(mysql_num_rows($res) <= 0)
|
|
|
|
{
|
|
|
|
echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!");
|
|
|
|
} else {
|
|
|
|
$row = mysql_fetch_assoc($res);
|
2008-11-23 05:01:21 +00:00
|
|
|
$query = "select sum(`points`) as `points` from `notary` where `to`='".intval($row['id'])."'";
|
2008-05-11 15:14:30 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
2008-11-23 05:01:21 +00:00
|
|
|
$alerts = mysql_fetch_assoc(mysql_query("select * from `alerts` where `memid`='".intval($row['id'])."'"));
|
2004-10-28 02:13:59 +00:00
|
|
|
?>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td colspan="5" class="title"><? printf(_("%s's Account Details"), sanitizeHTML($row['email'])); ?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Email")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['email'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("First Name")?>:</td>
|
2009-05-31 16:49:57 +00:00
|
|
|
<td class="DataTD"><form method="post" action="account.php" onSubmit="if(!confirm('<?=_("Are you sure you want to modify this DOB and/or last name?")?>')) return false;">
|
2008-09-07 22:01:52 +00:00
|
|
|
<input type="hidden" name="csrf" value="<?=make_csrf('admchangepers')?>" />
|
2008-11-23 05:01:21 +00:00
|
|
|
<input type="text" name="fname" value="<?=sanitizeHTML($row['fname'])?>"></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Middle Name")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><input type="text" name="mname" value="<?=sanitizeHTML($row['mname'])?>"></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Last Name")?>:</td>
|
2008-07-18 16:36:55 +00:00
|
|
|
<td class="DataTD"> <input type="hidden" name="oldid" value="43">
|
2008-05-11 15:14:30 +00:00
|
|
|
<input type="hidden" name="action" value="updatedob">
|
2013-09-06 15:21:06 +00:00
|
|
|
<input type="hidden" name="userid" value="<?=intval($userid)?>">
|
2008-11-23 05:01:21 +00:00
|
|
|
<input type="text" name="lname" value="<?=sanitizeHTML($row['lname'])?>"></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Suffix")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><input type="text" name="suffix" value="<?=sanitizeHTML($row['suffix'])?>"></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Date of Birth")?>:</td>
|
2006-08-13 17:39:31 +00:00
|
|
|
<td class="DataTD">
|
2006-08-07 18:34:48 +00:00
|
|
|
<?
|
2008-05-11 15:14:30 +00:00
|
|
|
$year = intval(substr($row['dob'], 0, 4));
|
|
|
|
$month = intval(substr($row['dob'], 5, 2));
|
|
|
|
$day = intval(substr($row['dob'], 8, 2));
|
|
|
|
?><nobr><select name="day">
|
2006-08-07 18:34:48 +00:00
|
|
|
<?
|
|
|
|
for($i = 1; $i <= 31; $i++)
|
|
|
|
{
|
|
|
|
echo "<option";
|
|
|
|
if($day == $i)
|
2011-10-12 08:20:01 +00:00
|
|
|
echo " selected='selected'";
|
2006-08-07 18:34:48 +00:00
|
|
|
echo ">$i</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<select name="month">
|
|
|
|
<?
|
|
|
|
for($i = 1; $i <= 12; $i++)
|
|
|
|
{
|
|
|
|
echo "<option value='$i'";
|
|
|
|
if($month == $i)
|
2008-09-03 17:43:31 +00:00
|
|
|
echo " selected='selected'";
|
2006-08-14 15:08:04 +00:00
|
|
|
echo ">".ucwords(strftime("%B", mktime(0,0,0,$i,1,date("Y"))))."</option>";
|
2006-08-07 18:34:48 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<input type="text" name="year" value="<?=$year?>" size="4">
|
|
|
|
<input type="submit" value="Go"></form></nobr></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
2013-05-15 09:39:39 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("CCA accepted")?>:</td>
|
|
|
|
<td class="DataTD"><a href="account.php?id=57&userid=<?=intval($row['id'])?>"><?=intval(get_user_agreement_status($row['id'])) ? _("Yes") : _("No") ?></a></td>
|
|
|
|
</tr>
|
2008-05-11 15:14:30 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Trainings")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=55&userid=<?=intval($row['id'])?>">show</a></td>
|
2008-05-11 15:14:30 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Is Assurer")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&assurer=<?=intval($row['id'])?>&csrf=<?=make_csrf('admsetassuret')?>"><?=$row['assurer']?></a></td>
|
2008-05-11 15:14:30 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Blocked Assurer")?>:</td>
|
2008-11-23 20:58:27 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&assurer_blocked=<?=intval($row['id'])?>"><?=$row['assurer_blocked']?></a></td>
|
2008-05-11 15:14:30 +00:00
|
|
|
</tr>
|
2006-08-16 05:56:39 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Account Locking")?>:</td>
|
2008-11-23 20:58:27 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&locked=<?=$row['id']?>&csrf=<?=make_csrf('admactlock')?>"><?=$row['locked']?></a></td>
|
2006-08-16 05:56:39 +00:00
|
|
|
</tr>
|
2005-03-12 20:09:03 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Code Signing")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&codesign=<?=$row['id']?>&csrf=<?=make_csrf('admcodesign')?>"><?=$row['codesign']?></a></td>
|
2005-03-12 20:09:03 +00:00
|
|
|
</tr>
|
2006-11-27 02:02:09 +00:00
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><?=_("Org Assurer")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&orgadmin=<?=$row['id']?>&csrf=<?=make_csrf('admorgadmin')?>"><?=$row['orgadmin']?></a></td>
|
2006-11-27 02:02:09 +00:00
|
|
|
</tr>
|
2005-11-20 08:16:55 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("TTP Admin")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&ttpadmin=<?=$row['id']?>&csrf=<?=make_csrf('admttpadmin')?>"><?=$row['ttpadmin']?></a></td>
|
2005-11-20 08:16:55 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Location Admin")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&locadmin=<?=$row['id']?>"><?=$row['locadmin']?></a></td>
|
2005-11-20 08:16:55 +00:00
|
|
|
</tr>
|
2005-12-04 21:04:05 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Admin")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&admin=<?=$row['id']?>&csrf=<?=make_csrf('admsetadmin')?>"><?=$row['admin']?></a></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
</tr>
|
2006-12-09 00:23:15 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Ad Admin")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&adadmin=<?=$row['id']?>"><?=$row['adadmin']?></a> (0 = none, 1 = submit, 2 = approve)</td>
|
2006-12-09 00:23:15 +00:00
|
|
|
</tr>
|
2005-03-12 19:40:24 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Tverify Account")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&tverify=<?=$row['id']?>"><?=$row['tverify']?></a></td>
|
2005-03-12 19:40:24 +00:00
|
|
|
</tr>
|
2006-08-16 17:53:18 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("General Announcements")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&general=<?=$row['id']?>"><?=$alerts['general']?></a></td>
|
2006-08-16 17:53:18 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Country Announcements")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&country=<?=$row['id']?>"><?=$alerts['country']?></a></td>
|
2006-08-16 17:53:18 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Regional Announcements")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&regional=<?=$row['id']?>"><?=$alerts['regional']?></a></td>
|
2006-08-16 17:53:18 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Within 200km Announcements")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&radius=<?=$row['id']?>"><?=$alerts['radius']?></a></td>
|
2006-08-16 17:53:18 +00:00
|
|
|
</tr>
|
2004-11-03 01:45:21 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Change Password")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=44&userid=<?=$row['id']?>"><?=_("Change Password")?></a></td>
|
2004-11-03 01:45:21 +00:00
|
|
|
</tr>
|
2004-12-07 13:21:06 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Delete Account")?>:</td>
|
2008-11-23 05:01:21 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=50&userid=<?=$row['id']?>&csrf=<?=make_csrf('admdelaccount')?>"><?=_("Delete Account")?></a></td>
|
2004-12-07 13:21:06 +00:00
|
|
|
</tr>
|
2006-08-12 19:39:00 +00:00
|
|
|
<?
|
2008-05-11 15:14:30 +00:00
|
|
|
// This is intensionally a $_GET for audit purposes. DO NOT CHANGE!!!
|
2008-09-05 15:31:11 +00:00
|
|
|
if(array_key_exists('showlostpw',$_GET) && $_GET['showlostpw'] == "yes") {
|
2006-08-12 19:39:00 +00:00
|
|
|
?>
|
2004-10-28 02:13:59 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q1:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['Q1'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - A1:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['A1'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q2:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['Q2'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - A2:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['A2'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q3:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['Q3'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - A3:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['A3'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q4:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['Q4'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - A4:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['A4'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - Q5:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['Q5'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Lost Password")?> - A5:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($row['A5'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
2008-09-05 15:31:11 +00:00
|
|
|
<? } else { ?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD" colspan="2"><a href="account.php?id=43&userid=<?=$row['id']?>&showlostpw=yes"><?=_("Show Lost Password Details")?></a></td>
|
|
|
|
</tr>
|
2006-08-07 22:55:24 +00:00
|
|
|
<? } ?>
|
2004-10-28 02:13:59 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Assurance Points")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=intval($drow['points'])?></td>
|
2004-10-28 02:13:59 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2004-12-02 11:34:07 +00:00
|
|
|
<br><?
|
2008-09-03 17:43:31 +00:00
|
|
|
$query = "select * from `email` where `memid`='".intval($row['id'])."' and `deleted`=0 and `hash`=''
|
|
|
|
and `email`!='".mysql_escape_string($row['email'])."'";
|
2008-05-11 15:14:30 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
if(mysql_num_rows($dres) > 0) { ?>
|
2004-12-02 11:34:07 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" class="title"><?=_("Alternate Verified Email Addresses")?></td>
|
|
|
|
</tr><?
|
2008-05-11 15:14:30 +00:00
|
|
|
$rc = mysql_num_rows($dres);
|
|
|
|
while($drow = mysql_fetch_assoc($dres))
|
|
|
|
{ ?>
|
2004-12-02 11:34:07 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Secondary Emails")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($drow['email'])?></td>
|
2004-12-02 11:34:07 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
</table>
|
|
|
|
<br><? } ?>
|
|
|
|
<?
|
2008-09-04 13:46:19 +00:00
|
|
|
$query = "select * from `domains` where `memid`='".intval($row['id'])."' and `deleted`=0 and `hash`=''";
|
2008-05-11 15:14:30 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
if(mysql_num_rows($dres) > 0) { ?>
|
2004-12-02 11:34:07 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" class="title"><?=_("Verified Domains")?></td>
|
|
|
|
</tr><?
|
2008-05-11 15:14:30 +00:00
|
|
|
$rc = mysql_num_rows($dres);
|
|
|
|
while($drow = mysql_fetch_assoc($dres))
|
|
|
|
{ ?>
|
2004-12-02 11:34:07 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Domain")?>:</td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($drow['domain'])?></td>
|
2004-12-02 11:34:07 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
</table>
|
2004-10-31 07:08:42 +00:00
|
|
|
<br>
|
2004-12-02 11:34:07 +00:00
|
|
|
<? } ?>
|
2011-10-12 08:20:01 +00:00
|
|
|
<? // Begin - Debug infos ?>
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" class="title"><?=_("Account State")?></td>
|
|
|
|
</tr>
|
|
|
|
|
2013-06-26 11:02:45 +00:00
|
|
|
<?
|
2011-10-12 08:20:01 +00:00
|
|
|
// --- bug-975 begin ---
|
|
|
|
// potential db inconsistency like in a20110804.1
|
|
|
|
// Admin console -> don't list user account
|
|
|
|
// User login -> impossible
|
|
|
|
// Assurer, assure someone -> user displayed
|
|
|
|
/* regular user account search with regular settings
|
|
|
|
|
|
|
|
--- Admin Console find user query
|
|
|
|
$query = "select `users`.`id` as `id`, `email`.`email` as `email` from `users`,`email`
|
|
|
|
where `users`.`id`=`email`.`memid` and
|
|
|
|
(`email`.`email` like '$emailsearch' or `email`.`id`='$email' or `users`.`id`='$email') and
|
|
|
|
`email`.`hash`='' and `email`.`deleted`=0 and `users`.`deleted`=0
|
|
|
|
group by `users`.`id` limit 100";
|
|
|
|
=> requirements
|
|
|
|
1. email.hash = ''
|
|
|
|
2. email.deleted = 0
|
|
|
|
3. users.deleted = 0
|
|
|
|
4. email.email = primary-email (???) or'd
|
|
|
|
not covered by admin console find user routine, but may block users login
|
|
|
|
5. users.verified = 0|1
|
2013-06-26 11:02:45 +00:00
|
|
|
further "special settings"
|
2011-10-12 08:20:01 +00:00
|
|
|
6. users.locked (setting displayed in display form)
|
|
|
|
7. users.assurer_blocked (setting displayed in display form)
|
|
|
|
|
|
|
|
--- User login user query
|
|
|
|
select * from `users` where `email`='$email' and (`password`=old_password('$pword') or `password`=sha1('$pword') or
|
|
|
|
`password`=password('$pword')) and `verified`=1 and `deleted`=0 and `locked`=0
|
|
|
|
=> requirements
|
|
|
|
1. users.verified = 1
|
|
|
|
2. users.deleted = 0
|
|
|
|
3. users.locked = 0
|
2013-06-26 11:02:45 +00:00
|
|
|
4. users.email = primary-email
|
2011-10-12 08:20:01 +00:00
|
|
|
|
|
|
|
--- Assurer, assure someone find user query
|
|
|
|
select * from `users` where `email`='".mysql_escape_string(stripslashes($_POST['email']))."'
|
|
|
|
and `deleted`=0
|
|
|
|
=> requirements
|
|
|
|
1. users.deleted = 0
|
|
|
|
2. users.email = primary-email
|
|
|
|
Admin User Assurer
|
|
|
|
bit Console Login assure someone
|
|
|
|
|
|
|
|
1. email.hash = '' Yes No No
|
|
|
|
2. email.deleted = 0 Yes No No
|
|
|
|
3. users.deleted = 0 Yes Yes Yes
|
2013-06-26 11:02:45 +00:00
|
|
|
4. users.verified = 1 No Yes No
|
2011-10-12 08:20:01 +00:00
|
|
|
5. users.locked = 0 No Yes No
|
|
|
|
6. users.email = prim-email No Yes Yes
|
|
|
|
7. email.email = prim-email Yes No No
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2011-10-12 08:20:01 +00:00
|
|
|
full usable account needs all 7 requirements fulfilled
|
|
|
|
so if one setting isn't set/cleared there is an inconsistency either way
|
|
|
|
if eg email.email is not avail, admin console cannot open user info
|
|
|
|
but user can login and assurer can display user info
|
|
|
|
if user verified is not set to 1, admin console displays user record
|
|
|
|
but user cannot login, but assurer can search for the user and the data displays
|
|
|
|
|
|
|
|
consistency check:
|
|
|
|
1. search primary-email in users.email
|
|
|
|
2. search primary-email in email.email
|
|
|
|
3. userid = email.memid
|
|
|
|
4. check settings from table 1. - 5.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
$inconsistency = 0;
|
|
|
|
$inconsistencydisp = "";
|
|
|
|
$inccause = "";
|
|
|
|
// current userid intval($row['id'])
|
|
|
|
$query = "select `email` as `uemail`, `deleted` as `udeleted`, `verified`, `locked`
|
|
|
|
from `users` where `id`='".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$uemail = $drow['uemail'];
|
|
|
|
$udeleted = $drow['udeleted'];
|
|
|
|
$uverified = $drow['verified'];
|
|
|
|
$ulocked = $drow['locked'];
|
|
|
|
|
|
|
|
$query = "select `hash`, `email` as `eemail` from `email`
|
|
|
|
where `memid`='".intval($row['id'])."' and
|
|
|
|
`email` ='".$uemail."' and
|
|
|
|
`deleted` = 0";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
if ($drow = mysql_fetch_assoc($dres)) {
|
|
|
|
$drow['edeleted'] = 0;
|
|
|
|
} else {
|
|
|
|
// try if there are deleted entries
|
|
|
|
$query = "select `hash`, `deleted` as `edeleted`, `email` as `eemail` from `email`
|
|
|
|
where `memid`='".intval($row['id'])."' and
|
|
|
|
`email` ='".$uemail."'";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2011-10-12 08:20:01 +00:00
|
|
|
if ($drow) {
|
|
|
|
$eemail = $drow['eemail'];
|
|
|
|
$edeleted = $drow['edeleted'];
|
|
|
|
$ehash = $drow['hash'];
|
|
|
|
if ($udeleted!=0) {
|
|
|
|
$inconsistency += 1;
|
|
|
|
$inccause .= (empty($inccause)?"":"<br>")._("Users record set to deleted");
|
|
|
|
}
|
|
|
|
if ($uverified!=1) {
|
|
|
|
$inconsistency += 2;
|
|
|
|
$inccause .= (empty($inccause)?"":"<br>")._("Users record verified not set");
|
|
|
|
}
|
|
|
|
if ($ulocked!=0) {
|
|
|
|
$inconsistency += 4;
|
|
|
|
$inccause .= (empty($inccause)?"":"<br>")._("Users record locked set");
|
|
|
|
}
|
|
|
|
if ($edeleted!=0) {
|
|
|
|
$inconsistency += 8;
|
2013-06-26 11:02:45 +00:00
|
|
|
$inccause .= (empty($inccause)?"":"<br>")._("Email record set deleted");
|
2011-10-12 08:20:01 +00:00
|
|
|
}
|
|
|
|
if ($ehash!='') {
|
|
|
|
$inconsistency += 16;
|
2013-06-26 11:02:45 +00:00
|
|
|
$inccause .= (empty($inccause)?"":"<br>")._("Email record hash not unset");
|
2011-10-12 08:20:01 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$inconsistency = 32;
|
|
|
|
$inccause = _("Prim. email, Email record doesn't exist");
|
|
|
|
}
|
|
|
|
if ($inconsistency>0) {
|
|
|
|
// $inconsistencydisp = _("Yes");
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Account inconsistency")?>:</td>
|
|
|
|
<td class="DataTD"><?=$inccause?><br>code: <?=$inconsistency?></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" class="DataTD" style="max-width: 75ex">
|
|
|
|
<?=_("Account inconsistency can cause problems in daily account ".
|
|
|
|
"operations and needs to be fixed manually through arbitration/critical ".
|
|
|
|
"team.")?>
|
|
|
|
</td>
|
2013-06-26 11:02:45 +00:00
|
|
|
</tr>
|
2011-10-12 08:20:01 +00:00
|
|
|
<? }
|
|
|
|
|
|
|
|
// --- bug-975 end ---
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
<br>
|
2013-06-26 11:02:45 +00:00
|
|
|
<?
|
2011-10-12 08:20:01 +00:00
|
|
|
// End - Debug infos
|
|
|
|
?>
|
2009-05-21 22:46:07 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
|
|
|
<td colspan="6" class="title"><?=_("Certificates")?></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Cert Type")?>:</td>
|
|
|
|
<td class="DataTD"><?=_("Total")?></td>
|
|
|
|
<td class="DataTD"><?=_("Valid")?></td>
|
|
|
|
<td class="DataTD"><?=_("Expired")?></td>
|
|
|
|
<td class="DataTD"><?=_("Revoked")?></td>
|
|
|
|
<td class="DataTD"><?=_("Latest Expire")?></td>
|
|
|
|
</tr>
|
2013-11-06 16:30:32 +00:00
|
|
|
<!-- server certificates -->
|
2012-01-05 21:03:10 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Server")?>:</td>
|
|
|
|
<?
|
|
|
|
$query = "select COUNT(*) as `total`,
|
|
|
|
MAX(`domaincerts`.`expire`) as `maxexpire`
|
|
|
|
from `domains` inner join `domaincerts`
|
|
|
|
on `domains`.`id` = `domaincerts`.`domid`
|
|
|
|
where `domains`.`memid` = '".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$total = $drow['total'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$maxexpire = "0000-00-00 00:00:00";
|
|
|
|
if ($drow['maxexpire']) {
|
|
|
|
$maxexpire = $drow['maxexpire'];
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
if($total > 0) {
|
|
|
|
$query = "select COUNT(*) as `valid`
|
|
|
|
from `domains` inner join `domaincerts`
|
|
|
|
on `domains`.`id` = `domaincerts`.`domid`
|
|
|
|
where `domains`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `revoked` = '0000-00-00 00:00:00'
|
|
|
|
and `expire` > NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$valid = $drow['valid'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `expired`
|
|
|
|
from `domains` inner join `domaincerts`
|
|
|
|
on `domains`.`id` = `domaincerts`.`domid`
|
|
|
|
where `domains`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `expire` <= NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$expired = $drow['expired'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `revoked`
|
|
|
|
from `domains` inner join `domaincerts`
|
|
|
|
on `domains`.`id` = `domaincerts`.`domid`
|
|
|
|
where `domains`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `revoked` != '0000-00-00 00:00:00'";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$revoked = $drow['revoked'];
|
|
|
|
?>
|
|
|
|
<td class="DataTD"><?=intval($total)?></td>
|
|
|
|
<td class="DataTD"><?=intval($valid)?></td>
|
|
|
|
<td class="DataTD"><?=intval($expired)?></td>
|
|
|
|
<td class="DataTD"><?=intval($revoked)?></td>
|
|
|
|
<td class="DataTD"><?=($maxexpire != "0000-00-00 00:00:00")?
|
|
|
|
substr($maxexpire, 0, 10) : _("Pending")?></td>
|
|
|
|
<?
|
|
|
|
} else { // $total > 0
|
|
|
|
?>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("None")?></td>
|
|
|
|
<?
|
|
|
|
} ?>
|
|
|
|
</tr>
|
2013-11-06 16:30:32 +00:00
|
|
|
<!-- client certificates -->
|
2012-01-05 21:03:10 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Client")?>:</td>
|
|
|
|
<?
|
|
|
|
$query = "select COUNT(*) as `total`, MAX(`expire`) as `maxexpire`
|
|
|
|
from `emailcerts`
|
|
|
|
where `memid` = '".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$total = $drow['total'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$maxexpire = "0000-00-00 00:00:00";
|
|
|
|
if ($drow['maxexpire']) {
|
|
|
|
$maxexpire = $drow['maxexpire'];
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
if($total > 0) {
|
|
|
|
$query = "select COUNT(*) as `valid`
|
|
|
|
from `emailcerts`
|
|
|
|
where `memid` = '".intval($row['id'])."'
|
|
|
|
and `revoked` = '0000-00-00 00:00:00'
|
|
|
|
and `expire` > NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$valid = $drow['valid'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `expired`
|
|
|
|
from `emailcerts`
|
|
|
|
where `memid` = '".intval($row['id'])."'
|
|
|
|
and `expire` <= NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$expired = $drow['expired'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `revoked`
|
|
|
|
from `emailcerts`
|
|
|
|
where `memid` = '".intval($row['id'])."'
|
|
|
|
and `revoked` != '0000-00-00 00:00:00'";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$revoked = $drow['revoked'];
|
|
|
|
?>
|
|
|
|
<td class="DataTD"><?=intval($total)?></td>
|
|
|
|
<td class="DataTD"><?=intval($valid)?></td>
|
|
|
|
<td class="DataTD"><?=intval($expired)?></td>
|
|
|
|
<td class="DataTD"><?=intval($revoked)?></td>
|
|
|
|
<td class="DataTD"><?=($maxexpire != "0000-00-00 00:00:00")?
|
|
|
|
substr($maxexpire, 0, 10) : _("Pending")?></td>
|
|
|
|
<?
|
|
|
|
} else { // $total > 0
|
|
|
|
?>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("None")?></td>
|
|
|
|
<?
|
|
|
|
} ?>
|
|
|
|
</tr>
|
2013-11-06 16:30:32 +00:00
|
|
|
<!-- gpg certificates -->
|
2012-01-05 21:03:10 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("GPG")?>:</td>
|
|
|
|
<?
|
|
|
|
$query = "select COUNT(*) as `total`, MAX(`expire`) as `maxexpire`
|
|
|
|
from `gpg`
|
|
|
|
where `memid` = '".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$total = $drow['total'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$maxexpire = "0000-00-00 00:00:00";
|
|
|
|
if ($drow['maxexpire']) {
|
|
|
|
$maxexpire = $drow['maxexpire'];
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
if($total > 0) {
|
|
|
|
$query = "select COUNT(*) as `valid`
|
|
|
|
from `gpg`
|
|
|
|
where `memid` = '".intval($row['id'])."'
|
|
|
|
and `expire` > NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$valid = $drow['valid'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `expired`
|
2013-11-06 16:30:32 +00:00
|
|
|
from `gpg`
|
|
|
|
where `memid` = '".intval($row['id'])."'
|
|
|
|
and `expire` <= NOW()";
|
2012-01-05 21:03:10 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$expired = $drow['expired'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
?>
|
|
|
|
<td class="DataTD"><?=intval($total)?></td>
|
|
|
|
<td class="DataTD"><?=intval($valid)?></td>
|
|
|
|
<td class="DataTD"><?=intval($expired)?></td>
|
|
|
|
<td class="DataTD"></td>
|
|
|
|
<td class="DataTD"><?=($maxexpire != "0000-00-00 00:00:00")?
|
|
|
|
substr($maxexpire, 0, 10) : _("Pending")?></td>
|
|
|
|
<?
|
|
|
|
} else { // $total > 0
|
|
|
|
?>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("None")?></td>
|
|
|
|
<?
|
|
|
|
} ?>
|
|
|
|
</tr>
|
2013-11-06 16:30:32 +00:00
|
|
|
<!-- org server certificates -->
|
2012-01-05 21:03:10 +00:00
|
|
|
<tr>
|
2013-06-26 10:59:08 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=58&userid=<?=intval($row['id'])?>"><?=_("Org Server")?></a>:</td>
|
2012-01-05 21:03:10 +00:00
|
|
|
<?
|
|
|
|
$query = "select COUNT(*) as `total`,
|
|
|
|
MAX(`orgcerts`.`expire`) as `maxexpire`
|
|
|
|
from `orgdomaincerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$total = $drow['total'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$maxexpire = "0000-00-00 00:00:00";
|
|
|
|
if ($drow['maxexpire']) {
|
|
|
|
$maxexpire = $drow['maxexpire'];
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
if($total > 0) {
|
|
|
|
$query = "select COUNT(*) as `valid`
|
|
|
|
from `orgdomaincerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`revoked` = '0000-00-00 00:00:00'
|
|
|
|
and `orgcerts`.`expire` > NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$valid = $drow['valid'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `expired`
|
|
|
|
from `orgdomaincerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`expire` <= NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$expired = $drow['expired'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `revoked`
|
|
|
|
from `orgdomaincerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`revoked` != '0000-00-00 00:00:00'";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$revoked = $drow['revoked'];
|
|
|
|
?>
|
|
|
|
<td class="DataTD"><?=intval($total)?></td>
|
|
|
|
<td class="DataTD"><?=intval($valid)?></td>
|
|
|
|
<td class="DataTD"><?=intval($expired)?></td>
|
|
|
|
<td class="DataTD"><?=intval($revoked)?></td>
|
|
|
|
<td class="DataTD"><?=($maxexpire != "0000-00-00 00:00:00")?
|
|
|
|
substr($maxexpire, 0, 10) : _("Pending")?></td>
|
|
|
|
<?
|
|
|
|
} else { // $total > 0
|
|
|
|
?>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("None")?></td>
|
|
|
|
<?
|
|
|
|
} ?>
|
|
|
|
</tr>
|
2013-11-06 16:30:32 +00:00
|
|
|
<!-- org client certificates -->
|
2012-01-05 21:03:10 +00:00
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Org Client")?>:</td>
|
|
|
|
<?
|
|
|
|
$query = "select COUNT(*) as `total`,
|
|
|
|
MAX(`orgcerts`.`expire`) as `maxexpire`
|
|
|
|
from `orgemailcerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."' ";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$total = $drow['total'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$maxexpire = "0000-00-00 00:00:00";
|
|
|
|
if ($drow['maxexpire']) {
|
|
|
|
$maxexpire = $drow['maxexpire'];
|
|
|
|
}
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
if($total > 0) {
|
|
|
|
$query = "select COUNT(*) as `valid`
|
|
|
|
from `orgemailcerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`revoked` = '0000-00-00 00:00:00'
|
|
|
|
and `orgcerts`.`expire` > NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$valid = $drow['valid'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `expired`
|
|
|
|
from `orgemailcerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`expire` <= NOW()";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$expired = $drow['expired'];
|
2013-06-26 11:02:45 +00:00
|
|
|
|
2012-01-05 21:03:10 +00:00
|
|
|
$query = "select COUNT(*) as `revoked`
|
|
|
|
from `orgemailcerts` as `orgcerts` inner join `org`
|
|
|
|
on `orgcerts`.`orgid` = `org`.`orgid`
|
|
|
|
where `org`.`memid` = '".intval($row['id'])."'
|
|
|
|
and `orgcerts`.`revoked` != '0000-00-00 00:00:00'";
|
|
|
|
$dres = mysql_query($query);
|
|
|
|
$drow = mysql_fetch_assoc($dres);
|
|
|
|
$revoked = $drow['revoked'];
|
|
|
|
?>
|
|
|
|
<td class="DataTD"><?=intval($total)?></td>
|
|
|
|
<td class="DataTD"><?=intval($valid)?></td>
|
|
|
|
<td class="DataTD"><?=intval($expired)?></td>
|
|
|
|
<td class="DataTD"><?=intval($revoked)?></td>
|
|
|
|
<td class="DataTD"><?=($maxexpire != "0000-00-00 00:00:00")?
|
|
|
|
substr($maxexpire, 0, 10) : _("Pending")?></td>
|
|
|
|
<?
|
|
|
|
} else { // $total > 0
|
|
|
|
?>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("None")?></td>
|
|
|
|
<?
|
|
|
|
} ?>
|
|
|
|
</tr>
|
2013-09-06 15:21:06 +00:00
|
|
|
<tr>
|
|
|
|
<td colspan="6" class="title">
|
|
|
|
<form method="post" action="account.php" onSubmit="if(!confirm('<?=_("Are you sure you want to revoke all private certificates?")?>')) return false;">
|
|
|
|
<input type="hidden" name="action" value="revokecert">
|
|
|
|
<input type="hidden" name="oldid" value="43">
|
|
|
|
<input type="hidden" name="userid" value="<?=intval($userid)?>">
|
|
|
|
<input type="submit" value="<?=_('revoke certificates')?>">
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-01-05 21:03:10 +00:00
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
|
2013-09-06 15:21:06 +00:00
|
|
|
|
2011-10-05 20:03:22 +00:00
|
|
|
<a href="account.php?id=43&userid=<?=$row['id']?>&shownotary=assuredto"><?=_("Show Assurances the user got")?></a>
|
|
|
|
(<a href="account.php?id=43&userid=<?=$row['id']?>&shownotary=assuredto15"><?=_("New calculation")?></a>)
|
|
|
|
<br />
|
|
|
|
<a href="account.php?id=43&userid=<?=$row['id']?>&shownotary=assuredby"><?=_("Show Assurances the user gave")?></a>
|
|
|
|
(<a href="account.php?id=43&userid=<?=$row['id']?>&shownotary=assuredby15"><?=_("New calculation")?></a>)
|
|
|
|
<br />
|
|
|
|
|
2009-05-21 22:46:07 +00:00
|
|
|
<?
|
2011-10-05 20:03:22 +00:00
|
|
|
// if(array_key_exists('assuredto',$_GET) && $_GET['assuredto'] == "yes") {
|
2009-05-21 22:46:07 +00:00
|
|
|
|
2011-10-05 20:03:22 +00:00
|
|
|
function showassuredto()
|
|
|
|
{
|
|
|
|
?>
|
2004-10-31 07:08:42 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td colspan="8" class="title"><?=_("Assurance Points")?></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><b><?=_("ID")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Who")?></b></td>
|
2009-05-21 22:46:07 +00:00
|
|
|
<td class="DataTD"><b><?=_("Email")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
<td class="DataTD"><b><?=_("Revoke")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<?
|
2011-10-05 20:03:22 +00:00
|
|
|
$query = "select * from `notary` where `to`='".intval($_GET['userid'])."'";
|
2008-05-11 15:14:30 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
$points = 0;
|
|
|
|
while($drow = mysql_fetch_assoc($dres))
|
|
|
|
{
|
2008-09-03 17:43:31 +00:00
|
|
|
$fromuser = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".intval($drow['from'])."'"));
|
2008-05-11 15:14:30 +00:00
|
|
|
$points += $drow['points'];
|
2004-10-31 07:08:42 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><?=$drow['id']?></td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=sanitizeHTML($drow['date'])?></td>
|
|
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=intval($drow['from'])?>"><?=sanitizeHTML($fromuser['fname'])." ".sanitizeHTML($fromuser['lname'])?></td>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($drow['from'])?>"><?=sanitizeHTML($fromuser['email'])?></a></td>
|
2008-09-03 17:43:31 +00:00
|
|
|
<td class="DataTD"><?=intval($drow['points'])?></td>
|
|
|
|
<td class="DataTD"><?=sanitizeHTML($drow['location'])?></td>
|
|
|
|
<td class="DataTD"><?=sanitizeHTML($drow['method'])?></td>
|
2013-06-26 11:02:45 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($drow['to'])?>&assurance=<?=intval($drow['id'])?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=sprintf(_("Are you sure you want to revoke the assurance with ID "%s"?"),$drow['id'])?>');"><?=_("Revoke")?></a></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
<tr>
|
2013-09-06 15:21:06 +00:00
|
|
|
<td class="DataTD" colspan="4"><b><?=_("Total Points")?>:</b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><?=$points?></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
<td class="DataTD" colspan="3"> </td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2009-05-21 22:46:07 +00:00
|
|
|
<? } ?>
|
2011-10-05 20:03:22 +00:00
|
|
|
|
2009-05-21 22:46:07 +00:00
|
|
|
<?
|
2011-10-05 20:03:22 +00:00
|
|
|
function showassuredby()
|
|
|
|
{
|
2009-05-21 22:46:07 +00:00
|
|
|
?>
|
2004-10-31 07:08:42 +00:00
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td colspan="8" class="title"><?=_("Assurance Points The User Issued")?></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><b><?=_("ID")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Who")?></b></td>
|
2009-05-21 22:46:07 +00:00
|
|
|
<td class="DataTD"><b><?=_("Email")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
|
|
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
<td class="DataTD"><b><?=_("Revoke")?></b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<?
|
2011-10-05 20:03:22 +00:00
|
|
|
$query = "select * from `notary` where `from`='".intval($_GET['userid'])."'";
|
2008-05-11 15:14:30 +00:00
|
|
|
$dres = mysql_query($query);
|
|
|
|
$points = 0;
|
|
|
|
while($drow = mysql_fetch_assoc($dres))
|
|
|
|
{
|
|
|
|
$fromuser = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$drow['to']."'"));
|
|
|
|
$points += $drow['points'];
|
2004-10-31 07:08:42 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
2011-10-05 20:03:22 +00:00
|
|
|
<td class="DataTD"><?=$drow['id']?></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><?=$drow['date']?></td>
|
|
|
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$drow['to']?>"><?=$fromuser['fname']." ".$fromuser['lname']?></td>
|
2009-05-21 22:46:07 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($drow['to'])?>"><?=sanitizeHTML($fromuser['email'])?></a></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><?=$drow['points']?></td>
|
|
|
|
<td class="DataTD"><?=$drow['location']?></td>
|
|
|
|
<td class="DataTD"><?=$drow['method']?></td>
|
2013-06-26 11:02:45 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$drow['from']?>&assurance=<?=$drow['id']?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=sprintf(_("Are you sure you want to revoke the assurance with ID "%s"?"),$drow['id'])?>');"><?=_("Revoke")?></a></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
<tr>
|
2013-09-06 15:21:06 +00:00
|
|
|
<td class="DataTD" colspan="4"><b><?=_("Total Points")?>:</b></td>
|
2004-10-31 07:08:42 +00:00
|
|
|
<td class="DataTD"><?=$points?></td>
|
2005-12-04 21:04:05 +00:00
|
|
|
<td class="DataTD" colspan="3"> </td>
|
2004-10-31 07:08:42 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2009-05-21 22:46:07 +00:00
|
|
|
<? } ?>
|
2004-10-31 07:08:42 +00:00
|
|
|
<br><br>
|
2013-06-26 11:02:45 +00:00
|
|
|
<? } }
|
2004-10-31 07:08:42 +00:00
|
|
|
|
2013-07-15 08:32:06 +00:00
|
|
|
if(isset($_GET['shownotary'])) {
|
|
|
|
switch($_GET['shownotary']) {
|
|
|
|
case 'assuredto':
|
|
|
|
showassuredto();
|
|
|
|
break;
|
|
|
|
case 'assuredby':
|
|
|
|
showassuredby();
|
|
|
|
break;
|
|
|
|
case 'assuredto15':
|
|
|
|
output_received_assurances(intval($_GET['userid']),1);
|
|
|
|
break;
|
|
|
|
case 'assuredby15':
|
|
|
|
output_given_assurances(intval($_GET['userid']),1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|