cacert-webdb/pages/account/12.php

79 lines
2.9 KiB
PHP
Raw Normal View History

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>
<td colspan="5" class="title"><?=_("Domain Certificates")?></td>
</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(`domaincerts`.`created`) as `created`,
UNIX_TIMESTAMP(`domaincerts`.`expire`) - UNIX_TIMESTAMP() as `timeleft`,
UNIX_TIMESTAMP(`domaincerts`.`expire`) as `expired`,
`domaincerts`.`expire` as `expires`, `revoked` as `revoke`,
UNIX_TIMESTAMP(`revoked`) as `revoked`, `CN`, `domaincerts`.`id` as `id`
from `domaincerts`,`domains`
where `memid`='".$_SESSION[profile][id]."' and `deleted`=0 and `domaincerts`.`domid`=`domains`.`id`
ORDER BY `domaincerts`.`modified` desc";
//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>
2004-12-30 22:16:58 +00:00
<? if($verified != _("Pending")) { ?>
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 { ?>
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
<? } ?>
<td class="DataTD"><?=$verified?></td>
2005-01-03 01:03:03 +00:00
<td class="DataTD"><a href="account.php?id=15&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>