first commit
This commit is contained in:
396
inc/softwareversion.class.php
Normal file
396
inc/softwareversion.class.php
Normal file
@ -0,0 +1,396 @@
|
||||
<?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");
|
||||
}
|
||||
|
||||
/**
|
||||
* SoftwareVersion Class
|
||||
**/
|
||||
class SoftwareVersion extends CommonDBChild {
|
||||
|
||||
// From CommonDBTM
|
||||
public $dohistory = true;
|
||||
|
||||
// From CommonDBChild
|
||||
static public $itemtype = 'Software';
|
||||
static public $items_id = 'softwares_id';
|
||||
|
||||
|
||||
static function getTypeName($nb = 0) {
|
||||
return _n('Version', 'Versions', $nb);
|
||||
}
|
||||
|
||||
|
||||
function cleanDBonPurge() {
|
||||
|
||||
$this->deleteChildrenAndRelationsFromDb(
|
||||
[
|
||||
Item_SoftwareVersion::class,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
function defineTabs($options = []) {
|
||||
|
||||
$ong = [];
|
||||
$this->addDefaultFormTab($ong);
|
||||
$this->addStandardTab('Item_SoftwareVersion', $ong, $options);
|
||||
$this->addStandardTab('Log', $ong, $options);
|
||||
|
||||
return $ong;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @since 0.84
|
||||
*
|
||||
* @see CommonDBTM::getPreAdditionalInfosForName
|
||||
**/
|
||||
function getPreAdditionalInfosForName() {
|
||||
|
||||
$soft = new Software();
|
||||
if ($soft->getFromDB($this->fields['softwares_id'])) {
|
||||
return $soft->getName();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Print the Software / version form
|
||||
*
|
||||
* @param $ID integer Id of the version or the template to print
|
||||
* @param $options array of possible options:
|
||||
* - target form target
|
||||
* - softwares_id ID of the software for add process
|
||||
*
|
||||
* @return true if displayed false if item not found or not right to display
|
||||
*
|
||||
**/
|
||||
function showForm($ID, $options = []) {
|
||||
if ($ID > 0) {
|
||||
$this->check($ID, READ);
|
||||
$softwares_id = $this->fields['softwares_id'];
|
||||
} else {
|
||||
$softwares_id = $options['softwares_id'];
|
||||
$this->check(-1, CREATE, $options);
|
||||
}
|
||||
|
||||
$this->showFormHeader($options);
|
||||
|
||||
echo "<tr class='tab_bg_1'><td>"._n('Software', 'Software', Session::getPluralNumber())."</td>";
|
||||
echo "<td>";
|
||||
if ($this->isNewID($ID)) {
|
||||
echo "<input type='hidden' name='softwares_id' value='$softwares_id'>";
|
||||
}
|
||||
echo "<a href='".Software::getFormURLWithID($softwares_id)."'>".
|
||||
Dropdown::getDropdownName("glpi_softwares", $softwares_id)."</a>";
|
||||
echo "</td>";
|
||||
echo "<td rowspan='4' class='middle'>".__('Comments')."</td>";
|
||||
echo "<td class='center middle' rowspan='4'>";
|
||||
echo "<textarea cols='45' rows='3' name='comment' >".$this->fields["comment"];
|
||||
echo "</textarea></td></tr>\n";
|
||||
|
||||
echo "<tr class='tab_bg_1'><td>".__('Name')."</td>";
|
||||
echo "<td>";
|
||||
Html::autocompletionTextField($this, "name");
|
||||
echo "</td></tr>\n";
|
||||
|
||||
echo "<tr class='tab_bg_1'><td>" . OperatingSystem::getTypeName(1) . "</td><td>";
|
||||
OperatingSystem::dropdown(['value' => $this->fields["operatingsystems_id"]]);
|
||||
echo "</td></tr>\n";
|
||||
|
||||
echo "<tr class='tab_bg_1'><td>" . __('Status') . "</td><td>";
|
||||
State::dropdown(['value' => $this->fields["states_id"],
|
||||
'entity' => $this->fields["entities_id"],
|
||||
'condition' => ['is_visible_softwareversion' => 1]]);
|
||||
echo "</td></tr>\n";
|
||||
|
||||
// Only count softwareversions_id_buy (don't care of softwareversions_id_use if no installation)
|
||||
if ((SoftwareLicense::countForVersion($ID) > 0)
|
||||
|| (Item_SoftwareVersion::countForVersion($ID) > 0)) {
|
||||
$options['candel'] = false;
|
||||
}
|
||||
|
||||
$this->showFormButtons($options);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
function rawSearchOptions() {
|
||||
$tab = [];
|
||||
|
||||
$tab[] = [
|
||||
'id' => 'common',
|
||||
'name' => __('Characteristics')
|
||||
];
|
||||
|
||||
$tab[] = [
|
||||
'id' => '2',
|
||||
'table' => $this->getTable(),
|
||||
'field' => 'name',
|
||||
'name' => __('Name'),
|
||||
'datatype' => 'string',
|
||||
'autocomplete' => true,
|
||||
];
|
||||
|
||||
$tab[] = [
|
||||
'id' => '4',
|
||||
'table' => 'glpi_operatingsystems',
|
||||
'field' => 'name',
|
||||
'name' => OperatingSystem::getTypeName(1),
|
||||
'datatype' => 'dropdown'
|
||||
];
|
||||
|
||||
$tab[] = [
|
||||
'id' => '16',
|
||||
'table' => $this->getTable(),
|
||||
'field' => 'comment',
|
||||
'name' => __('Comments'),
|
||||
'datatype' => 'text'
|
||||
];
|
||||
|
||||
$tab[] = [
|
||||
'id' => '31',
|
||||
'table' => 'glpi_states',
|
||||
'field' => 'completename',
|
||||
'name' => __('Status'),
|
||||
'datatype' => 'dropdown',
|
||||
'condition' => ['is_visible_softwareversion' => 1]
|
||||
];
|
||||
|
||||
$tab[] = [
|
||||
'id' => '121',
|
||||
'table' => $this->getTable(),
|
||||
'field' => 'date_creation',
|
||||
'name' => __('Creation date'),
|
||||
'datatype' => 'datetime',
|
||||
'massiveaction' => false
|
||||
];
|
||||
|
||||
return $tab;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Make a select box for software to install
|
||||
*
|
||||
* @param $options array of possible options:
|
||||
* - name : string / name of the select (default is softwareversions_id)
|
||||
* - softwares_id : integer / ID of the software (mandatory)
|
||||
* - value : integer / value of the selected version
|
||||
* - used : array / already used items
|
||||
*
|
||||
* @return integer|string
|
||||
* integer if option display=true (random part of elements id)
|
||||
* string if option display=false (HTML code)
|
||||
**/
|
||||
static function dropdownForOneSoftware($options = []) {
|
||||
global $DB;
|
||||
|
||||
//$softwares_id,$value=0
|
||||
$p['softwares_id'] = 0;
|
||||
$p['value'] = 0;
|
||||
$p['name'] = 'softwareversions_id';
|
||||
$p['used'] = [];
|
||||
$p['display_emptychoice'] = true;
|
||||
|
||||
if (is_array($options) && count($options)) {
|
||||
foreach ($options as $key => $val) {
|
||||
$p[$key] = $val;
|
||||
}
|
||||
}
|
||||
|
||||
// Make a select box
|
||||
$criteria = [
|
||||
'SELECT' => [
|
||||
'glpi_softwareversions.*',
|
||||
'glpi_states.name AS sname'
|
||||
],
|
||||
'DISTINCT' => true,
|
||||
'FROM' => 'glpi_softwareversions',
|
||||
'LEFT JOIN' => [
|
||||
'glpi_states' => [
|
||||
'ON' => [
|
||||
'glpi_softwareversions' => 'states_id',
|
||||
'glpi_states' => 'id'
|
||||
]
|
||||
]
|
||||
],
|
||||
'WHERE' => [
|
||||
'glpi_softwareversions.softwares_id' => $p['softwares_id']
|
||||
],
|
||||
'ORDERBY' => 'name'
|
||||
];
|
||||
|
||||
if (count($p['used'])) {
|
||||
$criteria['WHERE']['NOT'] = ['glpi_softwareversions.id' => $p['used']];
|
||||
}
|
||||
|
||||
$iterator = $DB->request($criteria);
|
||||
|
||||
$values = [];
|
||||
while ($data = $iterator->next()) {
|
||||
$ID = $data['id'];
|
||||
$output = $data['name'];
|
||||
|
||||
if (empty($output) || $_SESSION['glpiis_ids_visible']) {
|
||||
$output = sprintf(__('%1$s (%2$s)'), $output, $ID);
|
||||
}
|
||||
if (!empty($data['sname'])) {
|
||||
$output = sprintf(__('%1$s - %2$s'), $output, $data['sname']);
|
||||
}
|
||||
$values[$ID] = $output;
|
||||
}
|
||||
return Dropdown::showFromArray($p['name'], $values, $p);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Show Versions of a software
|
||||
*
|
||||
* @param $soft Software object
|
||||
*
|
||||
* @return void
|
||||
**/
|
||||
static function showForSoftware(Software $soft) {
|
||||
global $DB;
|
||||
|
||||
$softwares_id = $soft->getField('id');
|
||||
|
||||
if (!$soft->can($softwares_id, READ)) {
|
||||
return false;
|
||||
}
|
||||
$canedit = $soft->canEdit($softwares_id);
|
||||
|
||||
echo "<div class='spaced'>";
|
||||
|
||||
if ($canedit) {
|
||||
echo "<div class='center firstbloc'>";
|
||||
echo "<a class='vsubmit' href='".SoftwareVersion::getFormURL()."?softwares_id=$softwares_id'>".
|
||||
_x('button', 'Add a version')."</a>";
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
$iterator = $DB->request([
|
||||
'SELECT' => [
|
||||
'glpi_softwareversions.*',
|
||||
'glpi_states.name AS sname'
|
||||
],
|
||||
'FROM' => 'glpi_softwareversions',
|
||||
'LEFT JOIN' => [
|
||||
'glpi_states' => [
|
||||
'ON' => [
|
||||
'glpi_softwareversions' => 'states_id',
|
||||
'glpi_states' => 'id'
|
||||
]
|
||||
]
|
||||
],
|
||||
'WHERE' => [
|
||||
'softwares_id' => $softwares_id
|
||||
],
|
||||
'ORDERBY' => 'name'
|
||||
]);
|
||||
|
||||
Session::initNavigateListItems('SoftwareVersion',
|
||||
//TRANS : %1$s is the itemtype name,
|
||||
// %2$s is the name of the item (used for headings of a list)
|
||||
sprintf(__('%1$s = %2$s'), Software::getTypeName(1),
|
||||
$soft->getName()));
|
||||
|
||||
if (count($iterator)) {
|
||||
echo "<table class='tab_cadre_fixehov'><tr>";
|
||||
echo "<th>".self::getTypeName(Session::getPluralNumber())."</th>";
|
||||
echo "<th>".__('Status')."</th>";
|
||||
echo "<th>".OperatingSystem::getTypeName(1)."</th>";
|
||||
echo "<th>"._n('Installation', 'Installations', Session::getPluralNumber())."</th>";
|
||||
echo "<th>".__('Comments')."</th>";
|
||||
echo "</tr>\n";
|
||||
|
||||
for ($tot = $nb = 0; $data = $iterator->next(); $tot += $nb) {
|
||||
Session::addToNavigateListItems('SoftwareVersion', $data['id']);
|
||||
$nb = Item_SoftwareVersion::countForVersion($data['id']);
|
||||
|
||||
echo "<tr class='tab_bg_2'>";
|
||||
echo "<td><a href='".SoftwareVersion::getFormURLWithID($data['id'])."'>";
|
||||
echo $data['name'].(empty($data['name'])?"(".$data['id'].")":"")."</a></td>";
|
||||
echo "<td>".$data['sname']."</td>";
|
||||
echo "<td class='right'>".Dropdown::getDropdownName('glpi_operatingsystems',
|
||||
$data['operatingsystems_id']);
|
||||
echo "</td>";
|
||||
echo "<td class='numeric'>$nb</td>";
|
||||
echo "<td>".nl2br($data['comment'])."</td></tr>\n";
|
||||
}
|
||||
|
||||
echo "<tr class='tab_bg_1 noHover'><td class='right b' colspan='3'>".__('Total')."</td>";
|
||||
echo "<td class='numeric b'>$tot</td><td></td></tr>";
|
||||
echo "</table>\n";
|
||||
|
||||
} else {
|
||||
echo "<table class='tab_cadre_fixe'>";
|
||||
echo "<tr><th>".__('No item found')."</th></tr>";
|
||||
echo "</table>\n";
|
||||
}
|
||||
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
|
||||
function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) {
|
||||
|
||||
if (!$withtemplate) {
|
||||
$nb = 0;
|
||||
switch ($item->getType()) {
|
||||
case 'Software' :
|
||||
if ($_SESSION['glpishow_count_on_tabs']) {
|
||||
$nb = countElementsInTable($this->getTable(), ['softwares_id' => $item->getID()]);
|
||||
}
|
||||
return self::createTabEntry(self::getTypeName(Session::getPluralNumber()), $nb);
|
||||
}
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) {
|
||||
|
||||
if ($item->getType() == 'Software') {
|
||||
self::showForSoftware($item);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user