servnest/inc/ns.inc.php

84 lines
2.0 KiB
PHP
Raw Normal View History

2021-02-19 13:23:26 +01:00
<?php
if (strpos($_SERVER['PHP_SELF'], "inc.php") !== false)
exit("This file is meant to be included.");
2021-05-16 16:55:39 +02:00
function nsCommonRequirements() {
if (isset($_POST['action'])
AND isset($_POST['zone'])
AND isset($_POST['ttl-value'])
AND isset($_POST['ttl-multiplier'])
AND isset($_SESSION['username'])
) {
2021-08-05 14:04:33 +02:00
antiCSRF();
2021-05-16 16:55:39 +02:00
return true;
}
}
function nsParseCommonRequirements() {
$values['action'] = checkAction($_POST['action']);
nsCheckZonePossession($_POST['zone']);
if (($_POST['subdomain'] === "") OR ($_POST['subdomain'] === "@"))
$values['domain'] = $_POST['zone'];
else
$values['domain'] = $_POST['subdomain'] . "." . $_POST['zone'];
checkAbsoluteDomainFormat($values['domain']);
2021-05-16 16:55:39 +02:00
$values['ttl'] = $_POST['ttl-value'] * $_POST['ttl-multiplier'];
2021-03-02 22:56:38 +01:00
2021-05-16 16:55:39 +02:00
if (!($values['ttl'] >= 300 AND $values['ttl'] <= 432000))
2021-03-02 22:56:38 +01:00
exit("Erreur : le TTL doit être compris entre 5 minutes et 5 jours (entre 300 et 432000 secondes)");
2021-05-16 16:55:39 +02:00
return $values;
2021-03-02 22:56:38 +01:00
}
function nsListUserZones($username) {
$db = new PDO('sqlite:' . DB_PATH);
$usernameArray[0] = $username;
$op = $db->prepare('SELECT zone FROM zones WHERE username = ?');
$op->execute($usernameArray);
$data = $op->fetch();
2021-05-14 21:10:56 +02:00
if (isset($data['zone']))
$zone = $data['zone'];
else
$zone = NULL;
$i = 0;
2021-05-22 14:07:25 +02:00
$zones = NULL;
while ($zone != NULL) {
$zones[$i] = $zone;
$i++;
$data = $op->fetch();
if (isset($data['zone']))
$zone = $data['zone'];
else
$zone = NULL;
}
return $zones;
}
2021-03-02 22:56:38 +01:00
function nsCheckZonePossession($submittedZone) {
checkAbsoluteDomainFormat($submittedZone);
2021-02-19 13:23:26 +01:00
$db = new PDO('sqlite:' . DB_PATH);
$username[0] = $_SESSION['username'];
$op = $db->prepare('SELECT zone FROM zones WHERE username = ?');
$op->execute($username);
2021-03-02 22:56:38 +01:00
$dbZone = $op->fetch()['zone'];
2021-02-19 13:23:26 +01:00
2021-03-02 22:56:38 +01:00
while ($dbZone != NULL) {
if ($dbZone === $submittedZone) return;
$dbZone = $op->fetch()['zone'];
2021-02-19 13:23:26 +01:00
}
2021-03-02 22:56:38 +01:00
// If there is no entry in the database for the user matching the submitted zone
exit("ERROR: You don't own this zone on the nameserver");
2021-02-19 13:23:26 +01:00
}