ecf9bd5ac9d674b35c6b214c21a22393d5e229c3
Bernd Wurst Ermögliche das Ändern eines...

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/debug.php');
18) require_once('inc/icons.php');
19) 
20) require_once('class/domain.php');
21) require_once('domains.php');
22) 
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

23) require_role(array(ROLE_CUSTOMER, ROLE_SYSTEMUSER));
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

24) 
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

25) $dom = NULL;
26) if (isset($_REQUEST['id'])) {
27)     $dom = new Domain( (int) $_REQUEST['id']);
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

28)     $_SESSION['domains_detail_domainname'] = $dom->fqdn;
29) } elseif (isset($_SESSION['domains_detail_domainname'])) {
30)     $dom = new Domain($_SESSION['domains_detail_domainname']);
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

31) } else {
32)     system_failure("Keine Domain angegeben");
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

33) }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

34) if (!$dom) {
35)     system_failure("Keine Domain gewählt!");
36) }
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

37) if (have_role(ROLE_CUSTOMER)) {
38)     $dom->ensure_customerdomain();
39) } else {
40)     $dom->ensure_userdomain();
41) }
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

42) 
43) title("Domain {$dom->fqdn}");
44) $section = 'domains_domains';
45) 
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

46) // Block zuständiger Useraccount
47) 
Bernd Wurst Domain-Nutzung mit Deeplink...

Bernd Wurst authored 6 years ago

48) $is_current_user = true;
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

49) $useraccounts = list_useraccounts();
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

50) if (have_role(ROLE_CUSTOMER) && count($useraccounts) > 1) {
Bernd Wurst Domain-Nutzung mit Deeplink...

Bernd Wurst authored 6 years ago

51)     if ($dom->useraccount != $_SESSION['userinfo']['uid']) {
52)         $is_current_user = false;
53)     }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

54)     // Mehrere User vorhanden
55)     $options = array();
56)     foreach ($useraccounts as $u) {
57)         $options[$u['uid']] = $u['username'];
58)     }
59)     if (!array_key_exists($dom->useraccount, $options)) {
60)         $options[$dom->useraccount] = $dom->useraccount;
61)     }
62)     output('<h4>Zuständiges Benutzerkonto</h4>');
63)     $form = '<p>Diese Domain nutzen im Benutzerkonto '.html_select('domainuser', $options, $dom->useraccount).' <input type="submit" name="submit" value="Änderung speichern"></p>';
64)     output(html_form('update-user', 'update', 'action=chguser&id='.$dom->id, $form));
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

65) }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

66) 
67) 
Bernd Wurst Domain-Nutzung mit Deeplink...

Bernd Wurst authored 6 years ago

68) // Block Nutzung
69) 
70) if ($is_current_user) {
71)     $used = false;
72)     output("<h4>Aktuelle Nutzung dieser Domain</h4>");
73)     if (have_module('dns') && $dom->dns == 1 && dns_in_use($dom->id)) {
74)         output("<p>Es sind manuell gesetzte DNS-Einträge unter dieser Domain aktiv. ".internal_link('../dns/dns_domain', '&#x2192; Bearbeiten', 'dom='.$dom->id)."</p>");
75)         $used = true;
76)     }
77)     if (have_module('email') && mail_in_use($dom->id)) {
Bernd Wurst Zeige Mail-Deeplink korrekt...

Bernd Wurst authored 6 years ago

78)         $vmail = count_vmail($dom->id);
79)         if ($vmail > 0) {
80)             output("<p>Es gibt <strong>{$vmail}</strong> E-Mail-Postfächer unter dieser Domain ".internal_link('../email/vmail', '&#x2192; Bearbeiten', 'filter='.$dom->fqdn)."</p>");
81)         } else {
82)             output("<p>Manuelle Mail-Konfiguration ist aktiv. ".internal_link('../email/imap', '&#x2192; IMAP-Postfächer verwalten')."</p>");
83)         }
Bernd Wurst Domain-Nutzung mit Deeplink...

