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