4c630eb1d90ef9c268aeff3700814575bdf24ed6
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) 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.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) 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.
15) */
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

16) 
17) require_once("certs.php");
18) require_role(ROLE_SYSTEMUSER);
19) 
Bernd Wurst Interface für Zertifikate i...

Bernd Wurst authored 7 years ago

20) title("Zertifikate");
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

21) 
Bernd Wurst Interface für Zertifikate i...

Bernd Wurst authored 7 years ago

22) output('<p>Bei '.config('company_name').' können Sie Ihre eigenen Zertifikate nutzen. Wir verwenden dafür (wenn nicht anders vereinbart) die SNI-Technik.
hanno text reduziert

hanno authored 14 years ago

23) Beim Anlegen von Webserver-Konfigurationen können Sie dann eines Ihrer Zertifikate für jede Konfiguration auswählen.</p>
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

24) 
25) <h4>Ihre bisher vorhandenen Zertifikate</h4>
26) ');
27) 
28) $certs = user_certs();
29) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

30) if (count($certs) > 0) {
31)     output("<table><tr><th>Name/Details</th><th>CommonName</th><th>Gültig ab</th><th>Gültig bis</th><th>&#160;</th></tr>");
32)     foreach ($certs as $c) {
33)         $style="";
34)         if ($c['valid_until'] <= date('Y-m-d')) {
35)             $style=' style="background-color: #f88;" ';
36)         } elseif ($c['valid_until'] <= date('Y-m-d', time()+(30*24*3600)) && !cert_is_letsencrypt($c['id'])) {
37)             $style=' style="background-color: #ff8;" ';
38)         }
39)         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'])." &#160; ".internal_link('savecert', '<img src="'.$prefix.'images/delete.png" />', 'action=delete&id='.$c['id'])."</td></tr>");
bernd Farbige Markierung wenn ein...

bernd authored 12 years ago

40)     }
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

41)     output("</table>");
42) } else {
43)     output('<p><em>Bisher haben Sie keine Zertifikate eingetragen</em></p>');
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

44) }
45) 
Bernd Wurst Neuer Workflow für Cert-Rep...

Bernd Wurst authored 11 years ago

46) addnew('newcert', 'Neues Zertifikat erzeugen / eintragen');
47) 
bernd Neue Zertifikatsverwaltung

bernd authored 14 years ago

48) 
bernd CSR-Erstellung

bernd authored 14 years ago

49) 
50) $csr = user_csr();
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

51) if (count($csr) > 0) {
52)     output('<h3>offene CSRs</h3>');
53)     output("<table><tr><th>Host-/Domainname</th><th>Bitlänge</th><th>Erzeugt am</th><th>&#160;</th></tr>");
54)     foreach ($csr as $c) {
55)         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'])." &#160; ".internal_link('certfromcsr', '<img src="'.$prefix.'images/ok.png" alt="Zertifikat hinzufügen" title="Zertifikat hinzufügen" />', "id={$c['id']}")."</td></tr>");
56)     }
57)     output("</table>");