01cf1b844eaa33bbcaff9acd922281a3d046de5d
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 Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 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 14 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 14 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 14 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 14 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)   }
bernd git-svn-id: https://svn.sch...

bernd authored 15 years ago

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

bernd authored 14 years ago

69)   $link = $rec['fqdn'];
Bernd Wurst Erzeuge DNS-Records der For...

Bernd Wurst authored 9 years ago

70)   if (!in_array($rec['type'], array('a', 'aaaa', 'mx', 'cname', 'ns', 'txt', 'spf', 'ptr', 'sshfp'))) {
71)       $editable = false;
72)   }
73)   if ($editable) {
bernd Nur edit-links für bekannte...

bernd authored 14 years ago

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

Bernd Wurst authored 9 years ago

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

77) }  
78) foreach ($auto_records AS $rec)
79) {
Bernd Wurst zu viel Input-Filterung ent...

Bernd Wurst authored 9 years ago

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

bernd authored 15 years ago

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

bernd authored 14 years ago

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

83)   
84) }
85) 
86) 
bernd DNs-record-Interface ist je...

bernd authored 14 years ago

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

bernd authored 15 years ago

88) 
89) if ($domain->autodns)
bernd DNs-record-Interface ist je...

bernd authored 14 years ago

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

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

bernd authored 14 years ago

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

bernd authored 14 years ago

99) <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 14 years ago

100) <li>'.internal_link('dns_record_edit', 'A (normaler Hostname/normale Subdomain)', 'id=new&type=a&domain='.$domain->id).'</li>
101) <li>'.internal_link('dns_record_edit', 'MX (Posteingangsserver)', 'id=new&type=mx&domain='.$domain->id).'</li>
102) </ul>
103) <ul>
104) <li>'.internal_link('dns_record_edit', 'AAAA (IPv6-Adresse)', 'id=new&type=aaaa&domain='.$domain->id).'</li>
105) <li>'.internal_link('dns_record_edit', 'CNAME (Aliasnamen)', 'id=new&type=cname&domain='.$domain->id).'</li>
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

106) <li>'.internal_link('dns_record_edit', 'NS (Nameserver)', 'id=new&type=ns&domain='.$domain->id).'</li>
bernd SPF und TXT records

bernd authored 14 years ago

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

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

bernd authored 14 years ago

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

bernd authored 14 years ago

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

bernd authored 14 years ago

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

bernd authored 15 years ago

113) 
bernd Autodns ein- und ausschaltb...

bernd authored 14 years ago

114) if ($domain->autodns)
115) {
116)   output("<p>Automatische Einträge können nicht geändert werden. Möchten Sie davon abweichende Records setzen, so können Sie hiermit alle automatischen Einträge in normale Einträge konvertieren und die Erzeugung neuer automatischer Einträge abschalten. Diese Einstellung betrifft nur diese Domain und kann jederzeit geändert werden.</p>
117) <p>".internal_link('dns_save', 'Automatisch erzeugte Einträge umwandeln', "type=autodns&action=disable&dom={$domain->id}")."</p>");
118) }
119) else
120) {
121)   output("<p>Sie verwealten 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>
122) <p>".internal_link('dns_save', 'Automatisch erzeugte Einträge aktivieren', "type=autodns&action=enable&dom={$domain->id}")."</p>");
123) }
124)