git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
59775c0
Branches
Tags
master
ticket
webinterface.git
modules
vhosts
certs.php
Neuer Workflow für Cert-Replacement bzw. CSR-Handhabung
Bernd Wurst
commited
59775c0
at 2013-01-27 16:43:23
certs.php
Blame
History
Raw
<?php /* This file belongs to the Webinterface of schokokeks.org Hosting Written 2008-2013 by schokokeks.org Hosting, namely Bernd Wurst <bernd@schokokeks.org> Hanno Böck <hanno@schokokeks.org> To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once("certs.php"); require_role(ROLE_SYSTEMUSER); title("SSL-Zertifikate"); output('<p>Bei '.config('company_name').' können Sie Ihre eigenen SSL-Zertifikate nutzen. Wir verwenden dafür (wenn nicht anders vereinbart) die SNI-Technik. Beim Anlegen von Webserver-Konfigurationen können Sie dann eines Ihrer Zertifikate für jede Konfiguration auswählen.</p> <h4>Ihre bisher vorhandenen Zertifikate</h4> '); $certs = user_certs(); if (count($certs) > 0) { output("<table><tr><th>Name/Details</th><th>CommonName</th><th>Gültig ab</th><th>Gültig bis</th><th> </th></tr>"); foreach ($certs as $c) { $style=""; if ($c['valid_until'] <= date('Y-m-d')) { $style=' style="background-color: #f88;" '; } elseif ($c['valid_until'] <= date('Y-m-d', time()+(30*24*3600))) { $style=' style="background-color: #ff8;" '; } output("<tr><td{$style}>".internal_link('showcert', $c['subject'], "mode=cert&id={$c['id']}")."</td><td{$style}>{$c['cn']}</td><td{$style}>{$c['valid_from']}</td><td{$style}>{$c['valid_until']}</td><td>".internal_link('newcert', '<img src="'.$prefix.'images/refresh.png" title="Neue Version des Zertifikats einspielen" />', 'replace='.$c['id'])."   ".internal_link('savecert', '<img src="'.$prefix.'images/delete.png" />', 'action=delete&id='.$c['id'])."</td></tr>"); } output("</table>"); } else { output('<p><em>Bisher haben Sie keine Zertifikate eingetragen</em></p>'); } addnew('newcert', 'Neues Zertifikat erzeugen / eintragen'); $csr = user_csr(); if (count($csr) > 0) { output('<h3>offene CSRs</h3>'); output("<table><tr><th>Host-/Domainname</th><th>Bitlänge</th><th>Erzeugt am</th><th> </th></tr>"); foreach ($csr AS $c) { output("<tr><td>".internal_link('showcert', $c['hostname'], 'mode=csr&id='.$c['id'])."</td><td>{$c['bits']}</td><td>{$c['created']}</td><td>".internal_link('savecert', '<img src="'.$prefix.'images/delete.png" />', 'action=deletecsr&id='.$c['id'])."   ".internal_link('certfromcsr', '<img src="'.$prefix.'images/ok.png" alt="Zertifikat hinzufügen" title="Zertifikat hinzufügen" />', "id={$c['id']}")."</td></tr>"); } output("</table>"); }