%PDF- %PDF-
| Direktori : /var/www/projetos/suporte.iigd.com.br/plugins/glpiinventory/inc/ |
| Current File : /var/www/projetos/suporte.iigd.com.br/plugins/glpiinventory/inc/collect_registry_content.class.php |
<?php
/**
* ---------------------------------------------------------------------
* GLPI Inventory Plugin
* Copyright (C) 2021 Teclib' and contributors.
*
* http://glpi-project.org
*
* based on FusionInventory for GLPI
* Copyright (C) 2010-2021 by the FusionInventory Development Team.
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI Inventory Plugin.
*
* GLPI Inventory Plugin 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.
*
* GLPI Inventory Plugin 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 GLPI Inventory Plugin. If not, see <https://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
*/
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access directly to this file");
}
/**
* Manage the registry keys found by the collect module of agent.
*/
class PluginGlpiinventoryCollect_Registry_Content extends PluginGlpiinventoryCollectContentCommon
{
public $collect_itemtype = 'PluginGlpiinventoryCollect_Registry';
public $collect_table = 'glpi_plugin_glpiinventory_collects_registries';
public $type = 'registry';
/**
* Get the tab name used for item
*
* @param CommonGLPI $item the item object
* @param integer $withtemplate 1 if is a template form
* @return string name of the tab
*/
public function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
{
/** @var CommonDBTM $item */
if ($item->fields['id'] > 0) {
if (get_class($item) == 'PluginGlpiinventoryCollect') {
if ($item->fields['type'] == 'registry') {
$a_colregs = getAllDataFromTable(
'glpi_plugin_glpiinventory_collects_registries',
['plugin_glpiinventory_collects_id' => $item->fields['id']]
);
if (count($a_colregs) == 0) {
return '';
}
$in = array_keys($a_colregs);
if (
countElementsInTable(
'glpi_plugin_glpiinventory_collects_registries_contents',
['plugin_glpiinventory_collects_registries_id' => $in]
) > 0
) {
return __('Windows registry content', 'glpiinventory');
}
}
}
}
return '';
}
/**
* Update computer registry values (add and update) related to this
* collect registry id
*
* @global object $DB
* @param integer $computers_id id of the computer
* @param array $registry_data registry info sent by agent
* @param integer $collects_registries_id id of collect_registry
*/
public function updateComputer($computers_id, $registry_data, $collects_registries_id)
{
global $DB;
$db_registries = [];
$iterator = $DB->request([
'SELECT' => ['id', 'key', 'value'],
'FROM' => 'glpi_plugin_glpiinventory_collects_registries_contents',
'WHERE' => [
'computers_id' => $computers_id,
'plugin_glpiinventory_collects_registries_id' => $collects_registries_id
]
]);
foreach ($iterator as $data) {
$idtmp = $data['id'];
unset($data['id']);
$data1 = Toolbox::addslashes_deep($data);
$db_registries[$idtmp] = $data1;
}
unset($registry_data['_sid']);
foreach ($registry_data as $key => $value) {
foreach ($db_registries as $keydb => $arraydb) {
if ($arraydb['key'] == $key) {
$input = ['key' => $arraydb['key'],
'id' => $keydb,
'value' => $value];
$this->update($input);
unset($registry_data[$key]);
unset($db_registries[$keydb]);
break;
}
}
}
foreach ($db_registries as $id => $data) {
$this->delete(['id' => $id], true);
}
foreach ($registry_data as $key => $value) {
if (preg_match("/^0x[0-9a-fA-F]{1,}$/", $value)) {
$value = hexdec($value);
}
$input = [
'computers_id' => $computers_id,
'plugin_glpiinventory_collects_registries_id' => $collects_registries_id,
'key' => $key,
'value' => $value
];
$this->add($input);
}
}
/**
* Show registries keys of the computer
*
* @param integer $computers_id id of the computer
*/
public function showForComputer($computers_id)
{
$pfCollect_Registry = new PluginGlpiinventoryCollect_Registry();
echo "<table class='tab_cadre_fixe'>";
$a_data = $this->find(
['computers_id' => $computers_id],
['plugin_glpiinventory_collects_registries_id', 'key']
);
$previous_key = 0;
foreach ($a_data as $data) {
$pfCollect_Registry->getFromDB($data['plugin_glpiinventory_collects_registries_id']);
if ($previous_key != $data['plugin_glpiinventory_collects_registries_id']) {
echo "<tr class='tab_bg_1'>";
echo '<th colspan="3">';
echo $pfCollect_Registry->fields['name'];
echo '</th>';
echo '</tr>';
echo "<tr>";
echo "<th>" . __('Path', 'glpiinventory') . "</th>";
echo "<th>" . __('Value', 'glpiinventory') . "</th>";
echo "<th>" . __('Data', 'glpiinventory') . "</th>";
echo "</tr>";
$previous_key = $data['plugin_glpiinventory_collects_registries_id'];
}
echo "<tr class='tab_bg_1'>";
echo '<td>';
echo $pfCollect_Registry->fields['hive'] .
$pfCollect_Registry->fields['path'];
echo '</td>';
echo '<td>';
echo $data['key'];
echo '</td>';
echo '<td>';
echo $data['value'];
echo '</td>';
echo "</tr>";
}
echo '</table>';
}
/**
* Display registry keys / values of collect_registry id
*
* @param integer $collects_registries_id
*/
public function showContent($collects_registries_id)
{
$pfCollect_Registry = new PluginGlpiinventoryCollect_Registry();
$computer = new Computer();
$pfCollect_Registry->getFromDB($collects_registries_id);
echo "<table class='tab_cadre_fixe'>";
echo "<tr>";
echo "<th colspan='3'>";
echo $pfCollect_Registry->fields['hive'] .
$pfCollect_Registry->fields['path'];
echo "</th>";
echo "</tr>";
echo "<tr>";
echo "<th>" . __('Computer') . "</th>";
echo "<th>" . __('Value', 'glpiinventory') . "</th>";
echo "<th>" . __('Data', 'glpiinventory') . "</th>";
echo "</tr>";
$a_data = $this->find(
['plugin_glpiinventory_collects_registries_id' => $collects_registries_id],
['key']
);
foreach ($a_data as $data) {
echo "<tr class='tab_bg_1'>";
echo '<td>';
$computer->getFromDB($data['computers_id']);
echo $computer->getLink(1);
echo '</td>';
echo '<td>';
echo $data['key'];
echo '</td>';
echo '<td>';
echo $data['value'];
echo '</td>';
echo "</tr>";
}
echo '</table>';
}
}