/[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 1883 by torben, Fri Nov 30 12:05:52 2012 UTC revision 1889 by torben, Sat Dec 1 16:12:51 2012 UTC
# Line 28  include('xenapi.php'); Line 28  include('xenapi.php');
28  /* Establish session with Xenserver */  /* Establish session with Xenserver */
29  $xenserver = new XenApi($url, $login, $password);  $xenserver = new XenApi($url, $login, $password);
30    
31    $hosts_array = $xenserver->host__get_all();
32    $host = $xenserver->host__get_record($hosts_array[0]);
33    $host_metrics = $xenserver->host_metrics__get_record($host["metrics"]);
34    
35    $xenversion = $host["software_version"]["product_brand"] . " " . $host["software_version"]["product_version"];
36    $xenversion .= " / Linux:" . $host["software_version"]["linux"] . " / xen: " . $host["software_version"]["xen"] . " / xapi: " . $host["software_version"]["xapi"] ;
37    
38    $expire = split('T', $host["license_params"]["expiry"]);
39    $license = "License: " . $host["license_params"]["sku_type"] . ", expires " . $expire[0] ;
40    
41  $vms_array = $xenserver->VM__get_all_records();  $vms_array = $xenserver->VM__get_all_records();
42    
43    
# Line 39  $vms_array = $xenserver->VM__get_all_rec Line 49  $vms_array = $xenserver->VM__get_all_rec
49    
50  <script type='text/javascript'>  <script type='text/javascript'>
51  $(document).ready( function() {  $(document).ready( function() {
52          loadServer();          setInterval(refreshData, 60000);        
53            refreshData();
54            $('.console').click( function() {
55                    var session = $(this).data('session');
56                    var conurl = $(this).data('conurl');
57                    console(conurl,session);
58            });
59    
60            $('#logo').click( function() {
61                    refreshData();
62            });
63  });  });
64    
65  function doAction(action, uuid) {  function refreshData() {
66            $.get('ajaxdata.php', function(xml) {
67                    $(xml).find('host').each(function() {
68                            var memtotal = $(this).find('memtotal').text();
69                            var memfree = $(this).find('memfree').text();  
70                            memtotal = Math.round ( memtotal / (1024*1024) );
71                            memfree = Math.round ( memfree / (1024*1024) );
72                            var memused = memtotal - memfree;
73                            var mem_percentage = Math.round( (memused/memtotal) * 100);
74    
75                            //alert(memused + ' ' + mem_percentage);
76    
77                            $('#server_memory_usage').attr('src', 'usagebar.php?usage=' + mem_percentage);
78                            $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
79                    });
80                    $(xml).find('vm').each(function() {
81                            var name = $(this).find('name').text();
82                            var state = $(this).find('state').text();
83                            var network = $(this).find('network').text();
84                            var state = $(this).find('state').text();
85                            var conurl = $(this).find('conurl').text();
86                            var session = $(this).find('session').text();
87                            var os = $(this).find('os').text();
88    
89                            name = name.replace(" ", "_");
90                            name = name.replace(".", "_");
91                            
92                            var id = "#vm_" + name;
93    
94                            var vm = $(id);                
95    
96                            if (state == "Running") {
97                                    vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
98                                    vm.find('.network').show();
99                                    vm.find('.network').text( '(IP: ' + network + ')' );
100                                    vm.find('.console').show();
101                                    vm.find('.console').data('conurl', conurl);
102                                    vm.find('.console').data('session', session);
103                                    vm.find('.actionstop').show();
104                                    vm.find('.actionstart').hide();
105                                    vm.find('.os').text(' - ' + os);
106                            } else {
107                                    if (state == "Halted") {
108                                            vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
109                                    } else {
110                                            vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
111                                    }
112                                    vm.find('.network').hide();
113                                    vm.find('.console').hide();
114                                    vm.find('.actionstop').hide();
115                                    vm.find('.actionstart').show();
116                            }
117                            
118                    })
119           });
120    }
121    
122    function doAction(action, uuid, vm) {
123          var key = prompt("Key");          var key = prompt("Key");
124          if (key == "" || key == null) {          if (key == "" || key == null) {
125                  return;                  return;
126          }          }
127          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
128            $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
129    
130          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;
131          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
132                  alert(data);                  if (data != 'OK') {
133                  document.body.style.cursor = 'default'                          alert(data);
                 if (data == "OK") {  
                         window.location.reload();  
134                  }                  }
135                    document.body.style.cursor = 'default'
136    
137                    refreshData();
138          });          });
139  }  }
140    
# Line 74  function console(url, session) { Line 153  function console(url, session) {
153          window.open(url);          window.open(url);
154  }  }
155    
 function loadServer() {  
         $('#mainwindow').load('server.php');  
 }  
156    
 function loadvm(uuid) {  
         $('#mainwindow').load('vm.php?uuid=' + uuid );  
 }  
