"Fossies" - the Fresh Open Source Software archive 
Member "cacti-0.8.8a/cli/data_template_associate_rra.php" of archive cacti-0.8.8a.tar.gz:
#!/usr/bin/php -q
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2012 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/ |
+-------------------------------------------------------------------------+
*/
/* do NOT run this script through a web browser */
if (!isset ($_SERVER["argv"][0]) || isset ($_SERVER['REQUEST_METHOD']) || isset ($_SERVER['REMOTE_ADDR'])) {
die("<br><strong>This script is only meant to run at the command line.</strong>");
}
/* We are not talking to the browser */
$no_http_headers = true;
include (dirname(__FILE__) . "/../include/global.php");
/* process calling arguments */
$parms = $_SERVER["argv"];
$me = array_shift($parms);
$debug = FALSE; # no debug mode
$data_template_id = 0;
$quietMode = false;
$rra = '';
if (sizeof($parms)) {
foreach ($parms as $parameter) {
@ list ($arg, $value) = @ explode("=", $parameter);
switch ($arg) {
case "-d":
case "--debug": $debug = TRUE; break;
case "--rra": $rra = trim($value); break;
case "--data-template-id" : $data_template_id = trim($value); break;
case "-V":
case "-H":
case "--help":
case "--version": display_help($me); exit(0);
case "--quiet": $quietMode = TRUE; break;
default: echo "ERROR: Invalid Argument: ($arg)\n\n"; display_help($me); exit(1);
}
}
$data_template = db_fetch_row("SELECT * from data_template WHERE id=$data_template_id");
if (sizeof($data_template)) {
if (!$quietMode) print "Working on Data Template Id $data_template_id:" . $data_template["name"]."\n";
} else {
print "ERROR: Invalid data template id given: $data_template_id\n";
exit(1);
}
$data_rra = explode(':', $rra);
if (sizeof($data_rra)) {
foreach ($data_rra as $rra_id) {
$rra_curr = db_fetch_row("SELECT * FROM rra WHERE id=" . $rra_id);
if (sizeof($rra_curr)) {
if (!$quietMode) print "Working on RRA Id $rra_id:" . $rra_curr["name"].":".$rra_curr["x_files_factor"].":".$rra_curr["steps"].":".$rra_curr["rows"].":".$rra_curr["timespan"]."\n";
} else {
print "ERROR: Invalid rra id given: $rra_id\n";
exit(1);
}
}
associate($data_template["id"], $data_rra, $debug, $quietMode);
} else {
print "ERROR: Invalid rra definition given: $rra\n";
exit(1);
}
} else {
display_help($me);
exit (0);
}
function associate($data_template_id, $data_rra, $debug, $quiet) {
/* get a list of data sources using this template
* including the template itself */
$data_sources = db_fetch_assoc("SELECT
data_template_data.id
FROM data_template_data
WHERE data_template_id=$data_template_id");
if (sizeof($data_sources) > 0) {
foreach ($data_sources as $data_source) {
if (!$quiet) print "Working on data source id " . $data_source["id"] . "\n";
if ($debug) continue;
/* make sure to update the 'data_template_data_rra' table for each data source */
db_execute("DELETE
FROM data_template_data_rra
WHERE data_template_data_id=" . $data_source["id"]);
reset($data_rra);
if (sizeof($data_rra) > 0) {
foreach ($data_rra as $rra) {
db_execute("INSERT INTO data_template_data_rra
(data_template_data_id,rra_id)
VALUES (" . $data_source["id"] . "," . $rra . ")");
}
}
}
}
return;
}
function display_help($me) {
echo "Data Template Associate RRA Script 1.0, Copyright 2004-2012 - The Cacti Group\n\n";
echo "A simple command line utility to associate RRA definitions to a data template in Cacti\n\n";
echo "usage: $me --rra='rra-1:..:rra-n' --data-template-id=[ID]\n";
echo "Required:\n";
echo " --rra the rra ids that shall be associated, seperated by colon\n";
echo " --data-template-id the data template id\n";
}
?>