Merge branch 'master' of ssh://git.onelab.eu/git/plewww
[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: display only the ones in the slice to avoid confusion - also avoid an extra API call
398 $reservable_nodes=array();
399 foreach ($nodes as $node) { if ($node['node_type']=='reservable') $reservable_nodes[]=$node; }
400
401 ////////////////////
402 $count=count($nodes);
403 $toggle=new PlekitToggle ('my-slice-nodes',"$count Nodes",
404                           array('bubble'=>
405                                 'Manage nodes attached to this slice',
406                                 'visible'=>get_arg('show_nodes',false)));
407 $toggle->start();
408
409 /*if (0) { // tmp for speed */
410 //////////////////// nodes currently in
411 $toggle_nodes=new PlekitToggle('my-slice-nodes-current',
412                                "$count node(s) currently in $name",
413                                array('visible'=>get_arg('show_nodes_current',!$privileges)));
414 $toggle_nodes->start();
415
416 $headers=array();
417 $notes=array();
418 $headers['peer']='string';
419 $headers['hostname']='string';
420 $short="ST"; $long=Node::status_footnote(); $type='string'; 
421         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
422 // the extra tags
423 $headers=array_merge($headers,$visibletags->headers());
424 $notes=array_merge($notes,$visibletags->notes());
425
426 if ($privileges) $headers[plc_delete_icon()]="none";
427
428 $table_options = array('notes'=>$notes,
429                        'search_width'=>15,
430                        'pagesize'=>20);
431 $table=new PlekitTable('nodes',$headers,'1',$table_options);
432
433 $form=new PlekitForm(l_actions(),array('slice_id'=>$slice['slice_id']));
434 $form->start();
435 $table->start();
436 if ($nodes) foreach ($nodes as $node) {
437   $table->row_start();
438   $peers->cell($table,$node['peer_id']);
439   $table->cell(l_node_obj($node));
440   $run_level=$node['run_level'];
441   list($label,$class) = Node::status_label_class_($node);
442   $table->cell ($label,array('class'=>$class));
443   foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
444
445   if ($privileges) $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
446   $table->row_end();
447 }
448 // actions area
449 if ($privileges) {
450
451   // remove nodes
452   $table->tfoot_start();
453
454   $table->row_start();
455   $table->cell($form->submit_html ("remove-nodes-from-slice","Remove selected"),
456                array('hfill'=>true,'align'=>'right'));
457   $table->row_end();
458  }
459 $table->end();
460 $toggle_nodes->end();
461
462 //////////////////// nodes to add
463 if ($privileges) {
464   $new_potential_nodes = array();
465   if ($potential_nodes) foreach ($potential_nodes as $node) {
466       $emptywl=empty($node['slice_ids_whitelist']);
467       $inwl = (!emptywl) and in_array($slice['slice_id'],$node['slice_ids_whitelist']);
468       if ($emptywl or $inwl)
469         $new_potential_nodes[]=$node;
470   }
471   $potential_nodes=$new_potential_nodes;
472
473   $count=count($potential_nodes);
474   $toggle_nodes=new PlekitToggle('my-slice-nodes-add',
475                                  "$count more node(s) available",
476                                  array('visible'=>get_arg('show_nodes_add',false)));
477   $toggle_nodes->start();
478
479   if ( ! $potential_nodes ) {
480     // xxx improve style
481     echo "<p class='not-relevant'>No node to add</p>";
482   } else {
483     $headers=array();
484     $notes=array();
485     $headers['peer']='string';
486     $headers['hostname']='string';
487     $short="ST"; $long=Node::status_footnote(); $type='string'; 
488         $headers[$short]=array('type'=>$type,'title'=>$long); $notes []= "$short = $long";
489     // the extra tags
490     $headers=array_merge($headers,$visibletags->headers());
491     $notes=array_merge($notes,$visibletags->notes());
492     $headers['+']="none";
493     
494     $table=new PlekitTable('add_nodes',$headers,'1', $table_options);
495     $form=new PlekitForm(l_actions(),
496                          array('slice_id'=>$slice['slice_id']));
497     $form->start();
498     $table->start();
499     if ($potential_nodes) foreach ($potential_nodes as $node) {
500         $table->row_start();
501         $peers->cell($table,$node['peer_id']);
502         $table->cell(l_node_obj($node));
503         list($label,$class) = Node::status_label_class_($node);
504         $table->cell ($label,array('class'=>$class));
505         foreach ($visiblecolumns as $tagname) $table->cell($node[$tagname]);
506         $table->cell ($form->checkbox_html('node_ids[]',$node['node_id']));
507         $table->row_end();
508       }
509     // add nodes
510     $table->tfoot_start();
511     $table->row_start();
512     $table->cell($form->submit_html ("add-nodes-in-slice","Add selected"),
513                  array('hfill'=>true,'align'=>'right'));
514     $table->row_end();
515     $table->end();
516     $form->end();
517   }
518   $toggle_nodes->end();
519 }
520 /* } // end tmp if (0)  */
521
522 //////////////////// reservable nodes area
523 $count=count($reservable_nodes);
524 if ($count && $privileges) {
525   // having reservable nodes in white lists looks a bit off scope for now...
526   $toggle_nodes=new PlekitToggle('my-slice-nodes-reserve',
527                                  "$count reservable node(s)",
528                                  array('visible'=>get_arg('show_nodes_resa',false)));
529   $toggle_nodes->start();
530   $grain=$api->GetLeaseGranularity();
531   // xxx should be configurable
532   $now=time(); 
533   // xxx ditto, for now, show the next 48 hours, or 96 grains, which ever is smaller
534   $duration=min(24*3600,24*$grain);
535   $steps=$duration/$grain;
536   $start=intval($now/$grain)*$grain;
537   $end=$now+$duration;
538   $lease_columns=array('name','t_from','t_until','hostname','name');
539   $leases=$api->GetLeases(array(']t_until'=>$now,'[t_from'=>$end,'-SORT'=>'t_from'),$lease_columns);
540   // hash nodes -> leases
541   $host_hash=array();
542   foreach ($leases as $lease) {
543     $hostname=$lease['hostname'];
544     if ( ! $host_hash[$hostname] ) {
545         $host_hash[$hostname]=array();
546     }
547     // resync within the table
548     $lease['nfrom']=($lease['t_from']-$start)/$grain;
549     $lease['nuntil']=($lease['t_until']-$start)/$grain;
550     $host_hash[$hostname] []= $lease;
551   }
552   # leases_data is the name used by leases.js to locate this table
553   echo "<table id='leases_data'>";
554   # pass the slicename as the [0,0] coordinate as thead>tr>td
555   echo "<thead><tr><td>" . $slice['name'] . "</td>";
556   for ($i=0; $i<$steps; $i++) 
557     echo "<th>" . strftime("%H:%M",$start+$i*$grain). "</th>";
558   echo "</tr></thead><tbody>";
559   // todo - sort on hostnames
560   foreach ($reservable_nodes as $node) {
561     echo "<tr><th scope='row'>". $node['hostname'] . "</th>";
562     $hostname=$node['hostname'];
563     $leases=$host_hash[$hostname];
564     $counter=0;
565     while ($counter<$steps) {
566       if ($leases && ($leases[0]['nfrom']<=$counter)) {
567         $lease=array_shift($leases);
568         /* nicer display, merge two consecutive leases for the same slice */
569         while ($leases && ($leases[0]['name']==$lease['name']) && ($leases[0]['nfrom']==$lease['nuntil'])) {
570           $lease['nuntil']=$leases[0]['nuntil'];
571           array_shift($leases);
572         }
573         $duration=$lease['nuntil']-$counter;
574         echo "<td colspan='$duration'>" . $lease['name'] . "</td>";
575         $counter=$lease['nuntil']; 
576       } else {
577         echo "<td></td>";
578         $counter+=1;
579       }
580     }
581     echo "</tr>";
582   }
583
584   echo "</tbody></table>";
585   echo "<div id='leases_area'></div>";
586   $toggle_nodes->end();
587  }
588 $toggle->end();
589
590 //////////////////////////////////////////////////////////// Tags
591 //if ( $local_peer ) {
592   $tags=$api->GetSliceTags (array('slice_id'=>$slice_id));
593   function get_tagname ($tag) { return $tag['tagname'];}
594   $tagnames = array_map ("get_tagname",$tags);
595   
596   $toggle = new PlekitToggle ('slice-tags',count_english_warning($tags,'tag'),
597                               array('bubble'=>'Inspect and set tags on tat slice',
598                                     'visible'=>get_arg('show_tags',false)));
599   $toggle->start();
600   
601   $headers=array(
602     "Name"=>"string",
603     "Value"=>"string",
604     "Node"=>"string",
605     "NodeGroup"=>"string");
606   if ($tags_privileges) $headers[plc_delete_icon()]="none";
607   
608   $table_options=array("notes_area"=>false,"pagesize_area"=>false,"search_width"=>10);
609   $table=new PlekitTable("slice_tags",$headers,'0',$table_options);
610   $form=new PlekitForm(l_actions(),
611                        array('slice_id'=>$slice['slice_id']));
612   $form->start();
613   $table->start();
614   if ($tags) {
615     foreach ($tags as $tag) {
616       $node_name = "ALL";
617       if ($tag['node_id']) {
618         $nodes = $api->GetNodes(array('node_id'=>$tag['node_id']));
619         if($nodes) {
620           $node = $nodes[0];
621           $node_name = $node['hostname'];
622         }
623       }
624       $nodegroup_name="n/a";
625       if ($tag['nodegroup_id']) { 
626         $nodegroup=$api->GetNodeGroups(array('nodegroup_id'=>$tag['nodegroup_id']));
627         if ($nodegroup) {
628           $nodegroup = $nodegroup[0];
629           $nodegroup_name = $nodegroup['groupname'];
630         }
631       }
632       $table->row_start();
633       $table->cell(l_tag_obj($tag));
634       $table->cell($tag['value']);
635       $table->cell($node_name);
636       $table->cell($nodegroup_name);
637       if ($tags_privileges) $table->cell ($form->checkbox_html('slice_tag_ids[]',$tag['slice_tag_id']));
638       $table->row_end();
639     }
640   }
641   if ($tags_privileges) {
642     $table->tfoot_start();
643     $table->row_start();
644     $table->cell($form->submit_html ("delete-slice-tags","Remove selected"),
645                  array('hfill'=>true,'align'=>'right'));
646     $table->row_end();
647     
648     $table->row_start();
649     function tag_selector ($tag) {
650       return array("display"=>$tag['tagname'],"value"=>$tag['tag_type_id']);
651     }
652     $all_tags= $api->GetTagTypes( array ("category"=>"slice*","-SORT"=>"+tagname"), array("tagname","tag_type_id"));
653     $selector_tag=array_map("tag_selector",$all_tags);
654     
655     function node_selector($node) { 
656       return array("display"=>$node["hostname"],"value"=>$node['node_id']);
657     }
658     $all_nodes = $api->GetNodes( array ("node_id" => $slice['node_ids']), array("hostname","node_id"));
659     $selector_node=array_map("node_selector",$all_nodes);
660     
661     function nodegroup_selector($ng) {
662       return array("display"=>$ng["groupname"],"value"=>$ng['nodegroup_id']);
663     }
664     $all_nodegroups = $api->GetNodeGroups( array("groupname"=>"*"), array("groupname","nodegroup_id"));
665     $selector_nodegroup=array_map("nodegroup_selector",$all_nodegroups);
666     
667     $table->cell($form->select_html("tag_type_id",$selector_tag,array('label'=>"Choose Tag")));
668     $table->cell($form->text_html("value","",array('width'=>8)));
669     $table->cell($form->select_html("node_id",$selector_node,array('label'=>"All Nodes")));
670     $table->cell($form->select_html("nodegroup_id",$selector_nodegroup,array('label'=>"No Nodegroup")));
671     $table->cell($form->submit_html("add-slice-tag","Set Tag"),array('columns'=>2,'align'=>'left'));
672     $table->row_end();
673   }
674     
675   $table->end();
676   $form->end();
677   $toggle->end();
678 //}
679
680
681 //////////////////////// renew slice
682 if ($local_peer ) {
683   if ( ! $renew_visible) renew_area ($slice,$site,false);
684  }
685
686 $peers->block_end($peer_id);
687
688 // Print footer
689 include 'plc_footer.php';
690
691 ?>