tabs reordered, and delete needs confirmation
[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['Update'] = array ('url'=>"/db/nodes/node_actions.php",
111                              'method'=>'POST',
112                              'values'=>array('action'=>'prompt-update','node_id'=>$node_id));
113     $tabs['Delete'] = array ('url'=>"/db/nodes/node_actions.php",
114                              'method'=>'POST',
115                              'values'=>array('action'=>'delete','node_id'=>$node_id),
116                              'confirm'=>'Are you sure to delete ' . $hostname. ' ?');
117     // xxx subject to roles
118     $tabs["Add Interface"]=l_interface_add_u($node_id);
119     $tabs["Comon"]=l_comon("node_id",$node_id);
120     $tabs["Events"]=l_event("Node","node",$node_id);
121
122     $tabs["All nodes"]=l_nodes();
123
124     plc_tabs($tabs);
125
126     // the javascript callback we set on the form; this
127     // (*) checks whether we clicked on 'delete'
128     // (*) in this case performs a javascript 'confirm'
129     // (*) then, notice that if we select delete, then cancel, we can select back 'Choose action' 
130     //     so submit only when value is not empty
131     $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();';
132     
133   }    
134   
135   echo "<hr />";
136   echo "<table><tbody>\n";
137   
138   echo "<tr><th>Hostname: </th><td> $hostname </td></tr>\n";
139   echo "<tr><th>Type: </th><td> $node_type</td></tr>\n";
140   echo "<tr><th>Model: </th><td> $model</td></tr>\n";
141   echo "<tr><th>Version: </th><td> $version</td></tr>\n";
142     
143   echo "<tr><th>Boot State: </th><td>";
144   if ($peer_id) {
145     echo $boot_state;
146   } else {
147     echo "<form name='bootstate' action='/db/nodes/node_actions.php' method=post>\n";
148     echo "<input type=hidden name='node_id' value='$node_id'>\n";
149     echo "<input type=hidden name='action' value='boot-state'>\n";
150     echo "<select name='boot_state' onChange=\"submit();\">\n";
151
152     $states= array( 'boot'=>'Boot', 'dbg'=>'Debug', 'inst'=>'Install', 'rins'=>'Reinstall', 'rcnf'=>'Reconfigure', 'new'=>'New' );
153
154     foreach( $states as $key => $val ) {
155       echo "<option value='$key'";
156       
157       if( $key == $boot_state )
158         echo " selected";
159       
160       echo ">$val</option>\n";
161       
162     }
163   
164     echo "</select></input></form>";
165   }
166   echo "</td></tr>\n";
167
168   if ( ! $peer_id  && $extra_privileges) {
169
170     echo "<tr><th>Download </th><td>";
171     echo "<form name='download' action='/db/nodes/node_actions.php' method='post'>\n";
172     echo "<input type=hidden name='node_id' value='$node_id'></input>\n";
173     echo "<select name='action' onChange='submit();'>\n";
174     echo "<option value='' selected='selected'> Download Mode </option>\n";
175     echo "<option value='' disabled='disabled'> -- All in one images -- </option>"; 
176     echo "<option value='download-node-iso' $new_api_only> Download ISO image for $hostname</option>\n";
177     echo "<option value='download-node-usb' $new_api_only> Download USB image for $hostname</option>\n";
178     echo "<option value='' disabled='disabled'> -- Floppy + generic image -- </option>"; 
179     echo "<option value='download-node-floppy'> Download Floppy file for $hostname</option>\n";
180     echo "<option value='download-generic-iso' $new_api_only> Download generic ISO image (requires floppy) </option>\n";
181     echo "<option value='download-generic-usb' $new_api_only> Download generic USB image (requires floppy) </option>\n";
182     echo "</select></form>";
183     echo "</td></tr>\n";
184
185   }
186
187   // site info and all site nodes
188   echo "<tr><td colspan=2>&nbsp;</td></tr>\n";
189   echo "<tr><th>Site: </th><td> <a href='/db/sites/index.php?id=$site_id'>$site_name</a></td></tr>\n";
190   echo "<tr><th>All site nodes: </th><td>";
191   if (empty($site_node_hash)) {
192     echo "<span class='plc-warning'>Site has no node</span>";
193   } else {
194     foreach( $site_node_hash as $key => $val ) {
195       echo "<a href=index.php?id=$key>$val</a><br />";
196     }
197   }
198   echo "</td></tr>\n";
199
200   echo "</tbody></table><br />\n";
201     
202   //////////////////////////////////////////////////////////// interfaces
203   if ( ! $peer_id ) {
204
205     // display interfaces
206     if( ! $interfaces ) {
207       echo "<p><span class='plc-warning'>No interface</span>.  Please add an interface to make this a usable PLC node</p>.\n";
208     } else {
209       $columns=array();
210       if ( $extra_privileges ) {
211         // a single symbol, marking 'p' for primary and a delete button for non-primary
212         $columns[' ']='string';
213       }
214          
215       $columns["IP"]="IPAddress";
216       $columns["Method"]="string";
217       $columns["Type"]="string";
218       $columns["MAC"]="string";
219       $columns["bw limit"]="FileSize";
220
221       print "<hr/>\n";
222       plc_table_title('Interfaces');
223       plc_table_start("interfaces",$columns,2,false);
224         
225       foreach ( $interfaces as $interface ) {
226         $interface_id= $interface['interface_id'];
227         $interface_ip= $interface['ip'];
228         $interface_broad= $interface['broadcast'];
229         $interface_primary= $interface['is_primary'];
230         $interface_network= $interface['network'];
231         $interface_dns1= $interface['dns1'];
232         $interface_dns2= $interface['dns2'];
233         $interface_hostname= $interface['hostname'];
234         $interface_netmaks= $interface['netmask'];
235         $interface_gatewary= $interface['gateway'];
236         $interface_mac= $interface['mac'];
237         $interface_bwlimit= $interface['bwlimit'];
238         $interface_type= $interface['type'];
239         $interface_method= $interface['method'];
240
241         plc_table_row_start($interface['ip']);
242         if ( $extra_privileges ) {
243           if (!$interface_primary) {
244             // xxx 
245             plc_table_cell (plc_delete_link_button ('interfaces.php?id=' . $interface_id . '&delete=1&submitted=1', 
246                                                     '\\nInterface ' . $interface_ip));
247           } else {
248             plc_table_cell('p');
249           }
250         }
251         plc_table_cell(l_interface2($interface_id,$interface_ip));
252         plc_table_cell($interface_method);
253         plc_table_cell($interface_type);
254         plc_table_cell($interface_mac);
255         plc_table_cell($interface_bwlimit);
256         plc_table_row_end();
257       }
258       plc_table_end();
259     }
260       
261   }
262
263   //////////////////////////////////////////////////////////// slices
264   // display slices
265   $peer_hash = plc_peer_get_hash ($api);
266
267   print "<hr/>\n";
268   plc_table_title ("Slices");
269   if ( ! $slices  ) {
270     echo "<p><span class='plc-warning'>This node is not associated to any slice.</span></p>\n";
271   } else {
272     $columns=array();
273     $columns['Peer']="string";
274     $columns['Name']="string";
275     $columns['Slivers']="string";
276     plc_table_start ("slivers",$columns,1);
277
278     foreach ($slices as $slice) {
279       plc_table_row_start($slice['name']);
280       plc_table_cell (plc_peer_shortname($peer_hash,$slice['peer_id']));
281       plc_table_cell (l_slice2 ($slice['slice_id'],$slice['name']));
282       plc_table_cell (l_sliver3 ($node_id,$slice['slice_id'],'view'));
283       plc_table_row_end();
284     }
285     plc_table_end();
286   }
287
288   //////////////////////////////////////////////////////////// nodegroups
289   // display node group info
290   if ( ! $nodegroups ) {
291     echo "<p><span class='plc-warning'>This node is not in any nodegroup.</span></p>\n";
292   } else {
293     $columns=array();
294     $columns['Name']="string";
295     $columns['Tag']="string";
296     $columns['Value']="string";
297       
298     print "<hr/>\n";
299     plc_table_title("Nodegroups");
300     plc_table_start("nodegroups",$columns,0,false);
301
302     foreach( $nodegroups as $nodegroup ) {
303       plc_table_row_start();
304       plc_table_cell(l_nodegroup2($nodegroup_id,$nodegroup['groupname']));
305       $tag_types=$api->GetTagTypes(array($nodegroup['tag_type_id']));
306       plc_table_cell($tag_types[0]['tagname']);
307       plc_table_cell($nodegroup['value']);
308       plc_table_row_end();
309     }
310     plc_table_end();
311   }    
312
313   ////////////////////////////////////////////////////////////
314   plc_peer_block_end();
315 }
316
317 // Print footer
318 include 'plc_footer.php';
319
320 ?>