eb4750e8ba0be18f2665cad1a1ab6306252453c4
Bernd Wurst Ermögliche das Hinzufügen e...

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) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
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('inc/security.php');
18) require_once('inc/icons.php');
19) require_once('inc/jquery.php');
20) javascript();
21) 
22) require_once('domainapi.php');
23) require_once('domains.php');
24) 
25) require_role(ROLE_CUSTOMER);
26) 
27) title("Domain hinzufügen");
28) $section='domains_domains';
29) 
30) output('<p>Mit dieser Funktion können Sie eine neue Domain bestellen oder eine bestehende, extern registrierte Domain verfügbar machen.</p>');
31) 
32) $form = '<p>Domainname: <input type="text" name="domain" size="50" /> <input type="submit" value="Verfügbarkeit prüfen" />';
33) 
34) output(html_form('adddomain_search', '', '', $form));
35) 
36) if (isset($_REQUEST['domain'])) {
37)     if (strpos($_REQUEST['domain'], ' ') !== false) {
38)         warning('Leerzeichen sind in Domainnamen nicht erlaubt.');
39)         redirect('');
40)     }
Bernd Wurst Erkenne Domains die schon b...

Bernd Wurst authored 6 years ago

41)     $dom = new Domain();
42)     if ($dom->loadByName($_REQUEST['domain']) !== false) {
43)         if ($dom->is_customerdomain()) {
44)             warning('Diese Domain ist bereits in Ihrem Kundenkonto eingetragen!');
45)         } else {
46)             warning('Diese Domain ist bei einem anderen Kunden von uns in Nutzung. Kontaktieren Sie den Support, wenn Sie eine Domain in ein anderes Kundenkonto übertragen möchten.');
47)         }
48)         redirect('');
49)     }
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

50)     $avail = api_domain_available($_REQUEST['domain']);
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

51)     if ($avail['status'] == 'available') {
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

52)         output('<p class="domain-available">Die Domain '.filter_input_general($_REQUEST['domain']).' ist verfügbar!</p>');
53)         # Neue Domain eintragen
54)         $data = get_domain_offer($_REQUEST['domain']);
55)         if (!$data) {
56)             redirect('');
57)         }
58)         $form = '<p>Folgende Konditionen gelten bei Registrierung der Domain im nächsten Schritt:</p>
59)             <table>
60)             <tr><td>Domainname:</td><td><strong>'.$data['domainname'].'</strong></td></tr>
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

61)             <tr><td>Jahresgebühr:</td><td style="text-align: right;">'.$data['gebuehr'].' €</td></tr>';
62)         if ($data['setup']) {
63)             $form .= '<tr><td>Setup-Gebühr (einmalig):</td><td style="text-align: right;">'.$data['setup'].' €</td></tr>';
64)         }
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

65)         $form .='</table>';
66) 
67) 
68)         $form .= '<p><input type="hidden" name="domain" value="'.filter_input_general($_REQUEST['domain']).'">
69)             <input type="submit" name="submit" value="Ich möchte diese Domain registrieren"></p>';
70)         output(html_form('domains_register', 'domainreg', '', $form));
71)         output('<p>'.internal_link('domains', 'Zurück').'</p>');
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

72)     } elseif ($avail['status'] == 'registered' || $avail['status'] == 'alreadyRegistered') {
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

73)         output('<p class="domain-unavailable">Die Domain '.filter_input_general($_REQUEST['domain']).' ist bereits vergeben.</p>');
74) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

75)         output('<h3>Domain zu '.config('company_name').' umziehen</h3>');
76)         if ($avail['status'] == 'registered' && $avail['transferMethod'] != 'authInfo') {
77)             output('<p>Diese Domainendung kann nicht automatisiert übertragen werden. Bitte wenden Sie sich an den Support.</p>');
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

78)         } else {
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

79)             $data = get_domain_offer($_REQUEST['domain']);
80) 
81)             if (! $data) {
82)                 // Die Include-Datei setzt eine passende Warning-Nachricht
83)                 output('<p>Eine Registrierung ist nicht automatisiert möglich. Bitte wenden Sie sich an den Support.');
84)             } else {
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

85) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

