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

Diff of /misc/xenconsole/index.php

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

misc/xenconsole/webadmin.php revision 1876 by torben, Fri Nov 30 08:27:52 2012 UTC misc/xenconsole/index.php revision 1890 by torben, Sat Dec 1 16:17:13 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').attr('alt', mem_percentage + '%');
79                            $('#server_memory_usage').attr('title', mem_percentage + '%');
80                            $('#server_memory_usage_txt').text( memused + '/' + memtotal + 'MB');
81                    });
82                    $(xml).find('vm').each(function() {
83                            var name = $(this).find('name').text();
84                            var state = $(this).find('state').text();
85                            var network = $(this).find('network').text();
86                            var state = $(this).find('state').text();
87                            var conurl = $(this).find('conurl').text();
88                            var session = $(this).find('session').text();
89                            var os = $(this).find('os').text();
90    
91                            name = name.replace(" ", "_");
92                            name = name.replace(".", "_");
93                            
94                            var id = "#vm_" + name;
95    
96                            var vm = $(id);                
97    
98                            if (state == "Running") {
99                                    vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
100                                    vm.find('.network').show();
101                                    vm.find('.network').text( '(IP: ' + network + ')' );
102                                    vm.find('.console').show();
103                                    vm.find('.console').data('conurl', conurl);
104                                    vm.find('.console').data('session', session);
105                                    vm.find('.actionstop').show();
106                                    vm.find('.actionstart').hide();
107                                    vm.find('.os').text(' - ' + os);
108                            } else {
109                                    if (state == "Halted") {
110                                            vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
111                                    } else {
112                                            vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
113                                    }
114                                    vm.find('.network').hide();
115                                    vm.find('.console').hide();
116                                    vm.find('.actionstop').hide();
117                                    vm.find('.actionstart').show();
118                            }
119                            
120                    })
121           });
122    }
123    
124    function doAction(action, uuid, vm) {
125          var key = prompt("Key");          var key = prompt("Key");
126          if (key == "" || key == null) {          if (key == "" || key == null) {
127                  return;                  return;
128          }          }
129          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
130            $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
131    
132          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;
133          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
134                  alert(data);                  if (data != 'OK') {
135                  document.body.style.cursor = 'default'                          alert(data);
                 if (data == "OK") {  
                         window.location.reload();  
136                  }                  }
137                    document.body.style.cursor = 'default'
138    
139                    refreshData();
140          });          });
141  }  }
142    
143  function console(url, session) {  function console(url, session) {
144            if (url == '')
145                    return;
146    
147          var key = prompt("Key");          var key = prompt("Key");
148          if (key == "" || key == null) {          if (key == "" || key == null) {
149                  return;                  return;
# Line 67  function console(url, session) { Line 151  function console(url, session) {
151          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;
152    
153          //window.location = url;          //window.location = url;
154          $('#mainwindow').load(url);          //$('#mainwindow').load(url);
155            window.open(url);
156  }  }
157    
 function loadServer() {  
         $('#mainwindow').load('server.php');  
 }  
158    
 function loadvm(uuid) {  
         $('#mainwindow').load('vm.php?uuid=' + uuid );  
 }  
159    
160  </script>  </script>
161    
# Line 118  body { Line 197  body {
197    
198  <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'>
199  <tr>  <tr>
200          <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>
201          <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>
202  </tr>  </tr>
203  <tr>  <tr>
204          <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'>
205                  <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' title='static dummy data'><div id='server_cpu_usage_txt'>12%</div></td>
206  <!--  
207          <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'>
208                  <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' title='static dummy data'><div id='server_memory_usage_txt'>0/4 MB</div></td>
209  -->  
210          <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'>
211                  <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' title='static dummy data'><div id='server_net_usage_txt'>1%</div></td>
212          <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'>
213                  <img id='server_disk_usage' src='usagebar.php?usage=41' width='102' height='16'><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>
214    
215          </td>          </td>
216  </tr></table>  </tr></table>
# Line 152  foreach($vms_array as $vm) { Line 231  foreach($vms_array as $vm) {
231          $harddrive_size = 0;          $harddrive_size = 0;
232          $cpu_count = $vm["VCPUs_max"];          $cpu_count = $vm["VCPUs_max"];
233    
234            $clean_name = str_replace(" ", "_", $name);
235            $clean_name = str_replace(".", "_", $clean_name);
236            
237    
238          foreach ($vm["VBDs"] as $vbds) {          foreach ($vm["VBDs"] as $vbds) {
239                  $vbd = $xenserver->VBD__get_record($vbds);                  $vbd = $xenserver->VBD__get_record($vbds);
240                  if ($vbd["type"] == 'Disk') {                  if ($vbd["type"] == 'Disk') {
# Line 160  foreach($vms_array as $vm) { Line 243  foreach($vms_array as $vm) {
243                  }                  }
244          }          }
245    
         $vps_topbg = 'vps_topyellow.png';  
   
         if ($state == "Running") {  
                 $vps_topbg = 'vps_topgreen.png';  
         } else if ($state == "Halted") {  
                 $vps_topbg = 'vps_topred.png';  
         }  
246    
247            
 //      echo "<a href='#' onclick=\"loadvm('$uuid');\">$name</a><br>\n";  
248  ?>  ?>
249          <!-- MACHINE -->          <!-- MACHINE -->
250          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
251                  <tr background='gfx/vps_topbg.png'>                  <tr background='gfx/vps_topbg.png'  >
252                          <td width='10' background='gfx/<?php echo $vps_topbg; ?>' class='small'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
253                          <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>
254                          <td colspan='2' class='small' align='right'>(IP: 192.168.10.45, 172.10.0.34) <img src='gfx/icon-terminal.png' style='vertical-align: middle;'></td>                          <td colspan='2' class='small' align='right'>
255                                    <span class='network'></span>
256                                    <a href='#' style='display:none;' class='console'>
257                                            <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
258                                    </a>
259                            </td>
260                  </tr>                  </tr>
261    
262                  <tr bgcolor='#eee'>                  <tr bgcolor='#eee'>
263                  <td></td>                  <td></td>
264    
265                          <td width='150' class='small'>start stop force</td>                  <td width='150' class='small'>
266                            <span class="actionstop" style='display:none'>
267                                    start |
268                                    <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
269                                    <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
270                            </span>
271                            
272                            <span class="actionstart">                      
273                                    <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
274                                    stop |
275                                    force shutdown
276                            </span>
277    
278                    </td>
279    
280                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
281                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>                          <img src='gfx/icon-cpu.png' style='vertical-align: middle;'>

Legend:
Removed from v.1876  
changed lines
  Added in v.1890

  ViewVC Help
Powered by ViewVC 1.1.20