forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
140 lines (123 loc) · 5.56 KB
/
search.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
<?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');
if (!(verify_permission('search'))) {
error(ERR_PERM_SEARCH);
include_once('inc/footer.inc.php');
exit;
} else {
echo " <h2>" . _('Search zones and records') . "</h2>\n";
$holy_grail = '';
if (isset($_POST['submit'])) {
if (verify_permission('zone_content_view_others')) { $perm_view = "all" ; }
elseif (verify_permission('zone_content_view_own')) { $perm_view = "own" ; }
else { $perm_view = "none" ; }
if (verify_permission('zone_content_edit_others')) { $perm_edit = "all" ; }
elseif (verify_permission('zone_content_edit_own')) { $perm_edit = "own" ; }
else { $perm_edit = "none" ; }
$holy_grail = $_POST['query'];
$result = search_zone_and_record($holy_grail,$perm_view);
if (is_array($result['zones'])) {
echo " <h3>" . _('Zones found') . ":</h3>\n";
echo " <table>\n";
echo " <tr>\n";
echo " <th> </th>\n";
echo " <th>" . _('Name') . "</th>\n";
echo " <th>" . _('Type') . "</th>\n";
echo " <th>" . _('Master') . "</th>\n";
echo " </tr>\n";
foreach ($result['zones'] as $zone) {
echo " <tr>\n";
echo " <td>\n";
echo " <a href=\"edit.php?id=" . $zone['zid'] . "\"><img src=\"images/edit.gif\" title=\"" . _('Edit zone') . " " . $zone['name'] . "\" alt=\"[ " . _('Edit zone') . " " . $zone['name'] . " ]\"></a>\n";
if ( $perm_edit != "all" || $perm_edit != "none") {
$user_is_zone_owner = verify_user_is_owner_zoneid($zone['zid']);
}
if ( $perm_edit == "all" || ( $perm_edit == "own" && $user_is_zone_owner == "1") ) {
echo " <a href=\"delete_domain.php?id=" . $zone['zid'] . "\"><img src=\"images/delete.gif\" title=\"" . _('Delete zone') . " " . $zone['name'] . "\" alt=\"[ ". _('Delete zone') . " " . $zone['name'] . " ]\"></a>\n";
}
echo " </td>\n";
echo " <td>" . $zone['name'] . "</td>\n";
echo " <td>" . $zone['type'] . "</td>\n";
if ($zone['type'] == "SLAVE") {
echo " <td>" . $zone['master'] . "</td>\n";
} else {
echo " <td> </td>\n";
}
echo " </tr>\n";
}
echo " </table>\n";
}
if (is_array($result['records'])) {
echo " <h3>" . _('Records found') . ":</h3>\n";
echo " <table>\n";
echo " <tr>\n";
echo " <th> </th>\n";
echo " <th>" . _('Name') . "</th>\n";
echo " <th>" . _('Type') . "</th>\n";
echo " <th>" . _('Priority') . "</th>\n";
echo " <th>" . _('Content') . "</th>\n";
echo " <th>" . _('TTL') . "</th>\n";
echo " </tr>\n";
foreach ($result['records'] as $record) {
echo " <tr>\n";
echo " <td>\n";
echo " <a href=\"edit_record.php?id=" . $record['rid'] . "\"><img src=\"images/edit.gif\" title=\"" . _('Edit record') . " " . $record['name'] . "\" alt=\"[ " . _('Edit record') . " " . $record['name'] . " ]\"></a>\n";
if ( $perm_edit != "all" || $perm_edit != "none") {
$user_is_zone_owner = verify_user_is_owner_zoneid($record['zid']);
}
if ( $perm_edit == "all" || ( $perm_edit == "own" && $user_is_zone_owner == "1") ) {
echo " <a href=\"delete_record.php?id=" . $record['rid'] . "\"><img src=\"images/delete.gif\" title=\"" . _('Delete record') . " " . $record['name'] . "\" alt=\"[ ". _('Delete record') . " " . $record['name'] . " ]\"></a>\n";
}
echo " </td>\n";
echo " <td>" . $record['name'] . "</td>\n";
echo " <td>" . $record['type'] . "</td>\n";
if ($record['type'] == "MX") {
echo " <td>" . $record['prio'] . "</td>\n";
} else {
echo " <td> </td>\n";
}
echo " <td>" . $record['content'] . "</td>\n";
echo " <td>" . $record['ttl'] . "</td>\n";
echo " </tr>\n";
}
echo " </table>\n";
}
}
echo " <h3>" . _('Query') . ":</h3>\n";
echo " <form method=\"post\" action=\"" . $_SERVER['PHP_SELF'] . "\">\n";
echo " <table>\n";
echo " <tr>\n";
echo " <td>\n";
echo " <input type=\"text\" class=\"input\" name=\"query\" value=\"" . $holy_grail . "\"> \n";
echo " <input type=\"submit\" class=\"button\" name=\"submit\" value=\"" . _('Search') . "\">\n";
echo " </td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td>\n";
echo " " . _('Enter a hostname or IP address. SQL LIKE syntax supported: an underscore (_) in pattern matches any single character, a percent sign (%) matches any string of zero or more characters.') . "\n";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo " </form>\n";
}
include_once('inc/footer.inc.php');
?>