-
-
Notifications
You must be signed in to change notification settings - Fork 405
/
package_keys.php
237 lines (187 loc) · 7.43 KB
/
package_keys.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| 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 2 |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
include('./include/auth.php');
include_once('./lib/poller.php');
include_once('./lib/utility.php');
$actions = array(
1 => __('Delete')
);
/* set default action */
set_default_action();
switch (get_request_var('action')) {
case 'actions':
form_actions();
break;
default:
top_header();
public_keys();
bottom_footer();
break;
}
function form_actions() {
global $actions;
/* if we are to save this form, instead of display it */
if (isset_request_var('selected_items')) {
$selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items'));
if ($selected_items != false) {
if (get_nfilter_request_var('drp_action') == '1') { // delete
for ($i=0;($i<cacti_count($selected_items));$i++) {
package_key_remove($selected_items[$i]);
}
}
}
header('Location: package_keys.php?header=false');
exit;
}
/* setup some variables */
$p_list = '';
$p_array = array();
/* loop through each of the data queries and process them */
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1]);
/* ==================================================== */
$p_list .= '<li>' . html_escape(db_fetch_cell_prepared('SELECT author FROM package_public_keys WHERE id = ?', array($matches[1]))) . '</li>';
$p_array[] = $matches[1];
}
}
top_header();
form_start('package_keys.php');
html_start_box($actions[get_nfilter_request_var('drp_action')], '60%', '', '3', 'center', '');
if (isset($p_array) && cacti_sizeof($p_array)) {
if (get_nfilter_request_var('drp_action') == '1') { // delete
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to delete the following .', 'Click \'Continue\' to delete following Package Repositories.', cacti_sizeof($p_array)) . "</p>
<div class='itemlist'><ul>$p_list</ul></div>
</td>
</tr>\n";
$save_html = "<input type='button' class='ui-button ui-corner-all ui-widget' value='" . __esc('Cancel') . "' onClick='cactiReturnTo()'> <input type='submit' class='ui-button ui-corner-all ui-widget' value='" . __esc('Continue') . "' title='" . __n('Delete Public Key', 'Delete Public Keys', cacti_sizeof($p_array)) . "'>";
}
} else {
raise_message(40);
header('Location: package_keys.php?header=false');
exit;
}
print "<tr>
<td class='saveRow'>
<input type='hidden' name='action' value='actions'>
<input type='hidden' name='selected_items' value='" . (isset($p_array) ? serialize($p_array) : '') . "'>
<input type='hidden' name='drp_action' value='" . html_escape(get_nfilter_request_var('drp_action')) . "'>
$save_html
</td>
</tr>\n";
html_end_box();
form_end();
bottom_footer();
}
function package_key_remove($id) {
db_execute_prepared('DELETE FROM package_public_keys WHERE id = ?', array($id));
}
function public_keys() {
global $actions, $item_rows, $types;
/* create the page filter */
$pageFilter = new CactiTableFilter(__('Public Keys'), 'package_keys.php', 'fors', 'sess_package_keys');
$pageFilter->rows_label = __('Keys');
$pageFilter->set_sort_array('author', 'ASC');
$pageFilter->render();
if (get_request_var('rows') == '-1') {
$rows = read_config_option('num_rows_table');
} else {
$rows = get_request_var('rows');
}
$sql_where = '';
$sql_params = array();
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = ($sql_where != '' ? ' AND ':'WHERE ') .
'(author LIKE ? OR homepage LIKE ? OR email_address LIKE ?)';
$sql_params[] = '%' . get_request_var('filter') . '%';
$sql_params[] = '%' . get_request_var('filter') . '%';
$sql_params[] = '%' . get_request_var('filter') . '%';
}
$sql_order = get_order_string();
$sql_limit = ' LIMIT ' . ($rows*(get_request_var('page')-1)) . ',' . $rows;
$total_rows = db_fetch_cell_prepared("SELECT COUNT(*)
FROM package_public_keys
$sql_where",
$sql_params);
$keys = db_fetch_assoc_prepared("SELECT *
FROM package_public_keys
$sql_where
$sql_order
$sql_limit",
$sql_params);
$display_text = array(
'author' => array(
'display' => __('Author'),
'sort' => 'ASC'
),
'id' => array(
'display' => __('ID'),
'align' => 'left',
'sort' => 'ASC'
),
'homepage' => array(
'display' => __('Home Page'),
'sort' => 'ASC'
),
'email_address' => array(
'display' => __('Support EMail Address'),
'sort' => 'ASC'
),
'nosort' => array(
'display' => __('Key Type'),
),
);
$nav = html_nav_bar('package_keys.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, sizeof($display_text)+1, __('Package Public Keys'), 'page', 'main');
form_start('package_keys.php', 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false);
$i = 0;
if (cacti_sizeof($keys)) {
foreach ($keys as $key) {
form_alternate_row('line' . $key['id'], true);
$pkey = $key['public_key'];
form_selectable_cell(filter_value($key['author'], get_request_var('filter')), $key['id']);
form_selectable_cell($key['id'], $key['id']);
form_selectable_cell(filter_value($key['homepage'], get_request_var('filter')), $key['id']);
form_selectable_cell(filter_value($key['email_address'], get_request_var('filter')), $key['id']);
form_selectable_cell(strlen($pkey) < 200 ? 'SHA1':'SHA256', $key['id']);
form_checkbox_cell($key['author'], $key['id']);
form_end_row();
}
} else {
print '<tr class="tableRow odd"><td colspan="' . (cacti_sizeof($display_text)+1) . '"><em>' . __('No Package Public Keys Found') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($keys)) {
print $nav;
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($actions);
form_end();
}