/[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 1884 by torben, Fri Nov 30 15:54:54 2012 UTC revision 1886 by torben, Fri Nov 30 21:41:29 2012 UTC
# Line 41  $vms_array = $xenserver->VM__get_all_rec Line 41  $vms_array = $xenserver->VM__get_all_rec
41  $(document).ready( function() {  $(document).ready( function() {
42          setInterval(refreshData, 60000);                  setInterval(refreshData, 60000);        
43          refreshData();          refreshData();
44            $('.console').click( function() {
45                    var session = $(this).data('session');
46                    var conurl = $(this).data('conurl');
47                    console(conurl,session);
48            });
49  });  });
50    
51  function refreshData() {  function refreshData() {
# Line 48  function refreshData() { Line 53  function refreshData() {
53                  $(xml).find('vm').each(function() {                  $(xml).find('vm').each(function() {
54                          var name = $(this).find('name').text();                          var name = $(this).find('name').text();
55                          var state = $(this).find('state').text();                          var state = $(this).find('state').text();
56                            var network = $(this).find('network').text();
57                            var state = $(this).find('state').text();
58                            var conurl = $(this).find('conurl').text();
59                            var session = $(this).find('session').text();
60    
61                          name = name.replace(" ", "_");                          name = name.replace(" ", "_");
62                          name = name.replace(".", "_");                          name = name.replace(".", "_");
63                                                    
64                          var id = "#state_" + name;                          var id = "#vm_" + name;
65                          var css = $(id).css("background");  
66                            var vm = $(id);                
67    
68                          if (state == "Running") {                          if (state == "Running") {
69                                  $(id).css("background-image", "url('gfx/vps_topgreen.png')");                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
70                                    vm.find('.network').show();
71                                    vm.find('.network').text( '(IP: ' + network + ')' );
72                                    vm.find('.console').show();
73                                    vm.find('.console').data('conurl', conurl);
74                                    vm.find('.console').data('session', session);
75                                    vm.find('.actionstop').show();
76                                    vm.find('.actionstart').hide();
77                          } else {                          } else {
78                                  $(id).css("background-image", "url('gfx/vps_topred.png')");                                  if (state == "Halted") {
79                                            vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
80                                    } else {
81                                            vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
82                                    }
83                                    vm.find('.network').hide();
84                                    vm.find('.console').hide();
85                                    vm.find('.actionstop').hide();
86                                    vm.find('.actionstart').show();
87                          }                          }
88                                                    
89             })             })
90         });         });
91  }  }
92    
93  function doAction(action, uuid) {  function doAction(action, uuid, vm) {
94          var key = prompt("Key");          var key = prompt("Key");
95          if (key == "" || key == null) {          if (key == "" || key == null) {
96                  return;                  return;
97          }          }
98          document.body.style.cursor = 'wait';          document.body.style.cursor = 'wait';
99            $('#vm_' + vm).find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
100    
101          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;          var url = "action.php?action=" + action + "&uuid=" + uuid + "&key=" + key;
102          var response = $.get(url, function(data) {          var response = $.get(url, function(data) {
103                  alert(data);                  if (data != 'OK') {
104                            alert(data);
105                    }
106                  document.body.style.cursor = 'default'                  document.body.style.cursor = 'default'
107    
108                  refreshData();                  refreshData();
# Line 184  foreach($vms_array as $vm) { Line 212  foreach($vms_array as $vm) {
212                  }                  }
213          }          }
214    
         $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() ;  
         }  
   
215    
         $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();  
                 }  
         }  
216                    
   
   
   
 //      echo "<a href='#' onclick=\"loadvm('$uuid');\">$name</a><br>\n";  
217  ?>  ?>
218          <!-- MACHINE -->          <!-- MACHINE -->
219          <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;?>'>
220                  <tr background='gfx/vps_topbg.png'>                  <tr background='gfx/vps_topbg.png'  >
221                          <td width='10' background='gfx/<?php echo $vps_topbg; ?>' class='small' id='state_<?php echo $clean_name;?>'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
222                          <td colspan='2' class='small'><b><?php echo $name; ?></b></td>                          <td colspan='2' class='small'><b><?php echo $name; ?></b></td>
223                          <td colspan='2' class='small' align='right'>                          <td colspan='2' class='small' align='right'>
224                                  <?php echo $network;?>                                  <span class='network'></span>
225                                  <?php                                  <a href='#' style='display:none;' class='console'>
226                                  if ($url != "") {                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
227                                          echo "<a href='#' onclick=\"console('$url','$session')\"><img src='gfx/icon-terminal.png' style='vertical-align: middle;'></a>";                                  </a>
                                 }  
                                 ?>  
228                          </td>                          </td>
229                  </tr>                  </tr>
230    
# Line 237  foreach($vms_array as $vm) { Line 232  foreach($vms_array as $vm) {
232                  <td></td>                  <td></td>
233    
234                  <td width='150' class='small'>                  <td width='150' class='small'>
235                          <?php                          <span class="actionstop" style='display:none'>
236                          if ($state == "Running") {                                  start |
237                                  echo "start | ";                                  <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
238                                  echo "<a href='#' onclick=\"doAction('shutdown','$uuid')\">stop</a> | ";                                  <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
239                                  echo "<a href='#' onclick=\"doAction('hardshutdown','$uuid')\">force shutdown</a>";                          </span>
240                          } else {                          
241                                  echo "<a href='#' onclick=\"doAction('start','$uuid')\">start</a> | ";                          <span class="actionstart">                      
242                                  echo "stop | ";                                  <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
243                                  echo "force shutdown";                                  stop |
244                          }                                  force shutdown
245                          ?>                          </span>
246    
247                  </td>                  </td>
248    

Legend:
Removed from v.1884  
changed lines
  Added in v.1886

  ViewVC Help
Powered by ViewVC 1.1.20