Bernd Wurst authored 6 years ago

84)         $used = true;
85)     }
86)     if (have_module('mailman') && mailman_subdomains($dom->id)) {
87)         output("<p>Diese Domain wird für Mailinglisten verwendet ".internal_link('../mailman/lists', '&#x2192; Bearbeiten')."</p>");
88)         $used = true;
89)     }
90)     if (have_module('vhosts') && web_in_use($dom->id)) {
91)         output("<p>Es gibt Website-Einstellungen für diese Domain ".internal_link('../vhosts/vhosts', '&#x2192; Bearbeiten', 'filter='.$dom->fqdn)."</p>");
92)         $used = true;
93)     }
94)     if (have_module('jabber') && $dom->jabber == 1) {
95)         output("<p>Diese Domain wird für Jabber verwendet ".internal_link('../jabber/accounts', '&#x2192; Bearbeiten')."</p>");
96)         $used = true;
97)     }
98)     if (! $used) {
99)         output('<p><em>Aktuell wird diese Domain nicht verwendet!</em></p>');
100)     }
101) }
102) 
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

103) // Block Domain-Inhaber 
104) 
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

105) if (have_role(ROLE_CUSTOMER) && config('http.net-apikey') && $dom->provider == 'terions' && ($dom->cancel_date === NULL || $dom->cancel_date > date('Y-m-d'))) {
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

106)     use_module('contacts');
107)     require_once('contacts.php');
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

108)     require_once('domainapi.php');
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

109) 
110)     output('<h4>Inhaberwechsel der Domain</h4>');
111)     output('<p>Legen Sie hier einen neuen Inhaber für diese Domain fest.</p>');
112) 
113)     if (isset($_REQUEST['id'])) {
114)         api_download_domain($_REQUEST['id']);
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

115)         $_SESSION['domains_detail_domainname'] = $dom->fqdn;
116)         $_SESSION['domains_detail_owner'] = $dom->owner;
117)         $_SESSION['domains_detail_admin_c'] = $dom->admin_c;
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

118)     }
119)     if (!update_possible($dom->id)) {
120)         warning("Diese Domain verwendet eine unübliche Endung. Daher kann der Inhaber nicht auf diesem Weg verändert werden. Bitte kontaktieren Sie den Support.");
121)     } else {
122) 
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

123)         if ($_SESSION['domains_detail_admin_c'] == $dom->admin_c && 
124)                 $_SESSION['domains_detail_owner'] != $dom->owner && 
125)                 (!isset($_SESSION['domains_detail_detach']) || $_SESSION['domains_detail_detach'] == 0)) {
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

126)             // Wenn der Owner geändert wurde, der Admin aber nicht und das detach-Flag 
127)             // nicht gesetzt ist, dann wird der Admin gleich dem Owner gesetzt
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

128)             $_SESSION['domains_detail_admin_c'] = $_SESSION['domains_detail_owner'];
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

129)         }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

130) 
131)         if (isset($_GET['admin_c']) && $_GET['admin_c'] == 'none') {
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

132)             $_SESSION['domains_detail_admin_c'] = $_SESSION['domains_detail_owner'];
133)             unset($_SESSION['domains_detail_detach']);
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

134)         }
135) 
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

136)         $owner = get_contact($_SESSION['domains_detail_owner']);
137)         $admin_c = get_contact($_SESSION['domains_detail_admin_c']);
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

138)         $function = 'Inhaber';
139)         if ($owner['id'] == $admin_c['id']) {
140)             $function .= ' und Verwalter';
141)         }
142)         $cssclass = '';
143)         if ($owner['id'] != $dom->owner) {
144)             $cssclass = 'modified';
145)         }
146)         output('<p><strong>'.$function.':</strong></p>'.display_contact($owner, '', $cssclass));
147)         addnew('choose', 'Neuen Inhaber wählen', "type=owner");
148)         if ($owner['id'] != $admin_c['id']) {
149)             $cssclass = '';
150)             if ($admin_c['id'] != $dom->admin_c) {
151)                 $cssclass = 'modified';
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

