reviewed plcdetails
[plewww.git] / planetlab / nodes / node.php
1 <?php
2
3 // $Id$
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_peers.php';
19 require_once 'plc_minitabs.php';
20 require_once 'plc_tables.php';
21 require_once 'plc_details.php';
22 require_once 'plc_forms.php';
23 require_once 'plc_objects.php';
24
25 // -------------------- 
26 // recognized URL arguments
27 $node_id=intval($_GET['id']);
28 if ( ! $node_id ) { plc_error('Malformed URL - id not set'); return; }
29
30 ////////////////////
31 // Get all columns as we focus on only one entry
32 $nodes= $api->GetNodes( array($node_id));
33
34 if (empty($nodes)) {
35   drupal_set_message ("Node " . $node_id . " not found");
36   return;
37  }
38
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 peers
56 $peer_id = $node['peer_id'];
57 $peers=new Peers ($api);
58
59 // gets site info
60 $sites= $api->GetSites( array( $site_id ) );
61 $site=$sites[0];
62 $site_name= $site['name'];
63 $site_node_ids= $site['node_ids'];
64
65 // hash node_id=>hostname for this site's nodes
66 $site_node_hash=array();
67 if( !empty( $site_node_ids ) ) {
68   // get site node info basics
69   $site_nodes= $api->GetNodes( $site_node_ids );
70     
71   foreach( $site_nodes as $site_node ) {
72     $site_node_hash[$site_node['node_id']]= $site_node['hostname'];
73   }
74  }
75   
76 // gets slice info for each slice
77 if( !empty( $slice_ids ) )
78   $slices= $api->GetSlices( $slice_ids, array( "slice_id", "name" , "peer_id" ) );
79
80 // get interface info
81 if( !empty( $interface_ids ) )
82   $interfaces= $api->GetInterfaces( $interface_ids );
83
84 // gets nodegroup info
85 if( !empty( $nodegroup_ids ) )
86   $nodegroups= $api->GetNodeGroups( $nodegroup_ids, array("groupname","tag_type_id","value"));
87
88 // xxx Thierry : remaining stuff
89 // (*) events: should display the latest events relating to that node.
90 // disabling call to GetEvents, that gets the session deleted in the DB
91 // (*) conf_files: is fetched but not displayed
92 if( !empty( $conf_file_ids ) )
93   $conf_files= $api->GetConfFiles( $conf_file_ids );
94 // (*) idem for PCUs
95 // gets pcu and port info key to both is $pcu_id
96 if( !empty( $pcu_ids ) )
97   $PCUs= $api->GetPCUs( $pcu_ids );
98
99 //////////////////// display node info
100
101 drupal_set_title("Details for node " . $hostname);
102 $local_peer= ! $peer_id;
103
104   
105 // extra privileges to admins, and (pi||tech) on this site
106 $privileges = (plc_is_admin () && $local_peer) || ( plc_in_site($site_id) && ( plc_is_pi() || plc_is_tech()));
107   
108 $tabs=array();
109 // available actions
110 if ( $local_peer  && $privileges ) {
111     
112   $tabs['Delete'] = array ('url'=>l_actions(),
113                            'method'=>'POST',
114                            'values'=>array('action'=>'delete-node','node_id'=>$node_id),
115                            'bubble'=>"Delete node $hostname",
116                            'confirm'=>'Are you sure to delete ' . $hostname. ' ?');
117   // xxx subject to roles
118   $tabs["Add Interface"]=array('url'=>l_interface_add($node_id),
119                                'bubble'=>"Declare new network interface on $hostname");
120   $tabs["Events"]=array_merge(tabs_events(),
121                               array('url'=>l_event("Node","node",$node_id),
122                                     'bubble'=>"Events for node $hostname"));
123   $tabs["Comon"]=array_merge(tabs_comon(),
124                              array('url'=>l_comon("node_id",$node_id),
125                                    'bubble'=>"Comon page about node $hostname"));
126  }
127
128 $tabs["All nodes"]=l_nodes();
129
130 plc_tabs($tabs);
131
132 // show gray background on foreign objects : start a <div> with proper class
133 $peers->block_start ($peer_id);
134   
135 $details=new PlcDetails($privileges);
136 $details->start();
137 if ( ! $local_peer) {
138   $details->th_td("Peer",$peers->peer_link($peer_id));
139   $details->space();
140  }
141
142 $details->form_start(l_actions(),array("action"=>"update-node", "node_id"=>$node_id));
143 $details->th_td("Hostname",$hostname,"hostname"); 
144 $details->th_td("Model",$model,"model");
145 $details->tr_submit("submit","Update Node");
146 $details->form_end();
147 if ($privileges) $details->space();
148
149 $details->th_td("Type",$node_type);
150 $details->th_td("Version",$version);
151 // let's use plc_objects
152 $Node = new Node($node);
153 $details->th_td("Date created",$Node->dateCreated());
154 $details->th_td("Last contact",$Node->lastContact());
155 $details->th_td("Last update",$Node->lastUpdated());
156
157 // boot area
158 $details->space ();
159 if ( ! ($local_peer && $privileges)) {
160   // just display it
161   $boot_value=$boot_state;
162  } else {
163   $boot_value="";
164   $boot_form = new PlcForm (l_actions(), array("node_id"=>$node_id,
165                                                "action"=>"node-boot-state"));
166   $boot_value .= $boot_form->start_html();
167   $states = array( 'boot'=>'Boot', 'safeboot'=>'SafeBoot', 'failboot'=>'FailBoot', 
168                    'disabled' => 'Disabled', 'install'=>'Install', 'reinstall'=>'Reinstall');
169   $selectors=array();
170   foreach ($states as $dbname=>$displayname) { 
171     $selector=array("display"=>$displayname, "value"=>$dbname);
172     if ($dbname == $boot_state) $selector['selected']=true;
173     $selectors []= $selector;
174   }
175   $boot_value .= $boot_form->select_html("boot_state",$selectors,NULL,true);
176   $boot_value .= $boot_form->end_html();
177  }
178 $details->th_td ("Boot state",$boot_value);
179
180 // same here for the download area
181 if ( $local_peer  && $privileges) {
182
183   $download_value="";
184   $download_form = new PlcForm (l_actions_download(),array("node_id"=>$node_id));
185   $download_value .= $download_form->start_html();
186   $selectors = array( 
187                      array("display"=>"-- All in one images --","disabled"=>true),
188                      array("value"=>"download-node-iso","display"=>"Download ISO image for $hostname"),
189                      array("value"=>"download-node-usb","display"=>"Download USB image for $hostname<"),
190                      array("display"=>"-- Floppy + generic image --","disabled"=>true),
191                      array("value"=>"download-node-floppy","display"=>"Download Floppy file for $hostname"),
192                      array("value"=>"download-generic-iso","display"=>"Download generic ISO image (requires floppy)"),
193                      array("value"=>"download-generic-usb","display"=>"Download generic USB image (requires floppy)"));
194   $download_value .= $download_form->select_html("action",$selectors,"Download mode",true);
195   $download_value .= $download_form->end_html();
196   $details->th_td ("Download",$download_value);
197  }
198
199 // site info and all site nodes
200 $details->space ();
201 $details->th_td("Site",l_site_t($site_id,$site_name));
202                    
203 // build list of node links
204 $nodes_area=array();
205 foreach ($site_node_hash as $hash_node_id => $hash_hostname) {
206   $nodes_area []= l_node_t($hash_node_id,$hash_hostname);
207 }
208 $details->th_tds ("All site nodes",$nodes_area);
209
210 $details->end ();
211
212 $form=new PlcForm (l_actions(), array('node_id'=>$node_id));
213 $form->start();
214
215 //////////////////////////////////////////////////////////// Tags
216 // get tags
217 if ( $local_peer ) {
218   
219   $tags=$api->GetNodeTags (array('node_id'=>$node_id));
220   function get_tagname ($tag) { return $tag['tagname'];}
221   $tagnames = array_map ("get_tagname",$tags);
222   $nodegroups_hash=plc_nodegroup_global_hash($api,$tagnames);
223   
224   plc_section("Tags");
225   $headers=array("Name"=>"string",
226                  "Value"=>"string",
227                  "Nodegroup"=>"string",
228                  );
229   if (plc_is_admin()) $headers[plc_delete_icon()]="none";
230   
231   $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
232   $table=new PlcTable("node_tags",$headers,0,$table_options);
233   $table->start();
234   if ($tags) foreach ($tags as $tag) {
235       // does this match a nodegroup ?
236       $nodegroup_name="n/a";
237       $nodegroup_key=$tag['tagname'] . "=" . $tag['value'];
238       $nodegroup=$nodegroups_hash[$nodegroup_key];
239       if ($nodegroup) $nodegroup_name=l_nodegroup_t($nodegroup['nodegroup_id'],$nodegroup['groupname']);
240       $table->row_start();
241       $table->cell(l_tag_obj($tag));
242       $table->cell($tag['value']);
243       $table->cell($nodegroup_name);
244       // the remove checkbox
245       if (plc_is_admin()) $table->cell ($form->checkbox_html('node_tag_ids[]',$tag['node_tag_id']));
246       $table->row_end();
247     }
248   
249   if ($privileges) {
250     $table->tfoot_start();
251
252     // remove tag 
253     $table->row_start();
254     $table->cell($form->submit_html("delete-node-tags","Remove Tags"),
255                  // use the whole columns and right adjust
256                  $table->columns(), "right");
257     $table->row_end();
258
259     // set tag area
260     $table->row_start();
261     // get list of tag names in the node/* category    
262     $all_tags= $api->GetTagTypes( array ("category"=>"node*"), array("tagname","tag_type_id"));
263     // xxx cannot use onchange=submit() - would need to somehow pass action name 
264     function tag_selector ($tag) { return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']); }
265     $selector=array_map("tag_selector",$all_tags);
266     $table->cell($form->select_html("tag_type_id",$selector,"Choose"));
267     $table->cell($form->text_html("value","",array('width'=>8)));
268     $table->cell($form->submit_html("set-tag-on-node","Set Tag"),2,"left");
269     $table->row_end();
270   }
271   
272   $table->end();
273  }
274
275 //////////////////////////////////////////////////////////// interfaces
276 if ( $local_peer ) {
277
278   plc_section ("Interfaces");
279   // display interfaces
280   if( ! $interfaces ) {
281     echo '<p>';
282     plc_warning_html("This node has no interface");
283     echo "Please add an interface to make this a usable PLC node.</p>\n";
284   } else {
285     $headers=array();
286
287     $headers["IP"]="IPAddress";
288     $headers["Method"]="string";
289     $headers["Type"]="string";
290     $headers["MAC"]="string";
291     $headers["bw limit"]="FileSize";
292     // a single symbol, marking 'p' for primary and a delete button for non-primary
293     if ( $privileges ) $headers[plc_delete_icon()]='string';
294
295     $table_options=array('search_area'=>false,"pagesize_area"=>false,'notes_area'=>false);
296     $table=new PlcTable("node_interfaces",$headers,2,$table_options);
297     $table->start();
298         
299     foreach ( $interfaces as $interface ) {
300       $interface_id= $interface['interface_id'];
301       $interface_ip= $interface['ip'];
302       $interface_broad= $interface['broadcast'];
303       $interface_primary= $interface['is_primary'];
304       $interface_network= $interface['network'];
305       $interface_dns1= $interface['dns1'];
306       $interface_dns2= $interface['dns2'];
307       $interface_hostname= $interface['hostname'];
308       $interface_netmaks= $interface['netmask'];
309       $interface_gatewary= $interface['gateway'];
310       $interface_mac= $interface['mac'];
311       $interface_bwlimit= $interface['bwlimit'];
312       $interface_type= $interface['type'];
313       $interface_method= $interface['method'];
314
315       $table->row_start();
316       $table->cell(l_interface_t($interface_id,$interface_ip));
317       $table->cell($interface_method);
318       $table->cell($interface_type);
319       $table->cell($interface_mac);
320       $table->cell($interface_bwlimit);
321       if ( $privileges ) {
322         if ($interface_primary) {
323           $table->cell(plc_bubble("p","Cannot delete a primary interface"));
324         } else {
325           $table->cell ($form->checkbox_html('interface_ids[]',$interface_id));
326         }
327       }
328       $table->row_end();
329     }
330     if ($privileges) {
331       $table->tfoot_start();
332       $table->row_start();
333       $add_button=new PlcFormButton (l_interface_add($node_id),"add_interface","Add interface");
334       // we should have 6 cols, use 3 for the left (new) and the rest for the right (remove)
335       $table->cell($add_button->html(), 3,"left");
336       $table->cell($form->submit_html("delete-interfaces","Remove Interfaces"), $table->columns()-3,"right");
337       $table->row_end();
338     }
339     $table->end();
340   }
341  }
342
343 //////////////////////////////////////////////////////////// slices
344 // display slices
345
346 plc_section ("Slices");
347 if ( ! $slices  ) {
348   plc_warning ("This node is not associated to any slice");
349  } else {
350   $headers=array();
351   $headers['Peer']="string";
352   $headers['Name']="string";
353   $headers['Slivers']="string";
354   $reasonable_page=10;
355   $table_options = array('notes_area'=>false,"search_width"=>10,'pagesize'=>$reasonable_page);
356   if (count ($slices) <= $reasonable_page) {
357     $table_options['search_area']=false;
358     $table_options['pagesize_area']=false;
359   }
360   $table=new PlcTable("node_slices",$headers,1,$table_options);
361   $table->start();
362
363   foreach ($slices as $slice) {
364     $table->row_start();
365     $table->cell ($peers->shortname($peer_id));
366     $table->cell (l_slice_t ($slice['slice_id'],$slice['name']));
367     $table->cell (l_sliver_t ($node_id,$slice['slice_id'],'view'));
368     $table->row_end();
369   }
370   $table->end();
371  }
372
373 $form->end();
374
375 ////////////////////////////////////////////////////////////
376 $peers->block_end($peer_id);
377
378
379 // Print footer
380 include 'plc_footer.php';
381
382 ?>