157    
158  </script>  </script>
159    
# Line 122  body { Line 195  body {
195    
196  <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'>
197  <tr>  <tr>
198          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png'></td>          <td rowspan='2' width='160'><img src='gfx/citrix-logo.png' id='logo'></td>
199          <td colspan='3' class='small' align='right'>Linux:2.6.32.12-0.7.1.xs6.0.2.542.170665xen / xen: 4.1.2 / xapi: 1.3</td>          <td colspan='4' class='small' align='right'><?php echo $xenversion;?><br><?php echo $license;?></td>
200  </tr>  </tr>
201  <tr>  <tr>
202          <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'>
203                  <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16'><div id='server_cpu_usage_txt'>12%</div></td>                  <img id='server_cpu_usage' src='usagebar.php?usage=12' width='102' height='16'><div id='server_cpu_usage_txt'>12%</div></td>
204  <!--  
205          <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'>
206                  <img id='server_memory_usage' src='usagebar.php?usage=81' width='102' height='16'><div id='server_memory_usage_txt'>4096/7912 MB</div></td>                  <img id='server_memory_usage' src='usagebar.php?usage=1' width='102' height='16'><div id='server_memory_usage_txt'>0/4 MB</div></td>
207  -->  
208          <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'>
209                  <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16'><div id='server_net_usage_txt'>1%</div></td>                  <img id='server_net_usage' src='usagebar.php?usage=41' width='102' height='16'><div id='server_net_usage_txt'>1%</div></td>
210          <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'>
# Line 156  foreach($vms_array as $vm) { Line 229  foreach($vms_array as $vm) {
229          $harddrive_size = 0;          $harddrive_size = 0;
230          $cpu_count = $vm["VCPUs_max"];          $cpu_count = $vm["VCPUs_max"];
231    
232            $clean_name = str_replace(" ", "_", $name);
233            $clean_name = str_replace(".", "_", $clean_name);
234            
235    
236          foreach ($vm["VBDs"] as $vbds) {          foreach ($vm["VBDs"] as $vbds) {
237                  $vbd = $xenserver->VBD__get_record($vbds);                  $vbd = $xenserver->VBD__get_record($vbds);
238                  if ($vbd["type"] == 'Disk') {                  if ($vbd["type"] == 'Disk') {
# Line 164  foreach($vms_array as $vm) { Line 241  foreach($vms_array as $vm) {
241                  }                  }
242          }          }
243    
         $vps_topbg = 'vps_topyellow.png';  
   
         if ($state == "Running") {  
                 $vps_topbg = 'vps_topgreen.png';  
         } else if ($state == "Halted") {  
                 $vps_topbg = 'vps_topred.png';  
         }  
   
         $network = "";  
         if ( $vm["power_state"] == "Running" && $vm["guest_metrics"] != "OpaqueRef:NULL" ) {  
                 $guest_metrics = $xenserver->VM_guest_metrics__get_record( $vm["guest_metrics"] );  
                 $network = "(IP: " . implode( ",",  $guest_metrics["networks"]) . ")";  
         } else {  
                 $guest_metrics = Array() ;  
         }  
244    
   
         $url = "";  
         $session = "";  
         foreach($vm["consoles"] as $conref) {  
                 $con = $xenserver->console__get_record( $conref );  
                 //var_dump($con);  
   
                 if ($con["protocol"] == "rfb") {  
                         $url = urlencode( $con["location"] );  
                         $session = $xenserver->get_id();  
                 }  
         }  
245                    
   
   
   
 //      echo "<a href='#' onclick=\"loadvm('$uuid');\">$name</a><br>\n";  
246  ?>  ?>
247          <!-- MACHINE -->          <!-- MACHINE -->
248          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='<?php echo $name;?>'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
249                  <tr background='gfx/vps_topbg.png'>                  <tr background='gfx/vps_topbg.png'  >
250                          <td width='10' background='gfx/<?php echo $vps_topbg; ?>' class='small'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
251                          <td colspan='2' class='small'><b><?php echo $name; ?></b></td>                          <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>
252                          <td colspan='2' class='small' align='right'>                          <td colspan='2' class='small' align='right'>
253                                  <?php echo $network;?>                                  <span class='network'></span>
254                                  <?php                                  <a href='#' style='display:none;' class='console'>
255                                  if ($url != "") {                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
256                                          echo "<a href='#' onclick=\"console('$url','$session')\"><img src='gfx/icon-terminal.png' style='vertical-align: middle;'></a>";                                  </a>
                                 }  
                                 ?>  
257                          </td>                          </td>
258                  </tr>                  </tr>
259    
# Line 217  foreach($vms_array as $vm) { Line 261  foreach($vms_array as $vm) {
261                  <td></td>                  <td></td>
262    
263                  <td width='150' class='small'>                  <td width='150' class='small'>
264                          <?php                          <span class="actionstop" style='display:none'>
265                          if ($state == "Running") {                                  start |
266                                  echo "start | ";                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
267                                  echo "<a href='#' onclick=\"doAction('shutdown','$uuid')\">stop</a> | ";                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
268                                  echo "<a href='#' onclick=\"doAction('hardshutdown','$uuid')\">force shutdown</a>";                          </span>
269                          } else {                          
270                                  echo "<a href='#' onclick=\"doAction('start','$uuid')\">start</a> | ";                          <span class="actionstart">                      
271                                  echo "stop | ";                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
272                                  echo "force shutdown";                                  stop |
273                          }                                  force shutdown
274                          ?>                          </span>
275    
276                  </td>                  </td>
277    

Legend:
Removed from v.1883  
changed lines
  Added in v.1889

  ViewVC Help
Powered by ViewVC 1.1.20