tabs can do POST, nodes.php uses it
[plewww.git] / planetlab / nodes / node.php
1 <?php
2
3 // $Id: index.php 11577 2009-01-16 06:29:51Z thierry $
4
5 // Require login
6 require_once 'plc_login.php';
7
8 // Get session and API handles
9 require_once 'plc_session.php';
10 global $plc, $api;
11
12 // Print header
13 require_once 'plc_drupal.php';
14 include 'plc_header.php';
15
16 // Common functions
17 require_once 'plc_functions.php';
18 require_once 'plc_minitabs.php';
19 require_once 'plc_tables.php';
20
21 // tmp 
22 //require_once 'plc_sorts.php';
23 // find person roles
24 $_person= $plc->person;
25 $_roles= $_person['role_ids'];
26
27 // -------------------- 
28 // recognized URL arguments
29 $node_id=intval($_GET['id']);
30 if ( ! $node_id ) { plc_error('Malformed URL - id not set'); return; }
31
32 ////////////////////
33 // Get all columns as we focus on only one entry
34 $nodes= $api->GetNodes( array($node_id));
35
36 if (empty($nodes)) {
37   drupal_set_message ("Node " . $node_id . " not found");
38  } else {
39   $node=$nodes[0];
40     // node info
41   $hostname= $node['hostname'];
42   $boot_state= $node['boot_state'];
43   $site_id= $node['site_id'];
44   $model= $node['model'];
45   $version= $node['version'];
46   $node_type = $node['node_type'];
47
48   // arrays of ids of node info
49   $slice_ids= $node['slice_ids'];
50   $conf_file_ids= $node['conf_file_ids'];
51   $interface_ids= $node['interface_ids'];
52   $nodegroup_ids= $node['nodegroup_ids'];
53   $pcu_ids= $node['pcu_ids'];
54
55   // get peer
56   $peer_id= $node['peer_id'];
57
58   // gets site info
59   $sites= $api->GetSites( array( $site_id ) );
60   $site=$sites[0];
61   $site_name= $site['name'];
62   $site_node_ids= $site['node_ids'];
63
64   $site_node_hash=array();
65   if( !empty( $site_node_ids ) ) {
66     // get site node info basics
67     $site_nodes= $api->GetNodes( $site_node_ids );
68     
69     foreach( $site_nodes as $site_node ) {
70       $site_node_hash[$site_node['node_id']]= $site_node['hostname'];
71     }
72   }
73   
74   // gets slice info for each slice
75   if( !empty( $slice_ids ) )
76     $slices= $api->GetSlices( $slice_ids, array( "slice_id", "name" , "peer_id" ) );
77
78   // gets conf file info
79   if( !empty( $conf_file_ids ) )
80     $conf_files= $api->GetConfFiles( $conf_file_ids );
81
82   // get interface info
83   if( !empty( $interface_ids ) )
84     $interfaces= $api->GetInterfaces( $interface_ids );
85
86   // gets nodegroup info
87   if( !empty( $nodegroup_ids ) )
88     $nodegroups= $api->GetNodeGroups( $nodegroup_ids, array("groupname","tag_type_id","value"));
89
90   // xxx Thierry : disabling call to GetEvents, that gets the session deleted in the DB
91   // needs being reworked
92
93   // gets pcu and port info key to both is $pcu_id
94   if( !empty( $pcu_ids ) )
95     $PCUs= $api->GetPCUs( $pcu_ids );
96
97
98   // display node info
99   plc_peer_block_start ($peer_hash,$peer_id);
100   
101   drupal_set_title("Details for node " . $hostname);
102   
103   // extra privileges to admins, and (pi||tech) on this site
104   $extra_privileges = plc_is_admin () || ( plc_in_site($site_id) && ( plc_is_pi() || plc_is_tech()));
105   
106   $tabs=array();
107   // available actions
108   if ( ! $peer_id  && $extra_privileges ) {
109     
110     $tabs["All nodes"]=l_nodes();
111     // xxx subject to roles
112     $tabs["Add Interface"]=l_interface_add_u($node_id);
113     $tabs["Comon"]=l_comon("node_id",$node_id);
114     if ($extra_privileges) {
115       $tabs["Events"]=l_event("Node","node",$node_id);
116     }
117
118     $tabs['Update'] = array ('url'=>"/db/nodes/node_actions.php",
119                              'method'=>'POST',
120                              'values'=>array('action'=>'prompt-update','node_id'=>$node_id));
121     $tabs['Delete (no confirm)'] = array ('url'=>"/db/nodes/node_actions.php",
122                              'method'=>'POST',
123                              'values'=>array('action'=>'delete','node_id'=>$node_id));
124
125     plc_tabs($tabs);
126
127     // the javascript callback we set on the form; this
128     // (*) checks whether we clicked on 'delete'
129     // (*) in this case performs a javascript 'confirm'
130     // (*) then, notice that if we select delete, then cancel, we can select back 'Choose action' 
131     //     so submit only when value is not empty
132     $change='if (document.actions.action.value=="delete") if (! confirm("Are you sure you want to delete ' . $hostname . ' ? ") ) return false; if (document.actions.action.value!="") submit();';
133     
134   }    
135   
136   echo "<hr />";
137   echo "<table><tbody>\n";
138   
139   echo "<tr><th>Hostname: </th><td> $hostname </td></tr>\n";
140   echo "<tr><th>Type: </th><td> $node_type</td></tr>\n";
141   echo "<tr><th>Model: </th><td> $model</td></tr>\n";
142   echo "<tr><th>Version: </th><td> $version</td></tr>\n";
143     
144   echo "<tr><th>Boot State: </th><td>";
145   if ($peer_id) {
146     echo $boot_state;
147   } else {
148     echo "<form name='bootstate' action='/db/nodes/node_actions.php' method=post>\n";
149     echo "<input type=hidden name='node_id' value='$node_id'>\n";
150     echo "<input type=hidden name='action' value='boot-state'>\n";
151     echo "<select name='boot_state' onChange=\"submit();\">\n";
152
153     $states= array( 'boot'=>'Boot', 'dbg'=>'Debug', 'inst'=>'Install', 'rins'=>'Reinstall', 'rcnf'=>'Reconfigure', 'new'=>'New' );
154
155     foreach( $states as $key => $val ) {
156       echo "<option value='$key'";
157       
158       if( $key == $boot_state )
159         echo " selected";
160       
161       echo ">$val</option>\n";
162       
163     }
164   
165     echo "</select></input></form>";
166   }
167   echo "</td></tr>\n";
168
169   if ( ! $peer_id  && $extra_privileges) {
170
171     echo "<tr><th>Download </th><td>";
172     echo "<form name='download' action='/db/nodes/node_actions.php' method='post'>\n";
173     echo "<input type=hidden name='node_id' value='$node_id'></input>\n";
174     echo "<select name='action' onChange='submit();'>\n";
175     echo "<option value='' selected='selected'> Download Mode </option>\n";
176     echo "<option value='' disabled='disabled'> -- All in one images -- </option>"; 
177     echo "<option value='download-node-iso' $new_api_only> Download ISO image for $hostname</option>\n";
178     echo "<option value='download-node-usb' $new_api_only> Download USB image for $hostname</option>\n";
179     echo "<option value='' disabled='disabled'> -- Floppy + generic image -- </option>"; 
180     echo "<option value='download-node-floppy'> Download Floppy file for $hostname</option>\n";
181     echo "<option value='download-generic-iso' $new_api_only> Download generic ISO image (requires floppy) </option>\n";
182     echo "<option value='download-generic-usb' $new_api_only> Download generic USB image (requires floppy) </option>\n";
183     echo "</select></form>";
184     echo "</td></tr>\n";
185
186   }
187
188   // site info and all site nodes
189   echo "<tr><td colspan=2>&nbsp;</td></tr>\n";
190   echo "<tr><th>Site: </th><td> <a href='/db/sites/index.php?id=$site_id'>$site_name</a></td></tr>\n";
191   echo "<tr><th>All site nodes: </th><td>";
192   if (empty($site_node_hash)) {
193     echo "<span class='plc-warning'>Site has no node</span>";
194   } else {
195     foreach( $site_node_hash as $key => $val ) {
196       echo "<a href=index.php?id=$key>$val</a><br />";
197     }
198   }
199   echo "</td></tr>\n";
200
201   echo "</tbody></table><br />\n";
202     
203   //////////////////////////////////////////////////////////// interfaces
204   if ( ! $peer_id ) {
205
206     // display interfaces
207     if( ! $interfaces ) {
208       echo "<p><span class='plc-warning'>No interface</span>.  Please add an interface to make this a usable PLC node</p>.\n";
209     } else {
210       $columns=array();
211       if ( $extra_privileges ) {
212         // a single symbol, marking 'p' for primary and a delete button for non-primary
213         $columns[' ']='string';
214       }
215          
216       $columns["IP"]="IPAddress";
217       $columns["Method"]="string";
218       $columns["Type"]="string";
219       $columns["MAC"]="string";
220       $columns["bw limit"]="FileSize";
221
222       print "<hr/>\n";
223       plc_table_title('Interfaces');
224       plc_table_start("interfaces",$columns,2,false);
225         
226       foreach ( $interfaces as $interface ) {
227         $interface_id= $interface['interface_id'];
228         $interface_ip= $interface['ip'];
229         $interface_broad= $interface['broadcast'];
230         $interface_primary= $interface['is_primary'];
231         $interface_network= $interface['network'];
232         $interface_dns1= $interface['dns1'];
233         $interface_dns2= $interface['dns2'];
234         $interface_hostname= $interface['hostname'];
235         $interface_netmaks= $interface['netmask'];
236         $interface_gatewary= $interface['gateway'];
237         $interface_mac= $interface['mac'];
238         $interface_bwlimit= $interface['bwlimit'];
239         $interface_type= $interface['type'];
240         $interface_method= $interface['method'];
241
242         plc_table_row_start($interface['ip']);
243         if ( $extra_privileges ) {
244           if (!$interface_primary) {
245             // xxx 
246             plc_table_cell (plc_delete_link_button ('interfaces.php?id=' . $interface_id . '&delete=1&submitted=1', 
247                                                     '\\nInterface ' . $interface_ip));
248           } else {
249             plc_table_cell('p');
250           }
251         }
252         plc_table_cell(l_interface2($interface_id,$interface_ip));
253         plc_table_cell($interface_method);
254         plc_table_cell($interface_type);
255         plc_table_cell($interface_mac);
256         plc_table_cell($interface_bwlimit);
257         plc_table_row_end();
258       }
259       plc_table_end();
260     }
261       
262   }
263
264   //////////////////////////////////////////////////////////// slices
265   // display slices
266   $peer_hash = plc_peer_get_hash ($api);
267
268   print "<hr/>\n";
269   plc_table_title ("Slices");
270   if ( ! $slices  ) {
271     echo "<p><span class='plc-warning'>This node is not associated to any slice.</span></p>\n";
272   } else {
273     $columns=array();
274     $columns['Peer']="string";
275     $columns['Name']="string";
276     $columns['Slivers']="string";
277     plc_table_start ("slivers",$columns,1);
278
279     foreach ($slices as $slice) {
280       plc_table_row_start($slice['name']);
281       plc_table_cell (plc_peer_shortname($peer_hash,$slice['peer_id']));
282       plc_table_cell (l_slice2 ($slice['slice_id'],$slice['name']));
283       plc_table_cell (l_sliver3 ($node_id,$slice['slice_id'],'view'));
284       plc_table_row_end();
285     }
286     plc_table_end();
287   }
288
289   //////////////////////////////////////////////////////////// nodegroups
290   // display node group info
291   if ( ! $nodegroups ) {
292     echo "<p><span class='plc-warning'>This node is not in any nodegroup.</span></p>\n";
293   } else {
294     $columns=array();
295     $columns['Name']="string";
296     $columns['Tag']="string";
297     $columns['Value']="string";
298       
299     print "<hr/>\n";
300     plc_table_title("Nodegroups");
301     plc_table_start("nodegroups",$columns,0,false);
302
303     foreach( $nodegroups as $nodegroup ) {
304       plc_table_row_start();
305       plc_table_cell(l_nodegroup2($nodegroup_id,$nodegroup['groupname']));
306       $tag_types=$api->GetTagTypes(array($nodegroup['tag_type_id']));
307       plc_table_cell($tag_types[0]['tagname']);
308       plc_table_cell($nodegroup['value']);
309       plc_table_row_end();
310     }
311     plc_table_end();
312   }    
313
314   ////////////////////////////////////////////////////////////
315   plc_peer_block_end();
316 }
317
318 // Print footer
319 include 'plc_footer.php';
320
321 ?>