2004-10-16 00:28:17 +00:00
|
|
|
<? /*
|
|
|
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
|
|
|
|
|
|
|
This file is part of CAcert.
|
|
|
|
|
|
|
|
CAcert has been released under the CAcert Source License
|
|
|
|
which can be found included with these source files or can
|
|
|
|
be downloaded from the internet from the following address:
|
|
|
|
http://www.cacert.org/src-lic.php
|
|
|
|
|
|
|
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
PARTICULAR PURPOSE. See the License for more details.
|
|
|
|
*/ ?>
|
|
|
|
<form method="post" action="account.php">
|
|
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
|
|
<tr>
|
2005-05-23 01:53:59 +00:00
|
|
|
<td colspan="5" class="title"><?=_("Domain Certificates")?> - <a href="account.php?id=22&viewall=<?=intval(!$_GET['viewall'])?>"><?=_("View all certificates")?></a></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="DataTD"><?=_("Renew/Revoke/Delete")?></td>
|
|
|
|
<td class="DataTD"><?=_("Status")?></td>
|
|
|
|
<td class="DataTD"><?=_("CommonName")?></td>
|
|
|
|
<td class="DataTD"><?=_("Revoked")?></td>
|
|
|
|
<td class="DataTD"><?=_("Expires")?></td>
|
|
|
|
|
|
|
|
<?
|
|
|
|
$query = "select UNIX_TIMESTAMP(`orgdomaincerts`.`created`) as `created`,
|
|
|
|
UNIX_TIMESTAMP(`orgdomaincerts`.`expire`) - UNIX_TIMESTAMP() as `timeleft`,
|
|
|
|
UNIX_TIMESTAMP(`orgdomaincerts`.`expire`) as `expired`,
|
|
|
|
`orgdomaincerts`.`expire` as `expires`, `revoked` as `revoke`,
|
|
|
|
UNIX_TIMESTAMP(`revoked`) as `revoked`, `CN`, `orgdomaincerts`.`id` as `id`
|
|
|
|
from `orgdomaincerts`,`org`
|
2005-05-13 15:34:39 +00:00
|
|
|
where `org`.`memid`='".$_SESSION['profile']['id']."' and `orgdomaincerts`.`orgid`=`org`.`orgid` ";
|
|
|
|
if($_GET['viewall'] != 1)
|
2005-05-23 01:53:59 +00:00
|
|
|
{
|
|
|
|
$query .= "AND `revoked`=0 AND `renewed`=0 ";
|
|
|
|
$query .= "HAVING `timeleft` > 0 ";
|
|
|
|
}
|
2005-05-13 15:34:39 +00:00
|
|
|
$query .= "ORDER BY `orgdomaincerts`.`modified` desc";
|
2004-10-16 00:28:17 +00:00
|
|
|
//echo $query."<br>\n";
|
|
|
|
$res = mysql_query($query);
|
|
|
|
if(mysql_num_rows($res) <= 0)
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<td colspan="5" class="DataTD"><?=_("No domains are currently listed.")?></td>
|
|
|
|
</tr>
|
|
|
|
<? } else {
|
|
|
|
while($row = mysql_fetch_assoc($res))
|
|
|
|
{
|
2005-01-03 01:03:03 +00:00
|
|
|
if($row['timeleft'] > 0)
|
2004-10-16 00:28:17 +00:00
|
|
|
$verified = _("Valid");
|
2005-01-03 01:03:03 +00:00
|
|
|
if($row['timeleft'] < 0)
|
2004-10-16 00:28:17 +00:00
|
|
|
$verified = _("Expired");
|
2005-01-03 01:03:03 +00:00
|
|
|
if($row['expired'] == 0)
|
2004-10-16 00:28:17 +00:00
|
|
|
$verified = _("Pending");
|
2005-01-03 01:03:03 +00:00
|
|
|
if($row['revoked'] > 0)
|
2004-10-16 00:28:17 +00:00
|
|
|
$verified = _("Revoked");
|
2005-01-03 01:03:03 +00:00
|
|
|
if($row['revoked'] == 0)
|
|
|
|
$row['revoke'] = _("Not Revoked");
|
2004-10-16 00:28:17 +00:00
|
|
|
?>
|
|
|
|
<tr>
|
2006-11-23 22:22:31 +00:00
|
|
|
<? if($verified == _("Valid") || $verified == _("Expired")) { ?>
|
2005-01-03 01:03:03 +00:00
|
|
|
<td class="DataTD"><input type="checkbox" name="revokeid[]" value="<?=$row['id']?>"></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
<? } else if($verified == _("Pending")) { ?>
|
2005-01-03 01:03:03 +00:00
|
|
|
<td class="DataTD"><input type="checkbox" name="delid[]" value="<?=$row['id']?>"></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
<? } else { ?>
|
|
|
|
<td class="DataTD"> </td>
|
|
|
|
<? } ?>
|
|
|
|
<td class="DataTD"><?=$verified?></td>
|
2005-01-03 01:03:03 +00:00
|
|
|
<td class="DataTD"><a href="account.php?id=23&cert=<?=$row['id']?>"><?=$row['CN']?></a></td>
|
|
|
|
<td class="DataTD"><?=$row['revoke']?></td>
|
|
|
|
<td class="DataTD"><?=$row['expires']?></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
<tr>
|
2004-11-18 23:21:15 +00:00
|
|
|
<td class="DataTD" colspan="5"><input type="submit" name="renew" value="<?=_("Renew")?>">
|
|
|
|
<input type="submit" name="revoke" value="<?=_("Revoke/Delete")?>"></td>
|
2004-10-16 00:28:17 +00:00
|
|
|
</tr>
|
|
|
|
<? } ?>
|
|
|
|
</table>
|
|
|
|
<input type="hidden" name="oldid" value="<?=$id?>">
|
|
|
|
</form>
|
|
|
|
<p><?=_("From here you can delete pending requests, or revoke valid certificates.")?></p>
|