d9cce25da0a9c39c1f15af87fd131db01c548b82
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) 
17) require_once('inc/base.php');
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);
38) 
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

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

bernd authored 15 years ago

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

Bernd Wurst authored 9 years ago

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

Bernd Wurst authored 9 years ago

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

bernd authored 15 years ago

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

bernd authored 15 years ago

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

Bernd Wurst authored 9 years ago

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

Bernd Wurst authored 9 years ago

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

Bernd Wurst authored 9 years ago

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

Bernd Wurst authored 8 years ago

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

Bernd Wurst authored 9 years ago

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

bernd authored 15 years ago

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

Bernd Wurst authored 9 years ago

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

bernd authored 15 years ago

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

bernd authored 12 years ago

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

Bernd Wurst authored 9 years ago

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

bernd authored 12 years ago

67)   }
Hanno Böck add caa support

Hanno Böck authored 7 years ago

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

bernd authored 15 years ago

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

bernd authored 14 years ago

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

Hanno Böck authored 7 years ago

74)   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

75)       $editable = false;
76)   }
77)   if ($editable) {
bernd Nur edit-links für bekannte...

bernd authored 14 years ago

78)       $link = internal_link('dns_record_edit', $rec['fqdn'], "id={$rec['id']}");
79)   }
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

80)   output("<tr><td>{$link}</td><td>".strtoupper($rec['type'])."</td><td>".$data."</td><td>{$ttl} Sek.</td><td>".internal_link('dns_record_save', '<img src="'.$prefix.'images/delete.png" width="16" height="16" alt="löschen" title="Record löschen" />', "id={$rec['id']}&action=delete")."</td></tr>\n");
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

81) }  
82) foreach ($auto_records AS $rec)
83) {
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

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

bernd authored 15 years ago

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

bernd authored 14 years ago

86)   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

87)   
88) }
89) 
90) 
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

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

bernd authored 15 years ago

92) 
93) if ($domain->autodns)
bernd DNs-record-Interface ist je...

bernd authored 15 years ago

94)   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

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

bernd authored 15 years ago

96)   output('<p style="font-size: 80%;"><em>Für diese Domain wurde die Erzeugung automatischer Records deaktiviert.</em></p>');
97) 
98) 
99) output('<h4>Neuen DNS-Record anlegen</h4>
100) <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>
101) 
102) <ul>
bernd Typo

bernd authored 15 years ago

103) <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

104) <li>'.internal_link('dns_record_edit', 'A (normaler Hostname/normale Subdomain)', 'id=new&type=a&domain='.$domain->id).'</li>
105) <li>'.internal_link('dns_record_edit', 'MX (Posteingangsserver)', 'id=new&type=mx&domain='.$domain->id).'</li>
106) </ul>
107) <ul>
108) <li>'.internal_link('dns_record_edit', 'AAAA (IPv6-Adresse)', 'id=new&type=aaaa&domain='.$domain->id).'</li>
109) <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

110) <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

111) <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

112) <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

113) <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

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

bernd authored 14 years ago

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

bernd authored 15 years ago

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

bernd authored 15 years ago

118) 
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

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

Bernd Wurst authored 6 years ago

121)   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>
122)   <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>
123)   <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

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

Bernd Wurst authored 6 years ago

128)   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>
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 aktivieren', "type=autodns&action=enable&dom={$domain->id}")."</p>");
131) }
132)