/[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 1886 by torben, Fri Nov 30 21:41:29 2012 UTC
# Line 39  $vms_array = $xenserver->VM__get_all_rec Line 39  $vms_array = $xenserver->VM__get_all_rec
39    
40  <script type='text/javascript'>  <script type='text/javascript'>
41  $(document).ready( function() {  $(document).ready( function() {
42          loadServer();          setInterval(refreshData, 60000);        
43            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 doAction(action, uuid) {  function refreshData() {
52            $.get('ajaxdata.php', function(xml) {
53                    $(xml).find('vm').each(function() {
54                            var name = $(this).find('name').text();
55                            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(" ", "_");
62                            name = name.replace(".", "_");
63                            
64                            var id = "#vm_" + name;
65    
66                            var vm = $(id);                
67    
68                            if (state == "Running") {
69                                    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 {
78                                    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, 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                  document.body.style.cursor = 'default'                          alert(data);
                 if (data == "OK") {  
                         window.location.reload();  
105                  }                  }
106                    document.body.style.cursor = 'default'
107    
108                    refreshData();
109          });          });
110  }  }
111    
112  function console(url, session) {  function console(url, session) {
113            if (url == '')
114                    return;
115    
116          var key = prompt("Key");          var key = prompt("Key");
117          if (key == "" || key == null) {          if (key == "" || key == null) {
118                  return;                  return;
# Line 67  function console(url, session) { Line 120  function console(url, session) {
120          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;          var url = "console.php?url=" + url + "&session=" + session + "&key=" + key;
121    
122          //window.location = url;          //window.location = url;
123          $('#mainwindow').load(url);          //$('#mainwindow').load(url);
124            window.open(url);
125  }  }
126    
 function loadServer() {  
         $('#mainwindow').load('server.php');  
 }  
127    
 function loadvm(uuid) {  
         $('#mainwindow').load('vm.php?uuid=' + uuid );  
 }  
128    
129  </script>  </script>
130    
# Line 152  foreach($vms_array as $vm) { Line 200  foreach($vms_array as $vm) {
200          $harddrive_size = 0;          $harddrive_size = 0;
201          $cpu_count = $vm["VCPUs_max"];          $cpu_count = $vm["VCPUs_max"];
202    
203            $clean_name = str_replace(" ", "_", $name);
204            $clean_name = str_replace(".", "_", $clean_name);
205            
206    
207          foreach ($vm["VBDs"] as $vbds) {          foreach ($vm["VBDs"] as $vbds) {
208                  $vbd = $xenserver->VBD__get_record($vbds);                  $vbd = $xenserver->VBD__get_record($vbds);
209                  if ($vbd["type"] == 'Disk') {                  if ($vbd["type"] == 'Disk') {
# Line 160  foreach($vms_array as $vm) { Line 212  foreach($vms_array as $vm) {
212                  }                  }
213          }          }
214    
         $vps_topbg = 'vps_topyellow.png';  
215    
216          if ($state == "Running") {          
                 $vps_topbg = 'vps_topgreen.png';  
         } else if ($state == "Halted") {  
                 $vps_topbg = 'vps_topred.png';  
         }  
   
   
 //      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'>          <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'>&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'>(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'>
224                                    <span class='network'></span>
225                                    <a href='#' style='display:none;' class='console'>
226                                            <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
227                                    </a>
228                            </td>
229                  </tr>                  </tr>
230    
231                  <tr bgcolor='#eee'>                  <tr bgcolor='#eee'>
232                  <td></td>                  <td></td>
233    
234                          <td width='150' class='small'>start stop force</td>                  <td width='150' class='small'>
235                            <span class="actionstop" style='display:none'>
236                                    start |
237                                    <a href='#' onclick="doAction('shutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >stop</a> |
238                                    <a href='#' onclick="doAction('hardshutdown','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >force shutdown</a>
239                            </span>
240                            
241                            <span class="actionstart">                      
242                                    <a href='#' onclick="doAction('start','<?php echo $uuid;?>','<?php echo $clean_name;?>')" >start</a> |
243                                    stop |
244                                    force shutdown
245                            </span>
246    
247                    </td>
248    
249                  <td width='100' align='right' class='small'>                  <td width='100' align='right' class='small'>
250                          <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.1886

  ViewVC Help
Powered by ViewVC 1.1.20