A new version of the column configuration interface including
[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 $extra_columns = array();
433 $extra_columns[]=array('tagname'=>'sitename', 'header'=>'SN', 'type'=>'string', 'title'=>'Site name', 'fetched'=>true);
434 $extra_columns[]=array('tagname'=>'domain', 'header'=>'DN', 'type'=>'string', 'title'=>'Toplevel domain name', 'fetched'=>true);
435 $extra_columns[]=array('tagname'=>'ipaddress', 'header'=>'IP', 'type'=>'string', 'title'=>'IP Address', 'fetched'=>true);
436 $extra_columns[]=array('tagname'=>'fcdistro', 'header'=>'OS', 'type'=>'string', 'title'=>'Operating system', 'fetched'=>false);
437 $extra_columns[]=array('tagname'=>'uptime', 'header'=>'UT', 'source'=>'comon', 'type'=>'sortAlphaNumericTop', 'title'=>'Continuous uptime until now', 'fetched'=>false);
438 $extra_columns[]=array('tagname'=>'date_created', 'header'=>'DA', 'source'=>'myplc', 'type'=>'date', 'title'=>'Date added', 'fetched'=>false);
439
440
441 //Get user's column configuration
442
443 $first_time_configuration = false;
444 $default_configuration = "hostname:f|ST:f|AU:f|RES:f";
445 //$extra_default = "";
446 $column_configuration = "";
447 $slice_column_configuration = "";
448
449 $show_configuration = "";
450 $show_reservable_message = '1';
451 $show_columns_message = '1';
452
453
454 //$PersonTags=$api->GetPersonTags (array('person_id'=>$plc->person['person_id']));
455 $PersonTags=$api->GetPersonTags (array('person_id'=>$plc->person['person_id']));
456 //print_r($PersonTags);
457 foreach ($PersonTags as $ptag) {
458         if ($ptag['tagname'] == 'columnconf')
459         {
460                 $column_configuration = $ptag['value'];
461                 $conf_tag_id = $ptag['person_tag_id'];
462         }
463         if ($ptag['tagname'] == 'showconf')
464         {
465                 $show_configuration = $ptag['value'];
466                 $show_tag_id = $ptag['person_tag_id'];
467         }
468 }
469
470 //print("<br>person column configuration = ".$column_configuration);
471 //print("<br>person show configuration = ".$show_configuration);
472
473 $sliceconf_exists = false;
474 if ($column_configuration == "")
475 {
476         $first_time_configuration = true;
477         $column_configuration = $slice_id.";default";
478         $sliceconf_exists = true;
479 }
480 else {
481         $slice_conf = explode(";",$column_configuration);
482         for ($i=0; $i<count($slice_conf); $i++ ) {
483                 if ($slice_conf[$i] == $slice_id)
484                 {
485                         $i++;
486                         $slice_column_configuration = $slice_conf[$i];
487                         $sliceconf_exists = true;
488                         break;
489                 }
490                 else
491                 {
492                         $i++;
493                         $slice_column_configuration = $slice_conf[$i];
494                 }
495         }        
496 }
497
498 if ($sliceconf_exists == false)
499         $column_configuration = $column_configuration.";".$slice_id.";default";
500
501 //print("<br>slice configuration = ".$slice_column_configuration);
502
503
504 if ($slice_column_configuration == "")
505         $full_configuration = $default_configuration;
506 else
507         $full_configuration = $default_configuration."|".$slice_column_configuration;
508
509
510 //instantiate the column configuration class, which prepares the headers array
511 $ConfigureColumns =new PlekitColumns($full_configuration, $fix_columns, $tag_columns, $extra_columns);
512
513 $visiblecolumns = $ConfigureColumns->node_tags();
514
515 $node_columns=array_merge($node_fixed_columns,$visiblecolumns);
516 //print_r($node_columns);
517 $all_nodes=$api->GetNodes(NULL,$node_columns);
518
519 $ConfigureColumns->fetch_live_data($all_nodes);
520
521 //print("<br>person show configuration = ".$show_configuration);
522
523 $show_conf = explode(";",$show_configuration);
524 foreach ($show_conf as $ss) {
525         if ($ss =="reservable")
526                 $show_reservable_message = '0';
527         if ($ss =="columns")
528                 $show_columns_message = '0';
529 }        
530
531 //print("res:".$show_reservable_message." - cols:".$show_columns_message);
532
533 $slice_nodes=array();
534 $potential_nodes=array();
535 $reservable_nodes=array();
536 foreach ($all_nodes as $node) {
537   if (in_array($node['node_id'],$slice['node_ids'])) {
538     $slice_nodes[]=$node;
539     if ($node['node_type']=='reservable') $reservable_nodes[]=$node;
540   } else {
541     $potential_nodes[]=$node;
542   }
543 }
544 if ($profiling) plc_debug_prof('5: nodes',count($slice_nodes));
545 ////////////////////
546 // outline the number of reservable nodes
547 $nodes_message=count_english($slice_nodes,"node");
548 if (count($reservable_nodes)) $nodes_message .= " (" . count($reservable_nodes) . " reservable)";
549 $toggle=new PlekitToggle ('my-slice-nodes',$nodes_message,
550                           array('bubble'=>
551                                 'Manage nodes attached to this slice',
552                                 'visible'=>get_arg('show_nodes',false)));
553 $toggle->start();
554
555
556 //////////////////// reservable nodes area
557
558 $count=count($reservable_nodes);
559 if ($count && $privileges) {
560   // having reservable nodes in white lists looks a bit off scope for now...
561   $toggle_nodes=new PlekitToggle('my-slice-nodes-reserve',
562                                  "Leases - " . count($reservable_nodes) . " reservable node(s)",
563                                  array('visible'=>$show_reservable_message, 'info_div'=>'note_reservable_div'));
564   $toggle_nodes->start();
565
566 if ($show_reservable_message) 
567 $note_display = "";
568 else
569 $note_display = "display:none;";
570
571 ////////// show a notice to people having attached a reservable node
572 if (count($reservable_nodes) && $privileges) {
573   $mark=reservable_mark();
574   print <<<EOF
575 <br>
576 <div id='note_reservable_div' style="align:center; background-color:#CAE8EA; padding:4px; width:800px; $note_display">
577 <table align=center><tr><td valign=top>
578 You have attached one or more reservable nodes to your slice. 
579 Reservable nodes show up with the '$mark' mark. 
580 Your slivers will be available only during timeslots
581 where you have obtained leases. 
582 You can manage your leases in the tab below.
583 <br>
584 Please note that as of August 2010 this feature is experimental. 
585 Feedback is appreciated at <a href="mailto:devel@planet-lab.org">devel@planet-lab.org</a>
586 </td><td valign=top><span onClick=closeMessage('reservable')><img class='reset' src="/planetlab/icons/clear.png" alt="hide message"></span>
587 </td></tr></table>
588 </div>
589 EOF;
590 }  
591
592   $grain=$api->GetLeaseGranularity();
593   if ($profiling) plc_debug_prof('6 granul',$grain);
594   // where to start from, expressed as an offset in hours from now
595   $resa_offset=$_GET['resa_offset'];
596   if ( ! $resa_offset ) $resa_offset=0;
597   $rough_start=time()+$resa_offset*3600;
598   // xxx should be configurable
599   $resa_slots=$_GET['resa_slots'];
600   if ( ! $resa_slots ) $resa_slots = 36;
601   // for now, show the next 72 hours, or 72 grains, which ever is smaller
602   $duration=$resa_slots*$grain;
603   $steps=$duration/$grain;
604   $start=intval($rough_start/$grain)*$grain;
605   $end=$rough_start+$duration;
606   $lease_columns=array('lease_id','name','t_from','t_until','hostname','name');
607   $leases=$api->GetLeases(array(']t_until'=>$rough_start,'[t_from'=>$end,'-SORT'=>'t_from'),$lease_columns);
608   if ($profiling) plc_debug_prof('7 leases',count($leases));
609   // hash nodes -> leases
610   $host_hash=array();
611   foreach ($leases as $lease) {
612     $hostname=$lease['hostname'];
613     if ( ! $host_hash[$hostname] ) {
614         $host_hash[$hostname]=array();
615     }
616     // resync within the table
617     $lease['nfrom']=($lease['t_from']-$start)/$grain;
618     $lease['nuntil']=($lease['t_until']-$start)/$grain;
619     $host_hash[$hostname] []= $lease;
620   }
621   # leases_data is the name used by leases.js to locate this table
622   echo "<table id='leases_data'>";
623   # pass (slice_id,slicename) as the [0,0] coordinate as thead>tr>td
624   echo "<thead><tr><td>" . $slice['slice_id'] . '&' . $slice['name'] . "</td>";
625   # the timeslot headers read (timestamp,label)
626   $day_names=array('Su','M','Tu','W','Th','F','Sa');
627   for ($i=0; $i<$steps; $i++) {
628     $timestamp=($start+$i*$grain);
629     $day=$day_names[intval(strftime("%w",$timestamp))];
630     $label=$day . strftime(" %H:%M",$timestamp);
631     // expose in each header cell the full timestamp, and how to display it - use & as a separator*/
632     echo "<th>" . implode("&",array($timestamp,$label)) . "</th>";
633   }
634   echo "</tr></thead><tbody>";
635   // todo - sort on hostnames
636   function sort_hostname ($a,$b) { return ($a['hostname']<$b['hostname'])?-1:1;}
637   usort($reservable_nodes,sort_hostname);
638   foreach ($reservable_nodes as $node) {
639     echo "<tr><th scope='row'>". $node['hostname'] . "</th>";
640     $hostname=$node['hostname'];
641     $leases=$host_hash[$hostname];
642     $counter=0;
643     while ($counter<$steps) {
644       if ($leases && ($leases[0]['nfrom']<=$counter)) {
645         $lease=array_shift($leases);
646         /* nicer display, merge two consecutive leases for the same slice 
647            avoid doing that for now, as it might makes things confusing */
648         /* while ($leases && ($leases[0]['name']==$lease['name']) && ($leases[0]['nfrom']==$lease['nuntil'])) {
649           $lease['nuntil']=$leases[0]['nuntil'];
650           array_shift($leases);
651           }*/
652         $duration=$lease['nuntil']-$counter;
653         echo "<td colspan='$duration'>" . $lease['lease_id'] . '&' . $lease['name'] . "</td>";
654         $counter=$lease['nuntil']; 
655       } else {
656         echo "<td></td>";
657         $counter+=1;
658       }
659     }
660     echo "</tr>";
661   }
662   echo "</tbody></table>\n";
663
664   // the general layout for the scheduler
665   echo <<< EOF
666 <div id='leases_area'></div>
667
668 <div id='leases_buttons'>
669   <button id='leases_clear' type='submit'>Clear</button>
670   <button id='leases_submit' type='submit'>Submit</button>
671 </div>
672 EOF;
673
674   $toggle_nodes->end();
675  }
676
677
678 //////////////////// node configuration panel
679
680 if ($first_time_configuration) 
681 $column_conf_visible = '1';
682 else
683 $column_conf_visible = '0';
684
685
686 $toggle_nodes=new PlekitToggle('my-slice-nodes-configuration',
687                                "Node table layout",
688                                array('visible'=>$column_conf_visible, 'info_div'=>'note_columns_div'));
689 $toggle_nodes->start();
690
691 //usort ($table_headers, create_function('$col1,$col2','return strcmp($col1["header"],$col2["header"]);'));
692 //print("<p>TABLE HEADERS<p>");
693 //print_r($table_headers);
694
695 print("<div id='debug'></div>");
696 print("<input type='hidden' id='slice_id' value='".$slice['slice_id']."' />");
697 print("<input type='hidden' id='person_id' value='".$plc->person['person_id']."' />");
698 print("<input type='hidden' id='conf_tag_id' value='".$conf_tag_id."' />");
699 print("<input type='hidden' id='show_tag_id' value='".$show_tag_id."' />");
700 print("<input type='hidden' id='show_configuration' value='".$show_configuration."' />");
701 print("<input type='hidden' id='column_configuration' value='".$slice_column_configuration."' />");
702 print("<br><input type='hidden' size=80 id='full_column_configuration' value='".$column_configuration."' />");
703 print("<input type='hidden' id='previousConf' value='".$slice_column_configuration."'></input>");
704 print("<input type='hidden' id='defaultConf' value='".$default_configuration."'></input>");
705
706 //print ("showing column message = ".$show_columns_message);
707 if ($show_columns_message == '0') 
708 $note_display = "display:none;";
709 else
710 $note_display = "";
711
712   print <<<EOF
713 <div id='note_columns_div' style="align:center; background-color:#CAE8EA; padding:4px; width:800px; $note_display">
714 <table align=center><tr><td valign=top>
715 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>.
716 </td><td valign=top><span onClick=closeMessage('columns')><img class='reset' src="/planetlab/icons/clear.png" alt="hide message permanently"></span>
717 </td></tr></table>
718 </div>
719 EOF;
720
721 $ConfigureColumns->configuration_panel_html(true);
722
723 $ConfigureColumns->javascript_init();
724
725 $toggle_nodes->end();
726
727
728 $all_sites=$api->GetSites(NULL, array('site_id','login_base'));
729 $site_hash=array();
730 foreach ($all_sites as $tmp_site) $site_hash[$tmp_site['site_id']]=$tmp_site['login_base'];
731
732 $interface_columns=array('ip','node_id','interface_id');
733 $interface_filter=array('is_primary'=>TRUE);
734 $interfaces=$api->GetInterfaces($interface_filter,$interface_columns);
735
736 $interface_hash=array();
737 foreach ($interfaces as $interface) $interface_hash[$interface['node_id']]=$interface;
738
739
740
741
742
743 //////////////////// nodes currently in
744 $toggle_nodes=new PlekitToggle('my-slice-nodes-current',
745                                count_english($slice_nodes,"node") . " currently in $name",
746                                array('visible'=>get_arg('show_nodes_current',!$privileges)));
747 $toggle_nodes->start();
748
749 $headers=array();
750 $notes=array();
751 //$notes=array_merge($notes,$visibletags->notes());
752 $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";
753
754 /*
755 $headers['peer']='string';
756 $headers['hostname']='string';
757 $short="-S-"; $long=Node::status_footnote(); $type='string'; 
758         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
759 $short=reservable_mark(); $long=reservable_legend(); $type='string';
760         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
761 // the extra tags, configured for the UI
762 $headers=array_merge($headers,$visibletags->headers());
763
764 if ($privileges) $headers[plc_delete_icon()]="none";
765 */
766
767 $edit_header = array();
768 if ($privileges) $edit_header[plc_delete_icon()]="none";
769 $headers = array_merge($ConfigureColumns->get_headers(),$edit_header);
770
771 //print("<p>HEADERS<p>");
772 //print_r($headers);
773
774 $table_options = array('notes'=>$notes,
775                        'search_width'=>15,
776                        'pagesize'=>20,
777                         'configurable'=>true);
778
779 $table=new PlekitTable('nodes',$headers,NULL,$table_options);
780
781 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
782 $form->start();
783 $table->start();
784 if ($slice_nodes) foreach ($slice_nodes as $node) {
785   $table->row_start();
786
787 $table->cell($node['node_id'], array('display'=>'none'));
788
789   $table->cell(l_node_obj($node));
790   $peers->cell($table,$node['peer_id']);
791   $run_level=$node['run_level'];
792   list($label,$class) = Node::status_label_class_($node);
793   $table->cell ($label,array('class'=>$class));
794   $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
795
796   $hostname=$node['hostname'];
797   $ip=$interface_hash[$node['node_id']]['ip'];
798   $interface_id=$interface_hash[$node['node_id']]['interface_id'];
799
800 //extra columns
801 $node['domain'] = topdomain($hostname);
802 $node['sitename'] = l_site_t($node['site_id'],$site_hash[$node['site_id']]);
803 if ($interface_id)
804         $node['ipaddress'] = l_interface_t($interface_id,$ip);
805   else
806         $node['ipaddress'] = "n/a";
807
808  //foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
809  $ConfigureColumns->cells($table, $node);
810
811   if ($privileges) $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
812   $table->row_end();
813 }
814 // actions area
815 if ($privileges) {
816
817   // remove nodes
818   $table->tfoot_start();
819
820   $table->row_start();
821   $table->cell($form->submit_html ("remove-nodes-from-slice","Remove selected"),
822                array('hfill'=>true,'align'=>'right'));
823   $table->row_end();
824  }
825 $table->end();
826 $toggle_nodes->end();
827
828 //////////////////// nodes to add
829 if ($privileges) {
830   $new_potential_nodes = array();
831   if ($potential_nodes) foreach ($potential_nodes as $node) {
832       $emptywl=empty($node['slice_ids_whitelist']);
833       $inwl = (!emptywl) and in_array($slice['slice_id'],$node['slice_ids_whitelist']);
834       if ($emptywl or $inwl)
835         $new_potential_nodes[]=$node;
836   }
837   $potential_nodes=$new_potential_nodes;
838
839   $count=count($potential_nodes);
840   $toggle_nodes=new PlekitToggle('my-slice-nodes-add',
841                                  count_english($potential_nodes,"more node") . " available",
842                                  array('visible'=>get_arg('show_nodes_add',false)));
843   $toggle_nodes->start();
844
845   if ( $potential_nodes ) {
846     $headers=array();
847     $notes=array();
848
849
850 /*
851     $headers['peer']='string';
852     $headers['hostname']='string';
853     $short="-S-"; $long=Node::status_footnote(); $type='string'; 
854         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
855         $short=reservable_mark(); $long=reservable_legend(); $type='string';
856         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
857     // the extra tags, configured for the UI
858     $headers=array_merge($headers,$visibletags->headers());
859     $headers['+']="none";
860 */
861
862     $add_header = array();
863     $add_header['+']="none";
864     $headers = array_merge($ConfigureColumns->get_headers(),$add_header);
865
866     //$notes=array_merge($notes,$visibletags->notes());
867 $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";
868     
869     $table=new PlekitTable('add_nodes',$headers,NULL, $table_options);
870     $form=new PlekitForm(l_actions(),
871                          array('slice_id'=>$slice['slice_id']));
872     $form->start();
873     $table->start();
874     if ($potential_nodes) foreach ($potential_nodes as $node) {
875         $table->row_start();
876
877 $table->cell($node['node_id'], array('display'=>'none'));
878
879         $table->cell(l_node_obj($node));
880         $peers->cell($table,$node['peer_id']);
881         list($label,$class) = Node::status_label_class_($node);
882         $table->cell ($label,array('class'=>$class));
883         $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
884
885         //extra columns
886           $hostname=$node['hostname'];
887           $ip=$interface_hash[$node['node_id']]['ip'];
888           $interface_id=$interface_hash[$node['node_id']]['interface_id'];
889         $node['domain'] = topdomain($hostname);
890         $node['sitename'] = l_site_t($node['site_id'],$site_hash[$node['site_id']]);
891         $node['ipaddress'] = l_interface_t($interface_id,$ip);
892
893         //foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
894         $ConfigureColumns->cells($table, $node);
895
896         $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
897         $table->row_end();
898       }
899     // add nodes
900     $table->tfoot_start();
901     $table->row_start();
902     $table->cell($form->submit_html ("add-nodes-in-slice","Add selected"),
903                  array('hfill'=>true,'align'=>'right'));
904     $table->row_end();
905     $table->end();
906     $form->end();
907   }
908   $toggle_nodes->end();
909 }
910
911 $toggle->end();
912
913 // very wide values get abbreviated
914 $tag_value_threshold=24;
915 //////////////////////////////////////////////////////////// Tags
916 //if ( $local_peer ) {
917   $tags=$api->GetSliceTags (array('slice_id'=>$slice_id));
918   if ($profiling) plc_debug_prof('8 slice tags',count($tags));
919   function get_tagname ($tag) { return $tag['tagname'];}
920   $tagnames = array_map ("get_tagname",$tags);
921   
922   $toggle = new PlekitToggle ('slice-tags',count_english_warning($tags,'tag'),
923                               array('bubble'=>'Inspect and set tags on tat slice',
924                                     'visible'=>get_arg('show_tags',false)));
925   $toggle->start();
926   
927   $headers=array(
928     "Name"=>"string",
929     "Value"=>"string",
930     "Node"=>"string",
931     "NodeGroup"=>"string");
932   if ($tags_privileges) $headers[plc_delete_icon()]="none";
933   
934   $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
935   $table=new PlekitTable("slice_tags",$headers,'0',$table_options);
936   $form=new PlekitForm(l_actions(),
937                        array('slice_id'=>$slice['slice_id']));
938   $form->start();
939   $table->start();
940   if ($tags) {
941     // Get hostnames for nodes in a single pass
942     $_node_ids = array();
943     foreach ($tags as $tag) {
944       if ($tag['node_id']) {
945         array_push($_node_ids, $tag['node_id']);
946       }
947     }
948     $_nodes = $api->GetNodes(array('node_id' => $_node_ids), array('node_id', 'hostname'));
949     $_hostnames = array();
950     foreach ($_nodes as $_node) {
951       $_hostnames[$_node['node_id']] = $_node['hostname'];
952     }
953
954     // Loop through tags again to display
955     foreach ($tags as $tag) {
956       $node_name = "ALL";
957       if ($tag['node_id']) {
958         $node_name = $_hostnames[$tag['node_id']];
959       }
960       $nodegroup_name="n/a";
961       if ($tag['nodegroup_id']) { 
962         $nodegroups=$api->GetNodeGroups(array('nodegroup_id'=>$tag['nodegroup_id']));
963         if ($profiling) plc_debug_prof('10 nodegroup for slice tag',$nodegroup);
964         if ($nodegroup) {
965           $nodegroup = $nodegroups[0];
966           $nodegroup_name = $nodegroup['groupname'];
967         }
968       }
969       $table->row_start();
970       $table->cell(l_tag_obj($tag));
971       // very wide values get abbreviated
972       $table->cell(truncate_and_popup($tag['value'],$tag_value_threshold));
973       $table->cell($node_name);
974       $table->cell($nodegroup_name);
975       if ($tags_privileges) $table->cell ($form->checkbox_html('slice_tag_ids[]',$tag['slice_tag_id']));
976       $table->row_end();
977     }
978   }
979   if ($tags_privileges) {
980     $table->tfoot_start();
981     $table->row_start();
982     $table->cell($form->submit_html ("delete-slice-tags","Remove selected"),
983                  array('hfill'=>true,'align'=>'right'));
984     $table->row_end();
985     
986     $table->row_start();
987     function tag_selector ($tag) {
988       return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']);
989     }
990     $all_tags= $api->GetTagTypes( array ("category"=>"slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id"));
991     if ($profiling) plc_debug_prof('11 tagtypes',count($all_tags));
992     $selector_tag=array_map("tag_selector",$all_tags);
993     
994     function node_selector($node) { 
995       return array("display"=>$node["hostname"],"value"=>$node['node_id']);
996     }
997     $selector_node=array_map("node_selector",$slice_nodes);
998     
999     function nodegroup_selector($ng) {
1000       return array("display"=>$ng["groupname"],"value"=>$ng['nodegroup_id']);
1001     }
1002     $all_nodegroups = $api->GetNodeGroups( array("groupname"=>"*"), array("groupname","nodegroup_id"));
1003     if ($profiling) plc_debug_prof('13 nodegroups',count($all_nodegroups));
1004     $selector_nodegroup=array_map("nodegroup_selector",$all_nodegroups);
1005     
1006     $table->cell($form->select_html("tag_type_id",$selector_tag,array('label'=>"Choose Tag")));
1007     $table->cell($form->text_html("value","",array('width'=>8)));
1008     $table->cell($form->select_html("node_id",$selector_node,array('label'=>"All Nodes")));
1009     $table->cell($form->select_html("nodegroup_id",$selector_nodegroup,array('label'=>"No Nodegroup")));
1010     $table->cell($form->submit_html("add-slice-tag","Set Tag"),array('columns'=>2,'align'=>'left'));
1011     $table->row_end();
1012   }
1013     
1014   $table->end();
1015   $form->end();
1016   $toggle->end();
1017 //}
1018
1019
1020 //////////////////////// renew slice
1021 if ($local_peer ) {
1022   if ( ! $renew_visible) renew_area ($slice,$site,false);
1023  }
1024
1025 $peers->block_end($peer_id);
1026
1027 if ($profiling) plc_debug_prof_end();
1028
1029 // Print footer
1030 include 'plc_footer.php';
1031
1032 ?>