2 //Options for GLPI 0.71 and newer : need slave db to access the report
4 $DBCONNECTION_REQUIRED=0;
6 include ("../../inc/includes.php");
8 Session
::checkRight("reports", "r");
9 Session
::checkRight("computer", "r");
11 #Html::header(Report::getTypeName(2), $_SERVER['PHP_SELF'], "utils", "report");
12 Html
::header("Systèmes d'exploitation par implantation", $_SERVER['PHP_SELF'], "utils", "report");
15 $computer = new Computer();
17 $itemtype = 'Computer';
18 $table_item = getTableForItemType($itemtype);
20 //echo "<span class='big b'>Systèmes d'exploitation par implantation</span><br><br>";
21 echo "<table class='tab_cadrehov'>";
22 echo "<tr class='tab_bg_1'><th>Implantation</th><th>Système d'exploitation</th><th>Quantité</th></tr>";
23 $green_grand_total = 0;
24 $yellow_grand_total = 0;
26 $blue_grand_total = 0;
29 # parcours des régions
30 $query = "SELECT id,name,completename FROM glpi_entities WHERE (id=0 OR entities_id=0)";
31 $query .= " ".getEntitiesRestrictRequest("AND", "glpi_entities");
32 $region_result = $DB->query($query);
33 while ($region_data = $DB->fetch_assoc($region_result)) {
34 $region_id = $region_data['id'];
35 if ($region_id != 0) {
36 $region_name = getTreeLeafValueName("glpi_entities", $region_id);
38 $region_name = "AUF (non classé)";
40 echo "<tr class='tab_bg_1'><td colspan='3' class='b'>$region_name</td></tr>";
48 # operating systems per computer
49 $query = "SELECT COUNT(c.id) AS count, e.name AS ename,
50 (CASE WHEN o.name REGEXP '^Debian ' THEN SUBSTRING_INDEX(REPLACE(o.name,' GNU/Linux',''),'.',1)
51 WHEN o.name REGEXP '^Ubuntu ' THEN SUBSTRING_INDEX(REPLACE(o.name,' LTS',''),'.',2)
52 WHEN o.name REGEXP '^Microsoft' THEN REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(o.name,'™',''),'®',''),'fessional',''),'fessionnel',''),'Microsoft ','')
53 WHEN o.name REGEXP '^Mac ' THEN REPLACE(o.name,'Mac ','')
54 ELSE o.name END) AS oname
56 LEFT JOIN glpi_entities e ON (c.entities_id = e.id)
57 LEFT JOIN glpi_operatingsystems o ON (c.operatingsystems_id = o.id)
58 WHERE c.is_deleted = '0' AND c.is_template = '0'
59 ".getEntitiesRestrictRequest("AND", "c");
60 if ($region_id != 0) {
61 $query .= " AND ".getRealQueryForTreeItem("glpi_entities", $region_id, "e.id");
63 $query .= " AND e.id = '0'";
65 $query .= " GROUP BY 2,3 ORDER BY 2,3";
66 $result = $DB->query($query);
67 while ($data=$DB->fetch_assoc($result)) {
68 if (empty($data['ename'])) {
69 $data['ename'] = "<i>(indéterminé)</i>";
71 if (empty($data['oname'])) {
72 $data['oname'] = "<i>(indéterminé)</i>";
74 if (($data['oname'] == 'Debian 7') ||
($data['oname'] == 'Ubuntu 12.04')) {
75 $oname_plus = '<svg width="5" height="5" style="background-color: #00ff00; margin: 1px;"/>';
76 $green_total +
= $data['count'];
77 } elseif (($data['oname'] == 'Debian 6') ||
($data['oname'] == 'Ubuntu 10.04')) {
78 $oname_plus = '<svg width="5" height="5" style="background-color: #ffff00; margin: 1px;"/>';
79 $yellow_total +
= $data['count'];
80 } elseif ((substr($data['oname'],0,7) == 'Windows') ||
(substr($data['oname'],strlen($data['oname'])-4,4) == 'OS X')) {
81 $oname_plus = '<svg width="5" height="5" style="background-color: #0000ff; margin: 1px;"/>';
82 $blue_total +
= $data['count'];
84 $oname_plus = '<svg width="5" height="5" style="background-color: #ff0000; margin: 1px;"/>';
85 $red_total +
= $data['count'];
87 echo "<tr class='tab_bg_2 auf_show_details'>";
88 echo "<td> ".$data['ename']."</td>";
89 echo "<td>".$oname_plus." ".$data['oname']."</td>";
90 echo "<td class='numeric'>".$data['count']."</td></tr>";
91 $region_total +
= $data['count'];
94 $green_svg = '<svg width="'.(400*$green_total/$region_total).'" height="5" style="background-color: #00ff00; margin: 1px 0;"/>';
95 $yellow_svg = '<svg width="'.(400*$yellow_total/$region_total).'" height="5" style="background-color: #ffff00; margin: 1px 0;"/>';
96 $red_svg = '<svg width="'.(400*$red_total/$region_total).'" height="5" style="background-color: #ff0000; margin: 1px 0;"/>';
97 $blue_svg = '<svg width="'.(400*$blue_total/$region_total).'" height="5" style="background-color: #0000ff; margin: 1px 0;"/>';
98 echo "<tr class='tab_bg_2'><td class='b'> Sous-total</td>";
99 echo "<td>".$green_svg.$yellow_svg.$red_svg.$blue_svg."</td>";
100 echo "<td class='numeric b'>$region_total</td></tr>";
102 $green_grand_total +
= $green_total;
103 $yellow_grand_total +
= $yellow_total;
104 $red_grand_total +
= $red_total;
105 $blue_grand_total +
= $blue_total;
106 $grand_total +
= $region_total;
109 echo "<tr class='tab_bg_1'><td colspan='3'> </td></tr>";
111 # total operating systems
112 $query = "SELECT COUNT(*) FROM `".$table_item."`
113 LEFT JOIN `glpi_computers_items`
114 ON (`glpi_computers_items`.`itemtype` = '".$itemtype."'
115 AND `glpi_computers_items`.`items_id` = `".$table_item."`.`id`)
116 WHERE `".$table_item."`.`is_deleted` = '0'
117 AND `".$table_item."`.`is_template` = '0' ".
118 getEntitiesRestrictRequest("AND", $table_item);
119 $result = $DB->query($query);
120 $total = $DB->result($result, 0, 0);
122 $green_svg = '<svg width="'.(400*$green_grand_total/$grand_total).'" height="5" style="background-color: #00ff00; margin: 1px 0;"/>';
123 $yellow_svg = '<svg width="'.(400*$yellow_grand_total/$grand_total).'" height="5" style="background-color: #ffff00; margin: 1px 0;"/>';
124 $red_svg = '<svg width="'.(400*$red_grand_total/$grand_total).'" height="5" style="background-color: #ff0000; margin: 1px 0;"/>';
125 $blue_svg = '<svg width="'.(400*$blue_grand_total/$grand_total).'" height="5" style="background-color: #0000ff; margin: 1px 0;"/>';
126 echo "<tr class='tab_bg_1'><td class='b'>Total général</td>";
127 echo "<td>".$green_svg.$yellow_svg.$red_svg.$blue_svg."</td>";
128 echo "<td class='numeric b'>$total</td></tr>";