forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates_import.php
151 lines (121 loc) · 4.86 KB
/
templates_import.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
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2017 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/import.php');
include_once('./lib/utility.php');
/* set default action */
set_default_action();
switch (get_request_var('action')) {
case 'save':
form_save();
break;
default:
top_header();
import();
bottom_footer();
break;
}
/* --------------------------
The Save Function
-------------------------- */
function form_save() {
global $preview_only;
if (isset_request_var('save_component_import')) {
if (trim(get_nfilter_request_var('import_text') != '')) {
/* textbox input */
$xml_data = get_nfilter_request_var('import_text');
} elseif (($_FILES['import_file']['tmp_name'] != 'none') && ($_FILES['import_file']['tmp_name'] != '')) {
/* file upload */
$fp = fopen($_FILES['import_file']['tmp_name'],'r');
$xml_data = fread($fp,filesize($_FILES['import_file']['tmp_name']));
fclose($fp);
} else {
header('Location: templates_import.php'); exit;
}
if (get_filter_request_var('import_data_source_profile') == '0') {
$import_as_new = true;
$profile_id = db_fetch_cell('SELECT id FROM data_source_profiles ORDER BY `default` DESC LIMIT 1');
} else {
$import_as_new = false;
$profile_id = get_request_var('import_data_source_profile');
}
if (get_nfilter_request_var('preview_only') == 'on') {
$preview_only = true;
} else {
$preview_only = false;
}
if (isset_request_var('remove_orphans') && get_nfilter_request_var('remove_orphans') == 'on') {
$remove_orphans = true;
} else {
$remove_orphans = false;
}
/* obtain debug information if it's set */
$debug_data = import_xml_data($xml_data, $import_as_new, $profile_id, $remove_orphans);
if(sizeof($debug_data) > 0) {
$_SESSION['import_debug_info'] = $debug_data;
}
header('Location: templates_import.php?preview=' . $preview_only);
}
}
/* ---------------------------
Template Import Functions
--------------------------- */
function import() {
global $hash_type_names, $fields_template_import;
print "<form method='post' action='templates_import.php' enctype='multipart/form-data'>\n";
$display_hideme = false;
if ((isset($_SESSION['import_debug_info'])) && (is_array($_SESSION['import_debug_info']))) {
import_display_results($_SESSION['import_debug_info'], array(), true, get_filter_request_var('preview'));
kill_session_var('import_debug_info');
$display_hideme = true;
}
html_start_box(__('Import Template'), '100%', true, '3', 'center', '');
$default_profile = db_fetch_cell('SELECT id FROM data_source_profiles WHERE `default`="on"');
if (empty($default_profile)) {
$default_profile = db_fetch_cell('SELECT id FROM data_source_profiles ORDER BY id LIMIT 1');
}
$fields_template_import['import_data_source_profile']['default'] = $default_profile;
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => $fields_template_import
)
);
html_end_box(true, true);
form_hidden_box('save_component_import','1','');
form_save_button('', 'import');
?>
<script type='text/javascript'>
$(function() {
<?php if ($display_hideme) { ?>
$('#templates_import1').find('.cactiTableButton > span').html('<a href="#" id="hideme"><?php print __('Hide');?></a>');
$('#hideme').click(function() {
$('#templates_import1').hide();
});
<?php } ?>
$('#remove_orphans').prop('checked', false).prop('disabled', true);
});
</script>
<?php
}