forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_zones.php
153 lines (139 loc) · 6.45 KB
/
list_zones.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
<?php
/* Poweradmin, a friendly web-based admin tool for PowerDNS.
* See <http://www.poweradmin.org> for more details.
*
* Copyright 2007-2010 Rejo Zenger <[email protected]>
* Copyright 2010-2014 Poweradmin Development Team
* <http://www.poweradmin.org/credits.html>
*
* 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/>.
*/
/**
* Script that displays zone list
*
* @package Poweradmin
* @copyright 2007-2010 Rejo Zenger <[email protected]>
* @copyright 2010-2014 Poweradmin Development Team
* @license http://opensource.org/licenses/GPL-3.0 GPL
*/
require_once("inc/toolkit.inc.php");
include_once("inc/header.inc.php");
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";
}
$count_zones_all = zone_count_ng("all");
$count_zones_all_letterstart = zone_count_ng($perm_view, LETTERSTART);
$count_zones_view = zone_count_ng($perm_view);
$count_zones_edit = zone_count_ng($perm_edit);
# OUCH: Temporary workaround for nasty sorting issue.
# The problem is that sorting order is saved as a session variable
# and it's used in two different screens - zone list and search results.
# Both have different queries for getting data, but same order field
# that causes failure.
$zone_sort_by = ZONE_SORT_BY;
if (!in_array(ZONE_SORT_BY, array('name', 'type', 'count_records'))) {
$zone_sort_by = 'name';
}
echo " <h2>" . _('List zones') . "</h2>\n";
if ($perm_view == "none") {
echo " <p>" . _('You do not have the permission to see any zones.') . "</p>\n";
} elseif (($count_zones_view > $iface_rowamount && $count_zones_all_letterstart == "0") || $count_zones_view == 0) {
if ($count_zones_view > $iface_rowamount) {
echo "<div class=\"showmax\">";
show_letters(LETTERSTART);
echo "</div>";
}
echo " <p>" . _('There are no zones to show in this listing.') . "</p>\n";
} else {
if (LETTERSTART != 'all') {
echo " <div class=\"showmax\">\n";
show_pages($count_zones_all_letterstart, $iface_rowamount);
echo " </div>\n";
}
if ($count_zones_view > $iface_rowamount) {
echo "<div class=\"showmax\">";
show_letters(LETTERSTART);
echo "</div>";
}
echo " <form method=\"post\" action=\"delete_domains.php\">\n";
echo " <table>\n";
echo " <tr>\n";
echo " <th> </th>\n";
echo " <th> </th>\n";
echo " <th><a href=\"list_zones.php?zone_sort_by=name\">" . _('Name') . "</a></th>\n";
echo " <th><a href=\"list_zones.php?zone_sort_by=type\">" . _('Type') . "</a></th>\n";
echo " <th><a href=\"list_zones.php?zone_sort_by=count_records\">" . _('Records') . "</a></th>\n";
echo " <th>" . _('Owner') . "</th>\n";
if ($iface_zonelist_serial)
echo " <th>" . _('Serial') . "</th>\n";
echo " </tr>\n";
if ($count_zones_view <= $iface_rowamount) {
$zones = get_zones($perm_view, $_SESSION['userid'], "all", ROWSTART, $iface_rowamount, $zone_sort_by);
} elseif (LETTERSTART == 'all') {
$zones = get_zones($perm_view, $_SESSION['userid'], "all", ROWSTART, 'all', $zone_sort_by);
} else {
$zones = get_zones($perm_view, $_SESSION['userid'], LETTERSTART, ROWSTART, $iface_rowamount, $zone_sort_by);
$count_zones_shown = ($zones == -1) ? 0 : count($zones);
}
foreach ($zones as $zone) {
if ($zone['count_records'] == NULL) {
$zone['count_records'] = 0;
}
$zone_owners = get_fullnames_owners_from_domainid($zone['id']);
if ($iface_zonelist_serial)
$serial = get_serial_by_zid($zone['id']);
if ($perm_edit != "all" || $perm_edit != "none") {
$user_is_zone_owner = verify_user_is_owner_zoneid($zone["id"]);
}
echo " <tr>\n";
echo " <td class=\"checkbox\">\n";
if ($count_zones_edit > 0 && ($perm_edit == "all" || ( $perm_edit == "own" && $user_is_zone_owner == "1"))) {
echo " <input type=\"checkbox\" name=\"zone_id[]\" value=\"" . $zone['id'] . "\">";
}
echo " </td>\n";
echo " <td class=\"actions\">\n";
echo " <a href=\"edit.php?name=" . $zone['name'] . "&id=" . $zone['id'] . "\"><img src=\"images/edit.gif\" title=\"" . _('View zone') . " " . $zone['name'] . "\" alt=\"[ " . _('View zone') . " " . $zone['name'] . " ]\"></a>\n";
if ($perm_edit == "all" || ( $perm_edit == "own" && $user_is_zone_owner == "1")) {
echo " <a href=\"delete_domain.php?name=" . $zone['name'] . "&id=" . $zone["id"] . "\"><img src=\"images/delete.gif\" title=\"" . _('Delete zone') . " " . $zone['name'] . "\" alt=\"[ " . _('Delete zone') . " " . $zone['name'] . " ]\"></a>\n";
}
echo " </td>\n";
echo " <td class=\"name\">" . $zone["name"] . "</td>\n";
echo " <td class=\"type\">" . strtolower($zone["type"]) . "</td>\n";
echo " <td class=\"count\">" . $zone["count_records"] . "</td>\n";
echo " <td class=\"owner\">" . $zone_owners . "</td>\n";
if ($iface_zonelist_serial) {
if ($serial != "") {
echo " <td class=\"y\">" . $serial . "</td>\n";
} else {
echo " <td class=\"n\"> </td>\n";
}
}
echo " </tr>\n";
}
echo " </table>\n";
echo " <input type=\"submit\" name=\"commit\" value=\"" . _('Delete zone(s)') . "\" class=\"button\">\n";
echo " </form>\n";
}
include_once("inc/footer.inc.php");