86)                 $form = '<p>Folgende Konditionen gelten beim Transfer der Domain im nächsten Schritt:</p>
87)                     <table>
88)                     <tr><td>Domainname:</td><td><strong>'.$data['domainname'].'</strong></td></tr>
89)                     <tr><td>Jahresgebühr:</td><td style="text-align: right;">'.$data['gebuehr'].' €</td></tr>';
90)                 if ($data['setup']) {
91)                     $form .= '<tr><td>Setup-Gebühr (einmalig):</td><td style="text-align: right;">'.$data['setup'].' €</td></tr>';
92)                 }
93)                 $form .='</table>';
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

94) 
95) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

96)                 $form .= '<p><input type="hidden" name="domain" value="'.filter_input_general($_REQUEST['domain']).'">
97)                     <input type="submit" name="submit" value="Ich möchte diese Domain zu '.config('company_name').' umziehen"></p>';
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

98) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

99)                 output(html_form('domains_transferin', 'domainreg', '', $form));
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

100) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

101)             }
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

102)         }
103)         output('<h3>Diese Domain als externe Domain nutzen</h3>');
104)         output('<p>Sie können diese Domain für Konfigurationen bei uns nutzen ohne einen Transfer vorzunehmen.</p>
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

105)                 <p><strong>Beachten Sie:</strong> Um diese Domain nutzen zu können, benötigen Sie bei Ihrem bisherigen Domainregistrar die Möglichkeit, DNS-Records anzulegen oder die zuständigen DNS-Server zu ändern. Sie können dann entweder unsere DNS-Server nutzen oder einzelne DNS-Records auf unsere Server einrichten.</p>');
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

106) 
107)         output('<p>Mit Betätigen des unten stehenden Knopfes bestätigen Sie, dass Sie entweder der Domaininhaber sind oder mit expliziter Zustimmung des Domaininhabers handeln.</p>');
Bernd Wurst Erkenne Domains die schon b...

Bernd Wurst authored 6 years ago

108)         $form = '
109)             <p class="buttonset" id="buttonset-external">
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

110)             <input type="radio" name="dns" id="option-dns-enable" value="enable" />
111)             <label for="option-dns-enable">Lokalen DNS-Server aktivieren</label>
112)             <input type="radio" name="dns" id="option-dns-disable" value="disable" checked="checked" />
113)             <label for="option-dns-disable">Weiterhin externen DNS verwenden</label>
Bernd Wurst Erkenne Domains die schon b...

Bernd Wurst authored 6 years ago

114)             </p>
115) 
116)             <p class="buttonset" id="buttonset-email">
117)             <input type="radio" name="email" id="option-email-enable" value="enable" checked="checked" />
118)             <label for="option-email-enable">E-Mail-Nutzung aktivieren</label>
119)             <input type="radio" name="email" id="option-email-disable" value="disable" />
120)             <label for="option-email-disable">Nicht für E-Mail nutzen</label>
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

121)             </p>';
122) 
123)         $form .= '<p><input type="hidden" name="domain" value="'.filter_input_general($_REQUEST['domain']).'">
124)             <input type="submit" name="submit" value="Diese Domain bei '.config('company_name').' verwenden"></p>';
125) 
126)         output(html_form('domains_external', 'useexternal', '', $form));
127)         output('</div>');
128) 
129)     } else {
130)         output('<p class="domain-unavailable">Die Domain '.filter_input_general($_REQUEST['domain']).' kann nicht registriert werden.</p>');
131) 
Bernd Wurst Domain-Transfer und -Regist...

Bernd Wurst authored 6 years ago

132)         switch ($avail['status']) {
Bernd Wurst Ermögliche das Hinzufügen e...

Bernd Wurst authored 6 years ago

133)             case 'nameContainsForbiddenCharacter':
134)                 output('<p>Der Domainname enthält unerlaubte Zeichen.</p>');
135)                 break;
Bernd Wurst Erkenne Domains die schon b...

Bernd Wurst authored 6 years ago

136)             case 'extensionDoesNotExist':
137)             case 'extensionCannotBeRegistered':