.
*
* ------------------------------------------------------------------------
*
* This file is used to manage the credentials for inventory VMWARE ESX.
*
* ------------------------------------------------------------------------
*
* @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 credentials for inventory VMWARE ESX.
*/
class PluginFusioninventoryCredential extends CommonDropdown {
/**
* Define first level menu name
*
* @var string
*/
public $first_level_menu = "admin";
/**
* Define second level menu name
*
* @var string
*/
public $second_level_menu = "pluginfusioninventorymenu";
/**
* Define third level menu name
*
* @var string
*/
public $third_level_menu = "credential";
/**
* The right name for this class
*
* @var string
*/
static $rightname = 'plugin_fusioninventory_credential';
/**
* Get name of this type by language of the user connected
*
* @param integer $nb number of elements
* @return string name of this type
*/
static function getTypeName($nb = 0) {
return __('Authentication for remote devices (VMware)', 'fusioninventory');
}
/**
* Fields added to this class
*
* @return array
*/
function getAdditionalFields() {
return [['name' => 'itemtype',
'label' => __('Type'),
'type' => 'credential_itemtype'],
['name' => 'username',
'label' => __('Login'),
'type' => 'text'],
['name' => 'password',
'label' => __('Password'),
'type' => 'password']];
}
/**
* Display specific fields
*
* @param integer $ID
* @param array $field
*/
function displaySpecificTypeField($ID, $field = []) {
switch ($field['type']) {
case 'credential_itemtype' :
$this->showItemtype($ID);
break;
}
}
/**
* DIsplay the credential itemtype
*
* @param integer $ID
*/
function showItemtype($ID) {
//Criteria already added : only display the selected itemtype
if ($ID > 0) {
$label = self::getLabelByItemtype($this->fields['itemtype']);
if ($label) {
echo $label;
echo " 'common',
'name' => __('Authentication for remote devices (VMware)', 'fusioninventory'),
];
$tab[] = [
'id' => '1',
'table' => $this->getTable(),
'field' => 'name',
'name' => __('Name'),
'datatype' => 'itemlink',
];
$tab[] = [
'id' => '2',
'table' => 'glpi_entities',
'field' => 'completename',
'name' => Entity::getTypeName(1),
'datatype' => 'dropdown',
];
$tab[] = [
'id' => '3',
'table' => $this->getTable(),
'field' => 'itemtype',
'name' => __('Type'),
'massiveaction' => false,
];
$tab[] = [
'id' => '4',
'table' => $this->getTable(),
'field' => 'username',
'name' => __('Login'),
];
return $tab;
}
/**
* Perform checks to be sure that an itemtype and at least a field are
* selected
*
* @param array $input the values to insert in DB
* @return array
*/
static function checkBeforeInsert($input) {
if ($input['password'] == '') {
unset($input['password']);
}
if (!$input['itemtype']) {
Session::addMessageAfterRedirect(
__('It\'s mandatory to select a type and at least one field'), true, ERROR);
$input = [];
}
return $input;
}
/**
* Prepare data before add to database
*
* @param array $input
* @return array
*/
function prepareInputForAdd($input) {
return self::checkBeforeInsert($input);
}
/**
* Prepare data before update in database
*
* @param array $input
* @return array
*/
function prepareInputForUpdate($input) {
return $input;
}
/**
* Get an itemtype label by the credential itemtype
*
* @param string $credential_itemtype for example PluginFusioninventoryInventoryComputerESX
* @return string|false
*/
static function getLabelByItemtype($credential_itemtype) {
$credentialtypes = self::findItemtypeType($credential_itemtype);
if (!empty($credentialtypes)) {
return $credentialtypes['name'];
}
return false;
}
/**
* Find a credential by his itemtype
*
* @param string $credential_itemtype for example PluginFusioninventoryInventoryComputerESX
* @return array
*/
static function findItemtypeType($credential_itemtype) {
$credential = ['itemtype' => 'PluginFusioninventoryInventoryComputerESX', //Credential itemtype
'name' => __('VMware host', 'fusioninventory'), //Label
'targets' => ['Computer']];
if ($credential['itemtype'] == $credential_itemtype) {
return $credential;
}
return [];
}
/**
* Get all credentials itemtypes
*
* @return array
*/
static function getCredentialsItemTypes() {
return ['PluginFusioninventoryInventoryComputerESX' =>
__('VMware host', 'fusioninventory')];
}
/**
* Get credential types
*
* @param string $itemtype
* @return array
*/
static function getForItemtype($itemtype) {
$itemtypes = [];
foreach (PluginFusioninventoryModule::getAll() as $data) {
$class= PluginFusioninventoryStaticmisc::getStaticMiscClass($data['directory']);
if (is_callable([$class, 'credential_types'])) {
foreach (call_user_func([$class, 'credential_types']) as $credential) {
if (in_array($itemtype, $credential['targets'])) {
$itemtypes[$credential['itemtype']] = $credential['name'];
}
}
}
}
return $itemtypes;
}
/**
* Display dropdown with credentials
*
* @global array $CFG_GLPI
* @param array $params
*/
static function dropdownCredentials($params = []) {
global $CFG_GLPI;
$p = [];
if ($params['id'] == -1) {
$p['value'] = '';
$p['itemtype'] = '';
$p['id'] = 0;
} else {
$credential = new PluginFusioninventoryCredential();
$credential->getFromDB($params['id']);
if ($credential->getFromDB($params['id'])) {
$p = $credential->fields;
} else {
$p['value'] = '';
$p['itemtype'] = '';
$p['id'] = 0;
}
}
$types = self::getCredentialsItemTypes();
$types[''] = Dropdown::EMPTY_VALUE;
$rand = Dropdown::showFromArray('plugin_fusioninventory_credentials_id', $types,
['value' => $p['itemtype']]);
$ajparams = ['itemtype' => '__VALUE__',
'id' => $p['id']];
$url = Plugin::getWebDir('fusioninventory')."/ajax/dropdownCredentials.php";
Ajax::updateItemOnSelectEvent("dropdown_plugin_fusioninventory_credentials_id$rand",
"span_credentials", $url, $ajparams);
echo " ";
if ($p['id']) {
self::dropdownCredentialsForItemtype($p);
}
echo "";
}
/**
* Display dropdown of credentials for itemtype
*
* @param array $params
*/
static function dropdownCredentialsForItemtype($params = []) {
if (empty($params['itemtype'])) {
return;
}
// params
// Array([itemtype] => PluginFusioninventoryInventoryComputerESX [id] => 0)
if ($params['itemtype'] == 'PluginFusioninventoryInventoryComputerESX') {
$params['itemtype'] = 'PluginFusioninventoryCredential';
}
$value = 0;
if (isset($params['id'])) {
$value = $params['id'];
}
Dropdown::show($params['itemtype'], ['entity_sons' => true,
'value' => $value]);
}
/**
* Check if there's at least one credential itemetype
*
* @return boolean
*/
static function hasAlLeastOneType() {
$types = self::getCredentialsItemTypes();
return (!empty($types));
}
/**
* Display a specific header
*/
function displayHeader() {
//Common dropdown header
parent::displayHeader();
//Fusioninventory menu
PluginFusioninventoryMenu::displayMenu("mini");
}
}