first commit
This commit is contained in:
113
ajax/map.php
Normal file
113
ajax/map.php
Normal file
@ -0,0 +1,113 @@
|
||||
<?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/>.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
include ('../inc/includes.php');
|
||||
header("Content-Type: application/json; charset=UTF-8");
|
||||
Html::header_nocache();
|
||||
|
||||
Session::checkLoginUser();
|
||||
|
||||
$result = [];
|
||||
if (!isset($_POST['itemtype']) || !isset($_POST['params'])) {
|
||||
http_response_code (500);
|
||||
$result = [
|
||||
'success' => false,
|
||||
'message' => __('Required argument missing!')
|
||||
];
|
||||
} else {
|
||||
$itemtype = $_POST['itemtype'];
|
||||
$params = $_POST['params'];
|
||||
|
||||
$data = Search::prepareDatasForSearch($itemtype, $params);
|
||||
Search::constructSQL($data);
|
||||
Search::constructData($data);
|
||||
|
||||
if ($itemtype == 'Location') {
|
||||
$lat_field = $itemtype . '_21';
|
||||
$lng_field = $itemtype . '_20';
|
||||
$name_field = $itemtype . '_1';
|
||||
} else if ($itemtype == 'Entity') {
|
||||
$lat_field = $itemtype . '_67';
|
||||
$lng_field = $itemtype . '_68';
|
||||
$name_field = $itemtype . '_1';
|
||||
} else {
|
||||
$lat_field = $itemtype . '_998';
|
||||
$lng_field = $itemtype . '_999';
|
||||
$name_field = $itemtype . '_3';
|
||||
}
|
||||
if ($itemtype == 'Ticket') {
|
||||
//duplicate search options... again!
|
||||
$name_field = $itemtype . '_83';
|
||||
}
|
||||
|
||||
$rows = $data['data']['rows'];
|
||||
$points = [];
|
||||
foreach ($rows as $row) {
|
||||
$idx = $row['raw']["ITEM_$lat_field"] . ',' . $row['raw']["ITEM_$lng_field"];
|
||||
if (isset($points[$idx])) {
|
||||
$points[$idx]['count'] += 1;
|
||||
} else {
|
||||
if ($itemtype == 'Entity') {
|
||||
$points[$idx] = [
|
||||
'lat' => $row['raw']["ITEM_$lat_field"],
|
||||
'lng' => $row['raw']["ITEM_$lng_field"],
|
||||
'title' => $row['raw']["ITEM_$name_field"],
|
||||
'count' => 1
|
||||
];
|
||||
} else {
|
||||
$points[$idx] = [
|
||||
'lat' => $row['raw']["ITEM_$lat_field"],
|
||||
'lng' => $row['raw']["ITEM_$lng_field"],
|
||||
'title' => $row['raw']["ITEM_$name_field"],
|
||||
'loc_id' => $row['raw']['loc_id'],
|
||||
'count' => 1
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
if ($itemtype == 'AllAssets') {
|
||||
$curtype = $row['TYPE'];
|
||||
if (isset($points[$idx]['types'][$curtype])) {
|
||||
$points[$idx]['types'][$curtype]['count']++;
|
||||
$points[$idx]['types'][$curtype]['name'] = strtolower($curtype::getTypeName(Session::getPluralNumber()));
|
||||
} else {
|
||||
$points[$idx]['types'][$curtype] = [
|
||||
'name' => strtolower($curtype::getTypeName(1)),
|
||||
'count' => 1
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
$result['points'] = $points;
|
||||
}
|
||||
|
||||
echo json_encode($result);
|
||||
Reference in New Issue
Block a user