9086c9ad77db90633e0629e9e86a88366265ded0
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

1) <?php
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 Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 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) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

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/base.php');
18) require_once('inc/debug.php');
19) global $debugmode;
20) require_once('inc/security.php');
21) 
22) require_role(ROLE_SYSTEMUSER);
23) 
24) require_once('dnsinclude.php');
25) 
26) $section = 'dns_dyndns';
27) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

28) if (!isset($_REQUEST['id'])) {
29)     system_failure("Keine ID");
30) }
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

31) 
32) $id = (int) $_REQUEST['id'];
33) $dyndns = get_dyndns_account($id);
34) 
Bernd Wurst IPv6-support für DynDNS

Bernd Wurst authored 5 years ago

35)   $type = 'a';
36)   if ($_REQUEST['type'] == 'aaaa') {
37)       $type = 'aaaa';
38)   }
39)   $record = blank_dns_record($type);
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

40)   // Sicherheitsprüfungen passieren im Backend
Hanno remove whitespace in empty...

Hanno authored 5 years ago

41) 
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

42)   $record['hostname'] = $_REQUEST['hostname'];
43)   $record['domain'] = (int) $_REQUEST['domain'];
44)   $record['dyndns'] = $id;
45)   $record['ttl'] = 120;
Hanno remove whitespace in empty...

Hanno authored 5 years ago

46) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

47)   save_dns_record(null, $record);
Bernd Wurst Erzeuge nicht einen DynDNS-...

Bernd Wurst authored 7 years ago

48)