-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontroller.php
67 lines (60 loc) · 2.1 KB
/
controller.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
<?php
include_once("core/functions.php");
//DNS Service Restart Controller
if (isset($_POST['restart_dns_service'])) {
if ($_POST['restart_dns_service'] == 'yes') {
restartDNSService();
http_response_code(200);
} else {
http_response_code(400);
}
}
//New DNS Record Add Controller
if (isset($_POST['fqdn'], $_POST['ipAddr'], $_POST['recordType'], $_POST['newRecord'])) {
if ($_POST['newRecord'] == 'yes') {
$fqdn = $_POST['fqdn'];
$ipAddr = $_POST['ipAddr'];
$recordType = $_POST['recordType'];
addNewDNSRecord($fqdn, $ipAddr, $recordType);
http_response_code(200);
} else {
http_response_code(400);
}
}
//Existing DNS Record Edit Controller
if (isset($_POST['editFQDN'], $_POST['editIPAddr'], $_POST['editRecordType'], $_POST['oldFQDN'], $_POST['oldIPAddr'], $_POST['oldRecordType'], $_POST['editRecord'])) {
if ($_POST['editRecord'] == 'yes') {
$fqdn = $_POST['editFQDN'];
$ipAddr = $_POST['editIPAddr'];
$recordType = $_POST['editRecordType'];
$oldFQDN = $_POST['oldFQDN'];
$oldIPAddr = $_POST['oldIPAddr'];
$oldRecordType = $_POST['oldRecordType'];
editDNSRecord($fqdn, $ipAddr, $recordType, $oldFQDN, $oldIPAddr, $oldRecordType);
http_response_code(200);
} else {
http_response_code(400);
}
}
//Delete DNS Record Controller
if (isset($_POST['delFQDN'], $_POST['delIPAddr'], $_POST['delRecordType'], $_POST['deleteRecord'])) {
if ($_POST['deleteRecord'] == 'yes') {
$delFQDN = $_POST['delFQDN'];
$delIPAddr = $_POST['delIPAddr'];
$delRecordType = $_POST['delRecordType'];
deleteRecord($delFQDN, $delIPAddr, $delRecordType);
http_response_code(200);
} else {
http_response_code(400);
}
}
//Change Password
if (isset($_POST['oldPassword'], $_POST['newPassword'], $_POST['changePassword'])) {
if ($_POST['changePassword'] == 'yes') {
echo changePassword($_POST['oldPassword'], $_POST['newPassword']);
http_response_code(200);
} else {
http_response_code(400);
}
}
?>