Domain-Transfer und -Regist...
Bernd Wurst authored 7 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)
|
Fix coding style with php-c...
Hanno authored 6 years ago
|
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
|
Domain-Transfer und -Regist...
Bernd Wurst authored 7 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("class/domain.php");
18) require_once("domains.php");
19) require_once("domainapi.php");
20) require_role(ROLE_CUSTOMER);
21) check_form_token('domains_domainreg');
22)
|
Fix coding style with php-c...
Hanno authored 6 years ago
|
23) if (! (isset($_SESSION['domains_domainreg_owner']) && $_SESSION['domains_domainreg_owner']) ||
24) ! (isset($_SESSION['domains_domainreg_admin_c']) && $_SESSION['domains_domainreg_admin_c']) ||
|
Domain-Transfer und -Regist...
Bernd Wurst authored 7 years ago
|
25) ! (isset($_SESSION['domains_domainreg_domainname']) && $_SESSION['domains_domainreg_domainname'])) {
26) system_failure("Fehler im Programmablauf!");
27) }
28)
29) if (! (isset($_REQUEST['domain']) && $_REQUEST['domain']) ||
30) $_REQUEST['domain'] != $_SESSION['domains_domainreg_domainname']) {
31) system_failure("Fehler im Programmablauf!");
32) }
|
hardening domain input (II)
Bernd Wurst authored 7 years ago
|
33) // Validierung der Domain entfällt hier, weil wir nur bestehende Domain aus der Datenbank laden. Bei ungültiger Eingabe wird kein Treffer gefunden.
|
Domain-Transfer und -Regist...
Bernd Wurst authored 7 years ago
|
34) $dom = new Domain((string) $_REQUEST['domain']);
35) $dom->ensure_userdomain();
36)
37) // Speichere Kontakte
38) domain_ownerchange($dom->fqdn, $_SESSION['domains_domainreg_owner'], $_SESSION['domains_domainreg_admin_c']);
39)
|
Fix coding style with php-c...
Hanno authored 6 years ago
|
40) $authinfo = null;
|
Domain-Transfer und -Regist...
Bernd Wurst authored 7 years ago
|
41) if ($dom->status == 'pretransfer') {
42) if (! (isset($_REQUEST['authinfo']) && $_REQUEST['authinfo'])) {
43) system_failure("Kein Auth-Info-Code angegeben!");
44) }
45) $authinfo = chop($_REQUEST['authinfo']);
46) }
47)
48) api_register_domain($dom->fqdn, $authinfo);
49)
50) success_msg('Die Registrierung wurde in Auftrag gegeben. Der Domain-Status sollte sich in den nächsten Minuten entsprechend ändern.');
|
Session aufräumen, Weiterle...
Bernd Wurst authored 7 years ago
|
51)
52) unset($_SESSION['domains_domainreg_owner']);
53) unset($_SESSION['domains_domainreg_admin_c']);
54) unset($_SESSION['domains_domainreg_detach']);
55) unset($_SESSION['domains_domainreg_domainname']);
56)
|