forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_zone_master.php
155 lines (138 loc) · 5.16 KB
/
add_zone_master.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
/* Poweradmin, a friendly web-based admin tool for PowerDNS.
* See <https://rejo.zenger.nl/poweradmin> for more details.
*
* Copyright 2007, 2008 Rejo Zenger <[email protected]>
*
* This program 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
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once("inc/toolkit.inc.php");
include_once("inc/header.inc.php");
$owner = "-1";
if ((isset($_POST['owner'])) && (v_num($_POST['owner']))) {
$owner = $_POST['owner'];
}
$dom_type = "NATIVE";
if (isset($_POST["dom_type"]) && (in_array($_POST['dom_type'], $server_types))) {
$dom_type = $_POST["dom_type"];
}
if (isset($_POST['domain'])) {
$domain = trim($_POST['domain']);
} else {
$domain = "";
}
if (isset($_POST['webip'])) {
$webip = $_POST['webip'];
} else {
$webip = "";
}
if (isset($_POST['mailip'])) {
$mailip = $_POST['mailip'];
} else {
$mailip = "";
}
if (isset($_POST['empty'])) {
$empty = $_POST['empty'];
}
(verify_permission('zone_master_add')) ? $zone_master_add = "1" : $zone_master_add = "0" ;
if (isset($_POST['submit']) && $zone_master_add == "1" ) {
// Boy. I will be happy when I have found the time to replace
// this "template wanabee" code with something that is really
// worth to be called "templating". Whoever wrote this should
// be... should be... how can I say this politicaly correct?
// 20080303/RZ
if(!$empty) {
$empty = 0;
if(!eregi('in-addr.arpa', $domain) && (!is_valid_ipv4($webip) || !is_valid_ipv4($mailip)) ) {
error(_('IP address of web- or mailserver is invalid.'));
$error = "1";
}
}
if (!$error) {
if (!is_valid_hostname_fqdn($domain,0)) {
error(ERR_DOMAIN_INVALID);
$error = "1";
} elseif (domain_exists($domain)) {
error(ERR_DOMAIN_EXISTS);
$error = "1";
} else {
if (add_domain($domain, $owner, $webip, $mailip, $empty, $dom_type, '')) {
success(SUC_ZONE_ADD);
unset($domain, $owner, $webip, $mailip, $empty, $dom_type);
} else {
$error = "1";
}
}
}
}
if ( $zone_master_add != "1" ) {
error(ERR_PERM_ADD_ZONE_MASTER);
} else {
echo " <h2>" . _('Add master zone') . "</h2>\n";
$available_zone_types = array("NATIVE", "MASTER");
$users = show_users();
echo " <form method=\"post\" action=\"add_zone_master.php\">\n";
echo " <table>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('Zone name') . ":</td>\n";
echo " <td class=\"n\">\n";
echo " <input type=\"text\" class=\"input\" name=\"domain\" value=\"" . $domain . "\">\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('IP address of webserver') . ":</td>\n";
echo " <td class=\"n\">\n";
echo " <input type=\"text\" class=\"input\" name=\"webip\" value=\"" . $webip . "\">\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('IP address of mailserver') . ":</td>\n";
echo " <td class=\"n\">\n";
echo " <input type=\"text\" class=\"input\" name=\"mailip\" value=\"" . $mailip . "\">\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('Owner') . ":</td>\n";
echo " <td class=\"n\">\n";
echo " <select name=\"owner\">\n";
foreach ($users as $user) {
echo " <option value=\"" . $user['id'] . "\">" . $user['fullname'] . "</option>\n";
}
echo " </select>\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('Type') . ":</td>\n";
echo " <td class=\"n\">\n";
echo " <select name=\"dom_type\">\n";
foreach($available_zone_types as $type) {
echo " <option value=\"" . $type . "\">" . strtolower($type) . "</option>\n";
}
echo " </select>\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\">" . _('Create zone without applying records-template') . "</td>\n";
echo " <td class=\"n\"><input type=\"checkbox\" name=\"empty\" value=\"1\"></td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td class=\"n\"> </td>\n";
echo " <td class=\"n\">\n";
echo " <input type=\"submit\" class=\"button\" name=\"submit\" value=\"" . _('Add zone') . "\">\n";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo " </form>\n";
}
include_once("inc/footer.inc.php");