Files
MYSOPHAL/inc/ruledictionnarysoftware.class.php
2025-08-07 13:15:31 +01:00

177 lines
5.6 KiB
PHP

<?php
/**
* ---------------------------------------------------------------------
* GLPI - Gestionnaire Libre de Parc Informatique
* Copyright (C) 2015-2020 Teclib' and contributors.
*
* http://glpi-project.org
*
* based on GLPI - Gestionnaire Libre de Parc Informatique
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI.
*
* GLPI 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.
*
* GLPI 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 GLPI. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
*/
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access this file directly");
}
/**
* Rule class store all information about a GLPI rule :
* - description
* - criterias
* - actions
**/
class RuleDictionnarySoftware extends Rule {
public $additional_fields_for_dictionnary = ['manufacturer'];
public $can_sort = true;
static $rightname = 'rule_dictionnary_software';
/**
* @see Rule::getTitle()
**/
function getTitle() {
//TRANS: plural for software
return __('Dictionnary of software');
}
/**
* @see Rule::maxActionsCount()
**/
function maxActionsCount() {
return 4;
}
/**
* @see Rule::getCriterias()
**/
function getCriterias() {
static $criterias = [];
if (count($criterias)) {
return $criterias;
}
$criterias['name']['field'] = 'name';
$criterias['name']['name'] = _n('Software', 'Software', 1);
$criterias['name']['table'] = 'glpi_softwares';
$criterias['manufacturer']['field'] = 'name';
$criterias['manufacturer']['name'] = __('Publisher');
$criterias['manufacturer']['table'] = 'glpi_manufacturers';
$criterias['entities_id']['field'] = 'completename';
$criterias['entities_id']['name'] = Entity::getTypeName(1);
$criterias['entities_id']['table'] = 'glpi_entities';
$criterias['entities_id']['type'] = 'dropdown';
$criterias['_system_category']['field'] = 'name';
$criterias['_system_category']['name'] = __('Category from inventory tool');
return $criterias;
}
/**
* @see Rule::getActions()
**/
function getActions() {
$actions = [];
$actions['name']['name'] = _n('Software', 'Software', 1);
$actions['name']['force_actions'] = ['assign', 'regex_result'];
$actions['_ignore_import']['name'] = __('To be unaware of import');
$actions['_ignore_import']['type'] = 'yesonly';
$actions['version']['name'] = _n('Version', 'Versions', 1);
$actions['version']['force_actions'] = ['assign','regex_result',
'append_regex_result'];
$actions['manufacturer']['name'] = __('Publisher');
$actions['manufacturer']['table'] = 'glpi_manufacturers';
$actions['manufacturer']['force_actions'] = ['append_regex_result', 'assign','regex_result'];
$actions['is_helpdesk_visible']['name'] = __('Associable to a ticket');
$actions['is_helpdesk_visible']['table'] = 'glpi_softwares';
$actions['is_helpdesk_visible']['type'] = 'yesno';
$actions['new_entities_id']['name'] = Entity::getTypeName(1);
$actions['new_entities_id']['table'] = 'glpi_entities';
$actions['new_entities_id']['type'] = 'dropdown';
$actions['softwarecategories_id']['name'] = __('Category');
$actions['softwarecategories_id']['type'] = 'dropdown';
$actions['softwarecategories_id']['table'] = 'glpi_softwarecategories';
$actions['softwarecategories_id']['force_actions'] = ['assign','regex_result'];
return $actions;
}
/**
* @see Rule::addSpecificParamsForPreview()
**/
function addSpecificParamsForPreview($params) {
if (isset($_POST["version"])) {
$params["version"] = $_POST["version"];
}
return $params;
}
/**
* @see Rule::showSpecificCriteriasForPreview()
**/
function showSpecificCriteriasForPreview($fields) {
if (isset($this->fields['id'])) {
$this->getRuleWithCriteriasAndActions($this->fields['id'], 0, 1);
}
//if there's a least one action with type == append_regex_result, then need to display
//this field as a criteria
foreach ($this->actions as $action) {
if ($action->fields["action_type"] == "append_regex_result") {
$value = (isset($fields[$action->fields['field']])?$fields[$action->fields['field']]:'');
//Get actions for this type of rule
$actions = $this->getActions();
//display the additionnal field
echo "<tr class='tab_bg_1'>";
echo "<td>".$this->fields['match']."</td>";
echo "<td>".$actions[$action->fields['field']]['name']."</td>";
echo "<td><input type='text' name='version' value='$value'></td></tr>";
}
}
}
}