97 lines
3.0 KiB
PHP
97 lines
3.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* FusionInventory
|
|
*
|
|
* Copyright (C) 2010-2016 by the FusionInventory Development Team.
|
|
*
|
|
* http://www.fusioninventory.org/
|
|
* https://github.com/fusioninventory/fusioninventory-for-glpi
|
|
* http://forge.fusioninventory.org/
|
|
*
|
|
* ------------------------------------------------------------------------
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This file is part of FusionInventory project.
|
|
*
|
|
* FusionInventory is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* FusionInventory 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with FusionInventory. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* ------------------------------------------------------------------------
|
|
*
|
|
* This file is used to manage the communication with the agent.
|
|
*
|
|
* ------------------------------------------------------------------------
|
|
*
|
|
* @package FusionInventory
|
|
* @author Vincent Mazzoni
|
|
* @author David Durieux
|
|
* @copyright Copyright (c) 2010-2016 FusionInventory team
|
|
* @license AGPL License 3.0 or (at your option) any later version
|
|
* http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
* @link http://www.fusioninventory.org/
|
|
* @link https://github.com/fusioninventory/fusioninventory-for-glpi
|
|
*
|
|
*/
|
|
|
|
ob_start();
|
|
ini_set("memory_limit", "-1");
|
|
ini_set("max_execution_time", "0");
|
|
ini_set('display_errors', 1);
|
|
|
|
if (session_id()=="") {
|
|
session_start();
|
|
}
|
|
|
|
if (!defined('GLPI_ROOT')) {
|
|
include_once("../../../inc/includes.php");
|
|
}
|
|
$_SESSION['glpi_use_mode'] = Session::NORMAL_MODE;
|
|
if (!isset($_SESSION['glpilanguage'])) {
|
|
$_SESSION['glpilanguage'] = 'fr_FR';
|
|
}
|
|
$_SESSION['glpi_fusionionventory_nolock'] = true;
|
|
ini_set('display_errors', 'On');
|
|
error_reporting(E_ALL | E_STRICT);
|
|
$_SESSION['glpi_use_mode'] = 0;
|
|
$_SESSION['glpiparententities'] = '';
|
|
$_SESSION['glpishowallentities'] = true;
|
|
|
|
ob_end_clean();
|
|
header("server-type: glpi/fusioninventory ".PLUGIN_FUSIONINVENTORY_VERSION);
|
|
|
|
if (!class_exists("PluginFusioninventoryConfig")) {
|
|
header("Content-Type: application/xml");
|
|
echo "<?xml version='1.0' encoding='UTF-8'?>
|
|
<REPLY>
|
|
<ERROR>Plugin FusionInventory not installed!</ERROR>
|
|
</REPLY>";
|
|
session_destroy();
|
|
exit();
|
|
}
|
|
|
|
$pfCommunication = new PluginFusioninventoryCommunication();
|
|
|
|
if (!isset($rawdata)) {
|
|
$rawdata = file_get_contents("php://input");
|
|
}
|
|
if (isset($_GET['action']) && isset($_GET['machineid'])) {
|
|
PluginFusioninventoryCommunicationRest::handleFusionCommunication();
|
|
} else if (!empty($rawdata)) {
|
|
$pfCommunication->handleOCSCommunication($rawdata);
|
|
}
|
|
|
|
session_destroy();
|
|
|