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
|
<?php
/*
* Copyright 2005-2016 OCSInventory-NG/OCSInventory-ocsreports contributors.
* See the Contributors file for more details about them.
*
* This file is part of OCSInventory-NG/OCSInventory-ocsreports.
*
* OCSInventory-NG/OCSInventory-ocsreports 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.
*
* OCSInventory-NG/OCSInventory-ocsreports 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.
*
* You should have received a copy of the GNU General Public License
* along with OCSInventory-NG/OCSInventory-ocsreports. if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
require_once('require/function_config_generale.php');
/**
* @param unknown $name : PluginName
* @param unknown $action : Possible actions => delete (0) and install (1)
*/
function exec_plugin_soap_client($name, $action) {
global $l;
if (class_exists('SoapClient')) {
plugin_soap_client($name, $action);
} else {
msg_error($l->g(6006));
}
}
function plugin_soap_client($name, $action) {
global $l;
$champs = array('OCS_SERVER_ADDRESS' => 'OCS_SERVER_ADDRESS');
$values = look_config_default_values($champs);
$address = $values['tvalue']['OCS_SERVER_ADDRESS'];
if ($action == 1) {
$method = "InstallPlugins";
} else {
$method = "DeletePlugins";
}
$isHttps = ($_SERVER['REQUEST_SCHEME'] === 'https') ? true : false;
$client = new SoapClient(null, array(
'location' => "http" . ($isHttps ? 's' : '') . "://$address/ocsplugins",
'uri' => "http" . ($isHttps ? 's' : '') . "://$address/Apache/Ocsinventory/Plugins/Modules",
));
$request = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>
<soap:Envelope
soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<soap:Body>
<$method xmlns='http://$address/Apache/Ocsinventory/Plugins/Modules'><c-gensym3 xsi:type='xsd:string'>$name</c-gensym3></$method>
</soap:Body>
</soap:Envelope>";
$output = $client->__doRequest($request, "http://$address" . PLUGIN_WS_URL, "http://$address/Apache/Ocsinventory/Plugins/Modules#$method", "1.1");
//TODO : parse the output and check if the communication serveur has been successfully installed
$xml_response = $output;
// Clean soap xml output
$clean_xml = str_ireplace(array('SOAP-ENV:', 'SOAP:'), '', $xml_response);
$xml = simplexml_load_string($clean_xml);
// TODO : Create a specific page for ALL help links
$help_link = "https://github.com/OCSInventory-NG/OCSInventory-ocsreports/wiki/Plugins-Engine-:-Web-service-error-codes";
if ($action == 1) {
$soap_return_value = $xml->Body->InstallPluginsResponse->Result;
if ($soap_return_value != "Install_OK") {
msg_warning($l->g(6010) . " " . $soap_return_value . "<br><a href=$help_link>" . $l->g(6011) . " </a>");
}
}
}
?>
|