- remove inconsistency between user/account (rename all to account)
[plewww.git] / planetlab / includes / plc_functions.php
1 <?php
2
3 // $Id$
4
5 // will trash this eventually
6   //require_once 'plc_functions_trash.php';
7
8 // utility
9 function my_is_int ($x) {
10     return (is_numeric($x) ? intval($x) == $x : false);
11 }
12
13 //////////////////////////////////////////////////////////// roles & other checks on global $plc
14 function plc_is_admin () {
15   global $plc;
16   return in_array( 10, $plc->person['role_ids']);
17 }
18 function plc_is_pi () {
19   global $plc;
20   return in_array( 20, $plc->person['role_ids']);
21 }
22 function plc_is_user () {
23   global $plc;
24   return in_array( 30, $plc->person['role_ids']);
25 }
26 function plc_is_tech () {
27   global $plc;
28   return in_array( 40, $plc->person['role_ids']);
29 }
30 function plc_in_site ($site_id) {
31   global $plc;
32   return in_array( $site_id, $plc->person['site_ids']);
33 }
34
35 function plc_my_site_ids () {
36   global $plc;
37   return $plc->person['site_ids'];
38 }
39 function plc_my_sites () {
40   global $plc;
41   global $api;
42   return $api->GetSites($plc->person['site_ids'], array('site_id', 'abbreviated_name'));
43 }
44
45 function plc_my_site_id () {
46   global $plc;
47   return $plc->person['site_ids'][0];
48 }
49
50 function plc_my_person () {
51   return $plc->person;
52 }
53 function plc_my_person_id () {
54   global $plc;
55   return $plc->person['person_id'];
56 }
57
58 //////////////////////////////////////////////////////////// links    
59 function href ($url,$text) { return "<a href='" . $url . "'>" . $text . "</a>"; }
60
61 // naming scheme is
62 // l_objects()                  -> the url to the page that list objects
63 // l_object($object_id)         -> the url to hte page thas details object with given id
64 // l_object_t($object_id,text)  -> an <a> tag that shows text and links to the above
65 // l_object_add ()              -> the url to that object-afding page
66
67 function l_actions ()                   { return "/db/common/actions.php"; }
68 // some complex node actions are kept separate, e.g. the ones related to getbootmedium
69 function l_actions_download ()          { return "/db/nodes/node_downloads.php"; }
70 function l_register_node ()             { return "/registerwizard/index.php"; }
71 function l_pcu_add ()                   { return "/registerwizard/index.php/register/stage1_addpcu"; }
72
73 function l_nodes ()                     { return "/db/nodes/index.php"; }
74 function l_nodes_peer ($peer_id)        { return "/db/nodes/index.php?peerscope=$peer_id"; }
75 function l_node ($node_id)              { return "/db/nodes/node.php?id=$node_id"; }
76 function l_node_t ($node_id,$text)      { return href (l_node($node_id),$text); }
77 function l_node_obj($node)              { return href(l_node($node['node_id']),$node['hostname']); }
78 function l_node_add ()                  { return "/db/nodes/node_add.php"; }
79 function l_nodes_site ($site_id)        { return "/db/nodes/index.php?site_id=$site_id"; }
80 function l_nodes_my_site ()             { return l_nodes_site(plc_my_site_id()) . "&active_line_tab=My site nodes"; }
81 function l_nodes_all_my_site ()         { return l_nodes_person(plc_my_person_id()) . "&active_line_tab=All My site nodes"; }
82 function l_nodes_person ($person_id)    { return "/db/nodes/index.php?person_id=$person_id"; }
83 function l_nodes_slice ($slice_id)      { return "/db/nodes/index.php?slice_id=$slice_id"; }
84
85 function l_interface ($interface_id)    { return "/db/nodes/interface.php?id=$interface_id"; }
86 function l_interface_tags($interface_id){ return "/db/nodes/interface.php?id=$interface_id&show_details=0&show_tags=1"; }
87 function l_interface_t ($interface_id,$text) { 
88                                           return href (l_interface($interface_id),$text); }
89 function l_interface_add($node_id)      { return "/db/nodes/interface.php?node_id=$node_id"; }
90
91 function l_sites ()                     { return "/db/sites/index.php"; }
92 function l_sites_peer ($peer_id)        { return "/db/sites/index.php?peerscope=$peer_id"; }
93 function l_site ($site_id)              { return "/db/sites/index.php?id=$site_id"; }
94 function l_site_t ($site_id,$text)      { return href (l_site($site_id),$text); }
95 function l_site_obj($site)              { return href (l_site($site['site_id']),$site['name']); }
96
97 function l_slices ()                    { return "/db/slices/index.php"; }
98 function l_slices_peer ($peer_id)       { return "/db/slices/index.php?peerscope=$peer_id"; }
99 function l_slice ($slice_id)            { return "/db/slices/index.php?id=$slice_id"; }
100 function l_slice_t ($slice_id,$text)    { return href (l_slice($slice_id),$text); }
101 function l_slice_add ()                 { return "/db/slices/slice_add.php"; }
102 function l_slices_site($site_id)        { return "/db/slices/index.php?site_id=$site_id"; }
103 function l_slices_my_site()             { return l_slices_site(plc_my_site_id()) . "&active_line_tab=My site slices"; }
104 function l_slices_person($person_id)    { return "/db/slices/index.php?person_id=$person_id"; }
105 function l_slices_local()               { return "/db/slices/index.php?peerscope=local"; }
106 // from an object
107 function l_slice_obj ($slice)           { return l_slice_t ($slice['slice_id'],$slice['name']); }
108
109 function l_sliver ($node_id,$slice_id)  { return "/db/nodes/slivers.php?node_id=$node_id&slice_id=$slice_id"; }
110 function l_sliver_t ($node_id,$slice_id,$text) { 
111                                           return href (l_sliver($node_id,$slice_id),$text) ; }
112
113 function l_persons ()                   { return "/db/persons/index.php&active_line_tab=All Accounts"; }
114 function l_persons_peer ($peer_id)      { return "/db/persons/index.php?peerscope=$peer_id&active_line_tab=Local Accounts"; }
115 function l_person ($person_id)          { return "/db/persons/index.php?id=$person_id"; }
116 function l_person_t ($person_id,$text)  { return href (l_person($person_id),$text); }
117 function l_persons_site ($site_id)      { return "/db/persons/index.php?site_id=$site_id"; }
118 function l_persons_slice ($slice_id)    { return "/db/persons/index.php?slice_id=$slice_id"; }
119 function l_person_obj ($person)         { return l_person_t($person['person_id'],$person['email']); }
120
121 function l_tags ()                      { return "/db/tags/index.php"; }
122 function l_tag ($tag_type_id)           { return "/db/tags/index.php?id=$tag_type_id"; }
123 function l_tag_obj ($tag)               { return href(l_tag($tag['tag_type_id']),$tag['tagname']); }
124
125 function l_nodegroups ()                { return "/db/tags/nodegroups.php"; }
126 function l_nodegroup ($nodegroup_id)    { return "/db/tags/nodegroup.php?id=$nodegroup_id"; }
127 function l_nodegroup_t ($nodegroup_id,$text) { 
128                                           return href(l_nodegroup($nodegroup_id),$text); }
129
130 function l_events ()                    { return "/db/events/index.php"; }
131 function l_event ($type,$param,$id)     { return "/db/events/index.php?type=$type&$param=$id"; }
132
133 function l_peers()                      { return "/db/peers/index.php"; }
134 function l_peer($peer_id)               { return "/db/peers/index.php?id=$peer_id"; }
135 function l_peer_t($peer_id,$text)       { return href(l_peer($peer_id),$text); }
136
137 function l_comon($id_name,$id_value)    { return "/db/nodes/comon.php?$id_name=$id_value"; }
138 function l_sirius()                     { return "/db/sirius/index.php"; }
139 function l_about()                      { return "/db/common/about.php"; }
140 function l_doc_plcapi()                 { return "/db/doc/PLCAPI.php"; }
141 function l_doc_nmapi()                  { return "/db/doc/NMAPI.php"; }
142 function l_admin()                      { return "/db/common/adminsearch.php"; }
143
144 function l_login()                      { return "/db/common/login.php"; }
145 function l_logout()                     { return "/planetlab/common/logout.php"; }
146 function l_sulogout()                   { return "/planetlab/common/sulogout.php"; }
147 function l_reset_password()             { return "/db/persons/reset_password.php"; }
148 function l_person_register()            { return "/db/persons/register.php"; }
149 function l_site_register()              { return "/db/sites/register.php"; }
150 function l_sites_pending()              { return "/db/sites/join_request.php"; }
151
152
153 //////////////////////////////////////////////////////////// nav tabs
154 function tab_nodes ()           { return array ('label'=>'All nodes','url'=>l_nodes(), 
155                                                 'bubble'=>'Display nodes from all peers'); }
156 function tab_nodes_local ()     { return array ('label'=>'Local nodes', 'url'=>l_nodes_peer('local'), 
157                                                 'bubble'=>'Display all nodes local to this peer'); }
158 function tab_nodes_site($site_id){ return array ('label'=>'Site nodes', 'url'=>l_nodes_site($site_id), 
159                                                  'bubble'=>'Display nodes on that site'); }
160 function tab_nodes_slice($slice_id){ return array ('label'=>'Slice nodes', 'url'=>l_nodes_slice($slice_id), 
161                                                  'bubble'=>'Display nodes for that slice'); }
162 function tab_nodes_mysite ()    { return array ('label'=>'My site nodes', 'url'=>l_nodes_my_site(), 
163                                                 'bubble'=>'Display nodes on my site'); }
164 function tab_nodes_all_mysite (){ return array ('label'=>'All My site nodes', 'url'=>l_nodes_all_my_site(),
165                                                 'bubble'=>'Display nodes on all my sites'); }
166 function tab_node($node)        { return array ('label'=>'Node '.$node['hostname'], 'url'=>l_node($node['node_id']),
167                                                 'bubble'=>'Details for ' . $node['hostname']); }
168 //////////
169 function tab_site($site)        { return array ('label'=>'Site '.$site['login_base'], 'url'=>l_site($site['site_id']),
170                                                 'bubble'=>'Details for ' . $site['name']); }
171 function tab_mysite()           { return array ('label'=>'My site', 'url'=>l_site(plc_my_site_id()),
172                                                 'bubble'=>'Details for site ' . plc_my_site_id()); }
173 function tab_sites ()           { return array ('label'=>'All sites' , 'url'=>l_sites(), 'bubble'=> 'Display all sites'); }
174 function tab_sites_local ()     { return array ('label'=>'Local sites' , 'url'=>l_sites_peer('local'), 
175                                                 'bubble'=> 'Display all siteslocal to this peer'); }
176 //////////
177 function tab_slices()           { return array ('label'=>'All slices', 'url'=>l_slices(),
178                                                 'bubble' => 'Display all slices'); }
179 function tab_slices_person()    { return array ('label'=>'My slices', 'url'=>l_slices_person(plc_my_person_id()),
180                                                 'bubble' => 'Display my all slices'); }
181 function tab_slices_mysite ()   { return array ('label'=>'My site slices', 'url'=>l_slices_my_site(), 
182                                                 'bubble'=>'Display all slices on my site'); }
183 function tab_slices_local ()    { return array ('label'=>'Local slices', 'url'=>l_slices_local(), 
184                                                 'bubble'=>'Display all slices local to this peer'); }
185 function tab_slice($slice)      { return array ('label'=>'Slice '.$slice['name'], 'url'=>l_slice($slice['slice_id']),
186                                                 'bubble' => 'Details for ' . $slice['name']); }
187 //////////
188 function tab_persons()          { return array ('label'=>'All Accounts', 'url'=>l_persons(),
189                                                 'bubble'=>'Display users from all peers'); }
190 function tab_persons_local()    { return array ('label'=>'Local Accounts', 'url'=>l_persons_peer('local'),
191                                                 'bubble'=>'Display all users local to this peer'); }
192 function tab_persons_mysite()   { return array ('label'=>'My site accounts' , 'url'=>l_persons_site(plc_my_site_id()),
193                                                 'bubble'=>'Display accounts on site ' . plc_my_site_id()); }
194 function tab_person($person)    { return array ('label'=>'Account '.$person['email'], 'url'=>l_person($person['person_id']),
195                                                 'bubble'=>'Details for ' . $person['email']); }
196 //////////
197 function tab_tags()             { return array ('label'=>'Tag Types', 'url'=>l_tags(),
198                                                 'bubble' => 'Display and create tag types'); }
199 function tab_nodegroups()       { return array ('label'=>'Nodegroups', 'url'=>l_nodegroups(),
200                                                 'bubble' => 'Display and create nodegroups'); }
201
202 // only partial tab
203 function tablook_event()        { return array('image'=>'/planetlab/icons/event.png','height'=>18);}
204 function tablook_comon()        { return array('image'=>'/planetlab/icons/comon.png','height'=>18);}
205
206 ////////////////////
207
208 //////////////////////////////////////////////////////////// validation functions
209 function topdomain ($hostname) {
210   $exploded=array_reverse(explode(".",$hostname));
211   return $exploded[0];
212 }
213
214 function is_valid_email_addr ($email) {
215   if (ereg("^.+@.+\\..+$", $email) ) {
216     return true;
217   } else {
218     return false;
219   }
220 }
221
222 function is_valid_url ($url) {
223   if (ereg("^(http|https)://.+\..+$", strtolower($url) ) ) {
224     return true;
225   } else {
226     return false;
227   }
228 }
229
230 function is_valid_ip ($ip) {
231   if (ereg("^([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$", $ip ) ) {
232       // it's at least in the right format, now check to see if
233       // each part is equal to less than 255
234       $parts= explode( '.', $ip );
235       $count= count($parts);
236
237       for( $i= 0; $i < $count; $i++ ) {
238         if( intval($parts[$i]) > 255 )
239           return false;
240       }
241
242       return true;
243   } else {
244     return false;
245   }
246 }
247
248 function is_valid_network_addr($network_addr,$mask) {
249   $lNetwork= ip2long($network_addr);
250   $lMask= ip2long($mask);
251
252   // are they the correct format?
253   if( $lNetwork == -1 || $lMask == -1 )
254     return false;
255
256   // is network address valid for the mask?
257   if( ($lNetwork & $lMask) != $lNetwork )
258     return false;
259
260   return true;
261 }
262
263
264 // returns whether or not a network address is in the reserved space
265 // in the case of a invalid network address, false will be returned.
266 function is_reserved_network_addr($network_addr) {
267   $lNetwork= ip2long($network_addr);
268
269   if( $lNetwork == -1 )
270     return false;
271
272   // does the network address fall in a reserved block?
273   $reserved_ips = array (
274                          array('10.0.0.0','10.255.255.255'),
275                          array('172.16.0.0','172.31.0.0'),
276                          array('192.168.0.0','192.168.255.0')
277                          );
278   foreach ($reserved_ips as $r) {
279     $min = ip2long($r[0]);
280     $max = ip2long($r[1]);
281       
282     if (($lNetwork >= $min) && ($lNetwork <= $max))
283       return true;
284   }
285
286   return false;
287 }
288
289 ////////////////////////////////////////////////////////////  roles
290 function plc_role_global_hash ($api) {
291   $hash=array();
292   $roles=$api->GetRoles();
293   foreach ($roles as $role) {
294     $hash[$role['role_id']]=$role['name'];
295   }
296   return $hash;
297 }
298
299 //////////////////////////////////////////////////////////// nodegroups
300 // hash by 'tagname=value'
301 function plc_nodegroup_global_hash ($api,$tagnames=NULL) {
302   $filter=NULL;
303   // xxx somehow this does not work; I've checked that the feature is working from plcsh
304   // but I suspect the php marshalling or something; no time to fix, get all nodegroups for now
305   // if ($tagnames) $filter=array("tagname"=>$tagnames);
306   $nodegroups=$api->GetNodeGroups($filter);
307   $hash=array();
308   if ($nodegroups) foreach ($nodegroups as $nodegroup) {
309       $key=$nodegroup['tagname']."=".$nodegroup['value'];
310       $hash[$key]=$nodegroup;
311     }
312   return $hash;
313 }
314   
315 //////////////////////////////////////////////////////////// titles
316 function t_site($site) { return " on site " . $site['name'] . " (" . $site['login_base'] .")"; }
317 function t_slice ($slice) { return " running slice " . $slice['name'] . " (" . $slice['slice_id'] . ")"; }
318 function t_person ($person) { return " belonging to " . $person['email'] . " (" . $person['person_id'] . ")"; }
319
320 //////////////////////////////////////////////////////////// html fragments
321 function plc_vertical_table ($messages, $class="") {
322   if ( empty( $messages) ) return "";
323   $formatted = "";
324   $formatted .= "<table";
325   if ($class) $formatted .= " class='" . $class . "'";
326   $formatted .= ">";
327   foreach ($messages as $message) {
328     $formatted .= "<tr><td>" . $message . "</td></tr>";
329   }
330   $formatted .= "</table>";
331   return $formatted;
332 }
333 function plc_itemize ($messages, $class="") {
334   if ( empty( $messages) ) return "";
335   $formatted = "";
336   $formatted .= "<ul";
337   if ($class) $formatted .= " class='" . $class . "'";
338   $formatted .= ">";
339   foreach ($messages as $message) {
340     $formatted .= "<li>" . $message . "</li>";
341   }
342   $formatted .= "</ul>";
343   return $formatted;
344 }
345
346 //////////
347 // should use the same channel as the php errors..
348 function plc_error_html ($text)         { return  "<div class='plc-error'> " . $text . "</div>"; }
349 function plc_error ($text)              { print plc_error_html ("Error " . $text); }
350
351 function plc_errors ($errors) {
352   if ($errors) {
353     print( "<div class='plc-error'>" );
354     print( "<p>The following errors occured:</p>" );
355     print("<ul>");
356     foreach( $errors as $error ) 
357       print( "<li>$error</li>\n" );
358     print( "</ul></div>\n" );
359   }
360 }
361
362 function plc_warning_html ($text)       { return "<span class='plc-warning'>" . $text . "</span>";}
363 function plc_warning ($text)            { print plc_warning_html("Warning " . $text); }
364
365 function bold_html ($text)              { return "<span class='bold'>$text</span>"; }
366
367 // shows a php variable verbatim with a heading message
368 function plc_debug ($message,$object) {
369   print "<br>" . $message . "<pre>";
370   print_r ($object);
371   print "</pre>";
372 }
373
374 function truncate ($text,$numb,$etc = "...") {
375   if (strlen($text) > $numb) {
376     $text = substr($text, 0, $numb);
377     $text = $text.$etc;
378   }
379   return $text;
380 }
381 function html_div ($text,$class="") {
382   $html="<div";
383   if ($class) $html .= " class='$class'";
384   $html .= ">$text</div>";
385   return $html;
386 }
387
388 if (! function_exists ("drupal_set_error")) {
389   function drupal_set_error ($text) {
390     drupal_set_message ("<span class=error>$text</span>");
391   }
392  }
393
394 //////////////////////////////////////////////////////////// sort out for obsolete / trash
395 // builds a table from an array of strings, with the given class
396 // attempt to normalize the delete buttons and confirmations
397 function plc_delete_icon($width=15) {
398   return "<img width='$width' src='/planetlab/icons/delete.png'>";
399 }
400
401 function plc_add_icon($width=15) {
402   return "<img width='$width' src='/planetlab/icons/add.png'>";
403 }
404
405 function plc_bubble($text,$bubble) {
406   return "<span title='$bubble'>$text</span>";
407 }
408 function plc_delete_icon_bubble ($bubble,$width=15) {
409   return plc_bubble(plc_delete_icon($width),$bubble);
410 }
411
412 function plc_event_button($type,$param,$id) {
413   return '<a href="' . l_event($type,$param,$id) . '"> <span title="Related events"> <img src="/planetlab/icons/event.png" width=18></span></a>';
414 }
415
416 function plc_comon_button ($id_name, $id_value,$target="") {
417   $result='<a ';
418   if (!empty($target)) {
419     $result.='target="' . $target . '" ';
420   }
421   $result.='href="' . l_comon($id_name,$id_value) . '">';
422   $result.='<span title="Link to Comon"> <img src="/planetlab/icons/comon.png" width="18"></span></a>';
423   return $result;
424 }
425
426 ////////////////////
427 function plc_redirect ($url) {
428   header ("Location: " . $url);
429   exit ();
430 }
431
432 //////////////////// the options for an interface - suitable for plekit/form
433 //>>> GetNetworkMethods()
434 //[u'static', u'dhcp', u'proxy', u'tap', u'ipmi', u'unknown']
435 function interface_method_selectors ($api, $method, $primary) {
436   if ($primary) {
437     $builtin_methods=array("static"=>"Static",
438                            "dhcp"=>"DHCP");
439   } else {
440     $builtin_methods=array("static"=>"Static",
441                            "dhcp"=>"DHCP", 
442                            "proxy"=>"Proxy",  
443                            "tap"=>"TUN/TAP",
444                            "ipmi"=>"IPMI");
445   }
446   $selectors=array();
447   foreach ($builtin_methods as $value=>$display) {
448     $selector=array('display'=>$display, 'value'=>$value);
449     if ($value == $method) $selector['selected']=true;
450     $selectors []= $selector;
451   }
452   return $selectors;
453 }
454
455 //////////////////// 
456 function instantiation_label ($slice) {
457   $instantiation_labels = array ('not-instantiated'=>'NOT',
458                                  'plc-instantiated'=>'PLC',
459                                  'delegated' => 'DEL',
460                                  'nm-controller' => 'NM');
461   $result=$instantiation_labels[$slice['instantiation']];
462   if (!$result) $result = $slice['instantiation'];
463   if (!$result) $result = '??';
464   return $result;
465 }
466   
467 //////////////////// toggle areas
468 // get_arg ('show_persons',false) returns $_GET['show_persons'] if set and false otherwise
469 function get_arg ($name,$default,$method='get') {
470   if ($method == 'get') $var=$_GET; else $var=$_POST;
471   if (isset ($var[$name])) return $var[$name];
472   else return $default;
473 }
474
475 //////////////////// number of ...
476 function count_english ($objs,$name) {
477   $count=count($objs);
478   if ($count == 0) return 'No ' . $name;
479   else if ($count == 1) return 'One ' . $name;
480   else return $count . ' ' . $name . 's';
481 }
482 function count_english_warning ($objs, $name) {
483   $x=count_english ($objs,$name);
484   if (count ($objs) == 0) $x=plc_warning_html($x . ' !!');
485   return $x;
486 }
487 ?>