Projet/Mission4/roles/glpi/files/fusioninventory/inc/inventorycomputerlibhook.class.php
2022-02-11 15:48:06 +01:00

201 lines
6.6 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 hooks for computer inventory. It's some
* other things we can do with inventory information.
*
* ------------------------------------------------------------------------
*
* @package FusionInventory
* @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
*
*/
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access directly to this file");
}
/**
* Manage the hooks for computer inventory. It's some other things we can do
* with inventory information.
*/
class PluginFusioninventoryInventoryComputerLibhook {
/**
* __contruct function where initilize sessions variables
*/
function __construct() {
if (!isset($_SESSION["plugin_fusioninventory_history_add"])) {
$_SESSION["plugin_fusioninventory_history_add"] = true;
}
if (!isset($_SESSION["plugin_fusioninventory_no_history_add"])) {
$_SESSION["plugin_fusioninventory_no_history_add"] = false;
}
$_SESSION["plugin_fusioninventory_userdefined"] = 0;
}
/**
* Define Mapping for unlock fields
*
* @return array of the mapping
*/
static function getMapping() {
$opt = [];
$i = 0;
// ** HARDWARE
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'NAME';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'name';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'OSNAME';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'operatingsystems_id';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'OSVERSION';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'operatingsystemversions_id';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'WINPRODID';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'os_licenseid';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'WINPRODKEY';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'os_license_number';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'WORKGROUP';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'domains_id';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'OSCOMMENTS';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'operatingsystemservicepacks_id';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'UUID';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'uuid';
$i++;
$opt[$i]['xmlSection'] = 'HARDWARE';
$opt[$i]['xmlSectionChild'] = 'DESCRIPTION';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'comment';
// ** USERS
$i++;
$opt[$i]['xmlSection'] = 'USERS';
$opt[$i]['xmlSectionChild'] = 'LOGIN';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'users_id';
$i++;
$opt[$i]['xmlSection'] = 'USERS';
$opt[$i]['xmlSectionChild'] = 'LOGIN';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'contact';
// ** BIOS
$i++;
$opt[$i]['xmlSection'] = 'BIOS';
$opt[$i]['xmlSectionChild'] = 'SMANUFACTURER';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'manufacturers_id';
$i++;
$opt[$i]['xmlSection'] = 'BIOS';
$opt[$i]['xmlSectionChild'] = 'SMODEL';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'computermodels_id';
$i++;
$opt[$i]['xmlSection'] = 'BIOS';
$opt[$i]['xmlSectionChild'] = 'SSN';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'serial';
$i++;
$opt[$i]['xmlSection'] = 'BIOS';
$opt[$i]['xmlSectionChild'] = 'TYPE';
$opt[$i]['glpiItemtype'] = 'Computer';
$opt[$i]['glpiField'] = 'computertypes_id';
return $opt;
}
/**
* Update model for HP for suppliertag plugin
*
* @param integer $items_id id of the computer
* @param string $partnumber HP partnumber
*/
function Suppliertag($items_id, $partnumber) {
if ($partnumber != 'Not Specified') {
$a_partnumber = explode("#", $partnumber);
$Plugin = new Plugin();
if ($Plugin->isActivated('manufacturersimports')) {
if (class_exists("PluginManufacturersimportsModel")) {
$PluginManufacturersimportsModel = new PluginManufacturersimportsModel();
$PluginManufacturersimportsModel->addModel(
['items_id' => $items_id,
'itemtype' => 'Computer',
'model_name' => $a_partnumber[0]]);
}
}
}
}
}