-
Notifications
You must be signed in to change notification settings - Fork 205
/
dc_stats.php
419 lines (392 loc) · 14.6 KB
/
dc_stats.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<?php
require_once("db.inc.php");
require_once("facilities.inc.php");
$subheader=__("Data Center Statistics");
$cab=new Cabinet();
$dc=new DataCenter();
$dev=new Device();
//setting airflow
if(isset($_POST["cabinetid"]) && isset($_POST["airflow"]) && $person->SiteAdmin){
$cab->CabinetID=$_POST["cabinetid"];
if ($cab->GetCabinet()){
if ($cab->CabRowID>0 && isset($_POST["row"]) && $_POST["row"]=="true"){
//update all row
$cabinets=$cab->GetCabinetsByRow();
foreach($cabinets as $index => $cabinet){
if ( in_array( $_POST['airflow'], array( "Top", "Bottom", "Left", "Right"))) {
// This is an update to the airflow
$cabinet->FrontEdge=$_POST["airflow"];
} else {
// This is an alignment command
switch( $_POST['airflow'] ) {
case "ATop":
$cabinet->MapY1 = $cab->MapY1;
break;
case "ALeft":
$cabinet->MapX1 = $cab->MapX1;
break;
case "ABottom":
$cabinet->MapY2 = $cab->MapY2;
break;
case "ARight":
$cabinet->MapX2 = $cab->MapX2;
break;
default:
// Update nothing, because invalid input was supplied
}
}
$cabinet->UpdateCabinet();
}
}else{
//update cabinet
$cab->FrontEdge=$_POST["airflow"];
$cab->UpdateCabinet();
}
}
exit;
}
if(isset($_POST['dc']) && (isset($_POST['getobjects']) || isset($_POST['getoverview']))){
$payload=array();
if(isset($_POST['getobjects'])){
$cab->DataCenterID=$_POST['dc'];
$zone=new Zone();
$zone->DataCenterID=$cab->DataCenterID;
$payload=array('cab'=>$cab->ListCabinetsByDC(true),'panel'=>PowerPanel::getPanelsForMap($_POST['dc']),'zone'=>$zone->GetZonesByDC(true));
}else{
$dc->DataCenterID=$_POST['dc'];
$dc->GetDataCenterByID();
$payload=$dc->GetOverview();
}
header('Content-Type: application/json');
echo json_encode($payload);
exit;
}
if(!isset($_GET["dc"])){
// No soup for you.
header('Location: '.redirect());
exit;
}
$dc->DataCenterID=$_GET["dc"];
$dc->GetDataCenterbyID();
if ( !$person->SiteAdmin && ($config->ParameterArray["GDPRCountryIsolation"] == "enabled" && ( $dc->countryCode != $person->countryCode ) ) ) {
error_log( "GDPR Isolation Enabled: User country: ".$person->countryCode." denied access to Data Center country: ".$dc->countryCode );
header('Location: '.redirect());
exit;
}
$dcStats=$dc->GetDCStatistics();
$rciStats = RCI::GetStatistics( "dc", $dc->DataCenterID );
function MakeImageMap($dc){
global $config;
$mapHTML="";
if(strlen($dc->DrawingFileName)>0){
$mapfile=$config->ParameterArray["drawingpath"] . $dc->DrawingFileName;
if(file_exists($mapfile)){
if(mime_content_type($mapfile)=='image/svg+xml'){
$svgfile = simplexml_load_file($mapfile);
$width = substr($svgfile['width'],0,4);
$height = substr($svgfile['height'],0,4);
}else{
list($width, $height, $type, $attr)=getimagesize($mapfile);
}
$mapHTML="<div class=\"canvas\" style=\"background-image: url('".urlencode($mapfile)."')\">
<img src=\"css/blank.gif\" usemap=\"#datacenter\" width=\"$width\" height=\"$height\" alt=\"clearmap over canvas\">
<map name=\"datacenter\" data-dc=$dc->DataCenterID data-zoom=1 data-x1=0 data-y1=0>
</map>
<canvas id=\"mapCanvas\" width=\"$width\" height=\"$height\"></canvas>
\n</div>\n";
}
}
return $mapHTML;
}
$height=0;
$width=0;
$ie8fix="";
if(strlen($dc->DrawingFileName) >0){
$mapfile=$config->ParameterArray["drawingpath"]."$dc->DrawingFileName";
if(file_exists($mapfile)){
if(mime_content_type($mapfile)=='image/svg+xml'){
$svgfile = simplexml_load_file($mapfile);
$width = substr($svgfile['width'],0,4);
$height = substr($svgfile['height'],0,4);
}else{
list($width, $height, $type, $attr)=getimagesize($mapfile);
}
// There is a bug in the excanvas shim that can set the width of the canvas to 10x the width of the image
$ie8fix="
<script type=\"text/javascript\">
function uselessie(){
document.getElementById(\'mapCanvas\').className = \"mapCanvasiefix\";
}
$(document).ready(function() {
uselessie();
});
</script>
<style type=\"text/css\">
.mapCanvasiefix {
width: {$width}px !important;
}
</style>";
}
}
// If no mapfile is set then we don't need the buttons to control drawing the map. Adjust the CSS to hide them and make the heading centered
if(strlen($dc->DrawingFileName) <1 || !file_exists($config->ParameterArray["drawingpath"].$dc->DrawingFileName)){
$screenadjustment="<style type=\"text/css\">.dcstats .heading > div { width: 100% !important;} .dcstats .heading > div + div { display: none; }</style>";
}
if ( $config->ParameterArray["mUnits"] == "english" ) {
$vol = __("Square Feet");
$volunit = "ft²";
$tempUnits = "F";
$density = __("Watts per Square Foot");
$densunit = "W/ft²";
} else {
$vol = __("Square Meters");
$volunit = "m²";
$tempUnits = "C";
$density = __("Watts per Square Meter" );
$densunit = "W/m²";
}
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><?php echo __("openDCIM Data Center Information Management");?></title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/print.css" type="text/css" media="print">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
<script type="text/javascript" src="scripts/common.js?v<?php echo filemtime('scripts/common.js');?>"></script>
<script type="text/javascript" src="scripts/jquery.ui-contextmenu.js"></script>
<script type="text/javascript">
var js_outlinecabinets = <?php print $config->ParameterArray["OutlineCabinets"] == 'enabled'?1:0; ?>;
var js_labelcabinets = <?php print $config->ParameterArray["LabelCabinets"] == 'enabled'?1:0; ?>;
</script>
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/ie.css" type="text/css">
<?php if(isset($ie8fix)){print $ie8fix;} ?>
<script src="scripts/excanvas.js"></script>
<![endif]-->
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="page dcstats" id="mapadjust">
<?php
include( "sidebar.inc.php" );
echo '<div class="main">
<div class="center"><div>
<div class="centermargin" id="dcstats">
<div class="table border">
<div class="title">',$dc->Name,'<span><a href="search_export.php?datacenterid=',$dc->DataCenterID,'">',__("Export"),'</a> , <a href="report_xml_CFD.php?datacenterid=',$dc->DataCenterID,'">',__("XML"),'</a></span><div class="hide" id="msg_show">',__("Click to show statistics"),'</div><div class="hide" id="msg_hide">',__("Click to hide statistics"),'</div></div>
<div>
<div></div>
<div>',__("Infrastructure"),'</div>
<div>',__("Occupied"),'</div>
<div>',__("Allocated"),'</div>
<div>',__("Available"),'</div>
</div>
<div>
<div>',sprintf(__("Total U")." %5d",$dcStats["TotalU"]),'</div>
<div align="right">',sprintf("%s",number_format($dcStats["Infrastructure"])),'</div>
<div align="right">',sprintf("%s",number_format($dcStats["Occupied"])),'</div>
<div align="right">',sprintf("%s",number_format($dcStats["Allocated"])),'</div>
<div align="right">',sprintf("%s",number_format($dcStats["Available"])),'</div>
</div>
<div>
<div>',__("Percentage"),'</div>
<div align="right">',(($dcStats["TotalU"])?sprintf("%s ",number_format($dcStats["Infrastructure"]/$dcStats["TotalU"]*100,1)):"0"),'%</div>
<div align="right">',(($dcStats["TotalU"])?sprintf("%s ",number_format($dcStats["Occupied"]/$dcStats["TotalU"]*100,1)):"0"),'%</div>
<div align="right">',(($dcStats["TotalU"])?sprintf("%s ",number_format($dcStats["Allocated"]/$dcStats["TotalU"]*100,1)):"0"),'%</div>
<div align="right">',(($dcStats["TotalU"])?sprintf("%s ",number_format($dcStats["Available"]/$dcStats["TotalU"]*100,1)):"0"),'%</div>
</div>
</div> <!-- END div.table -->
<div class="table border">
<div>
<div>',__("Delivery Address"),'</div>
<div>',$dc->DeliveryAddress,'</div>
</div>
<div>
<div>',__("Administrator"),'</div>
<div>',$dc->Administrator,'</div>
</div>
</div>
<div class="table border">
<div>
<div>',__("Computed Wattage"),'</div>
<div>',sprintf("%s",number_format($dcStats["ComputedWatts"]/1000)),' kW</div>
</div>
<div>
<div>',__("Measured Wattage"), '</div>
<div>',sprintf("%s",number_format($dcStats["MeasuredWatts"]/1000)),' kW</div>
</div>
<div>
<div>',__("Design Maximum"),'</div>
<div>',sprintf("%s",number_format($dc->MaxkW)),' kW</div>
</div>
<div>
<div>',__("BTU Computation from Computed Watts"),'</div>
<div>',sprintf("%s",number_format(($dcStats["ComputedWatts"]*3.412)/1000)),' kBTU</div>
</div>
<div>
<div>',__("Data Center Size"),'</div>
<div>',sprintf("%s %s",number_format($dc->SquareFootage), $volunit),'</div>
</div>
<div>
<div>',$density,'</div>
<div>',(($dc->SquareFootage)?sprintf("%s",number_format($dcStats["ComputedWatts"]/$dc->SquareFootage)):"0 "),' W</div>
</div>
<div>
<div>',__("Total Cabinets"),'</div>
<div>',sprintf( "%s", number_format($dcStats["TotalCabinets"]) ),'</div>
</div>
<div>
<div>',__("Minimum Cooling Tonnage (Based on Computed Watts)"),'</div>
<div>',sprintf("%s ".__("Tons"), number_format($dcStats["ComputedWatts"]*3.412*1.15/12000)),'</div>
</div>
<div>
<div>',__("Average Temperature"),'</div>
<div>',sprintf("%s %s",number_format($dcStats["AvgTemp"]), __("°". $tempUnits)),'</div>
</div>
<div>
<div>',__("Average Humidity"), '</div>
<div>',sprintf("%s %s",number_format($dcStats["AvgHumidity"]), __("%")),'</div>
</div>
<div>
<div>',__("RCI Low Percentage (Overcooling)"), '</div>
<div>',(($rciStats["TotalCabinets"])?sprintf("%s %s",
number_format($rciStats["RCILowCount"] / $rciStats["TotalCabinets"] * 100),
__("%")):"0 ".__("%")),
'</div>
</div>
<div>
<div>',__("RCI High Percentage (Cabinets Satisfied)"), '</div>
<div>',(($rciStats["TotalCabinets"])?sprintf("%s %s",
number_format((1-$rciStats["RCIHighCount"] / $rciStats["TotalCabinets"]) * 100),
__("%")):"100 ". __("%")),
'</div>
</div>
</div> <!-- END div.table -->
</div> <!-- END div.centermargin -->
<br>
<div id="maptitle"><span></span><div class="nav">';
$select="\n\t<select>\n";
foreach(array(
'overview' => __("Overview"),
'space' => __("Space"),
'weight' => __("Weight"),
'power' => __("Calculated Power"),
'realpower' => __("Measured Power"),
'temperature' => __("Temperature"),
'humidity' => __("Humidity"),
'airflow' => __("Air Flow")
) as $value => $option){
$select.="\t\t<option value=\"$value\">$option</option>\n";
}
$select.="\t</select>\n";
echo $select."</div></div><br><br>\n<div>".MakeImageMap($dc)."</div>";
echo '
</div></div>
<ul id="options" class="hide">
<li class="ui-state-disabled">',__("Set the air intake direction"),'</li>
<li>----</li>
<li><a>',__("Cabinet"),'</a>
<ul data-context="cabinet">
<li><a href="#Top">',__("Top"),'</a></li>
<li><a href="#Right">',__("Right"),'</a></li>
<li><a href="#Bottom">',__("Bottom"),'</a></li>
<li><a href="#Left">',__("Left"),'</a></li>
</ul>
</li>
<li><a href="#row">',__("Row"),'</a>
<ul data-context="row">
<li><a href="#Top">',__("Top"),'</a></li>
<li><a href="#Right">',__("Right"),'</a></li>
<li><a href="#Bottom">',__("Bottom"),'</a></li>
<li><a href="#Left">',__("Left"),'</a></li>
</ul>
</li>
<li><a href="#alignment">',__("Alignment"),'</a>
<ul data-context="alignment">
<li><a href="#ATop">',__("Align Top"),'</a></li>
<li><a href="#ALeft">',__("Align Left"),'</a></li>
<li><a href="#ABottom">',__("Align Bottom"),'</a></li>
<li><a href="#ARight">',__("Align Right"),'</a></li>
</ul>
</li>
</ul>';
?>
</div><!-- END div.main -->
</div><!-- END div.page -->
<script type="text/javascript">
// Turn the stats box at the top into a lampshade
$('#dcstats .title').css({'position':'relative'});
$('#dcstats .title > div').css({'border':'0 none','bottom':'-3px','font-size':'xx-small','position':'absolute','right':0}).hide().removeClass('hide');
$('#msg_hide').show();
$('#dcstats').outerWidth($('#dcstats').outerWidth());
$('#dcstats .title').on('click',function(e){
// this check just prevents the shade from opening / closing
// when you click the links in the box and it had a weird feel
if(e.target.nodeName != 'A'){
if($('#msg_hide').is(':visible')){
$('#msg_hide').hide();
$('#msg_show').show();
$('#dcstats > div:nth-child(n+2)').hide();
$('#dcstats > div:first-child > div:nth-child(n+2)').hide();
}else{
$('#msg_hide').show();
$('#msg_show').hide();
$('#dcstats > div:nth-child(n+2)').show();
$('#dcstats > div:first-child > div:nth-child(n+2)').show();
}
}
}).trigger('click');
$(document).ready(function() {
// Hard set widths to stop IE from being retarded
$('#mapCanvas').css('width', $('.canvas > img[alt="clearmap over canvas"]').width()+'px');
$('#mapCanvas').parent('.canvas').css('width', $('.canvas > img[alt="clearmap over canvas"]').width()+'px');
// Don't attempt to open the datacenter tree until it is loaded
function opentree(){
if($('#datacenters .bullet').length==0){
setTimeout(function(){
opentree();
},500);
}else{
var firstcabinet=$('#dc<?php echo $dc->DataCenterID;?> > ul > li:first-child').attr('id');
// If we have no children,
if (typeof firstcabinet == 'undefined') {
// use the 1st-born child of our parent: may, or may not, be us
firstcabinet=$('#dc<?php echo $dc->DataCenterID;?> ').attr('id');
}
expandToItem('datacenters',firstcabinet);
}
}
<?php
if ( $person->SiteAdmin ) {
// Only Site Administrators should even have the option to change the air flow
?>
// Bind context menu to the cabinets
$(".canvas > map").contextmenu({
delegate: "area[name^=cab]",
menu: "#options",
select: function(event, ui) {
var row=(ui.item[0].parentElement.getAttribute('data-context')=='row'||ui.item[0].parentElement.getAttribute('data-context')=='alignment')?true:false;
var cabid=ui.target[0].attributes.name.value.substr(3);
$.post('',{cabinetid: cabid, airflow: ui.cmd, row: row}).done(function(){startmap()});
},
beforeOpen: function(event, ui) {
$('#options').removeClass('hide');
$('.center .nav > select').val('airflow').trigger('change');
$(".canvas > map").contextmenu("showEntry", "row", $(ui.target).data('row'));
}
});
<?php
}
?>
// Bind tooltips, highlight functions to the map
startmap();
opentree();
});
</script>
</body>
</html>