show message about leases - leases tab first in nodes section
[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_visibletags.php';
21 require_once 'linetabs.php';
22 require_once 'table.php';
23 require_once 'details.php';
24 require_once 'toggle.php';
25 require_once 'form.php';
26 require_once 'raphael.php';
27
28 // keep css separate for now
29 drupal_set_html_head('
30 <link href="/planetlab/css/my_slice.css" rel="stylesheet" type="text/css" />
31 <script src="/planetlab/slices/leases.js" type="text/javascript" charset="utf-8"></script>
32 ');
33
34 // -------------------- admins potentially need to get full list of users
35 ini_set('memory_limit','32M');
36
37 $profiling=false;
38 if ($_GET['profiling']) $profiling=true;
39
40 if ($profiling)  plc_debug_prof_start();
41
42 // -------------------- 
43 // recognized URL arguments
44 $slice_id=intval($_GET['id']);
45 if ( ! $slice_id ) { plc_error('Malformed URL - id not set'); return; }
46
47 ////////////////////
48 // have to name columns b/c we need the non-native 'omf_control' column
49 $slice_columns=array('slice_id','name','peer_id','site_id','person_ids','node_ids','expires',
50                      'url','description','instantiation','omf_control');
51 $slices= $api->GetSlices( array($slice_id), $slice_columns);
52
53 if (empty($slices)) {
54   drupal_set_message ("Slice " . $slice_id . " not found");
55   return;
56  }
57
58 $slice=$slices[0];
59
60 if ($profiling) plc_debug_prof('2: slice',count($slices));
61 // pull all node info to vars
62 $name= $slice['name'];
63 $expires = date( "d/m/Y", $slice['expires'] );
64 $site_id= $slice['site_id'];
65
66 $person_ids=$slice['person_ids'];
67
68 // get peers
69 $peer_id= $slice['peer_id'];
70 $peers=new Peers ($api);
71 $local_peer = ! $peer_id;
72
73 if ($profiling) plc_debug_prof('3: peers',count($peers));
74
75 // gets site info
76 $sites= $api->GetSites( array( $site_id ) );
77 $site=$sites[0];
78 $site_name= $site['name'];
79 $max_slices = $site['max_slices'];
80
81 if ($profiling) plc_debug_prof('4: sites',count($sites));
82 //////////////////////////////////////// building blocks for the renew area
83 // Constants
84 global $DAY;            $DAY = 24*60*60;
85 global $WEEK;           $WEEK = 7 * $DAY; 
86 global $MAX_WEEKS;      $MAX_WEEKS= 8;          // weeks from today
87 global $GRACE_DAYS;     $GRACE_DAYS=10;         // days for renewal promoted on top
88 global $NOW;            $NOW=mktime();
89
90 ////////////////////////////////////////////////////////////
91 // make the renew area on top and open if the expiration time is less than 10 days from now
92 function renew_needed ($slice) {
93   global $DAY, $NOW, $GRACE_DAYS;
94   $current_exp=$slice['expires'];
95
96   $time_left = $current_exp - $NOW;
97   $visible = $time_left/$DAY <= $GRACE_DAYS;
98   return $visible;
99 }
100
101 function renew_area ($slice,$site,$visible) {
102   global $DAY, $WEEK, $MAX_WEEKS, $GRACE_DAYS, $NOW;
103  
104   $current_exp=$slice['expires'];
105   $current_text = gmstrftime("%A %b-%d-%y %T %Z", $current_exp);
106   $max_exp= $NOW + ($MAX_WEEKS * $WEEK); // seconds since epoch
107   $max_text = gmstrftime("%A %b-%d-%y %T %Z", $max_exp);
108
109   // xxx some extra code needed to enable this area only if the slice description is OK:
110   // description and url must be non void
111   $toggle=
112     new PlekitToggle('renew',"Expires $current_text - Renew this slice",
113                      array("bubble"=>
114                            "Enter this zone if you wish to renew your slice",
115                            'visible'=>$visible));
116   $toggle->start();
117
118   // xxx message could take roles into account
119   if ($site['max_slices']<=0) {
120      $message= <<< EOF
121 <p class='my-slice-renewal'>Slice creation and renewal have been temporarily disabled for your
122 <site. This may have occurred because your site's nodes have been down
123 or unreachable for several weeks, and multiple attempts to contact
124 your site's PI(s) and Technical Contact(s) have all failed. If so,
125 contact your site's PI(s) and Technical Contact(s) and ask them to
126 bring up your site's nodes. Please visit your <a
127 href='/db/sites/index.php?id=$site_id'>site details</a> page to find
128 out more about your site's nodes, and how to contact your site's PI(s)
129 and Technical Contact(s).</p>
130 EOF;
131      echo $message;
132  
133   } else {
134     // xxx this is a rough cut and paste from the former UI
135     // showing a datepicker view could be considered as well with some extra work
136     // calculate possible extension lengths
137     $selectors = array();
138     foreach ( array ( 1 => "One more week", 
139                       2 => "Two more weeks", 
140                       3 => "Three more weeks", 
141                       4 => "One more month" ) as $weeks => $text ) {
142       $candidate_exp = $current_exp + $weeks*$WEEK;
143       if ( $candidate_exp < $max_exp) {
144         $selectors []= array('display'=>"$text (" . gmstrftime("%A %b-%d-%y %T %Z", $candidate_exp) . ")",
145                              'value'=>$candidate_exp);
146         $max_renewal_weeks=$weeks;
147         $max_renewal_date= gmstrftime("%A %b-%d-%y %T %Z", $candidate_exp);
148       }
149     }
150
151     if ( empty( $selectors ) ) {
152       print <<< EOF
153 <div class='my-slice-renewal'>
154 Slices annot be renewed more than $MAX_WEEKS weeks from now, i.e. not beyond $max_text. 
155 For this reason, the current slice cannot be renewed any further into the future, try again closer to expiration date.
156 </div>
157 EOF;
158      } else {
159       print <<< EOF
160 <div class='my-slice-renewal'>
161 <p>You <span class='bold'>must</span> provide a short description, 
162 as well as a link to a project website, before renewing it.
163
164 <br/> Please make sure to provide reasonable details on <span class='bold'>
165 the kind of traffic</span>, and <span class='bold'>copyrights</span> if relevant. 
166 Do <span class='bold'>not</span> provide bogus information; if a complaint is lodged against 
167 your slice  and your PlanetLab Operations Center is unable to determine what the normal behavior 
168 of your slice is, your slice may be deleted to resolve the complaint.</p>
169
170 <p><span class='bold'>NOTE:</span> 
171 Slices cannot be renewed beyond another $max_renewal_weeks week(s) ($max_renewal_date).
172 </p>
173 </div>
174 EOF;
175
176       $form = new PlekitForm (l_actions(),
177                               array('action'=>'renew-slice',
178                                     'slice_id'=>$slice['slice_id']));
179       $form->start();
180       print $form->label_html('expires','Duration');
181       print $form->select_html('expires',$selectors,array('label'=>'Pick one'));
182       print $form->submit_html('renew-button','Renew');
183       $form->end();
184     }
185   }
186  
187   $toggle->end();
188 }
189
190 ////////////////////////////////////////////////////////////
191
192 $am_in_slice = in_array(plc_my_person_id(),$person_ids);
193
194 if ($am_in_slice) {
195   drupal_set_title("My slice " . $name);
196  } else {
197   drupal_set_title("Slice " . $name);
198 }
199
200 $privileges = ( $local_peer && (plc_is_admin()  || plc_is_pi() || $am_in_slice));
201 $tags_privileges = $privileges || plc_is_admin();
202
203 $tabs=array();
204 $tabs [] = tab_nodes_slice($slice_id);
205 $tabs [] = tab_site($site);
206
207 // are these the right privileges for deletion ?
208 if ($privileges) {
209   $tabs ['Delete']= array('url'=>l_actions(),
210                           'method'=>'post',
211                           'values'=>array('action'=>'delete-slice','slice_id'=>$slice_id),
212                           'bubble'=>"Delete slice $name",
213                           'confirm'=>"Are you sure to delete slice $name");
214
215   $tabs["Events"]=array_merge(tablook_event(),
216                               array('url'=>l_event("Slice","slice",$slice_id),
217                                     'bubble'=>"Events for slice $name"));
218   $tabs["Comon"]=array_merge(tablook_comon(),
219                              array('url'=>l_comon("slice_id",$slice_id),
220                                    'bubble'=>"Comon page about slice $name"));
221 }
222
223 plekit_linetabs($tabs);
224
225 ////////////////////////////////////////
226 $peers->block_start($peer_id);
227
228 //////////////////////////////////////// renewal area 
229 // (1) close to expiration : show on top and open
230
231 if ($local_peer ) {
232   $renew_visible = renew_needed ($slice);
233   if ($renew_visible) renew_area ($slice,$site,true);
234  }
235
236
237 //////////////////// details
238 // default for opening the details section or not ?
239 if ($local_peer) {
240   $default_show_details = true;
241  } else {
242   $default_show_details = ! $renew_visible;
243  }
244   
245 $toggle = 
246   new PlekitToggle ('my-slice-details',"Details",
247                     array('bubble'=>
248                           'Display and modify details for that slice',
249                           'visible'=>get_arg('show_details',$default_show_details)));
250 $toggle->start();
251
252 $details=new PlekitDetails($privileges);
253 $details->form_start(l_actions(),array('action'=>'update-slice',
254                                        'slice_id'=>$slice_id,
255                                        'name'=>$name));
256
257 $details->start();
258 if (! $local_peer) {
259   $details->th_td("Peer",$peers->peer_link($peer_id));
260   $details->space();
261  }
262
263
264 $details->th_td('Name',$slice['name']);
265 $details->th_td('Description',$slice['description'],'description',
266                 array('input_type'=>'textarea',
267                       'width'=>50,'height'=>5));
268 $details->th_td('URL',$slice['url'],'url',array('width'=>50));
269 $details->tr_submit("submit","Update Slice");
270 $details->th_td('Expires',$expires);
271 $details->th_td('Instantiation',$slice['instantiation']);
272 $details->th_td("OMF-friendly", ($slice['omf_control'] ? 'Yes' : 'No') . " [to change: see 'omf_control' in the tags section below]");
273 $details->th_td('Site',l_site_obj($site));
274 // xxx show the PIs here
275 //$details->th_td('PIs',...);
276 $details->end();
277
278 $details->form_end();
279 $toggle->end();
280
281 //////////////////// persons
282 $person_columns = array('email','person_id','first_name','last_name','roles');
283 // get persons in slice
284 if (!empty($person_ids))
285   $persons=$api->GetPersons(array('person_id'=>$slice['person_ids']),$person_columns);
286 // just propose to add everyone else
287 // xxx this is maybe too much for admins as it slows stuff down 
288 // as regular persons can see only a fraction of the db anyway
289 $potential_persons=
290   $api->GetPersons(array('~person_id'=>$slice['person_ids'],
291                          'peer_id'=>NULL,
292                          'enabled'=>true),
293                    $person_columns);
294 $count=count($persons);
295
296 if ($profiling) plc_debug_prof('4: persons',count($persons));
297 $toggle=
298   new PlekitToggle ('my-slice-persons',"$count Users",
299                     array('bubble'=>
300                           'Manage accounts attached to this slice',
301                           'visible'=>get_arg('show_persons',false)));
302 $toggle->start();
303
304 ////////// people currently in
305 // visible:
306 // hide if both current+add are included
307 // so user can chose which section is of interest
308 // show otherwise
309 $toggle_persons = new PlekitToggle ('my-slice-persons-current',
310                                     "$count people currently in $name",
311                                     array('visible'=>get_arg('show_persons_current',!$privileges)));
312 $toggle_persons->start();
313
314 $headers=array();
315 $headers['email']='string';
316 $headers['first']='string';
317 $headers['last']='string';
318 $headers['R']='string';
319 if ($privileges) $headers[plc_delete_icon()]="none";
320 $table=new PlekitTable('persons',$headers,'0',
321                        array('notes_area'=>false));
322 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
323 $form->start();
324 $table->start();
325 if ($persons) foreach ($persons as $person) {
326   $table->row_start();
327   $table->cell(l_person_obj($person));
328   $table->cell($person['first_name']);
329   $table->cell($person['last_name']);
330   $table->cell(plc_vertical_table ($person['roles']));
331   if ($privileges) $table->cell ($form->checkbox_html('person_ids[]',$person['person_id']));
332   $table->row_end();
333 }
334 // actions area
335 if ($privileges) {
336
337   // remove persons
338   $table->tfoot_start();
339
340   $table->row_start();
341   $table->cell($form->submit_html ("remove-persons-from-slice","Remove selected"),
342                array('hfill'=>true,'align'=>'right'));
343   $table->row_end();
344  }
345 $table->end();
346 $toggle_persons->end();
347
348 ////////// people to add
349 if ($privileges) {
350   $count=count($potential_persons);
351   $toggle_persons = new PlekitToggle ('my-slice-persons-add',
352                                       "$count people may be added to $name",
353                                       array('visible'=>get_arg('show_persons_add',false)));
354   $toggle_persons->start();
355   if ( ! $potential_persons ) {
356     // xxx improve style
357     echo "<p class='not-relevant'>No person to add</p>";
358   } else {
359     $headers=array();
360     $headers['email']='string';
361     $headers['first']='string';
362     $headers['last']='string';
363     $headers['R']='string';
364     $headers['+']="none";
365     $options = array('notes_area'=>false,
366                      'search_width'=>15,
367                      'pagesize'=>8);
368     // show search for admins only as other people won't get that many names to add
369     if ( ! plc_is_admin() ) $options['search_area']=false;
370     
371     $table=new PlekitTable('add_persons',$headers,'0',$options);
372     $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
373     $form->start();
374     $table->start();
375     if ($potential_persons) foreach ($potential_persons as $person) {
376         $table->row_start();
377         $table->cell(l_person_obj($person));
378         $table->cell($person['first_name']);
379         $table->cell($person['last_name']);
380         $table->cell(plc_vertical_table ($person['roles']));
381         $table->cell ($form->checkbox_html('person_ids[]',$person['person_id']));
382         $table->row_end();
383       }
384     // add users
385     $table->tfoot_start();
386     $table->row_start();
387     $table->cell($form->submit_html ("add-persons-in-slice","Add selected"),
388                  array('hfill'=>true,'align'=>'right'));
389     $table->row_end();
390     $table->end();
391     $form->end();
392   }
393   $toggle_persons->end();
394 }
395 $toggle->end();
396
397 //////////////////////////////////////////////////////////// Nodes
398 // the nodes details to display here
399 // (1) we search for the tag types for which 'category' matches 'node*/ui*'
400 // all these tags will then be tentatively displayed in this area
401 // (2) further information can also be optionally specified in the category:
402 //     (.) we split the category with '/' and search for assignments of the form var=value
403 //     (.) header can be set to supersede the column header (default is tagname)
404 //     (.) rank can be used for ordering the columns (default is tagname)
405 //     (.) type is passed to the javascript table, for sorting (default is 'string')
406
407 // minimal list as a start
408 $node_fixed_columns = array('hostname','node_id','peer_id','slice_ids_whitelist',
409                             'run_level','boot_state','last_contact','node_type');
410 // create a VisibleTags object : basically the list of tag columns to show
411 $visibletags = new VisibleTags ($api, 'node');
412 $visiblecolumns = $visibletags->column_names();
413 $node_columns=array_merge($node_fixed_columns,$visiblecolumns);
414
415 // optimizing calls to GetNodes
416 $all_nodes=$api->GetNodes(NULL,$node_columns);
417 //$slice_nodes=$api->GetNodes(array('node_id'=>$slice['node_ids']),$node_columns);
418 //$potential_nodes=$api->GetNodes(array('~node_id'=>$slice['node_ids']),$node_columns);
419 $slice_nodes=array();
420 $potential_nodes=array();
421 $reservable_nodes=array();
422 foreach ($all_nodes as $node) {
423   if (in_array($node['node_id'],$slice['node_ids'])) {
424     $slice_nodes[]=$node;
425     if ($node['node_type']=='reservable') $reservable_nodes[]=$node;
426   } else {
427     $potential_nodes[]=$node;
428   }
429 }
430 if ($profiling) plc_debug_prof('5: nodes',count($slice_nodes));
431 ////////////////////
432 // outline the number of reservable nodes
433 $nodes_message=count_english($slice_nodes,"node");
434 if (count($reservable_nodes)) $nodes_message .= " (" . count($reservable_nodes) . " reservable)";
435 $toggle=new PlekitToggle ('my-slice-nodes',$nodes_message,
436                           array('bubble'=>
437                                 'Manage nodes attached to this slice',
438                                 'visible'=>get_arg('show_nodes',false)));
439 $toggle->start();
440
441 ////////// show a notice to people having attached a reservable node
442 if (count($reservable_nodes) && $privileges) {
443   $mark=reservable_mark();
444   print <<<EOF
445 <p class='note_reservable'>
446 You have attached one or more <span class='bold'>reservable nodes</span> to your slice. 
447 Reservable nodes show up with the '$mark' mark. 
448 Your slice will be available <span class='bold'>only during timeslots
449 where you have obtained leases</span>. 
450 You can manage your leases in the tab below.
451 <br>
452 Please note that as of August 2010 this feature is experimental. 
453 Feedback is appreciated at <a href="mailto:devel@planet-lab.org">devel@planet-lab.org</a>
454 </p>
455 EOF;
456 }  
457
458 //////////////////// reservable nodes area
459 $count=count($reservable_nodes);
460 if ($count && $privileges) {
461   // having reservable nodes in white lists looks a bit off scope for now...
462   $toggle_nodes=new PlekitToggle('my-slice-nodes-reserve',
463                                  "Leases - " . count($reservable_nodes) . " reservable node(s)",
464                                  array('visible'=>get_arg('show_nodes_resa',false)));
465   $toggle_nodes->start();
466   $grain=$api->GetLeaseGranularity();
467   if ($profiling) plc_debug_prof('6 granul',$grain);
468   // where to start from, expressed as an offset in hours from now
469   $resa_offset=$_GET['resa_offset'];
470   if ( ! $resa_offset ) $resa_offset=0;
471   $rough_start=time()+$resa_offset*3600;
472   // xxx should be configurable
473   $resa_slots=$_GET['resa_slots'];
474   if ( ! $resa_slots ) $resa_slots = 36;
475   // for now, show the next 72 hours, or 72 grains, which ever is smaller
476   $duration=$resa_slots*$grain;
477   $steps=$duration/$grain;
478   $start=intval($rough_start/$grain)*$grain;
479   $end=$rough_start+$duration;
480   $lease_columns=array('lease_id','name','t_from','t_until','hostname','name');
481   $leases=$api->GetLeases(array(']t_until'=>$rough_start,'[t_from'=>$end,'-SORT'=>'t_from'),$lease_columns);
482   if ($profiling) plc_debug_prof('7 leases',count($leases));
483   // hash nodes -> leases
484   $host_hash=array();
485   foreach ($leases as $lease) {
486     $hostname=$lease['hostname'];
487     if ( ! $host_hash[$hostname] ) {
488         $host_hash[$hostname]=array();
489     }
490     // resync within the table
491     $lease['nfrom']=($lease['t_from']-$start)/$grain;
492     $lease['nuntil']=($lease['t_until']-$start)/$grain;
493     $host_hash[$hostname] []= $lease;
494   }
495   # leases_data is the name used by leases.js to locate this table
496   echo "<table id='leases_data'>";
497   # pass (slice_id,slicename) as the [0,0] coordinate as thead>tr>td
498   echo "<thead><tr><td>" . $slice['slice_id'] . '&' . $slice['name'] . "</td>";
499   # the timeslot headers read (timestamp,label)
500   $day_names=array('Su','M','Tu','W','Th','F','Sa');
501   for ($i=0; $i<$steps; $i++) {
502     $timestamp=($start+$i*$grain);
503     $day=$day_names[intval(strftime("%w",$timestamp))];
504     $label=$day . strftime(" %H:%M",$timestamp);
505     // expose in each header cell the full timestamp, and how to display it - use & as a separator*/
506     echo "<th>" . implode("&",array($timestamp,$label)) . "</th>";
507   }
508   echo "</tr></thead><tbody>";
509   // todo - sort on hostnames
510   function sort_hostname ($a,$b) { return ($a['hostname']<$b['hostname'])?-1:1;}
511   usort($reservable_nodes,sort_hostname);
512   foreach ($reservable_nodes as $node) {
513     echo "<tr><th scope='row'>". $node['hostname'] . "</th>";
514     $hostname=$node['hostname'];
515     $leases=$host_hash[$hostname];
516     $counter=0;
517     while ($counter<$steps) {
518       if ($leases && ($leases[0]['nfrom']<=$counter)) {
519         $lease=array_shift($leases);
520         /* nicer display, merge two consecutive leases for the same slice 
521            avoid doing that for now, as it might makes things confusing */
522         /* while ($leases && ($leases[0]['name']==$lease['name']) && ($leases[0]['nfrom']==$lease['nuntil'])) {
523           $lease['nuntil']=$leases[0]['nuntil'];
524           array_shift($leases);
525           }*/
526         $duration=$lease['nuntil']-$counter;
527         echo "<td colspan='$duration'>" . $lease['lease_id'] . '&' . $lease['name'] . "</td>";
528         $counter=$lease['nuntil']; 
529       } else {
530         echo "<td></td>";
531         $counter+=1;
532       }
533     }
534     echo "</tr>";
535   }
536   echo "</tbody></table>\n";
537
538   // the general layout for the scheduler
539   echo <<< EOF
540 <div id='leases_area'></div>
541
542 <div id='leases_buttons'>
543   <button id='leases_clear' type='submit'>Clear</button>
544   <button id='leases_submit' type='submit'>Submit</button>
545 </div>
546 EOF;
547
548   $toggle_nodes->end();
549  }
550
551 //////////////////// nodes currently in
552 $toggle_nodes=new PlekitToggle('my-slice-nodes-current',
553                                count_english($slice_nodes,"node") . " currently in $name",
554                                array('visible'=>get_arg('show_nodes_current',!$privileges)));
555 $toggle_nodes->start();
556
557 $headers=array();
558 $notes=array();
559 $headers['peer']='string';
560 $headers['hostname']='string';
561 $short="-S-"; $long=Node::status_footnote(); $type='string'; 
562         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
563 $short=reservable_mark(); $long=reservable_legend(); $type='string';
564         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
565 // the extra tags, configured for the UI
566 $headers=array_merge($headers,$visibletags->headers());
567 $notes=array_merge($notes,$visibletags->notes());
568
569 if ($privileges) $headers[plc_delete_icon()]="none";
570
571 $table_options = array('notes'=>$notes,
572                        'search_width'=>15,
573                        'pagesize'=>20);
574 $table=new PlekitTable('nodes',$headers,'1',$table_options);
575
576 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
577 $form->start();
578 $table->start();
579 if ($slice_nodes) foreach ($slice_nodes as $node) {
580   $table->row_start();
581   $peers->cell($table,$node['peer_id']);
582   $table->cell(l_node_obj($node));
583   $run_level=$node['run_level'];
584   list($label,$class) = Node::status_label_class_($node);
585   $table->cell ($label,array('class'=>$class));
586   $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
587   foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
588
589   if ($privileges) $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
590   $table->row_end();
591 }
592 // actions area
593 if ($privileges) {
594
595   // remove nodes
596   $table->tfoot_start();
597
598   $table->row_start();
599   $table->cell($form->submit_html ("remove-nodes-from-slice","Remove selected"),
600                array('hfill'=>true,'align'=>'right'));
601   $table->row_end();
602  }
603 $table->end();
604 $toggle_nodes->end();
605
606 //////////////////// nodes to add
607 if ($privileges) {
608   $new_potential_nodes = array();
609   if ($potential_nodes) foreach ($potential_nodes as $node) {
610       $emptywl=empty($node['slice_ids_whitelist']);
611       $inwl = (!emptywl) and in_array($slice['slice_id'],$node['slice_ids_whitelist']);
612       if ($emptywl or $inwl)
613         $new_potential_nodes[]=$node;
614   }
615   $potential_nodes=$new_potential_nodes;
616
617   $count=count($potential_nodes);
618   $toggle_nodes=new PlekitToggle('my-slice-nodes-add',
619                                  count_english($potential_nodes,"more node") . " available",
620                                  array('visible'=>get_arg('show_nodes_add',false)));
621   $toggle_nodes->start();
622
623   if ( $potential_nodes ) {
624     $headers=array();
625     $notes=array();
626     $headers['peer']='string';
627     $headers['hostname']='string';
628     $short="-S-"; $long=Node::status_footnote(); $type='string'; 
629         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
630         $short=reservable_mark(); $long=reservable_legend(); $type='string';
631         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
632     // the extra tags, configured for the UI
633     $headers=array_merge($headers,$visibletags->headers());
634     $notes=array_merge($notes,$visibletags->notes());
635     $headers['+']="none";
636     
637     $table=new PlekitTable('add_nodes',$headers,'1', $table_options);
638     $form=new PlekitForm(l_actions(),
639                          array('slice_id'=>$slice['slice_id']));
640     $form->start();
641     $table->start();
642     if ($potential_nodes) foreach ($potential_nodes as $node) {
643         $table->row_start();
644         $peers->cell($table,$node['peer_id']);
645         $table->cell(l_node_obj($node));
646         list($label,$class) = Node::status_label_class_($node);
647         $table->cell ($label,array('class'=>$class));
648         $table->cell( ($node['node_type']=='reservable')?reservable_mark():"" );
649         foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
650         $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
651         $table->row_end();
652       }
653     // add nodes
654     $table->tfoot_start();
655     $table->row_start();
656     $table->cell($form->submit_html ("add-nodes-in-slice","Add selected"),
657                  array('hfill'=>true,'align'=>'right'));
658     $table->row_end();
659     $table->end();
660     $form->end();
661   }
662   $toggle_nodes->end();
663 }
664
665 $toggle->end();
666
667 // very wide values get abbreviated
668 $tag_value_threshold=24;
669 //////////////////////////////////////////////////////////// Tags
670 //if ( $local_peer ) {
671   $tags=$api->GetSliceTags (array('slice_id'=>$slice_id));
672   if ($profiling) plc_debug_prof('8 slice tags',count($tags));
673   function get_tagname ($tag) { return $tag['tagname'];}
674   $tagnames = array_map ("get_tagname",$tags);
675   
676   $toggle = new PlekitToggle ('slice-tags',count_english_warning($tags,'tag'),
677                               array('bubble'=>'Inspect and set tags on tat slice',
678                                     'visible'=>get_arg('show_tags',false)));
679   $toggle->start();
680   
681   $headers=array(
682     "Name"=>"string",
683     "Value"=>"string",
684     "Node"=>"string",
685     "NodeGroup"=>"string");
686   if ($tags_privileges) $headers[plc_delete_icon()]="none";
687   
688   $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
689   $table=new PlekitTable("slice_tags",$headers,'0',$table_options);
690   $form=new PlekitForm(l_actions(),
691                        array('slice_id'=>$slice['slice_id']));
692   $form->start();
693   $table->start();
694   if ($tags) {
695     foreach ($tags as $tag) {
696       $node_name = "ALL";
697       if ($tag['node_id']) {
698         $tag_nodes = $api->GetNodes(array('node_id'=>$tag['node_id']));
699         if ($profiling) plc_debug_prof('9 node for slice tag',count($tag_nodes));
700         if($tag_nodes) {
701           $node = $tag_nodes[0];
702           $node_name = $node['hostname'];
703         }
704       }
705       $nodegroup_name="n/a";
706       if ($tag['nodegroup_id']) { 
707         $nodegroups=$api->GetNodeGroups(array('nodegroup_id'=>$tag['nodegroup_id']));
708         if ($profiling) plc_debug_prof('10 nodegroup for slice tag',$nodegroup);
709         if ($nodegroup) {
710           $nodegroup = $nodegroups[0];
711           $nodegroup_name = $nodegroup['groupname'];
712         }
713       }
714       $table->row_start();
715       $table->cell(l_tag_obj($tag));
716       // very wide values get abbreviated
717       $table->cell(truncate_and_popup($tag['value'],$tag_value_threshold));
718       $table->cell($node_name);
719       $table->cell($nodegroup_name);
720       if ($tags_privileges) $table->cell ($form->checkbox_html('slice_tag_ids[]',$tag['slice_tag_id']));
721       $table->row_end();
722     }
723   }
724   if ($tags_privileges) {
725     $table->tfoot_start();
726     $table->row_start();
727     $table->cell($form->submit_html ("delete-slice-tags","Remove selected"),
728                  array('hfill'=>true,'align'=>'right'));
729     $table->row_end();
730     
731     $table->row_start();
732     function tag_selector ($tag) {
733       return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']);
734     }
735     $all_tags= $api->GetTagTypes( array ("category"=>"slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id"));
736     if ($profiling) plc_debug_prof('11 tagtypes',count($all_tags));
737     $selector_tag=array_map("tag_selector",$all_tags);
738     
739     function node_selector($node) { 
740       return array("display"=>$node["hostname"],"value"=>$node['node_id']);
741     }
742     $selector_node=array_map("node_selector",$slice_nodes);
743     
744     function nodegroup_selector($ng) {
745       return array("display"=>$ng["groupname"],"value"=>$ng['nodegroup_id']);
746     }
747     $all_nodegroups = $api->GetNodeGroups( array("groupname"=>"*"), array("groupname","nodegroup_id"));
748     if ($profiling) plc_debug_prof('13 nodegroups',count($all_nodegroups));
749     $selector_nodegroup=array_map("nodegroup_selector",$all_nodegroups);
750     
751     $table->cell($form->select_html("tag_type_id",$selector_tag,array('label'=>"Choose Tag")));
752     $table->cell($form->text_html("value","",array('width'=>8)));
753     $table->cell($form->select_html("node_id",$selector_node,array('label'=>"All Nodes")));
754     $table->cell($form->select_html("nodegroup_id",$selector_nodegroup,array('label'=>"No Nodegroup")));
755     $table->cell($form->submit_html("add-slice-tag","Set Tag"),array('columns'=>2,'align'=>'left'));
756     $table->row_end();
757   }
758     
759   $table->end();
760   $form->end();
761   $toggle->end();
762 //}
763
764
765 //////////////////////// renew slice
766 if ($local_peer ) {
767   if ( ! $renew_visible) renew_area ($slice,$site,false);
768  }
769
770 $peers->block_end($peer_id);
771
772 if ($profiling) plc_debug_prof_end();
773
774 // Print footer
775 include 'plc_footer.php';
776
777 ?>