2004-10-16 00:28:17 +00:00
< ? /*
2008-04-06 19:45:09 +00:00
LibreSSL - CAcert web application
Copyright ( C ) 2004 - 2008 CAcert Inc .
2004-10-16 00:28:17 +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-16 00:28:17 +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-16 00:28:17 +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-16 00:28:17 +00:00
*/ ?>
2008-09-01 22:25:02 +00:00
< ? $viewall = 0 ; if ( array_key_exists ( 'viewall' , $_REQUEST )) $viewall = intval ( $_REQUEST [ 'viewall' ]); ?>
2004-10-16 00:28:17 +00:00
< form method = " post " action = " account.php " >
< table align = " center " valign = " middle " border = " 0 " cellspacing = " 0 " cellpadding = " 0 " class = " wrapper " >
< tr >
2013-07-17 08:19:05 +00:00
< td colspan = " 8 " class = " title " >< ? = _ ( " Client Certificates " ) ?> - <a href="account.php?id=18&viewall=<?=!$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>
2013-07-17 08:19:05 +00:00
< td class = " DataTD " >< ? = _ ( " SerialNumber " ) ?> </td>
< td class = " DataTD " >< ? = _ ( " Comment " ) ?> </td>
2004-10-16 00:28:17 +00:00
< td class = " DataTD " >< ? = _ ( " Revoked " ) ?> </td>
< td class = " DataTD " >< ? = _ ( " Expires " ) ?> </td>
< ?
2011-11-20 20:12:08 +00:00
$query = " select UNIX_TIMESTAMP(`oemail`.`created`) as `created`,
UNIX_TIMESTAMP ( `oemail` . `expire` ) - UNIX_TIMESTAMP () as `timeleft` ,
UNIX_TIMESTAMP ( `oemail` . `expire` ) as `expired` ,
`oemail` . `expire` as `expires` , `oemail` . `revoked` as `revoke` ,
UNIX_TIMESTAMP ( `oemail` . `revoked` ) as `revoked` ,
2013-07-17 08:19:05 +00:00
`oemail` . `CN` , `oemail` . `serial` , `oemail` . `id` ,
`oemail` . `description`
2011-11-20 20:12:08 +00:00
from `orgemailcerts` as `oemail` , `org`
where `org` . `memid` = '".intval($_SESSION[' profile '][' id '])."' and
`org` . `orgid` = `oemail` . `orgid` " ;
2008-09-01 22:25:02 +00:00
if ( $viewall != 1 )
2005-05-23 01:53:59 +00:00
{
2011-11-20 20:12:08 +00:00
$query .= " AND `oemail`.`revoked`=0 AND `oemail`.`renewed`=0 " ;
2005-05-13 15:34:39 +00:00
$query .= " HAVING `timeleft` > 0 AND `revoked`=0 " ;
2005-05-23 01:53:59 +00:00
}
2011-11-20 20:12:08 +00:00
$query .= " ORDER BY `oemail`.`modified` desc " ;
2004-10-16 00:28:17 +00:00
$res = mysql_query ( $query );
if ( mysql_num_rows ( $res ) <= 0 )
{
?>
< tr >
2013-07-17 08:19:05 +00:00
< td colspan = " 8 " class = " DataTD " >< ? = _ ( " No client certificates are currently listed. " ) ?> </td>
2004-10-16 00:28:17 +00:00
</ 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
< td class = " DataTD " >< ? = $verified ?> </td>
2005-05-16 07:25:35 +00:00
< td class = " DataTD " >< a href = " account.php?id=19&cert=<?= $row['id'] ?> " >< ? = $row [ 'CN' ] ?> </a></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
< td class = " DataTD " >< ? = $verified ?> </td>
2005-01-03 01:03:03 +00:00
< td class = " DataTD " >< ? = $row [ 'CN' ] ?> </td>
2004-10-16 00:28:17 +00:00
< ? } else { ?>
< td class = " DataTD " >& nbsp ; </ td >
< td class = " DataTD " >< ? = $verified ?> </td>
2005-05-16 07:25:35 +00:00
< td class = " DataTD " >< a href = " account.php?id=19&cert=<?= $row['id'] ?> " >< ? = $row [ 'CN' ] ?> </a></td>
2004-10-16 00:28:17 +00:00
< ? } ?>
2013-07-17 08:19:05 +00:00
< td class = " DataTD " >< ? = $row [ 'serial' ] ?> </td>
2005-01-03 01:03:03 +00:00
< td class = " DataTD " >< ? = $row [ 'revoke' ] ?> </td>
< td class = " DataTD " >< ? = $row [ 'expires' ] ?> </td>
2013-07-17 08:19:05 +00:00
< td class = " DataTD " >< input name = " comment_<?= $row['id'] ?> " type = " text " value = " <?=htmlspecialchars( $row['description'] )?> " /></ td >
< td class = " DataTD " >< input type = " checkbox " name = " check_comment_<?= $row['id'] ?> " /></ td >
2004-10-16 00:28:17 +00:00
</ tr >
< ? } ?>
2013-07-17 08:19:05 +00:00
< tr >
< td class = " DataTD " colspan = " 8 " >
< ? = _ ( '* Comment is NOT included in the certificate as it is intended for your personal reference only. To change the comment tick the checkbox and hit "Change Settings".' ) ?>
</ td >
</ tr >
2004-10-16 00:28:17 +00:00
< tr >
2011-10-12 15:15:35 +00:00
< td class = " DataTD " colspan = " 6 " >< input type = " submit " name = " renew " value = " <?=_( " Renew " )?> " >& #160;   
2004-11-18 23:21:15 +00:00
< input type = " submit " name = " revoke " value = " <?=_( " Revoke / Delete " )?> " ></ td >
2013-07-17 08:19:05 +00:00
< td class = " DataTD " colspan = " 2 " >< input type = " submit " name = " change " value = " <?=_( " Change settings " )?> " > </ td >
2004-10-16 00:28:17 +00:00
</ tr >
< ? } ?>
</ table >
< input type = " hidden " name = " oldid " value = " <?= $id ?> " >
2008-09-07 02:45:49 +00:00
< input type = " hidden " name = " csrf " value = " <?=make_csrf('clicerchange')?> " />
2004-10-16 00:28:17 +00:00
</ form >
< p >< ? = _ ( " From here you can delete pending requests, or revoke valid certificates. " ) ?> </p>