2010-08-17 01:23:57 +02:00
|
|
|
<?php
|
2013-04-23 16:18:48 +02:00
|
|
|
/**
|
|
|
|
* Delete 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-08-17 01:23:57 +02:00
|
|
|
require_once 'include/init.php';
|
|
|
|
|
2010-10-07 14:22:51 +02:00
|
|
|
$output = Output::start();
|
2010-08-17 01:23:57 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
// default arguments
|
|
|
|
$rdata = @$_REQUEST['rdata'];
|
|
|
|
$class = @$_REQUEST['class'];
|
|
|
|
$type = @$_REQUEST['type'];
|
|
|
|
$ttl = @$_REQUEST['ttl'];
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
// 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');
|
|
|
|
}
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
// 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');
|
|
|
|
}
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
// type
|
|
|
|
if (!empty($type) && !in_array($type, $config['sddns']['types'])) {
|
|
|
|
throw new UserException('invalid type');
|
|
|
|
}
|
|
|
|
else if (IpV4::isValid($rdata)) {
|
|
|
|
$type = 'A';
|
|
|
|
}
|
|
|
|
else if (IpV6::isValid($rdata)) {
|
|
|
|
$type = 'AAAA';
|
|
|
|
}
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
if (!empty($rdata) && !Record::isRdata($rdata, $type)) {
|
|
|
|
throw new UserException('invalid rdata', $rdata);
|
|
|
|
}
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
// search host
|
|
|
|
if (!empty($_REQUEST['host'])) {
|
|
|
|
$host = new Host($_REQUEST['host'], $zone);
|
2011-08-19 20:55:53 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
if ($host->isRegistred($db)) {
|
|
|
|
$host = new DBHost($host->isRegistred($db), $db);
|
|
|
|
$output->add('found existing host', 'success', $host);
|
2010-08-17 01:23:57 +02:00
|
|
|
}
|
|
|
|
else {
|
2017-08-05 17:29:32 +02:00
|
|
|
throw new UserException('host not found', $_REQUEST['host']);
|
2010-08-17 01:23:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2017-08-05 17:29:32 +02:00
|
|
|
throw new UserException('missing host');
|
2010-08-17 01:23:57 +02:00
|
|
|
}
|
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
if ($host->checkPassword($pw) || isAuthentificated()) {
|
|
|
|
// search
|
|
|
|
$uris = DBUri::get($db, array('zone' => $zone, 'host' => $host));
|
|
|
|
$records = DBRecord::get($db, array('zone' => $zone, 'host' => $host, 'type' => $type, 'class' => $class, 'rdata' => $rdata, 'ttl' => $ttl));
|
|
|
|
|
|
|
|
if (empty($type)) {
|
|
|
|
$entries = array_merge($uris, $records);
|
|
|
|
}
|
|
|
|
else if ($type == 'URL') {
|
|
|
|
$entries = $uris;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$entries = $records;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($entries)) {
|
|
|
|
$output->add('no records found to delete', 'warning');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foreach ($entries as $entry) {
|
|
|
|
$entry->delete();
|
|
|
|
$output->add('entry deleted from db', 'success', $entry);
|
|
|
|
}
|
2010-10-07 14:22:51 +02:00
|
|
|
|
2017-08-05 17:29:32 +02:00
|
|
|
$zone->cleanup($db);
|
|
|
|
$zone->sync($db);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
throw new AuthentificationException('not authentificated for host', $host);
|
|
|
|
}
|