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
|
#!/usr/bin/env php
<?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/ |
+-------------------------------------------------------------------------+
*/
require(__DIR__ . '/../site/include/cli_check.php');
require_once($config['base_path'] . '/lib/import.php');
require_once($config['base_path'] . '/lib/poller.php');
require_once($config['base_path'] . '/lib/utility.php');
/* switch to main database for cli's */
if ($config['poller_id'] > 1) {
db_switch_remote_to_main();
}
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
global $preview_only;
if (cacti_sizeof($parms)) {
$filename = '';
$with_profile = false;
$remove_orphans = false;
$replace_svalues = false;
$preview_only = 0;
$profile_id = '';
foreach($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter, 2);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '--filename':
$filename = trim($value);
break;
case '--with-profile':
$with_profile = true;
break;
case '--remove-orphans':
$remove_orphans = true;
break;
case '--replace-svalues':
$replace_svalues = true;
break;
case '--preview':
$preview_only = 1;
break;
case '--profile-id':
$profile_id = trim($value);
break;
case '--help':
case '-H':
case '-h':
display_help();
exit(0);
case '--version':
case '-V':
case '-v':
display_version();
exit(0);
default:
print 'ERROR: Invalid Argument: ($arg)' . PHP_EOL . PHP_EOL;
exit(1);
}
}
if($profile_id > 0) {
if ($with_profile) {
print "WARNING: '--with-profile' and '--profile-id=N' are exclusive. Ignoring '--with-profile'" . PHP_EOL;
} else {
$id = db_fetch_cell_prepared('SELECT id FROM data_source_profiles WHERE id = ?', array($profile_id));
if (empty($id)) {
print "WARNING: Data Source Profile ID $profile_id not found. Using System Default" . PHP_EOL;
$id = db_fetch_cell_prepared('SELECT id FROM data_source_profiles ORDER BY `default` DESC LIMIT 1');
}
}
} else {
$id = db_fetch_cell_prepared('SELECT id FROM data_source_profiles ORDER BY `default` DESC LIMIT 1');
}
if (empty($id)) {
print 'FATAL: No valid Data Source Profiles found on the system. Exiting!' . PHP_EOL;
exit(1);
}
if ($filename != '') {
if(file_exists($filename) && is_readable($filename)) {
$fp = fopen($filename,'r');
$xml_data = fread($fp,filesize($filename));
fclose($fp);
print 'Read ' . strlen($xml_data) . ' bytes of XML data' . PHP_EOL;
$debug_data = import_xml_data($xml_data, false, $id, $remove_orphans, $replace_svalues);
import_display_results($debug_data, array(), $preview_only);
} else {
print "ERROR: file $filename is not readable, or does not exist" . PHP_EOL . PHP_EOL;
exit(1);
}
} else {
print 'ERROR: no filename specified' . PHP_EOL . PHP_EOL;
display_help();
exit(1);
}
} else {
print 'ERROR: no parameters given' . PHP_EOL . PHP_EOL;
display_help();
exit(1);
}
/* display_version - displays version information */
function display_version() {
$version = get_cacti_cli_version();
print "Cacti Import Template Utility, Version $version, " . COPYRIGHT_YEARS . PHP_EOL;
}
function display_help() {
display_version();
print PHP_EOL;
print 'usage: import_template.php --filename=[filename] [--with-profile | --profile-id=N]' . PHP_EOL . PHP_EOL;
print 'A utility to allow Cacti Templates to be imported from the command line.' . PHP_EOL . PHP_EOL;
print 'Required:' . PHP_EOL;
print ' --filename The name of the XML file to import' . PHP_EOL . PHP_EOL;
print 'Optional:' . PHP_EOL;
print ' --preview Preview the Template Import, do not import' . PHP_EOL;
print ' --with-profile Use the default system Data Source Profile' . PHP_EOL;
print ' --profile-id=N Use the specific profile id when importing' . PHP_EOL;
print ' --remove-orphans If importing a new version of the template, old' . PHP_EOL;
print ' elements will be removed, if they do not exist' . PHP_EOL;
print ' in the new version of the template.';
print ' --replace-svalues If replacing an old version of either a Device' . PHP_EOL;
print ' Template with Data Queries or a Data Query, when' . PHP_EOL;
print ' you select this option, all Data Query Suggested' . PHP_EOL;
print ' Value Patterns will be replaced with that of the' . PHP_EOL;
print ' Package Data Queries.' . PHP_EOL . PHP_EOL;
}
|