. * * ------------------------------------------------------------------------ * * This file is used to manage the static groups (add manually computers * in the group). * * ------------------------------------------------------------------------ * * @package FusionInventory * @author Alexandre Delaunay * @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 static groups (add manually computers in the group). */ class PluginFusioninventoryDeployGroup_Staticdata extends CommonDBRelation{ /** * The right name for this class * * @var string */ static $rightname = "plugin_fusioninventory_group"; /** * Itemtype for the first part of relation * * @var string */ static public $itemtype_1 = 'PluginFusioninventoryDeployGroup'; /** * id field name for the first part of relation * * @var string */ static public $items_id_1 = 'groups_id'; /** * Itemtype for the second part of relation * * @var string */ static public $itemtype_2 = 'itemtype'; /** * id field name for the second part of relation * * @var string */ static public $items_id_2 = 'items_id'; /** * Get the tab name used for item * * @param object $item the item object * @param integer $withtemplate 1 if is a template form * @return string|array name of the tab */ function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { if (!$withtemplate && ($item->getType() == 'PluginFusioninventoryDeployGroup') && $item->fields['type'] == PluginFusioninventoryDeployGroup::STATIC_GROUP) { $tabs[1] = _n('Criterion', 'Criteria', 2); $count = countElementsInTable(getTableForItemType(__CLASS__), [ 'itemtype' => 'Computer', 'plugin_fusioninventory_deploygroups_id' => $item->fields['id'], ]); if ($_SESSION['glpishow_count_on_tabs']) { $tabs[2] = self::createTabEntry(_n('Associated item', 'Associated items', $count), $count); } else { $tabs[2] = _n('Associated item', 'Associated items', $count); } $tabs[3] = __('CSV import', 'fusioninventory'); return $tabs; } return ''; } /** * Display the content of the tab * * @param object $item * @param integer $tabnum number of the tab to display * @param integer $withtemplate 1 if is a template form * @return boolean */ static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) { switch ($tabnum) { case 1: self::showCriteriaAndSearch($item); return true; case 2: self::showResults(); return true; case 3: self::csvImportForm($item); return true; } return false; } /** * Display criteria form + list of computers * * @param object $item PluginFusioninventoryDeployGroup instance */ static function showCriteriaAndSearch(PluginFusioninventoryDeployGroup $item) { // WITH checking post values $search_params = PluginFusioninventoryDeployGroup::getSearchParamsAsAnArray($item, true); //If metacriteria array is empty, remove it as it displays the metacriteria form, //and it's is not we want ! if (isset($search_params['metacriteria']) && empty($search_params['metacriteria'])) { unset($search_params['metacriteria']); } PluginFusioninventoryDeployGroup::showCriteria($item, $search_params); //Add extra parameters for massive action display : only the Add action should be displayed $search_params['massiveactionparams']['extraparams']['id'] = $item->getID(); $search_params['massiveactionparams']['extraparams']['custom_action'] = 'add_to_group'; $search_params['massiveactionparams']['extraparams']['massive_action_fields'] = ['action', 'id']; $data = Search::prepareDatasForSearch('PluginFusioninventoryComputer', $search_params); $data['itemtype'] = 'Computer'; Search::constructSQL($data); // Use our specific constructDatas function rather than Glpi function PluginFusioninventorySearch::constructDatas($data); $data['search']['target'] = PluginFusioninventoryDeployGroup::getSearchEngineTargetURL($item->getID(), false); $data['itemtype'] = 'PluginFusioninventoryComputer'; Search::displayData($data); } /** * Display result, so list of computers */ static function showResults() { if (isset($_SESSION['glpisearch']['PluginFusioninventoryComputer']) && isset($_SESSION['glpisearch']['PluginFusioninventoryComputer']['show_results'])) { $computers_params = $_SESSION['glpisearch']['PluginFusioninventoryComputer']; } $computers_params['metacriteria'] = []; $computers_params['criteria'][] = ['searchtype' => 'equals', 'value' => $_GET['id'], 'field' => 5171]; $search_params = Search::manageParams('PluginFusioninventoryComputer', $computers_params); //Add extra parameters for massive action display : only the Delete action should be displayed $search_params['massiveactionparams']['extraparams']['id'] = $_GET['id']; $search_params['massiveactionparams']['extraparams']['custom_action'] = 'delete_from_group'; $search_params['massiveactionparams']['extraparams']['massive_action_fields'] = ['action', 'id']; $data = Search::prepareDatasForSearch('PluginFusioninventoryComputer', $search_params); $data['itemtype'] = 'Computer'; Search::constructSQL($data); // Use our specific constructDatas function rather than Glpi function PluginFusioninventorySearch::constructDatas($data); $data['search']['target'] = PluginFusioninventoryDeployGroup::getSearchEngineTargetURL($_GET['id'], false); $data['itemtype'] = 'PluginFusioninventoryComputer'; Search::displayData($data); } /** * Duplicate entries from one group to another * @param $source_deploygroups_id the source group ID * @param $target_deploygroups_id the target group ID * @return the duplication status, as a boolean */ static function duplicate($source_deploygroups_id, $target_deploygroups_id) { $result = true; $pfStaticGroup = new self(); $groups = $pfStaticGroup->find(['plugin_fusioninventory_deploygroups_id' => $source_deploygroups_id]); foreach ($groups as $group) { unset($group['id']); $group['plugin_fusioninventory_deploygroups_id'] = $target_deploygroups_id; if (!$pfStaticGroup->add($group)) { $result |= false; } } return $result; } /** * Form to import computers ID in CSV file * * @since 9.2+2.0 * * @param object $item it's an instance of PluginFusioninventoryDeployGroup class * * @return boolean */ static function csvImportForm(PluginFusioninventoryDeployGroup $item) { echo "
"; echo "
"; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo "
"; echo __('Import a list of computers from a CSV file (the first column must contain the computer ID)', 'fusioninventory')." :"; echo "
"; echo Html::hidden('groups_id', ['value' => $item->getID()]); echo ""; echo " ".Html::submit(__('Import'));; echo "
"; Html::closeForm(); return true; } /** * Import into DB the computers ID * * @since 9.2+2.0 * * @param array $post_data * @param array $files_data array with information of $_FILE * * @return boolean */ static function csvImport($post_data, $files_data) { $pfDeployGroup_static = new self(); $computer = new Computer(); $input = [ 'plugin_fusioninventory_deploygroups_id' => $post_data['groups_id'], 'itemtype' => 'Computer' ]; if (isset($files_data['importcsvfile']['tmp_name'])) { if (($handle = fopen($files_data['importcsvfile']['tmp_name'], "r")) !== false) { while (($data = fgetcsv($handle, 1000, $_SESSION["glpicsv_delimiter"])) !== false) { $input['items_id'] = str_replace(' ', '', $data[0]); if ($computer->getFromDB($input['items_id'])) { $pfDeployGroup_static->add($input); } } Session::addMessageAfterRedirect(__('Computers imported successfully from CSV file', 'fusioninventory'), false, INFO); fclose($handle); } else { Session::addMessageAfterRedirect(__('Impossible to read the CSV file', 'fusioninventory'), false, ERROR); return false; } } else { Session::addMessageAfterRedirect(sprintf( __('%1$s %2$s'), "File not found", $files_data['importcsvfile']['tmp_name']), false, ERROR); return false; } return true; } }