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