5bd1e31b4a341f0fdf682c67da8d39fcf207eebc
Bernd Wurst Rudimentäre Adressauswahl/D...

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');
Bernd Wurst Aktualisiere Domain- und In...

Bernd Wurst authored 6 years ago

22) require_once('domainapi.php');
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

23) 
24) require_role(ROLE_CUSTOMER);
25) use_module('contacts');
26) require_once('contacts.php');
27) 
28) $dom = NULL;
29) if (isset($_REQUEST['id'])) {
Bernd Wurst Domain-Update (Ownerchange)...

Bernd Wurst authored 6 years ago

30)     api_download_domain($_REQUEST['id']);
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

31)     $dom = new Domain( (int) $_REQUEST['id']);
32)     if ($dom->provider == 'external' || $dom->provider != 'terions') {
33)         system_failure("<p>Diese Domain ist extern registriert!</p>");
34)     }
35)     $_SESSION['domains_update_domainname'] = $dom->fqdn;
36)     $_SESSION['domains_update_owner'] = $dom->owner;
37)     $_SESSION['domains_update_admin_c'] = $dom->admin_c;
38) } else {
39)     $dom = new Domain($_SESSION['domains_update_domainname']);
40) }
41) if (!$dom) {
42)     system_failure("Keine Domain gewählt!");
43) }
Bernd Wurst Aktualisiere Domain- und In...

Bernd Wurst authored 6 years ago

44) if (!update_possible($dom->id)) {
45)     system_failure("Diese Domain verwendet eine unübliche Endung. Daher kann der Inhaber nicht auf diesem Weg verändert werden. Bitte kontaktieren Sie den Support.");
46) }
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

47) 
48) if ($_SESSION['domains_update_admin_c'] == $dom->admin_c && 
49)     $_SESSION['domains_update_owner'] != $dom->owner && 
50)     (!isset($_SESSION['domains_update_detach']) || $_SESSION['domains_update_detach'] == 0)) {
51)     // Wenn der Owner geändert wurde, der Admin aber nicht und das detach-Flag 
52)     // nicht gesetzt ist, dann wird der Admin gleich dem Owner gesetzt
53)     $_SESSION['domains_update_admin_c'] = $_SESSION['domains_update_owner'];
54) }
55) 
56) if (isset($_GET['admin_c']) && $_GET['admin_c'] == 'none') {
57)     $_SESSION['domains_update_admin_c'] = $_SESSION['domains_update_owner'];
58)     unset($_SESSION['domains_update_detach']);
59) }
60) 
61) 
62) 
63) title("Änderung der Domain {$dom->fqdn}");
64) $section = 'domains_domains';
Bernd Wurst Änderung des betreffenden U...

Bernd Wurst authored 6 years ago

65) 
66) $useraccounts = list_useraccounts();
67) if ($_SESSION['role'] & ROLE_CUSTOMER && count($useraccounts) > 1) {
68)     // Mehrere User vorhanden
69)     $options = array();
70)     foreach ($useraccounts as $u) {
71)         $options[$u['uid']] = $u['username'];
72)     }
73)     if (!array_key_exists($dom->useraccount, $options)) {
74)         $options[$dom->useraccount] = $dom->useraccount;
75)     }
76)     output('<h4>Zuständiges Benutzerkonto</h4>');
77)     $form = '<p>Diese Domain nutzen im Benutzerkonto '.html_select('domainuser', $options, $dom->useraccount).' <input type="submit" name="submit" value="Änderung speichern"></p>';
78)     output(html_form('update-user', 'update_save', 'action=chguser&id='.$dom->id, $form));
79) }
80) 
81) 
82) output('<h4>Inhaberwechsel der Domain</h4>');
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

83) output('<p>Legen Sie hier einen neuen Inhaber für diese Domain fest.</p>');
84) 
85) $owner = get_contact($_SESSION['domains_update_owner']);
86) $admin_c = get_contact($_SESSION['domains_update_admin_c']);
87) $function = 'Inhaber';
88) if ($owner['id'] == $admin_c['id']) {
89)     $function .= ' und Verwalter';
90) }
91) $cssclass = '';
92) if ($owner['id'] != $dom->owner) {
93)     $cssclass = 'modified';
94) }
95) output('<p><strong>'.$function.':</strong></p>'.display_contact($owner, '', $cssclass));
96) addnew('choose', 'Neuen Inhaber wählen', "type=owner");
97) if ($owner['id'] != $admin_c['id']) {
98)     $cssclass = '';
99)     if ($admin_c['id'] != $dom->admin_c) {
100)         $cssclass = 'modified';
101)     }
102)     output('<p><strong>Verwalter:</strong></p>'.display_contact($admin_c, '', $cssclass));
Bernd Wurst Typo

Bernd Wurst authored 6 years ago

103)     addnew('choose', 'Neuen Verwalter wählen', "type=admin_c");
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

104)     output('<p class="delete">'.internal_link('update', 'Keinen separaten Verwalter festlegen', 'admin_c=none').'</p>');
105) } else {
106)     addnew('choose', 'Einen separaten Verwalter wählen', "type=admin_c&detach=1");
107) }
108) 
109) 
Bernd Wurst Aktualisiere Domain- und In...

Bernd Wurst authored 6 years ago

110) if ($owner['id'] != $dom->owner || $admin_c['id'] != $dom->admin_c) {
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

111)     if (isset($_GET['error']) && $_GET['error'] == '1') {
112)         input_error('Sie müssen der Übertragung explizit zustimmen!');
113)     }
114)     $form = '<p>Es sind Änderungen vorgenommen worden, die noch nicht gespeichert wurden</p>';
Bernd Wurst Aktualisiere Domain- und In...

Bernd Wurst authored 6 years ago

115)     $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>
116)     <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>
117)     <p>Sie sind ferner darüber informiert, dass die Adresse des Domaininhabers öffentlich abrufbar ist.</p>';
Bernd Wurst Rudimentäre Adressauswahl/D...

Bernd Wurst authored 6 years ago

118)     $form .= '<p><input type="submit" name="sumbit" value="Änderungen speichern und Domaininhaber ändern"></p>';
Bernd Wurst Änderung des betreffenden U...

Bernd Wurst authored 6 years ago

119)     output(html_form('domains_update', 'update_save', "action=ownerchange&id=".$dom->id, $form));