Added two more columns (deployment tag only for admins and number of
[plewww.git] / planetlab / slices / slice.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_objects.php';
20 require_once 'plc_visibletags2.php';
21 require_once 'linetabs.php';
22 require_once 'table2.php';
23 require_once 'details.php';
24 require_once 'toggle.php';
25 require_once 'form.php';
26 require_once 'raphael.php';
27 require_once 'columns.php';
28
29 // keep css separate for now
30 drupal_set_html_head('
31 <link href="/planetlab/css/my_slice.css" rel="stylesheet" type="text/css" />
32 <script src="/planetlab/slices/leases.js" type="text/javascript" charset="utf-8"></script>
33 ');
34
35 // -------------------- admins potentially need to get full list of users
36 ini_set('memory_limit','32M');
37
38 $profiling=false;
39 if ($_GET['profiling']) $profiling=true;
40
41 if ($profiling)  plc_debug_prof_start();
42
43 // -------------------- 
44 // recognized URL arguments
45 $slice_id=intval($_GET['id']);
46 if ( ! $slice_id ) { plc_error('Malformed URL - id not set'); return; }
47
48 ////////////////////
49 // have to name columns b/c we need the non-native 'omf_control' column
50 $slice_columns=array('slice_id','name','peer_id','site_id','person_ids','node_ids','expires',
51                      'url','description','instantiation','omf_control');
52 $slices= $api->GetSlices( array($slice_id), $slice_columns);
53
54 if (empty($slices)) {
55   drupal_set_message ("Slice " . $slice_id . " not found");
56   return;
57  }
58
59 $slice=$slices[0];
60
61 if ($profiling) plc_debug_prof('2: slice',count($slices));
62 // pull all node info to vars
63 $name= $slice['name'];
64 $expires = date( "d/m/Y", $slice['expires'] );
65 $site_id= $slice['site_id'];
66
67 $person_ids=$slice['person_ids'];
68
69 // get peers
70 $peer_id= $slice['peer_id'];
71 $peers=new Peers ($api);
72 $local_peer = ! $peer_id;
73
74 if ($profiling) plc_debug_prof('3: peers',count($peers));
75
76 // gets site info
77 $sites= $api->GetSites( array( $site_id ) );
78 $site=$sites[0];
79 $site_name= $site['name'];
80 $max_slices = $site['max_slices'];
81
82 if ($profiling) plc_debug_prof('4: sites',count($sites));
83 //////////////////////////////////////// building blocks for the renew area
84 // Constants
85 global $DAY;            $DAY = 24*60*60;
86 global $WEEK;           $WEEK = 7 * $DAY; 
87 global $MAX_WEEKS;      $MAX_WEEKS= 8;          // weeks from today
88 global $GRACE_DAYS;     $GRACE_DAYS=10;         // days for renewal promoted on top
89 global $NOW;            $NOW=mktime();
90
91 ////////////////////////////////////////////////////////////
92 // make the renew area on top and open if the expiration time is less than 10 days from now
93 function renew_needed ($slice) {
94   global $DAY, $NOW, $GRACE_DAYS;
95   $current_exp=$slice['expires'];
96
97   $time_left = $current_exp - $NOW;
98   $visible = $time_left/$DAY <= $GRACE_DAYS;
99   return $visible;
100 }
101
102 function renew_area ($slice,$site,$visible) {
103   global $DAY, $WEEK, $MAX_WEEKS, $GRACE_DAYS, $NOW;
104  
105   $current_exp=$slice['expires'];
106   $current_text = gmstrftime("%A %b-%d-%y %T %Z", $current_exp);
107   $max_exp= $NOW + ($MAX_WEEKS * $WEEK); // seconds since epoch
108   $max_text = gmstrftime("%A %b-%d-%y %T %Z", $max_exp);
109
110   // xxx some extra code needed to enable this area only if the slice description is OK:
111   // description and url must be non void
112   $toggle=
113     new PlekitToggle('renew',"Expires $current_text - Renew this slice",
114                      array("bubble"=>
115                            "Enter this zone if you wish to renew your slice",
116                            'visible'=>$visible));
117   $toggle->start();
118
119   // xxx message could take roles into account
120   if ($site['max_slices']<=0) {
121      $message= <<< EOF
122 <p class='my-slice-renewal'>Slice creation and renewal have been temporarily disabled for your
123 <site. This may have occurred because your site's nodes have been down
124 or unreachable for several weeks, and multiple attempts to contact
125 your site's PI(s) and Technical Contact(s) have all failed. If so,
126 contact your site's PI(s) and Technical Contact(s) and ask them to
127 bring up your site's nodes. Please visit your <a
128 href='/db/sites/index.php?id=$site_id'>site details</a> page to find
129 out more about your site's nodes, and how to contact your site's PI(s)
130 and Technical Contact(s).</p>
131 EOF;
132      echo $message;
133  
134   } else {
135     // xxx this is a rough cut and paste from the former UI
136     // showing a datepicker view could be considered as well with some extra work
137     // calculate possible extension lengths
138     $selectors = array();
139     foreach ( array ( 1 => "One more week", 
140                       2 => "Two more weeks", 
141                       3 => "Three more weeks", 
142                       4 => "One more month" ) as $weeks => $text ) {
143       $candidate_exp = $current_exp + $weeks*$WEEK;
144       if ( $candidate_exp < $max_exp) {
145         $selectors []= array('display'=>"$text (" . gmstrftime("%A %b-%d-%y %T %Z", $candidate_exp) . ")",
146                              'value'=>$candidate_exp);
147         $max_renewal_weeks=$weeks;
148         $max_renewal_date= gmstrftime("%A %b-%d-%y %T %Z", $candidate_exp);
149       }
150     }
151
152     if ( empty( $selectors ) ) {
153       print <<< EOF
154 <div class='my-slice-renewal'>
155 Slices cannot be renewed more than $MAX_WEEKS weeks from now, i.e. not beyond $max_text. 
156 For this reason, the current slice cannot be renewed any further into the future, try again closer to expiration date.
157 </div>
158 EOF;
159      } else {
160       print <<< EOF
161 <div class='my-slice-renewal'>
162 <span class='bold'>Important:</span> Please take this opportunity to review and update your slice information in the Details tab.
163 <p>
164 PlanetLab's security model requires that anyone who is concerned about a slice's activity be able to immediately learn about that slice. The details that you provide are your public explanation about why the slice behaves as it does. Be sure to describe the <span class='bold'>kind of traffic</span> that your slice generates, and how it handles material that is under <span class='bold'>copyright</span>, if relevant.
165 </p><p>
166 The PlanetLab Operations Centres regularly respond to concerns raised by third parties about site behaviour. Most incidents are resolved rapidly based upon the publicly posted slice details. However, when these details are not sufficiently clear or accurate, and we cannot immediately reach the slice owner, we must delete the slice. 
167 </p>
168 EOF;
169
170       $form = new PlekitForm (l_actions(),
171                               array('action'=>'renew-slice',
172                                     'slice_id'=>$slice['slice_id']));
173       $form->start();
174       print $form->label_html('expires','Duration:&nbsp;');
175       print $form->select_html('expires',$selectors,array('label'=>'Pick one'));
176       print $form->submit_html('renew-button','Renew');
177       $form->end();
178
179 print("<p><i>NOTE: Slices cannot be renewed beyond another $max_renewal_weeks week(s) ($max_renewal_date).</i>  </p>");
180 print ("</div>");
181     }
182   }
183  
184   $toggle->end();
185 }
186
187 ////////////////////////////////////////////////////////////
188
189 $am_in_slice = in_array(plc_my_person_id(),$person_ids);
190
191 if ($am_in_slice) {
192   drupal_set_title("My slice " . $name);
193  } else {
194   drupal_set_title("Slice " . $name);
195 }
196
197 $privileges = ( $local_peer && (plc_is_admin()  || plc_is_pi() || $am_in_slice));
198 $tags_privileges = $privileges || plc_is_admin();
199
200 $tabs=array();
201 $tabs [] = tab_nodes_slice($slice_id);
202 $tabs [] = tab_site($site);
203
204 // are these the right privileges for deletion ?
205 if ($privileges) {
206   $tabs ['Delete']= array('url'=>l_actions(),
207                           'method'=>'post',
208                           'values'=>array('action'=>'delete-slice','slice_id'=>$slice_id),
209                           'bubble'=>"Delete slice $name",
210                           'confirm'=>"Are you sure to delete slice $name");
211
212   $tabs["Events"]=array_merge(tablook_event(),
213                               array('url'=>l_event("Slice","slice",$slice_id),
214                                     'bubble'=>"Events for slice $name"));
215   $tabs["Comon"]=array_merge(tablook_comon(),
216                              array('url'=>l_comon("slice_id",$slice_id),
217                                    'bubble'=>"Comon page about slice $name"));
218 }
219
220 plekit_linetabs($tabs);
221
222 ////////////////////////////////////////
223 $peers->block_start($peer_id);
224
225 //////////////////////////////////////// renewal area 
226 // (1) close to expiration : show on top and open
227
228 if ($local_peer ) {
229   $renew_visible = renew_needed ($slice);
230   if ($renew_visible) renew_area ($slice,$site,true);
231  }
232
233
234 //////////////////// details
235 // default for opening the details section or not ?
236 if ($local_peer) {
237   $default_show_details = true;
238  } else {
239   $default_show_details = ! $renew_visible;
240  }
241   
242 $toggle = 
243   new PlekitToggle ('my-slice-details',"Details",
244                     array('bubble'=>
245                           'Display and modify details for that slice',
246                           'visible'=>get_arg('show_details',$default_show_details)));
247 $toggle->start();
248
249 $details=new PlekitDetails($privileges);
250 $details->form_start(l_actions(),array('action'=>'update-slice',
251                                        'slice_id'=>$slice_id,
252                                        'name'=>$name));
253
254 $details->start();
255 if (! $local_peer) {
256   $details->th_td("Peer",$peers->peer_link($peer_id));
257   $details->space();
258  }
259
260
261 $details->th_td('Name',$slice['name']);
262 $details->th_td('Description',$slice['description'],'description',
263                 array('input_type'=>'textarea',
264                       'width'=>50,'height'=>5));
265 $details->th_td('URL',$slice['url'],'url',array('width'=>50));
266 $details->tr_submit("submit","Update Slice");
267 $details->th_td('Expires',$expires);
268 $details->th_td('Instantiation',$slice['instantiation']);
269 $details->th_td("OMF-friendly", ($slice['omf_control'] ? 'Yes' : 'No') . " [to change: see 'omf_control' in the tags section below]");
270 $details->th_td('Site',l_site_obj($site));
271 // xxx show the PIs here
272 //$details->th_td('PIs',...);
273 $details->end();
274
275 $details->form_end();
276 $toggle->end();
277
278 //////////////////// persons
279 $person_columns = array('email','person_id','first_name','last_name','roles');
280 // get persons in slice
281 if (!empty($person_ids))
282   $persons=$api->GetPersons(array('person_id'=>$slice['person_ids']),$person_columns);
283 // just propose to add everyone else
284 // xxx this is maybe too much for admins as it slows stuff down 
285 // as regular persons can see only a fraction of the db anyway
286 $potential_persons=
287   $api->GetPersons(array('~person_id'=>$slice['person_ids'],
288                          'peer_id'=>NULL,
289                          'enabled'=>true),
290                    $person_columns);
291 $count=count($persons);
292
293 if ($profiling) plc_debug_prof('4: persons',count($persons));
294 $toggle=
295   new PlekitToggle ('my-slice-persons',"$count users",
296                     array('bubble'=>
297                           'Manage accounts attached to this slice',
298                           'visible'=>get_arg('show_persons',false)));
299 $toggle->start();
300
301 ////////// people currently in
302 // visible:
303 // hide if both current+add are included
304 // so user can chose which section is of interest
305 // show otherwise
306 $toggle_persons = new PlekitToggle ('my-slice-persons-current',
307                                     "$count people currently in $name",
308                                     array('visible'=>get_arg('show_persons_current',!$privileges)));
309 $toggle_persons->start();
310
311 $headers=array();
312 $headers['email']='string';
313 $headers['first']='string';
314 $headers['last']='string';
315 $headers['R']='string';
316 if ($privileges) $headers[plc_delete_icon()]="none";
317 $table=new PlekitTable('persons',$headers,'0',
318                        array('notes_area'=>false));
319 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
320 $form->start();
321 $table->start();
322 if ($persons) foreach ($persons as $person) {
323   $table->row_start();
324   $table->cell(l_person_obj($person));
325   $table->cell($person['first_name']);
326   $table->cell($person['last_name']);
327   $table->cell(plc_vertical_table ($person['roles']));
328   if ($privileges) $table->cell ($form->checkbox_html('person_ids[]',$person['person_id']));
329   $table->row_end();
330 }
331 // actions area
332 if ($privileges) {
333
334   // remove persons
335   $table->tfoot_start();
336
337   $table->row_start();
338   $table->cell($form->submit_html ("remove-persons-from-slice","Remove selected"),
339                array('hfill'=>true,'align'=>'right'));
340   $table->row_end();
341  }
342 $table->end();
343 $toggle_persons->end();
344
345 ////////// people to add
346 if ($privileges) {
347   $count=count($potential_persons);
348   $toggle_persons = new PlekitToggle ('my-slice-persons-add',
349                                       "$count people may be added to $name",
350                                       array('visible'=>get_arg('show_persons_add',false)));
351   $toggle_persons->start();
352   if ( ! $potential_persons ) {
353     // xxx improve style
354     echo "<p class='not-relevant'>No person to add</p>";
355   } else {
356     $headers=array();
357     $headers['email']='string';
358     $headers['first']='string';
359     $headers['last']='string';
360     $headers['R']='string';
361     $headers['+']="none";
362     $options = array('notes_area'=>false,
363                      'search_width'=>15,
364                      'pagesize'=>8);
365     // show search for admins only as other people won't get that many names to add
366     if ( ! plc_is_admin() ) $options['search_area']=false;
367     
368     $table=new PlekitTable('add_persons',$headers,'0',$options);
369     $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
370     $form->start();
371     $table->start();
372     if ($potential_persons) foreach ($potential_persons as $person) {
373         $table->row_start();
374         $table->cell(l_person_obj($person));
375         $table->cell($person['first_name']);
376         $table->cell($person['last_name']);
377         $table->cell(plc_vertical_table ($person['roles']));
378         $table->cell ($form->checkbox_html('person_ids[]',$person['person_id']));
379         $table->row_end();
380       }
381     // add users
382     $table->tfoot_start();
383     $table->row_start();
384     $table->cell($form->submit_html ("add-persons-in-slice","Add selected"),
385                  array('hfill'=>true,'align'=>'right'));
386     $table->row_end();
387     $table->end();
388     $form->end();
389   }
390   $toggle_persons->end();
391 }
392 $toggle->end();
393
394 //////////////////////////////////////////////////////////// Nodes
395 // the nodes details to display here
396 // (1) we search for the tag types for which 'category' matches 'node*/ui*'
397 // all these tags will then be tentatively displayed in this area
398 // (2) further information can also be optionally specified in the category:
399 //     (.) we split the category with '/' and search for assignments of the form var=value
400 //     (.) header can be set to supersede the column header (default is tagname)
401 //     (.) rank can be used for ordering the columns (default is tagname)
402 //     (.) type is passed to the javascript table, for sorting (default is 'string')
403
404 // minimal list as a start
405 $node_fixed_columns = array('hostname','node_id','peer_id','slice_ids_whitelist', 'site_id',
406                             'run_level','boot_state','last_contact','node_type');
407 // create a VisibleTags object : basically the list of tag columns to show
408 //$visibletags = new VisibleTags ($api, 'node');
409 //$visiblecolumns = $visibletags->column_names();
410
411 // optimizing calls to GetNodes
412 //$all_nodes=$api->GetNodes(NULL,$node_columns);
413 //$slice_nodes=$api->GetNodes(array('node_id'=>$slice['node_ids']),$node_columns);
414 //$potential_nodes=$api->GetNodes(array('~node_id'=>$slice['node_ids']),$node_columns);
415
416
417 //NEW CODE FOR ENABLING COLUMN CONFIGURATION
418
419 //prepare fix and configurable columns
420
421 $fix_columns = array();
422 $fix_columns[]=array('tagname'=>'hostname', 'header'=>'hostname', 'type'=>'string', 'title'=>'The name of the node');
423 $fix_columns[]=array('tagname'=>'peer_id', 'header'=>'AU', 'type'=>'string', 'title'=>'Authority');
424 $fix_columns[]=array('tagname'=>'run_level', 'header'=>'ST', 'type'=>'string', 'title'=>'Status');
425 $fix_columns[]=array('tagname'=>'node_type', 'header'=>'RES', 'type'=>'string', 'title'=>'Reservable');
426
427 // columns that correspond to the visible tags for nodes (*node/ui*)
428 $visibletags = new VisibleTags ($api, 'node');
429 $visibletags->columns();
430 $tag_columns = $visibletags->headers();
431
432 //columns that are not defined as extra myslice tags
433 $extra_columns = array();
434 //MyPLC columns
435 $extra_columns[]=array('tagname'=>'sitename', 'header'=>'SN', 'type'=>'string', 'title'=>'Site name', 'fetched'=>true, 'source'=>'myplc');
436 $extra_columns[]=array('tagname'=>'domain', 'header'=>'DN', 'type'=>'string', 'title'=>'Toplevel domain name', 'fetched'=>true, 'source'=>'myplc');
437 $extra_columns[]=array('tagname'=>'ipaddress', 'header'=>'IP', 'type'=>'string', 'title'=>'IP Address', 'fetched'=>true, 'source'=>'myplc');
438 $extra_columns[]=array('tagname'=>'fcdistro', 'header'=>'OS', 'type'=>'string', 'title'=>'Operating system', 'fetched'=>false, 'source'=>'myplc');
439 $extra_columns[]=array('tagname'=>'date_created', 'header'=>'DA', 'source'=>'myplc', 'type'=>'date', 'title'=>'Date added', 'fetched'=>false);
440 $extra_columns[]=array('tagname'=>'arch', 'header'=>'A', 'source'=>'myplc', 'type'=>'string', 'title'=>'Architecture', 'fetched'=>false);
441 if (plc_is_admin()) {
442 $extra_columns[]=array('tagname'=>'deployment', 'header'=>'DL', 'source'=>'myplc', 'type'=>'string', 'title'=>'Deployment', 'fetched'=>false);
443 }
444
445 //CoMon Live data
446 $extra_columns[]=array('tagname'=>'bwlimit', 'header'=>'BW', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Bandwidth limit', 'fetched'=>false);
447 $extra_columns[]=array('tagname'=>'numcores', 'header'=>'CC', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Number of CPU Cores', 'fetched'=>false);
448 $extra_columns[]=array('tagname'=>'cpuspeed', 'header'=>'CR', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'CPU clock rate', 'fetched'=>false);
449 $extra_columns[]=array('tagname'=>'disksize', 'header'=>'DS', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Disk size', 'fetched'=>false);
450 $extra_columns[]=array('tagname'=>'gbfree', 'header'=>'DF', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Currently available disk space', 'fetched'=>false);
451 $extra_columns[]=array('tagname'=>'memsize', 'header'=>'MS', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Memory size', 'fetched'=>false);
452 $extra_columns[]=array('tagname'=>'numslices', 'header'=>'SM', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Number of slices in memory', 'fetched'=>false);
453 $extra_columns[]=array('tagname'=>'uptime', 'header'=>'UT', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Continuous uptime until now', 'fetched'=>false);
454
455 //TopHat Live data
456 //$extra_columns[]=array('tagname'=>'hopcount', 'header'=>'HC', 'source'=>'tophat', 'type'=>'sortAlphaNumericTop', 'title'=>'Hop count from reference node', 'fetched'=>false);
457
458
459 //Get user's column configuration
460
461 $first_time_configuration = false;
462 $default_configuration = "hostname:f|ST:f|AU:f|RES:f";
463 //$extra_default = "";
464 $column_configuration = "";
465 $slice_column_configuration = "";
466
467 $show_configuration = "";
468 $show_reservable_message = '1';
469 $show_columns_message = '1';
470
471
472 //$PersonTags=$api->GetPersonTags (array('person_id'=>$plc->person['person_id']));
473 $PersonTags=$api->GetPersonTags (array('person_id'=>$plc->person['person_id']));
474 //print_r($PersonTags);
475 foreach ($PersonTags as $ptag) {
476         if ($ptag['tagname'] == 'columnconf')
477         {
478                 $column_configuration = $ptag['value'];
479                 $conf_tag_id = $ptag['person_tag_id'];
480         }
481         if ($ptag['tagname'] == 'showconf')
482         {
483                 $show_configuration = $ptag['value'];
484                 $show_tag_id = $ptag['person_tag_id'];
485         }
486 }
487
488 //print("<br>person column configuration = ".$column_configuration);
489 //print("<br>person show configuration = ".$show_configuration);
490
491 $sliceconf_exists = false;
492 if ($column_configuration == "")
493 {
494         $first_time_configuration = true;
495         $column_configuration = $slice_id.";default";
496         $sliceconf_exists = true;
497 }
498 else {
499         $slice_conf = explode(";",$column_configuration);
500         for ($i=0; $i<count($slice_conf); $i++ ) {
501                 if ($slice_conf[$i] == $slice_id)
502                 {
503                         $i++;
504                         $slice_column_configuration = $slice_conf[$i];
505                         $sliceconf_exists = true;
506                         break;
507                 }
508                 else
509                 {
510                         $i++;
511                         $slice_column_configuration = $slice_conf[$i];
512                 }
513         }        
514 }
515
516 if ($sliceconf_exists == false)
517         $column_configuration = $column_configuration.";".$slice_id.";default";
518
519 //print("<br>slice configuration = ".$slice_column_configuration);
520
521
522 if ($slice_column_configuration == "")
523         $full_configuration = $default_configuration;
524 else
525         $full_configuration = $default_configuration."|".$slice_column_configuration;
526
527
528 //instantiate the column configuration class, which prepares the headers array
529 $ConfigureColumns =new PlekitColumns($full_configuration, $fix_columns, $tag_columns, $extra_columns);
530
531 $visiblecolumns = $ConfigureColumns->node_tags();
532
533 $node_columns=array_merge($node_fixed_columns,$visiblecolumns);
534 //print_r($node_columns);
535 $all_nodes=$api->GetNodes(NULL,$node_columns);
536
537 $ConfigureColumns->fetch_live_data($all_nodes);
538
539 //print("<br>person show configuration = ".$show_configuration);
540
541 $show_conf = explode(";",$show_configuration);
542 foreach ($show_conf as $ss) {
543         if ($ss =="reservable")
544                 $show_reservable_message = '0';
545         if ($ss =="columns")
546                 $show_columns_message = '0';
547 }        
548
549 //print("res:".$show_reservable_message." - cols:".$show_columns_message);
550
551 $slice_nodes=array();
552 $potential_nodes=array();
553 $reservable_nodes=array();
554 foreach ($all_nodes as $node) {
555   if (in_array($node['node_id'],$slice['node_ids'])) {
556     $slice_nodes[]=$node;
557     if ($node['node_type']=='reservable') $reservable_nodes[]=$node;
558   } else {
559     $potential_nodes[]=$node;
560   }
561 }
562 if ($profiling) plc_debug_prof('5: nodes',count($slice_nodes));
563 ////////////////////
564 // outline the number of reservable nodes
565 $nodes_message=count_english($slice_nodes,"node");
566 if (count($reservable_nodes)) $nodes_message .= " (" . count($reservable_nodes) . " reservable)";
567 $toggle=new PlekitToggle ('my-slice-nodes',$nodes_message,
568                           array('bubble'=>
569                                 'Manage nodes attached to this slice',
570                                 'visible'=>get_arg('show_nodes',false)));
571 $toggle->start();
572
573
574 //////////////////// reservable nodes area
575
576 $count=count($reservable_nodes);
577 if ($count && $privileges) {
578   // having reservable nodes in white lists looks a bit off scope for now...
579   $toggle_nodes=new PlekitToggle('my-slice-nodes-reserve',
580                                  "Leases - " . count($reservable_nodes) . " reservable node(s)",
581                                  array('visible'=>$show_reservable_message, 'info_div'=>'note_reservable_div'));
582   $toggle_nodes->start();
583
584 if ($show_reservable_message) 
585 $note_display = "";
586 else
587 $note_display = "display:none;";
588
589 ////////// show a notice to people having attached a reservable node
590 if (count($reservable_nodes) && $privileges) {
591   $mark=reservable_mark();
592   print <<<EOF
593 <br>
594 <div id='note_reservable_div' style="align:center; background-color:#CAE8EA; padding:4px; width:800px; $note_display">
595 <table align=center><tr><td valign=top>
596 You have attached one or more reservable nodes to your slice. 
597 Reservable nodes show up with the '$mark' mark. 
598 Your slivers will be available only during timeslots
599 where you have obtained leases. 
600 You can manage your leases in the tab below.
601 <br>
602 Please note that as of August 2010 this feature is experimental. 
603 Feedback is appreciated at <a href="mailto:devel@planet-lab.org">devel@planet-lab.org</a>
604 </td><td valign=top><span onClick=closeMessage('reservable')><img class='reset' src="/planetlab/icons/clear.png" alt="hide message"></span>
605 </td></tr></table>
606 </div>
607 EOF;
608 }  
609
610   $grain=$api->GetLeaseGranularity();
611   if ($profiling) plc_debug_prof('6 granul',$grain);
612   // where to start from, expressed as an offset in hours from now
613   $resa_offset=$_GET['resa_offset'];
614   if ( ! $resa_offset ) $resa_offset=0;
615   $rough_start=time()+$resa_offset*3600;
616   // xxx should be configurable
617   $resa_slots=$_GET['resa_slots'];
618   if ( ! $resa_slots ) $resa_slots = 36;
619   // for now, show the next 72 hours, or 72 grains, which ever is smaller
620   $duration=$resa_slots*$grain;
621   $steps=$duration/$grain;
622   $start=intval($rough_start/$grain)*$grain;
623   $end=$rough_start+$duration;
624   $lease_columns=array('lease_id','name','t_from','t_until','hostname','name');
625   $leases=$api->GetLeases(array(']t_until'=>$rough_start,'[t_from'=>$end,'-SORT'=>'t_from'),$lease_columns);
626   if ($profiling) plc_debug_prof('7 leases',count($leases));
627   // hash nodes -> leases
628   $host_hash=array();
629   foreach ($leases as $lease) {
630     $hostname=$lease['hostname'];
631     if ( ! $host_hash[$hostname] ) {
632         $host_hash[$hostname]=array();
633     }
634     // resync within the table
635     $lease['nfrom']=($lease['t_from']-$start)/$grain;
636     $lease['nuntil']=($lease['t_until']-$start)/$grain;
637     $host_hash[$hostname] []= $lease;
638   }
639   # leases_data is the name used by leases.js to locate this table
640   echo "<table id='leases_data'>";
641   # pass (slice_id,slicename) as the [0,0] coordinate as thead>tr>td
642   echo "<thead><tr><td>" . $slice['slice_id'] . '&' . $slice['name'] . "</td>";
643   # the timeslot headers read (timestamp,label)
644   $day_names=array('Su','M','Tu','W','Th','F','Sa');
645   for ($i=0; $i<$steps; $i++) {
646     $timestamp=($start+$i*$grain);
647     $day=$day_names[intval(strftime("%w",$timestamp))];
648     $label=$day . strftime(" %H:%M",$timestamp);
649     // expose in each header cell the full timestamp, and how to display it - use & as a separator*/
650     echo "<th>" . implode("&",array($timestamp,$label)) . "</th>";
651   }
652   echo "</tr></thead><tbody>";
653   // todo - sort on hostnames
654   function sort_hostname ($a,$b) { return ($a['hostname']<$b['hostname'])?-1:1;}
655   usort($reservable_nodes,sort_hostname);
656   foreach ($reservable_nodes as $node) {
657     echo "<tr><th scope='row'>". $node['hostname'] . "</th>";
658     $hostname=$node['hostname'];
659     $leases=$host_hash[$hostname];
660     $counter=0;
661     while ($counter<$steps) {
662       if ($leases && ($leases[0]['nfrom']<=$counter)) {
663         $lease=array_shift($leases);
664         /* nicer display, merge two consecutive leases for the same slice 
665            avoid doing that for now, as it might makes things confusing */
666         /* while ($leases && ($leases[0]['name']==$lease['name']) && ($leases[0]['nfrom']==$lease['nuntil'])) {
667           $lease['nuntil']=$leases[0]['nuntil'];
668           array_shift($leases);
669           }*/
670         $duration=$lease['nuntil']-$counter;
671         echo "<td colspan='$duration'>" . $lease['lease_id'] . '&' . $lease['name'] . "</td>";
672         $counter=$lease['nuntil']; 
673       } else {
674         echo "<td></td>";
675         $counter+=1;
676       }
677     }
678     echo "</tr>";
679   }
680   echo "</tbody></table>\n";
681
682   // the general layout for the scheduler
683   echo <<< EOF
684 <div id='leases_area'></div>
685
686 <div id='leases_buttons'>
687   <button id='leases_clear' type='submit'>Clear</button>
688   <button id='leases_submit' type='submit'>Submit</button>
689 </div>
690 EOF;
691
692   $toggle_nodes->end();
693  }
694
695
696 //////////////////// node configuration panel
697
698 if ($first_time_configuration) 
699 $column_conf_visible = '1';
700 else
701 $column_conf_visible = '0';
702
703
704 $toggle_nodes=new PlekitToggle('my-slice-nodes-configuration',
705                                "Node table layout",
706                                array('visible'=>$column_conf_visible, 'info_div'=>'note_columns_div'));
707 $toggle_nodes->start();
708
709 //usort ($table_headers, create_function('$col1,$col2','return strcmp($col1["header"],$col2["header"]);'));
710 //print("<p>TABLE HEADERS<p>");
711 //print_r($table_headers);
712
713 print("<div id='debug'></div>");
714 print("<input type='hidden' id='slice_id' value='".$slice['slice_id']."' />");
715 print("<input type='hidden' id='person_id' value='".$plc->person['person_id']."' />");
716 print("<input type='hidden' id='conf_tag_id' value='".$conf_tag_id."' />");
717 print("<input type='hidden' id='show_tag_id' value='".$show_tag_id."' />");
718 print("<input type='hidden' id='show_configuration' value='".$show_configuration."' />");
719 print("<input type='hidden' id='column_configuration' value='".$slice_column_configuration."' />");
720 print("<br><input type='hidden' size=80 id='full_column_configuration' value='".$column_configuration."' />");
721 print("<input type='hidden' id='previousConf' value='".$slice_column_configuration."'></input>");
722 print("<input type='hidden' id='defaultConf' value='".$default_configuration."'></input>");
723
724 //print ("showing column message = ".$show_columns_message);
725 if ($show_columns_message == '0') 
726 $note_display = "display:none;";
727 else
728 $note_display = "";
729
730   print <<<EOF
731 <div id='note_columns_div' style="align:center; background-color:#CAE8EA; padding:4px; width:800px; $note_display">
732 <table align=center><tr><td valign=top>
733 This tab allows you to customize the columns in the node tables, below. Information on the nodes comes from a variety of monitoring sources. If you, as either a user or a provider of monitoring data, would like to see additional columns made available, please send us your request in mail to <a href="mailto:support@myslice.info">support@myslice.info</a>. You can find more information about the MySlice project at <a href="http://trac.myslice.info">http://trac.myslice.info</a>.
734 </td><td valign=top><span onClick=closeMessage('columns')><img class='reset' src="/planetlab/icons/clear.png" alt="hide message permanently"></span>
735 </td></tr></table>
736 </div>
737 EOF;
738
739 $ConfigureColumns->configuration_panel_html(true);
740
741 $ConfigureColumns->javascript_init();
742
743 $toggle_nodes->end();
744
745
746 $all_sites=$api->GetSites(NULL, array('site_id','login_base'));
747 $site_hash=array();
748 foreach ($all_sites as $tmp_site) $site_hash[$tmp_site['site_id']]=$tmp_site['login_base'];
749
750 $interface_columns=array('ip','node_id','interface_id');
751 $interface_filter=array('is_primary'=>TRUE);
752 $interfaces=$api->GetInterfaces($interface_filter,$interface_columns);
753
754 $interface_hash=array();
755 foreach ($interfaces as $interface) $interface_hash[$interface['node_id']]=$interface;
756
757
758
759
760
761 //////////////////// nodes currently in
762 $toggle_nodes=new PlekitToggle('my-slice-nodes-current',
763                                count_english($slice_nodes,"node") . " currently in $name",
764                                array('visible'=>get_arg('show_nodes_current',!$privileges)));
765 $toggle_nodes->start();
766
767 $headers=array();
768 $notes=array();
769 //$notes=array_merge($notes,$visibletags->notes());
770 $notes [] = "For information about the different columns please see the <b>node table layout</b> tab above or <b>mouse over</b> the column headers";
771
772 /*
773 $headers['peer']='string';
774 $headers['hostname']='string';
775 $short="-S-"; $long=Node::status_footnote(); $type='string'; 
776         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
777 $short=reservable_mark(); $long=reservable_legend(); $type='string';
778         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
779 // the extra tags, configured for the UI
780 $headers=array_merge($headers,$visibletags->headers());
781
782 if ($privileges) $headers[plc_delete_icon()]="none";
783 */
784
785 $edit_header = array();
786 if ($privileges) $edit_header[plc_delete_icon()]="none";
787 $headers = array_merge($ConfigureColumns->get_headers(),$edit_header);
788
789 //print("<p>HEADERS<p>");
790 //print_r($headers);
791
792 $table_options = array('notes'=>$notes,
793                        'search_width'=>15,
794                        'pagesize'=>20,
795                         'configurable'=>true);
796
797 $table=new PlekitTable('nodes',$headers,NULL,$table_options);
798
799 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
800 $form->start();
801 $table->start();
802 if ($slice_nodes) foreach ($slice_nodes as $node) {
803   $table->row_start();
804
805 $table->cell($node['node_id'], array('display'=>'none'));
806
807   $table->cell(l_node_obj($node));
808   $peers->cell($table,$node['peer_id']);
809   $run_level=$node['run_level'];
810   list($label,$class) = Node::status_label_class_($node);
811   $table->cell ($label,array('class'=>$class));
812   $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
813
814   $hostname=$node['hostname'];
815   $ip=$interface_hash[$node['node_id']]['ip'];
816   $interface_id=$interface_hash[$node['node_id']]['interface_id'];
817
818 //extra columns
819 $node['domain'] = topdomain($hostname);
820 $node['sitename'] = l_site_t($node['site_id'],$site_hash[$node['site_id']]);
821 if ($interface_id)
822         $node['ipaddress'] = l_interface_t($interface_id,$ip);
823   else
824         $node['ipaddress'] = "n/a";
825
826  //foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
827  $ConfigureColumns->cells($table, $node);
828
829   if ($privileges) $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
830   $table->row_end();
831 }
832 // actions area
833 if ($privileges) {
834
835   // remove nodes
836   $table->tfoot_start();
837
838   $table->row_start();
839   $table->cell($form->submit_html ("remove-nodes-from-slice","Remove selected"),
840                array('hfill'=>true,'align'=>'right'));
841   $table->row_end();
842  }
843 $table->end();
844 $toggle_nodes->end();
845
846 //////////////////// nodes to add
847 if ($privileges) {
848   $new_potential_nodes = array();
849   if ($potential_nodes) foreach ($potential_nodes as $node) {
850       $emptywl=empty($node['slice_ids_whitelist']);
851       $inwl = (!emptywl) and in_array($slice['slice_id'],$node['slice_ids_whitelist']);
852       if ($emptywl or $inwl)
853         $new_potential_nodes[]=$node;
854   }
855   $potential_nodes=$new_potential_nodes;
856
857   $count=count($potential_nodes);
858   $toggle_nodes=new PlekitToggle('my-slice-nodes-add',
859                                  count_english($potential_nodes,"more node") . " available",
860                                  array('visible'=>get_arg('show_nodes_add',false)));
861   $toggle_nodes->start();
862
863   if ( $potential_nodes ) {
864     $headers=array();
865     $notes=array();
866
867
868 /*
869     $headers['peer']='string';
870     $headers['hostname']='string';
871     $short="-S-"; $long=Node::status_footnote(); $type='string'; 
872         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
873         $short=reservable_mark(); $long=reservable_legend(); $type='string';
874         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
875     // the extra tags, configured for the UI
876     $headers=array_merge($headers,$visibletags->headers());
877     $headers['+']="none";
878 */
879
880     $add_header = array();
881     $add_header['+']="none";
882     $headers = array_merge($ConfigureColumns->get_headers(),$add_header);
883
884     //$notes=array_merge($notes,$visibletags->notes());
885 $notes [] = "For information about the different columns please see the <b>node table layout</b> tab above or <b>mouse over</b> the column headers";
886     
887     $table=new PlekitTable('add_nodes',$headers,NULL, $table_options);
888     $form=new PlekitForm(l_actions(),
889                          array('slice_id'=>$slice['slice_id']));
890     $form->start();
891     $table->start();
892     if ($potential_nodes) foreach ($potential_nodes as $node) {
893         $table->row_start();
894
895 $table->cell($node['node_id'], array('display'=>'none'));
896
897         $table->cell(l_node_obj($node));
898         $peers->cell($table,$node['peer_id']);
899         list($label,$class) = Node::status_label_class_($node);
900         $table->cell ($label,array('class'=>$class));
901         $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
902
903         //extra columns
904           $hostname=$node['hostname'];
905           $ip=$interface_hash[$node['node_id']]['ip'];
906           $interface_id=$interface_hash[$node['node_id']]['interface_id'];
907         $node['domain'] = topdomain($hostname);
908         $node['sitename'] = l_site_t($node['site_id'],$site_hash[$node['site_id']]);
909         $node['ipaddress'] = l_interface_t($interface_id,$ip);
910
911         //foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
912         $ConfigureColumns->cells($table, $node);
913
914         $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
915         $table->row_end();
916       }
917     // add nodes
918     $table->tfoot_start();
919     $table->row_start();
920     $table->cell($form->submit_html ("add-nodes-in-slice","Add selected"),
921                  array('hfill'=>true,'align'=>'right'));
922     $table->row_end();
923     $table->end();
924     $form->end();
925   }
926   $toggle_nodes->end();
927 }
928
929 $toggle->end();
930
931 // very wide values get abbreviated
932 $tag_value_threshold=24;
933 //////////////////////////////////////////////////////////// Tags
934 //if ( $local_peer ) {
935   $tags=$api->GetSliceTags (array('slice_id'=>$slice_id));
936   if ($profiling) plc_debug_prof('8 slice tags',count($tags));
937   function get_tagname ($tag) { return $tag['tagname'];}
938   $tagnames = array_map ("get_tagname",$tags);
939   
940   $toggle = new PlekitToggle ('slice-tags',count_english_warning($tags,'tag'),
941                               array('bubble'=>'Inspect and set tags on tat slice',
942                                     'visible'=>get_arg('show_tags',false)));
943   $toggle->start();
944   
945   $headers=array(
946     "Name"=>"string",
947     "Value"=>"string",
948     "Node"=>"string",
949     "NodeGroup"=>"string");
950   if ($tags_privileges) $headers[plc_delete_icon()]="none";
951   
952   $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
953   $table=new PlekitTable("slice_tags",$headers,'0',$table_options);
954   $form=new PlekitForm(l_actions(),
955                        array('slice_id'=>$slice['slice_id']));
956   $form->start();
957   $table->start();
958   if ($tags) {
959     // Get hostnames for nodes in a single pass
960     $_node_ids = array();
961     foreach ($tags as $tag) {
962       if ($tag['node_id']) {
963         array_push($_node_ids, $tag['node_id']);
964       }
965     }
966     $_nodes = $api->GetNodes(array('node_id' => $_node_ids), array('node_id', 'hostname'));
967     $_hostnames = array();
968     foreach ($_nodes as $_node) {
969       $_hostnames[$_node['node_id']] = $_node['hostname'];
970     }
971
972     // Loop through tags again to display
973     foreach ($tags as $tag) {
974       $node_name = "ALL";
975       if ($tag['node_id']) {
976         $node_name = $_hostnames[$tag['node_id']];
977       }
978       $nodegroup_name="n/a";
979       if ($tag['nodegroup_id']) { 
980         $nodegroups=$api->GetNodeGroups(array('nodegroup_id'=>$tag['nodegroup_id']));
981         if ($profiling) plc_debug_prof('10 nodegroup for slice tag',$nodegroup);
982         if ($nodegroup) {
983           $nodegroup = $nodegroups[0];
984           $nodegroup_name = $nodegroup['groupname'];
985         }
986       }
987       $table->row_start();
988       $table->cell(l_tag_obj($tag));
989       // very wide values get abbreviated
990       $table->cell(truncate_and_popup($tag['value'],$tag_value_threshold));
991       $table->cell($node_name);
992       $table->cell($nodegroup_name);
993       if ($tags_privileges) $table->cell ($form->checkbox_html('slice_tag_ids[]',$tag['slice_tag_id']));
994       $table->row_end();
995     }
996   }
997   if ($tags_privileges) {
998     $table->tfoot_start();
999     $table->row_start();
1000     $table->cell($form->submit_html ("delete-slice-tags","Remove selected"),
1001                  array('hfill'=>true,'align'=>'right'));
1002     $table->row_end();
1003     
1004     $table->row_start();
1005     function tag_selector ($tag) {
1006       return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']);
1007     }
1008     $all_tags= $api->GetTagTypes( array ("category"=>"slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id"));
1009     if ($profiling) plc_debug_prof('11 tagtypes',count($all_tags));
1010     $selector_tag=array_map("tag_selector",$all_tags);
1011     
1012     function node_selector($node) { 
1013       return array("display"=>$node["hostname"],"value"=>$node['node_id']);
1014     }
1015     $selector_node=array_map("node_selector",$slice_nodes);
1016     
1017     function nodegroup_selector($ng) {
1018       return array("display"=>$ng["groupname"],"value"=>$ng['nodegroup_id']);
1019     }
1020     $all_nodegroups = $api->GetNodeGroups( array("groupname"=>"*"), array("groupname","nodegroup_id"));
1021     if ($profiling) plc_debug_prof('13 nodegroups',count($all_nodegroups));
1022     $selector_nodegroup=array_map("nodegroup_selector",$all_nodegroups);
1023     
1024     $table->cell($form->select_html("tag_type_id",$selector_tag,array('label'=>"Choose Tag")));
1025     $table->cell($form->text_html("value","",array('width'=>8)));
1026     $table->cell($form->select_html("node_id",$selector_node,array('label'=>"All Nodes")));
1027     $table->cell($form->select_html("nodegroup_id",$selector_nodegroup,array('label'=>"No Nodegroup")));
1028     $table->cell($form->submit_html("add-slice-tag","Set Tag"),array('columns'=>2,'align'=>'left'));
1029     $table->row_end();
1030   }
1031     
1032   $table->end();
1033   $form->end();
1034   $toggle->end();
1035 //}
1036
1037
1038 //////////////////////// renew slice
1039 if ($local_peer ) {
1040   if ( ! $renew_visible) renew_area ($slice,$site,false);
1041  }
1042
1043 $peers->block_end($peer_id);
1044
1045 if ($profiling) plc_debug_prof_end();
1046
1047 // Print footer
1048 include 'plc_footer.php';
1049
1050 ?>