96649f21ba18d07757afa9d98998f7a22c0d86a3
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
5) Written 2008-2018 by schokokeks.org Hosting, namely
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 Ermögliche das Setzen des P...

Bernd Wurst authored 6 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) */
16) 
17) require_once('contacts.php');
18) 
Bernd Wurst Lade PGP-Keys vom Keyserver...

Bernd Wurst authored 5 years ago

19) if (isset($_GET['q']) || isset($_GET['id'])) {
Hanno Böck Codingstyle PSR12 + array s...

Hanno Böck authored 2 years ago

20)     $result = ["status" => "notfound",
21)                     "id" => null, ];
Bernd Wurst Lade PGP-Keys vom Keyserver...

Bernd Wurst authored 5 years ago

22)     $id = null;
23)     if (isset($_GET['q'])) {
24)         $id = search_pgp_key($_GET['q']);
25)         fetch_pgp_key($id);
26)     } elseif (isset($_GET['id'])) {
27)         $id = fetch_pgp_key($_GET['id']);
Bernd Wurst Ermögliche das Setzen des P...

Bernd Wurst authored 6 years ago

28)     }
29)     if ($id) {
30)         $result['status'] = 'found';
31)         $result['id'] = $id;
Bernd Wurst Lade PGP-Keys vom Keyserver...

Bernd Wurst authored 5 years ago

32)         if (!test_pgp_key($id)) {
33)             $result['status'] = 'unusable';
34)         }
Bernd Wurst Prüfe die Verwendbarkeit vo...

Bernd Wurst authored 5 years ago

35)     }