-
-
Notifications
You must be signed in to change notification settings - Fork 405
/
package_repos.php
519 lines (433 loc) · 17.5 KB
/
package_repos.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
<?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'),
2 => __('Disable'),
3 => __('Enable'),
4 => __('Default')
);
$types = array(
0 => __('GitHub Based'),
1 => __('File Based'),
2 => __('Direct URL')
);
/* set default action */
set_default_action();
switch (get_request_var('action')) {
case 'save':
form_save();
break;
case 'actions':
form_actions();
break;
case 'edit':
top_header();
repo_edit();
bottom_footer();
break;
default:
top_header();
repos();
bottom_footer();
break;
}
/* --------------------------
The Save Function
-------------------------- */
function form_save() {
global $registered_cacti_names;
if (isset_request_var('save_component_repo')) {
/* ================= input validation ================= */
get_filter_request_var('id');
get_filter_request_var('repo_type');
/* ==================================================== */
$save['id'] = get_nfilter_request_var('id');
$save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3);
$save['repo_type'] = get_nfilter_request_var('repo_type');
$save['repo_location'] = get_nfilter_request_var('repo_location');
$save['repo_branch'] = get_nfilter_request_var('repo_branch');
$save['repo_api_key'] = get_nfilter_request_var('repo_api_key');
$save['enabled'] = (isset_request_var('enabled') ? 'on':'');
$save['default'] = (isset_request_var('default') ? 'on':'');
if (!is_error_message()) {
$id = sql_save($save, 'package_repositories', 'id');
if ($id) {
if ($save['repo_type'] == 0) {
$repoloc = str_replace('github.com', 'raw.githubusercontent.com', $save['repo_location']);
$file = $repoloc . '/' . $save['repo_branch'] . '/package.manifest';
$data = file_get_contents($file);
if ($data != '') {
raise_message('repo_exists', __('The Repo \'%s\' is Reachable on GitHub.', $save['name']), MESSAGE_LEVEL_INFO);
} else {
raise_message('repo_missing', __('The Repo \'%s\' is NOT Reachable on GitHub or the package.manifest file is missing or it could be an invalid branch. Valid Package Locations are normally: https://github.com/Author/RepoName/.', $save['name']), MESSAGE_LEVEL_WARN);
}
} elseif ($save['repo_type'] == 2) {
$file = $save['repo_location'] . '/package.manifest';
$context = array(
'ssl' =>array(
'verify_peer' => false,
'verify_peer_name' => false,
),
);
$data = file_get_contents($file, false, stream_context_create($context));
if ($data != '') {
raise_message('repo_exists', __('The Repo \'%s\' is Reachable at the URL Location.', $save['name']), MESSAGE_LEVEL_INFO);
} else {
raise_message('repo_missing', __('The Repo \'%s\' is NOT Reachable at the URL Location or the package.manifest file is missing.', $save['name']), MESSAGE_LEVEL_WARN);
}
} else {
$file = $save['repo_location'] . '/package.manifest';
if (file_exists($file)) {
raise_message('repo_exists', __('The Repo \'%s\' is Reachable on the Local Cacti Server.', $save['name']), MESSAGE_LEVEL_INFO);
} else {
raise_message('repo_missing', __('The Repo \'%s\' is NOT Reachable on the Local Cacti Server or the package.manifest file is missing.', $save['name']), MESSAGE_LEVEL_WARN);
}
}
raise_message(1);
} else {
raise_message(2);
}
}
}
header('Location: package_repos.php?header=false&action=edit&id=' . (empty($id) ? get_nfilter_request_var('id') : $id));
}
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_remove($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '2') { // disable
for ($i=0;($i<cacti_count($selected_items));$i++) {
package_disable($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '3') { // enable
for ($i=0;($i<cacti_count($selected_items));$i++) {
package_enable($selected_items[$i]);
}
} elseif (get_nfilter_request_var('drp_action') == '4') { // default
if (cacti_sizeof($selected_items) > 1) {
/* error message */
} else {
for ($i=0;($i<cacti_count($selected_items));$i++) {
package_default($selected_items[$i]);
}
}
}
}
header('Location: package_repos.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 name FROM package_repositories WHERE id = ?', array($matches[1]))) . '</li>';
$p_array[] = $matches[1];
}
}
top_header();
form_start('package_repos.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>";
$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 Package Repository', 'Delete Package Repositories', cacti_sizeof($p_array)) . "'>";
} elseif (get_nfilter_request_var('drp_action') == '2') { // disable
print "<tr>
<td class='textArea'>
<p>" . __n('Click \'Continue\' to disable the following Package Repository.', 'Click \'Continue\' to disable following Package Repositories.', cacti_sizeof($p_array)) . "</p>
<div class='itemlist'><ul>$p_list</ul></div>
</td>
</tr>";
$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('Disable Package Repository', 'Disable Package Repositories', cacti_sizeof($p_array)) . "'>";
} elseif (get_nfilter_request_var('drp_action') == '3') { // enable
print "<tr>
<td class='textArea'>
<p>" . __('Click \'Continue\' to enable the following Package Repository.', 'Click \'Continue\' to enable following Package Repositories.', cacti_sizeof($p_array)) . "</p>
<div class='itemlist'><ul>$p_list</ul></div>
</td>
</tr>";
$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('Enabled Package Repository', 'Enable Package Repositories', cacti_sizeof($p_array)) . "'>";
} elseif (get_nfilter_request_var('drp_action') == '4') { // default
print "<tr>
<td class='textArea'>
<p>" . __('Click \'Continue\' to make the following the following Package Repository the default one.') . "</p>
<div class='itemlist'><ul>$p_list</ul></div>
</td>
</tr>";
$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='" . __esc('Make Selected Repository Default') . "'>";
}
} else {
raise_message(40);
header('Location: package_repos.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>";
html_end_box();
form_end();
bottom_footer();
}
function repo_remove($id) {
db_execute_prepared('DELETE FROM package_repositories WHERE id = ?', array($id));
db_execute_prepared('DELETE FROM package_repositories WHERE id = ?', array($id));
}
function repo_disable($id) {
db_execute_prepared('UPDATE package_repositories SET enabled = "" WHERE id = ?', array($id));
}
function repo_enable($id) {
db_execute_prepared('UPDATE package_repositories SET enabled = "on" WHERE id = ?', array($id));
}
function repo_default($id) {
db_execute('UPDATE package_repositories SET `default` = ""');
db_execute_prepared('UPDATE package_repositories SET `default` = "on" WHERE id = ?', array($id));
}
function repo_edit() {
global $types;
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
if (!isempty_request_var('id')) {
$repo = db_fetch_row_prepared('SELECT * FROM package_repositories WHERE id = ?', array(get_request_var('id')));
$header_label = __esc('Package Repository [edit: %s]', $repo['name']);
} else {
$header_label = __('Package Repository [new]');
$repo = array();
}
if (cacti_sizeof($repo)) {
if ($repo['repo_type'] == 1) { // Local directory
$method = 'dirpath';
} else {
$method = 'textbox';
}
} else {
$method = 'textbox';
}
$fields_package = array(
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('Enter a meaningful name for this Package Repository.'),
'value' => '|arg1:name|',
'max_length' => '32',
),
'repo_type' => array(
'method' => 'drop_array',
'friendly_name' => __('Repository Type'),
'description' => __('Choose what Package Repository type this is.'),
'value' => '|arg1:repo_type|',
'array' => $types,
'default' => '0'
),
'repo_location' => array(
'method' => $method,
'friendly_name' => __('Location'),
'description' => __('Either the full path on the Cacti Web Server to the Repository or a URL to the Repository. For example: https://github.com/Cacti/packages/'),
'value' => '|arg1:repo_location|',
'max_length' => '128',
'size' => '120'
),
'repo_branch' => array(
'method' => 'textbox',
'friendly_name' => __('Branch'),
'description' => __('For GitHub based repositories, the branch to include such as \'develop\', \'master\', etc.'),
'value' => '|arg1:repo_branch|',
'max_length' => '128',
'size' => '10'
),
'repo_api_key' => array(
'method' => 'textbox',
'friendly_name' => __('API Key (optional)'),
'description' => __('For GitHub based repositories, the optional API key required to access the repository.'),
'value' => '|arg1:repo_api_key|',
'max_length' => '128',
'size' => '100'
),
'enabled' => array(
'method' => 'checkbox',
'friendly_name' => __('Enabled'),
'description' => __('If this checkbox is checked, you will be able to import packages from this Repository.'),
'value' => '|arg1:enabled|',
'default' => 'on',
),
'default' => array(
'method' => 'checkbox',
'friendly_name' => __('Default'),
'description' => __('If this checkbox is checked, this will be the first Repository shown to the user.'),
'value' => '|arg1:default|',
'default' => '',
),
'id' => array(
'method' => 'hidden_zero',
'value' => '|arg1:id|'
),
'save_component_repo' => array(
'method' => 'hidden',
'value' => '1'
)
);
form_start('package_repos.php');
html_start_box($header_label, '100%', true, '3', 'center', '');
draw_edit_form(
array(
'config' => array(),
'fields' => inject_form_variables($fields_package, (isset($repo) ? $repo : array()))
)
);
html_end_box(true);
?>
<script type='text/javascript'>
function initPackageType() {
if ($('#repo_type').val() == 0) {
$('#row_repo_branch').show();
$('#row_repo_api_key').show();
} else {
$('#row_repo_branch').hide();
$('#row_repo_api_key').hide();
}
}
$(function() {
initPackageType();
$('#repo_type').change(function() {
initPackageType();
});
});
</script>
<?php
form_save_button('package_repos.php', 'return', 'id');
}
function repos() {
global $actions, $item_rows, $types;
/* create the page filter */
$pageFilter = new CactiTableFilter(__('Package Repositorites'), 'package_repos.php', 'fors', 'sess_package_repos', 'package_repos.php?action=edit');
$pageFilter->rows_label = __('Repos');
$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 ') .
'(name LIKE ? OR repo_branch LIKE ? OR repo_location 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_repositories
$sql_where",
$sql_params);
$repos = db_fetch_assoc_prepared("SELECT *
FROM package_repositories
$sql_where
$sql_order
$sql_limit",
$sql_params);
$display_text = array(
'name' => array(
'display' => __('Name'),
'sort' => 'ASC'
),
'repo_type' => array(
'display' => __('Type'),
'sort' => 'ASC'
),
'repo_location' => array(
'display' => __('Location'),
'sort' => 'ASC'
),
'repo_branch' => array(
'display' => __('Branch'),
'align' => 'center',
'sort' => 'ASC'
),
'enabled' => array(
'display' => __('Enabled'),
'align' => 'center',
'sort' => 'ASC'
),
'default' => array(
'display' => __('Default'),
'align' => 'center',
'sort' => 'ASC'
),
);
$nav = html_nav_bar('package_repos.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, sizeof($display_text)+1, __('Package Repositories'), 'page', 'main');
form_start('package_repos.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);
if (cacti_sizeof($repos)) {
foreach ($repos as $repo) {
form_alternate_row('line' . $repo['id'], true);
form_selectable_cell(filter_value($repo['name'], get_request_var('filter'), 'package_repos.php?action=edit&id=' . $repo['id']), $repo['id']);
form_selectable_cell($types[$repo['repo_type']], $repo['id']);
form_selectable_cell(filter_value($repo['repo_location'], get_request_var('filter')), $repo['id']);
form_selectable_cell($repo['repo_type'] == 0 ? ($repo['repo_branch'] != '' ? $repo['repo_branch']:__('default')):__('N/A'), $repo['id'], '', 'center');
form_selectable_cell($repo['enabled'] == 'on' ? __('Yes'):__('No'), $repo['id'], '', 'center');
form_selectable_cell($repo['default'] == 'on' ? __('Yes'):__('No'), $repo['id'], '', 'center');
form_checkbox_cell($repo['name'], $repo['id']);
form_end_row();
}
} else {
print '<tr class="tableRow odd"><td colspan="' . (cacti_sizeof($display_text)+1) . '"><em>' . __('No Package Repositories Found') . '</em></td></tr>';
}
html_end_box(false);
if (cacti_sizeof($repos)) {
print $nav;
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($actions);
form_end();
}