sddns/delete.php
2013-03-08 03:18:13 +01:00

60 lines
1.7 KiB
PHP
Executable file

<?php
require_once 'include/init.php';
$output = Output::start();
$pw = @$_REQUEST['pw'];
if (array_key_exists($_REQUEST['zone'], $config['sddns']['zones'])) {
$zone = $config['sddns']['zones'][$_REQUEST['zone']];
if (!empty($_REQUEST['host'])) {
if (list($host) = DBHost::get($db, array('host' => $_REQUEST['host'], 'zone' => $zone))) {
if ($host->checkPassword($pw) || isAuthentificated()) {
if (isset($_REQUEST['class']) && in_array($_REQUEST['class'], $config['sddns']['classes']))
$class = $_REQUEST['class'];
if (isset($_REQUEST['type']) && in_array($_REQUEST['type'], $config['sddns']['types'])) {
$type = $_REQUEST['type'];
if (isset($_REQUEST['rdata']) && Record::isRData($_REQUEST['rdata'], $type))
$rdata = $_REQUEST['rdata'];
}
if (@$type == 'URL' || empty($type)) {
$uris = DBUri::get($db, array('zone' => $zone, 'host' => $host));
foreach ($uris as $uri) {
$uri->delete();
$output->add('uri deleted from db', 'success', $uri);
}
}
if (@$type != 'URL' || empty($type)) {
$records = DBRecord::get($db, array('zone' => $zone, 'host' => $host, 'type' => @$type, 'class' => @$class, 'rdata' => @$rdata));
foreach ($records as $record) {
$record->delete();
$output->add('record deleted from db', 'success', $record);
}
}
$zone->cleanup($db);
$zone->sync($db);
}
else {
$output->add('not authentificated for host', 'error', $host);
}
}
else {
$output->add('host not found', 'error', $_REQUEST['host']);
}
}
else {
$output->add('no host specified', 'error');
}
}
else {
$output->add('zone not found', 'error', $_REQUEST['zone']);
}
$output->send();
?>