634e1abd8843af7eff7bdb91411b8c6b7ab3f52f
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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) */
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

16) 
Bernd Wurst Mache manuelle NS-Records n...

Bernd Wurst authored 6 years ago

17) require_once('inc/icons.php');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

18) require_once('inc/security.php');
19) 
20) require_once('class/domain.php');
21) 
bernd Erlaube *useraccounts* das...

bernd authored 13 years ago

22) require_role(ROLE_SYSTEMUSER);
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

23) 
24) require_once('dnsinclude.php');
25) 
26) $section = 'dns_dns';
27) 
28) $domain = new Domain((int) $_REQUEST['dom']);
bernd Erlaube *useraccounts* das...

bernd authored 13 years ago

29) $domain->ensure_userdomain();
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

30) 
31) DEBUG($domain);
32) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

33) title('DNS-Records für '.filter_input_general($domain->fqdn));
34) headline('DNS-Records für <em>'.filter_input_general($domain->fqdn).'</em>');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

35) 
36) $records = get_domain_records($domain->id);
37) $auto_records = get_domain_auto_records($domain->fqdn);
Bernd Wurst Mache manuelle NS-Records n...

Bernd Wurst authored 6 years ago

38) $cname_on_domain = false;
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

39) 
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

40) output('<table><tr><th>Hostname</th><th>Typ</th><th>IP-Adresse/Inhalt</th><th>TTL</th><th>&#160;</th></tr>
41) ');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

42) foreach ($records AS $rec)
43) {
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

44)   $editable = true;
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

45)   $data = filter_input_general( $rec['ip'] ? $rec['ip'] : $rec['data'] );
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

46)   if ($rec['dyndns'])
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

47)   {
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

48)     if ($domain->fqdn == config('masterdomain'))
49)     { 
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

50)       $data = '<em>DynDNS #'.(int) $rec['dyndns'].'</em>';
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

51)       $editable = false;
52)     } else {
53)       $dyndns = get_dyndns_account($rec['dyndns']);
Bernd Wurst Zeige DNS-Records eine Doma...

Bernd Wurst authored 8 years ago

54)       if ($dyndns === NULL) {
55)         $data = '<em>DynDNS #'.(int) $rec['dyndns'].' (nicht Ihr Account)</em>';
56)       } else {
57)         $data = internal_link('dyndns_edit', '<em>DynDNS #'.(int) $rec['dyndns'].' ('.filter_input_general($dyndns['handle']).')</em>', 'id='.(int) $rec['dyndns']);
58)       }
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

59)     }
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

60)   }
61)   if ($rec['type'] == 'mx')
62)   {
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

63)     $data .= ' ('.(int) $rec['spec'].')';
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

64)   }
bernd SSHFP-Records (Thanks to Ma...

bernd authored 12 years ago

65)   if ($rec['type'] == 'sshfp')
66)   {
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

67)     $data = (int) $rec['spec'] . ' 1 ' . $data;
bernd SSHFP-Records (Thanks to Ma...

bernd authored 12 years ago

68)   }
Hanno Böck add caa support

Hanno Böck authored 7 years ago

69)   if ($rec['type'] == 'caa')
70)   {
71)     $data = $caa_properties[(int) $rec['spec']] . ' 0 "' . $data.'"';
72)   }
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

73)   $ttl = ($rec['ttl'] ? $rec['ttl'] : 3600);
bernd Nur edit-links für bekannte...

bernd authored 14 years ago

74)   $link = $rec['fqdn'];
Hanno Böck add caa support

Hanno Böck authored 7 years ago

75)   if (!in_array($rec['type'], array('a', 'aaaa', 'mx', 'cname', 'ns', 'txt', 'spf', 'ptr', 'sshfp', 'caa'))) {
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

76)       $editable = false;
77)   }
Bernd Wurst Mache manuelle NS-Records n...

Bernd Wurst authored 6 years ago

78)   $delete = internal_link('dns_record_save', icon_delete('Record löschen'), "id={$rec['id']}&action=delete");
79)   if ($rec['type'] == 'ns' && ! $rec['hostname']) {
80)       $editable = false;
81)       $delete = '';
82)   }
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

83)   if ($editable) {
bernd Nur edit-links für bekannte...

bernd authored 14 years ago

84)       $link = internal_link('dns_record_edit', $rec['fqdn'], "id={$rec['id']}");
85)   }
Bernd Wurst Mache manuelle NS-Records n...

Bernd Wurst authored 6 years ago

86)   output("<tr><td>{$link}</td><td>".strtoupper($rec['type'])."</td><td>".$data."</td><td>{$ttl} Sek.</td><td>".$delete."</td></tr>\n");
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

87) }  
88) foreach ($auto_records AS $rec)
89) {
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

90)   $data = filter_input_general( $rec['ip'] ? $rec['ip'] : $rec['data'] );
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

91)   $ttl = ($rec['ttl'] ? $rec['ttl'] : 3600);
bernd Einige Dummheiten repariert...

bernd authored 14 years ago

