112 lines
3.2 KiB
PHP
112 lines
3.2 KiB
PHP
<?php
|
|
//Pandora FMS- http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// 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.
|
|
|
|
require_once ("config.php");
|
|
require_once("functions_api.php");
|
|
|
|
global $config;
|
|
|
|
define("DEBUG", 0);
|
|
define("VERBOSE", 0);
|
|
|
|
|
|
enterprise_include_once ('include/functions_enterprise_api.php');
|
|
|
|
$ipOrigin = $_SERVER['REMOTE_ADDR'];
|
|
|
|
//Get the parameters and parse if necesary.
|
|
$op = get_parameter('op');
|
|
$op2 = get_parameter('op2');
|
|
$ext_name = get_parameter('ext_name');
|
|
$ext_function = get_parameter('ext_function');
|
|
$id = get_parameter('id');
|
|
$id2 = get_parameter('id2');
|
|
$otherSerialize = get_parameter('other');
|
|
$otherMode = get_parameter('other_mode', 'url_encode');
|
|
$returnType = get_parameter('return_type', 'string');
|
|
$api_password = get_parameter('apipass', '');
|
|
$password = get_parameter('pass', '');
|
|
$user = get_parameter('user', '');
|
|
|
|
$other = parseOtherParameter($otherSerialize, $otherMode);
|
|
|
|
$apiPassword = db_get_value_filter('value', 'tconfig', array('token' => 'api_password'));
|
|
|
|
$correctLogin = false;
|
|
$user_in_db = null;
|
|
$no_login_msg = "";
|
|
|
|
if (isInACL($ipOrigin)) {
|
|
if(empty($apiPassword) || (!empty($apiPassword) && $api_password === $apiPassword)) {
|
|
$user_in_db = process_user_login($user, $password, true);
|
|
|
|
if ($user_in_db !== false) {
|
|
$config['id_user'] = $user_in_db;
|
|
$correctLogin = true;
|
|
}
|
|
else {
|
|
$no_login_msg = "Incorrect user credentials";
|
|
}
|
|
}
|
|
else {
|
|
$no_login_msg = "Incorrect given API password";
|
|
}
|
|
}
|
|
else {
|
|
$no_login_msg = "IP $ipOrigin is not in ACL list";
|
|
}
|
|
|
|
if ($correctLogin) {
|
|
if (($op !== 'get') && ($op !== 'set') && ($op !== 'help'))
|
|
returnError('no_set_no_get_no_help', $returnType);
|
|
else {
|
|
$function_name = '';
|
|
|
|
// Check if is an extension function and get the function name
|
|
if ($op2 == 'extension') {
|
|
$extension_api_url = $config["homedir"]."/".EXTENSIONS_DIR."/$ext_name/$ext_name.api.php";
|
|
// The extension API file must exist and the extension must be enabled
|
|
if(file_exists($extension_api_url) && !in_array($ext_name,extensions_get_disabled_extensions())) {
|
|
include_once($extension_api_url);
|
|
$function_name = 'apiextension_'.$op.'_'.$ext_function;
|
|
}
|
|
}
|
|
else {
|
|
$function_name = 'api_'.$op.'_'.$op2;
|
|
}
|
|
|
|
// Check if the function exists
|
|
if (function_exists($function_name)) {
|
|
if (!DEBUG) {
|
|
error_reporting(0);
|
|
}
|
|
if (VERBOSE) {
|
|
error_reporting(E_ALL);
|
|
ini_set("display_errors", 1);
|
|
}
|
|
|
|
call_user_func($function_name, $id, $id2, $other, $returnType, $user_in_db);
|
|
}
|
|
else {
|
|
returnError('no_exist_operation', $returnType);
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
db_pandora_audit("API access Failed", $no_login_msg, $user, $ipOrigin);
|
|
echo 'auth error';
|
|
}
|
|
?>
|