/[projects]/misc/xenconsole/index.php
ViewVC logotype

Diff of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1894 by torben, Mon Dec 3 15:01:45 2012 UTC revision 1957 by torben, Tue Mar 26 13:15:05 2013 UTC
# Line 40  $license = "License: " . $host["license_ Line 40  $license = "License: " . $host["license_
40    
41  $vms_array = $xenserver->VM__get_all_records();  $vms_array = $xenserver->VM__get_all_records();
42    
43    $namelabel = $host["name_label"];
44    
45  ?>  ?>
46  <html>  <html>
47  <head>  <head>
48  <title>XenServer::SERVER</title>  <title>XenServer::<?php echo $namelabel;?></title>
49  <script type='text/javascript' src="jquery-1.8.2.min.js"></script>  
50    <link rel="stylesheet" type="text/css" href="jquery/theme/jquery-ui.css">
51    <style>
52    .ui-menu {
53            width: 200px;
54    }
55    </style>
56    <script type='text/javascript' src="jquery/jquery-1.9.1.min.js"></script>
57    <script type='text/javascript' src="jquery/jquery-ui-1.10.2.min.js"></script>
58    
59  <script type='text/javascript'>  <script type='text/javascript'>
60    var menu = 0;
61    
62  $(document).ready( function() {  $(document).ready( function() {
63            $("#menu").hide();
64          setInterval(refreshData, 60000);                  setInterval(refreshData, 60000);        
65          refreshData();          refreshData();
66          $('.console').click( function() {          $('.console').click( function() {
67                  var session = $(this).data('session');                  var session = $(this).data('session');
68                  var conurl = $(this).data('conurl');                  var conurl = $(this).data('conurl');
69                  console(conurl,session);                  var name = $(this).data('name');
70                    openConsole(conurl,session,name);
71          });          });
72    
73          $('#logo').click( function() {          $('#logo').click( function() {
74                  refreshData();                  refreshData();
75          });          });
76    
77            $('.settings').click( function(event) {
78    
79                    $('#menu').menu( {
80                            select: function(event2,ui) {
81                                            alert( ui.item.text() );
82                                    },
83                            create: function(event3,ui) {
84                                    menu = 1;
85                                    }
86                            /*position: {
87                                    my: "left", of: event
88                            }*/
89                    });
90                    $('#menu').show().position( {my: "left top", of: event} );
91                    event.stopPropagation();
92            });
93    
94            $(document).click( function(event) {
95                    closeMenu();
96            });
97    
98  });  });
99    
100    function closeMenu() {
101            if (menu > 0) {
102                    $("#menu").menu("destroy").hide();
103                    menu = 0;
104            }
105    }
106    
107  function refreshData() {  function refreshData() {
108          $("#logo").hide();                $("#logo").hide();      
109          $.get('ajaxdata.php', function(xml) {          $.get('ajaxdata.php', function(xml) {
# Line 96  function refreshData() { Line 138  function refreshData() {
138                          var conurl = $(this).find('conurl').text();                          var conurl = $(this).find('conurl').text();
139                          var session = $(this).find('session').text();                          var session = $(this).find('session').text();
140                          var os = $(this).find('os').text();                          var os = $(this).find('os').text();
141                            var guestversion = $(this).find('guestversion').text();
142                          var cpuavg = $(this).find('cpuavg').text();                          var cpuavg = $(this).find('cpuavg').text();
143                            var curmem = $(this).find('curmem').text();
144                            var maxmem = $(this).find('maxmem').text();
145    
146                            var mempercent = Math.round( (curmem*100) / maxmem );
147    
148                          name = name.replace(" ", "_");                          name = name.replace(" ", "_");
149                          name = name.replace(".", "_");                          name = name.replace(".", "_");
# Line 105  function refreshData() { Line 152  function refreshData() {
152    
153                          var vm = $(id);                                          var vm = $(id);                
154    
155                            if (guestversion != '') {
156                                    os += ' Guest Tools: ' + guestversion;
157                            }
158    
159                            vm.find('.vps_memory_usage_txt_UID').text( maxmem + " MB");
160    
161                          if (state == "Running") {                          if (state == "Running") {
162                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
163                                  vm.find('.network').show();                                  vm.find('.network').show();
# Line 112  function refreshData() { Line 165  function refreshData() {
165                                  vm.find('.console').show();                                  vm.find('.console').show();
166                                  vm.find('.console').data('conurl', conurl);                                  vm.find('.console').data('conurl', conurl);
167                                  vm.find('.console').data('session', session);                                  vm.find('.console').data('session', session);
168                                    vm.find('.console').data('name', name);
169                                    vm.find('.settings').hide();
170                                  vm.find('.actionstop').show();                                  vm.find('.actionstop').show();
171                                  vm.find('.actionstart').hide();                                  vm.find('.actionstart').hide();
172                                  vm.find('.os').text(' - ' + os);                                  vm.find('.os').text(' - ' + os);
# Line 120  function refreshData() { Line 175  function refreshData() {
175                                  vm.find('.cpu_graph').show();                                  vm.find('.cpu_graph').show();
176                                  vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);                                  vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);
177                                  vm.find('.cpu_graph').attr('title',  cpuavg + '%');                                  vm.find('.cpu_graph').attr('title',  cpuavg + '%');
178    
179                                  vm.find('.mem_graph').show();                                  vm.find('.mem_graph').show();
180                                    vm.find('.mem_graph').attr('src', 'usagebar.php?usage=' + mempercent);
181                                    vm.find('.mem_graph').attr('title',  curmem + ' / ' + maxmem + ' MB' );
182                          } else {                          } else {
183                                  if (state == "Halted") {                                  if (state == "Halted") {
184                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
185                                  } else {                                  } else {
186                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
187                                  }                                  }
188                                    vm.find('.os').text('');
189    
190                                  vm.find('.network').hide();                                  vm.find('.network').hide();
191                                  vm.find('.console').hide();                                  vm.find('.console').hide();
192                                    vm.find('.settings').show();
193                                  vm.find('.actionstop').hide();                                  vm.find('.actionstop').hide();
194                                  vm.find('.actionstart').show();                                  vm.find('.actionstart').show();
195                                  vm.find('.cpu_graph').hide();                                  vm.find('.cpu_graph').hide();
# Line 141  function refreshData() { Line 202  function refreshData() {
202  }  }
203    
204  function doAction(action, uuid, vm) {  function doAction(action, uuid, vm) {
205            var val="";
206    
207          var key = prompt("Key");          var key = prompt("Key");
208          if (key == "" || key == null) {          if (key == "" || key == null) {
209                  return;                  return;
# Line 148  function doAction(action, uuid, vm) { Line 211  function doAction(action, uuid, vm) {
211          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
212          $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");          $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
213    
214          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          if (action == "setMemory") {
215                    val = prompt("Set memory target");
216                    if (val == "" || val == null) {
217                            alert("" + val);
218                            return;
219                    }
220            }
221    
222            var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key + "&val=" + val;;
223          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
224                  if (data != 'OK') {                  if (data != 'OK') {
225                          alert(data);                          alert(data);
# Line 159  function doAction(action, uuid, vm) { Line 230  function doAction(action, uuid, vm) {
230          });          });
231  }  }
232    
233  function console(url, session) {  function openConsole(url, session, name) {
234          if (url == '')          if (url == '')
235                  return;                  return;
236    
# Line 167  function console(url, session) { Line 238  function console(url, session) {
238          if (key == "" || key == null) {          if (key == "" || key == null) {
239                  return;                  return;
240          }          }
241          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key + "&name=" + name;
242    
243          //window.location = url;          //window.location = url;
244          //$('#mainwindow').load(url);          //$('#mainwindow').load(url);
# Line 217  body { Line 288  body {
288  <table width='100%' background='gfx/topbg.png' cellpadding='3' cellspacing='0' border='0' class='toptable'>  <table width='100%' background='gfx/topbg.png' cellpadding='3' cellspacing='0' border='0' class='toptable'>
289  <tr>  <tr>
290          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>
291          <td colspan='4' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></td>          <td colspan='4' class='small' align='right'><?php echo $namelabel . " / " . $xenversion;?><br><?php echo $license;?></td>
292  </tr>  </tr>
293  <tr>  <tr>
294    <td width='150'></td>
295    <td width='150'></td>
296          <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-cpu.png'>
297                  <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16' title='static dummy data'><div id='server_cpu_usage_txt'>12%</div></td>                  <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16' title='static dummy data'><div id='server_cpu_usage_txt'>12%</div></td>
298    
299          <td width='150' align='right' class='small'><img src='gfx/icon-memory.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-memory.png'>
300                  <img id='server_memory_usage' src='usagebar.php?usage=1' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>0/4 MB</div></td>                  <img id='server_memory_usage' src='usagebar.php?usage=1' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>0/4 MB</div></td>
301    <!--
302          <td width='150' align='right' class='small'><img src='gfx/icon-network.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-network.png'>
303                  <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_net_usage_txt'>1%</div></td>                  <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_net_usage_txt'>1%</div></td>
304          <td width='150' align='right' class='small'><img src='gfx/icon-disk.png'>          <td width='150' align='right' class='small'><img src='gfx/icon-disk.png'>
305                  <img id='server_disk_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>89.3/405.5 GB</div></td>                  <img id='server_disk_usage' src='usagebar.php?usage=41' width='102' height='16' title='static dummy data'><div id='server_memory_usage_txt'>89.3/405.5 GB</div></td>
   
306          </td>          </td>
307    -->
308  </tr></table>  </tr></table>
309    
310    
# Line 244  foreach($vms_array as $vm) { Line 317  foreach($vms_array as $vm) {
317          }          }
318    
319          $name = $vm["name_label"];          $name = $vm["name_label"];
320            $description = $vm["name_description"];
321          $uuid = $vm["uuid"];          $uuid = $vm["uuid"];
322          $state = $vm["power_state"] ;          $state = $vm["power_state"] ;
323          $memory = $vm['memory_target'];          $memory = $vm['memory_target'];
# Line 269  foreach($vms_array as $vm) { Line 343  foreach($vms_array as $vm) {
343          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
344                  <tr background='gfx/vps_topbg.png'  >                  <tr background='gfx/vps_topbg.png'  >
345                          <td width='10' class='small state'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
346                          <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>                          <td colspan='2' class='small' title='<?php echo $description;?>'><b><?php echo $name; ?></b><span class='os'></span></td>
347                          <td colspan='2' class='small' align='right'>                          <td colspan='2' class='small' align='right'>
348                                  <span class='network'></span>                                  <span class='network'></span>
349                                  <a href='#' style='display:none;' class='console'>                                  <a href='#' style='display:none;' class='console'>
350                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
351                                  </a>                                  </a>
352                                    <a href='#' style='display:none;' class='settings'>
353                                            <img src='gfx/icon-settings16.png' style='vertical-align: middle;'>
354                                    </a>
355                          </td>                          </td>
356                  </tr>                  </tr>
357    
# Line 285  foreach($vms_array as $vm) { Line 362  foreach($vms_array as $vm) {
362                          <span class="actionstop" style='display:none'>                          <span class="actionstop" style='display:none'>
363                                  start |                                  start |
364                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
365                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a> |
366                                    set memory
367                          </span>                          </span>
368                                                    
369                          <span class="actionstart">                                                <span class="actionstart">                      
370                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
371                                  stop |                                  stop |
372                                  force shutdown                                  force shutdown |
373    
374                                    <a href='#' onclick="doAction('setMemory','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >set memory</a>
375                          </span>                          </span>
376    
377                  </td>                  </td>
# Line 304  foreach($vms_array as $vm) { Line 384  foreach($vms_array as $vm) {
384                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
385                          <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>                          <img src='usagebar.php?usage=1' width='102' height='16' title='static dummy data' class='mem_graph'><br>
386                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>                          <img src='gfx/icon-memory.png' style='vertical-align: middle;'>
387                          <span id='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>                          <span class='vps_memory_usage_txt_UID'><?php echo format_memory($memory); ?></span>
388                  </td>                  </td>
389  <!--  <!--
390                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
# Line 312  foreach($vms_array as $vm) { Line 392  foreach($vms_array as $vm) {
392                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
393                  </td>                  </td>
394  -->  -->
395                  <td width='100' align='right' class='small' valign='top'>                  <td width='100' align='right' class='small' valign='bottom'>
396                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
397                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>
398                  </td>                  </td>
# Line 324  foreach($vms_array as $vm) { Line 404  foreach($vms_array as $vm) {
404    
405  <?PHP } ?>  <?PHP } ?>
406  </td></tr></table>  </td></tr></table>
407    
408    <br>
409    
410    <ul id="menu">
411            <li><a href="#">Set Memory Size</a></li>
412            <li><a href="#">Set CPU Count</a></li>
413    
414    
415    <!--    <li><a href="#">Item 3</a>
416                    <ul>
417                            <li><a href="#">Item 3-1</a></li>
418                            <li><a href="#">Item 3-2</a></li>
419                            <li><a href="#">Item 3-3</a></li>
420                            <li><a href="#">Item 3-4</a></li>
421                            <li><a href="#">Item 3-5</a></li>
422                    </ul>
423            </li>
424            <li><a href="#">Item 4</a></li>
425            <li><a href="#">Item 5</a></li>-->
426    </ul>
427    
428  </body></html>  </body></html>
429    

Legend:
Removed from v.1894  
changed lines
  Added in v.1957

  ViewVC Help
Powered by ViewVC 1.1.20