92)   output("<tr><td><em>{$rec['fqdn']}</em></td><td>".strtoupper($rec['type'])."</td><td>$data</td><td>{$ttl} Sek.</td><td>&#160;</td></tr>\n");
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

93)   
94) }
95) 
96) 
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

97) output('</table>');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

98) 
99) if ($domain->autodns)
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

100)   output('<p style="font-size: 80%;"><em>Kursive Hostnames bezeichnen automatisch erzeugte Records. Diese können nicht geändert werden.</em></p>');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

101) else
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

102)   output('<p style="font-size: 80%;"><em>Für diese Domain wurde die Erzeugung automatischer Records deaktiviert.</em></p>');
103) 
104) 
105) output('<h4>Neuen DNS-Record anlegen</h4>
106) <p>Je nach dem, welchen Eintrags-Typ Sie anlegen möchten, werden im nächsten Schritt unterschiedliche Daten abgefragt. Bitte klicken Sie auf den Eintrags-Typ, den Sie anlegen möchten. Momentan werden noch nicht alle Eintrags-Typen über dieses System bereitgestellt. Hier nicht aufgeführte Eintragsarten können Sie beim Support beantragen.</p>
107) 
108) <ul>
bernd Typo

bernd authored 15 years ago

109) <li>'.internal_link('dns_record_edit', 'DynDNS (Hostname für einen DynDNS-Account setzen)', 'id=new&type=dyndns&domain='.$domain->id).'</li>
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

110) <li>'.internal_link('dns_record_edit', 'A (normaler Hostname/normale Subdomain)', 'id=new&type=a&domain='.$domain->id).'</li>
111) <li>'.internal_link('dns_record_edit', 'MX (Posteingangsserver)', 'id=new&type=mx&domain='.$domain->id).'</li>
112) </ul>
113) <ul>
114) <li>'.internal_link('dns_record_edit', 'AAAA (IPv6-Adresse)', 'id=new&type=aaaa&domain='.$domain->id).'</li>
115) <li>'.internal_link('dns_record_edit', 'CNAME (Aliasnamen)', 'id=new&type=cname&domain='.$domain->id).'</li>
Bernd Wurst Text für Autorecords geände...

Bernd Wurst authored 6 years ago

116) <li>'.internal_link('dns_record_edit', 'NS (Nameserver, NUR FÜR SUBDOMAINS!)', 'id=new&type=ns&domain='.$domain->id).'</li>
bernd SPF und TXT records

bernd authored 14 years ago

117) <li>'.internal_link('dns_record_edit', 'TXT', 'id=new&type=txt&domain='.$domain->id).'</li>
bernd SSHFP-Records (Thanks to Ma...

bernd authored 12 years ago

118) <li>'.internal_link('dns_record_edit', 'SSHFP', 'id=new&type=sshfp&domain='.$domain->id).'</li>
Hanno Böck add caa support

Hanno Böck authored 7 years ago

119) <li>'.internal_link('dns_record_edit', 'CAA', 'id=new&type=caa&domain='.$domain->id).'</li>
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

120) </ul>
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

121) 
122) <h4>Automatische DNS-Records</h4>
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

123) ');
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

124) 
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

125) if ($domain->autodns)
126) {
Bernd Wurst Text für Autorecords geände...

Bernd Wurst authored 6 years ago

127)   output("<p>Für extrem ungewöhnliche Konfigurationen können Sie die Erzeugung von automatischen DNS-Records unter dieser Domain komplett abschalten. Dies ist i.d.R. falsch und wird zu Fehlfunktion führen. Nutzen Sie diese Einstellung auf eigene Gefahr.</p>
128)   <p>Möchten Sie einzelne DNS-Einträge abweichend setzen, so legen Sie einfach oben den jeweils gewünschten Record an. Falls es gleichlautende automatische Einträge gibt, werden diese anschließend unterdrückt.</p>
129)   <p>Warten Sie nach Änderung dieser Einstellung eine Minute und laden Sie danach die Seite neu.</p>
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

130) <p>".internal_link('dns_save', 'Automatisch erzeugte Einträge umwandeln', "type=autodns&action=disable&dom={$domain->id}")."</p>");
131) }
132) else
133) {
Bernd Wurst Text für Autorecords geände...

Bernd Wurst authored 6 years ago

134)   output("<p>Sie verwalten Ihre DNS-Einträge selbst. Wenn Sie möchten, können Sie die DNS-Einträge auch automatisch anhand der angelegten Webserver-VHosts und anderer Einstellungen festlegen lassen. Diese Eintäge können Sie dann nicht direkt ändern. Ihre bestehenden Einträge bleiben unberührt und zusätzlich erhalten. Bitte löschen Sie dadurch entstehende Duplikate!</p>
135)   <p>Warten Sie nach Änderung dieser Einstellung eine Minute und laden Sie danach die Seite neu.</p>
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

136) <p>".internal_link('dns_save', 'Automatisch erzeugte Einträge aktivieren', "type=autodns&action=enable&dom={$domain->id}")."</p>");
137) }
138)