-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.php
executable file
·135 lines (119 loc) · 3.5 KB
/
update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* Update action
*
* @copyright 2013 Steffen Vogel
* @license http://www.gnu.org/licenses/gpl.txt GNU Public License
* @author Steffen Vogel <post@steffenvogel.de>
* @link http://www.steffenvogel.de
*/
/*
* This file is part of sddns
*
* sddns is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* sddns is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sddns. If not, see <http://www.gnu.org/licenses/>.
*/
require_once 'include/init.php';
$output = Output::start();
// default arguments
$ttl = (!empty($_REQUEST['ttl'])) ? $_REQUEST['ttl'] : $config['sddns']['std']['ttl'];
$class = (!empty($_REQUEST['class'])) ? $_REQUEST['class'] : $config['sddns']['std']['class'];
$rdata = (!empty($_REQUEST['rdata'])) ? $_REQUEST['rdata'] : $_SERVER['REMOTE_ADDR'];
// zone
if (!empty($_REQUEST['zone'])) {
if (array_key_exists($_REQUEST['zone'], $config['sddns']['zones'])) {
$zone = $config['sddns']['zones'][$_REQUEST['zone']];
}
else {
throw new UserException('invalid zone', $_REQUEST['zone']);
}
}
else {
throw new UserException('missing zone');
}
// password
if (!empty($_REQUEST['pw'])) {
$pw = $_REQUEST['pw'];
}
else if (!empty($_SERVER['PHP_AUTH_PW'])) {
$pw = $_SERVER['PHP_AUTH_PW'];
}
else {
throw new AuthentificationException('missing password');
}
// type
if (!empty($_REQUEST['type'])) {
if (in_array($_REQUEST['type'], $config['sddns']['types'])) {
$type = $_REQUEST['type'];
}
else {
throw new UserException('invalid type');
}
}
else if (IpV4::isValid($rdata)) {
$type = 'A';
}
else if (IpV6::isValid($rdata)) {
$type = 'AAAA';
}
else {
throw new UserException('missing type');
}
// search host
if (!empty($_REQUEST['host'])) {
$host = new Host($_REQUEST['host'], $zone);
if ($host->isRegistred($db)) {
$host = new DBHost($host->isRegistred($db), $db);
$output->add('found existing host', 'success', $host);
}
else {
throw new UserException('host not found', $_REQUEST['host']);
}
}
else {
throw new UserException('missing host');
}
if ($host->checkPassword($pw) || isAuthentificated()) {
// search entries
if ($type == 'URL') {
$entries = DBUri::get($db, array('host' => $host, 'zone' => $zone));
}
else {
$entries = DBRecord::get($db, array('host' => $host, 'zone' => $zone, 'class' => $class, 'type' => $type));
}
if (empty($entries)) {
throw new UserException('no records found to update');
}
$entry = array_shift($entries);
if ($type == 'URL') {
$entry->frame = (isset($_REQUEST['frame']) && $_REQUEST['frame']) ? 1 : 0;
$entry->setUri($rdata);
}
else {
$entry->setTtl($ttl);
$entry->setRData($rdata);
}
$entry->lastAccessed = time();
$entry->update();
$output->add('entry updated in db', 'success', $entry);
// delete other entries
foreach ($entries as $entry) {
$entry->delete();
$output->add('record deleted from db', 'warning', $entry);
}
$zone->cleanup($db);
$zone->sync($db);
}
else {
throw new AuthentificationException('not authentificated for host', $host);
}