152)             }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

153)             output('<p><strong>Verwalter:</strong></p>'.display_contact($admin_c, '', $cssclass));
154)             addnew('choose', 'Neuen Verwalter wählen', "type=admin_c");
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

155)             output('<p class="delete">'.internal_link('', 'Keinen separaten Verwalter festlegen', 'admin_c=none').'</p>');
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

156)         } else {
157)             addnew('choose', 'Einen separaten Verwalter wählen', "type=admin_c&detach=1");
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

158)         }
159) 
160) 
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

161)         if ($owner['id'] != $dom->owner || $admin_c['id'] != $dom->admin_c) {
162)             if (isset($_GET['error']) && $_GET['error'] == '1') {
163)                 input_error('Sie müssen der Übertragung explizit zustimmen!');
164)             }
165)             $form = '<p>Es sind Änderungen vorgenommen worden, die noch nicht gespeichert wurden</p>';
166)             $form .= '<p><input type="checkbox" name="accept" value="1" id="accept"><label for="accept"> Ich bestätige, dass ich die nachfolgenden Hinweise zur Kenntnis genommen habe.</p>
167)                 <p>Mit Speichern dieser Änderungen führen Sie möglicherweise einen Inhaberwechsel bei der Domain '.$dom->fqdn.' aus. Inhaberwechsel sind bei einigen Domainendungen (z.B. com/net/org) zustimmungspflichtig vom alten und vom neuen Inhaber. Die Registrierungsstelle kann nach eigenem Ermessen diese Zustimmung per separater E-Mail einfordern. Wird diese Zustimmung nicht oder verspätet erteilt, kann eine Domain gesperrt werden. Dieser Vorgang wird nicht von '.config('company_name').' kontrolliert.</p>
168)                 <p>Sie sind ferner darüber informiert, dass die Adresse des Domaininhabers öffentlich abrufbar ist.</p>';
169)             $form .= '<p><input type="submit" name="sumbit" value="Änderungen speichern und Domaininhaber ändern"></p>';
170)             output(html_form('domains_update', 'update', "action=ownerchange&id=".$dom->id, $form));
171)         } 
Bernd Wurst Ermögliche das Ändern eines...

Bernd Wurst authored 6 years ago

172)     }
173) }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

174) 
175) // Block Externe Domain umziehen
176) 
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

177) if (have_role(ROLE_CUSTOMER) && config('http.net-apikey')) {
178)     if ($dom->status == 'prereg') {
179)         output('<h4>Domain-Registrierung abschließen</h4>
180)                 <p>'.internal_link('domainreg', 'Domain registrieren', "domain={$dom->fqdn}").'</p>');
181)     } elseif ($dom->status == 'pretransfer') {
182)         output('<h4>Domain zu '.config('company_name').' umziehen</h4>
183)                 <p>'.internal_link('domainreg', 'Umzugsautrag (ggf. nochmals) erteilen', "domain={$dom->fqdn}").'</p>');
184)     } elseif ($dom->provider != 'terions') {
185)         output('<h4>Domain zu '.config('company_name').' umziehen</h4>
186)                 <p>'.internal_link('domainreg', 'Domain-Transfer starten', "domain={$dom->fqdn}").'</p>');
187)     }
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

188) }
189) 
Bernd Wurst Transfer-Freigabe und Kündi...

Bernd Wurst authored 6 years ago

190) // Block Domain löschen/kündigen
191) 
192) $domain_in_use = mailman_subdomains($dom->id) || mail_in_use($dom->id) || web_in_use($dom->id) || $dom->jabber == 1;
193) if (!$domain_in_use && ($dom->status == 'prereg' || $dom->status == 'pretransfer' || $dom->status == 'transferfailed' || $dom->status == 'external')) {
194)     output('<h4>Domain wieder entfernen</h4>');
195)     output('<p class="delete">'.internal_link('save', 'Die Domain '.$dom->fqdn.' entfernen', 'action=delete&domain='.$dom->id).'</p>');
Bernd Wurst Biete kein Domain-Managemen...

Bernd Wurst authored 6 years ago

196) } elseif (have_role(ROLE_CUSTOMER) && config('http.net-apikey') && $dom->provider == 'terions' && (!$dom->cancel_date || ($dom->cancel_date > date('Y-m-d')))) {
Bernd Wurst Blende Aktionen aus, wenn d...

Bernd Wurst authored 6 years ago

197)     require_once('domainapi.php');
Bernd Wurst Transfer-Freigabe und Kündi...

Bernd Wurst authored 6 years ago

198)     output('<h4>Domain kündigen</h4>');
199)     $info = api_download_domain($dom->id);
200)     if ($info['authInfo']) {
201)         output('<p>Das Auth-Info für diese Domain lautet: <strong>'.$info['authInfo'].'</strong></p>');
202)         output('<p>Wenden Sie sich an den Support, wenn Sie den Domainumzug wieder sperren möchten.</p>');
203)     } else {
204)         output('<p>Hier können Sie die Domain zum Umzug freigeben.</p>');
205)         $form = '<p><input type="hidden" name="domain" value="'.$dom->id.'"><input type="submit" name="submit" value="Die Domain '.$dom->fqdn.' zum Umzug freigeben"></p>';
206)         output(html_form('domains_transfer', 'save', 'action=transfer', $form));
207)     }
208)     output('<p>Die aktuelle Laufzeit der Domain dauert noch bis '.$info['currentContractPeriodEnd'].'</p>');
209)     if ($info['deletionDate']) {
210)         output('<p>Es liegt aktuell eine Kündigung vor auf <strong>'.$info['deletionDate'].'</strong></p><p>Um die Kündigung aufzuheben, wenden Sie sich bitte an den Support.</p>');
211)     } else {
212)         output('<p class="delete">'.internal_link('save', 'Die Domain '.$dom->fqdn.' kündigen', 'action=cancel&domain='.$dom->id).'</p>');
213)     }
214) }
215) 
216) 
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

217) // Block Domain bestätigen
218) 
Bernd Wurst Erste Vorbereitungen für Do...

Bernd Wurst authored 6 years ago

219) if ($dom->mailserver_lock == 1 && $dom->status != 'prereg') {
Bernd Wurst Alle Domain-Details auf ein...

Bernd Wurst authored 6 years ago

220)     if (has_own_ns($dom->domainname, $dom->tld)) {
221)         unset_mailserver_lock($dom);
222)         success_msg("Die Domain {$dom->fqdn} wurde erfolgreich bestätigt und kann nun in vollem Umfang verwendet werden.");
223)         redirect("");
224)     }
225)     output('<h3>Mailserver-Sperre aktiv</h3>
226)             <p>Bisher ist für diese Domain die Nutzung als Mail-Domain eingeschränkt, da wir noch keine Gewissheit haben, ob Sie der rechtmäßige Nutzer der Domain sind. Eine Domain, die für E-Mail-Aktivität genutzt werden soll, muss entweder die DNS-Server von '.config('company_name').' verwenden oder die Inhaberschaft muss durch einen passend gesetzten DNS-Record nachgewiesen werden. Nachfolgend werden die Möglichkeiten im Detail vorgestellt.</p>');
227)     if (!$dom->secret) {
228)         create_domain_secret($dom);
229)     }
230) 
231)     $TXT = get_txt_record('_schokokeks', $dom->domainname, $dom->tld);
232)     if ($TXT == $dom->secret) {
233)         unset_mailserver_lock($dom);
234)         success_msg("Die Domain {$dom->fqdn} wurde erfolgreich bestätigt und kann nun in vollem Umfang verwendet werden.");
Bernd Wurst Lasse die API bestimmen was...

Bernd Wurst authored 6 years ago

235)         redirect("");