ckp before redoing forms
[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 //////////////////////////////////////////////////////////// roles & other checks on global $plc
13 function plc_is_admin () {
14   global $plc;
15   return in_array( 10, $plc->person['role_ids']);
16 }
17 function plc_is_pi () {
18   global $plc;
19   return in_array( 20, $plc->person['role_ids']);
20 }
21 function plc_is_tech () {
22   global $plc;
23   return in_array( 40, $plc->person['role_ids']);
24 }
25 function plc_in_site ($site_id) {
26   global $plc;
27   return in_array( $site_id, $plc->person['site_ids']);
28 }
29
30 function plc_my_site_id () {
31   global $plc;
32   return $plc->person['site_ids'][0];
33 }
34
35 function plc_my_person_id () {
36   global $plc;
37   return $plc->person['person_id'];
38 }
39
40 //////////////////////////////////////////////////////////// links    
41 function href ($url,$text) { return "<a href='" . $url . "'>" . $text . "</a>"; }
42
43 // naming scheme is
44 // l_objects()                  -> the url to the page that list objects
45 // l_object($object_id)         -> the url to hte page thas details object with given id
46 // l_object_t($object_id,text)  -> an <a> tag that shows text and links to the above
47 // l_object_add ()              -> the url to that object-afding page
48
49 function l_actions ()                   { return "/db/actions.php"; }
50
51 function l_nodes ()                     { return "/db/nodes/index.php"; }
52 function l_nodes_peer ($peer_id)        { return "/db/nodes/index.php?peerscope=$peer_id"; }
53 function l_node ($node_id)              { return "/db/nodes/node.php?id=$node_id"; }
54 function l_node_t ($node_id,$text)      { return href (l_node($node_id),$text); }
55 function l_node_add ()                  { return "/db/nodes/node_add.php"; }
56 function l_nodes_site ($site_id)        { return "/db/nodes/index.php?site_id=$site_id"; }
57
58 function l_interface ($interface_id)    { return "/db/nodes/interfaces.php?id=$interface_id"; }
59 function l_interface_t ($interface_id,$text) { 
60                                           return href (l_interface($interface_id),$text); }
61 function l_interface_add($node_id)      { return "/db/nodes/interfaces.php?node_id=$node_id"; }
62
63 function l_sites ()                     { return "/db/sites/index.php"; }
64 function l_sites_peer ($peer_id)        { return "/db/sites/index.php?peerscope=$peer_id"; }
65 function l_site ($site_id)              { return "/db/sites/index.php?id=$site_id"; }
66 function l_site_t ($site_id,$text)      { return href (l_site($site_id),$text); }
67 function l_site_update($site_id)        { return "/db/sites/site_update.php?site_id=$site_id"; }
68
69 function l_slices ()                    { return "/db/slices/index.php"; }
70 function l_slices_peer ($peer_id)       { return "/db/slices/index.php?peerscope=$peer_id"; }
71 function l_slice ($slice_id)            { return "/db/slices/index.php?id=$slice_id"; }
72 function l_slice_t ($slice_id,$text)    { return href (l_slice($slice_id),$text); }
73 function l_slice_add ()                 { return "/db/slices/add_slice.php"; }
74 function l_slices_site($site_id)        { return "/db/slices/index.php?site_id=$site_id"; }
75 // from an object
76 function l_slice_obj ($slice)           { return l_slice_t ($slice['slice_id'],$slice['name']); }
77
78 function l_sliver ($node_id,$slice_id)  { return "/db/nodes/slivers.php?node_id=$node_id&slice_id=$slice_id"; }
79 function l_sliver_t ($node_id,$slice_id,$text) { 
80                                           return href (l_sliver($node_id,$slice_id),$text) ; }
81
82 function l_persons ()                   { return "/db/persons/index.php"; }
83 function l_persons_peer ($peer_id)      { return "/db/persons/index.php?peerscope=$peer_id"; }
84 function l_person ($person_id)          { return "/db/persons/index.php?id=$person_id"; }
85 function l_person_t ($person_id,$text)  { return href (l_person($person_id),$text); }
86 function l_persons_site ($site_id)      { return "/db/persons/index.php?site_id=$site_id"; }
87
88 function l_tags ()                      { return "/db/tags/index.php"; }
89 function l_tag ($tag_type_id)           { return "/db/tags/index.php"; }
90 function l_tag_add()                    { return "/db/tags/tag_form.php"; }
91 function l_tag_update($id)              { return "/db/tags/tag_form.php&action=update-tag-type&id=$id"; }
92
93 function l_nodegroups ()                { return "/db/tags/nodegroups.php"; }
94 function l_nodegroup ($nodegroup_id)    { return "/db/tags/nodegroup.php?id=$nodegroup_id"; }
95 function l_nodegroup_t ($nodegroup_id,$text) { 
96                                           return href(l_nodegroup($nodegroup_id),$text); }
97
98 function l_events ()                    { return "/db/events/index.php"; }
99 function l_event ($type,$param,$id)     { return "/db/events/index.php?type=$type&$param=$id"; }
100
101 function l_peers()                      { return "/db/peers/index.php"; }
102 function l_peer($peer_id)               { return "/db/peers/index.php?id=$peer_id"; }
103 function l_peer_t($peer_id,$text)       { return href(l_peer($peer_id),$text); }
104
105 function l_comon($id_name,$id_value)    { return "/db/nodes/comon.php?$id_name=$id_value"; }
106 function l_sirius()                     { return "/db/sirius/index.php"; }
107 function l_about()                      { return "/db/about.php"; }
108 function l_doc_plcapi()                 { return "/db/doc/PLCAPI.php"; }
109 function l_doc_nmapi()                  { return "/db/doc/NMAPI.php"; }
110 function l_admin()                      { return "/db/adminsearch.php"; }
111
112 function l_login()                      { return "/db/login.php"; }
113 function l_logout()                     { return "/planetlab/logout.php"; }
114 function l_sulogout()                   { return "/planetlab/sulogout.php"; }
115 function l_reset_password()             { return "/db/persons/reset_password.php"; }
116 function l_person_register()            { return "/db/persons/register.php"; }
117 function l_site_register()              { return "/db/sites/register.php"; }
118 function l_sites_pending()              { return "/db/sites/join_request.php"; }
119
120 function tabs_events()                  { return array('image'=>'/planetlab/icons/event.png','height'=>18);}
121 function tabs_comon()                   { return array('image'=>'/planetlab/icons/comon.png','height'=>18);}
122
123 // returns array ['url' => path, 'values' => hash (key=>value)* ]
124 function split_url ($full_url) {
125   list($url,$args) = explode("?",$full_url);
126   $values=array();
127   if ($args) {
128     $pairs=explode("&",$args);
129     foreach ($pairs as $pair) {
130       list ($name,$value) = explode("=",$pair);
131       $values[$name]=$value;
132     }
133   }
134   return array("url"=>$url,"values"=>$values);
135 }
136
137 //////////////////////////////////////////////////////////// validation functions
138 function topdomain ($hostname) {
139   $exploded=array_reverse(explode(".",$hostname));
140   return $exploded[0];
141 }
142
143 function is_valid_email_addr ($email) {
144   if (ereg("^.+@.+\\..+$", $email) ) {
145     return true;
146   } else {
147     return false;
148   }
149 }
150
151 function is_valid_url ($url) {
152   if (ereg("^(http|https)://.+\..+$", strtolower($url) ) ) {
153     return true;
154   } else {
155     return false;
156   }
157 }
158
159 function is_valid_ip ($ip) {
160   if (ereg("^([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})$", $ip ) ) {
161       // it's at least in the right format, now check to see if
162       // each part is equal to less than 255
163       $parts= explode( '.', $ip );
164       $count= count($parts);
165
166       for( $i= 0; $i < $count; $i++ ) {
167         if( intval($parts[$i]) > 255 )
168           return false;
169       }
170
171       return true;
172   } else {
173     return false;
174   }
175 }
176
177 function is_valid_network_addr($network_addr,$mask) {
178   $lNetwork= ip2long($network_addr);
179   $lMask= ip2long($mask);
180
181   // are they the correct format?
182   if( $lNetwork == -1 || $lMask == -1 )
183     return false;
184
185   // is network address valid for the mask?
186   if( ($lNetwork & $lMask) != $lNetwork )
187     return false;
188
189   return true;
190 }
191
192
193 // returns whether or not a network address is in the reserved space
194 // in the case of a invalid network address, false will be returned.
195 function is_reserved_network_addr($network_addr) {
196   $lNetwork= ip2long($network_addr);
197
198   if( $lNetwork == -1 )
199     return false;
200
201   // does the network address fall in a reserved block?
202   $reserved_ips = array (
203                          array('10.0.0.0','10.255.255.255'),
204                          array('172.16.0.0','172.31.0.0'),
205                          array('192.168.0.0','192.168.255.0')
206                          );
207   foreach ($reserved_ips as $r) {
208     $min = ip2long($r[0]);
209     $max = ip2long($r[1]);
210       
211     if (($lNetwork >= $min) && ($lNetwork <= $max))
212       return true;
213   }
214
215   return false;
216 }
217
218 ////////////////////////////////////////////////////////////  roles
219 function plc_role_global_hash ($api) {
220   $hash=array();
221   $roles=$api->GetRoles();
222   foreach ($roles as $role) {
223     $hash[$role['role_id']]=$role['name'];
224   }
225   return $hash;
226 }
227   
228
229 //////////////////////////////////////////////////////////// nodegroups
230 // hash by 'tagname=value'
231 function plc_nodegroup_global_hash ($api,$tagnames=NULL) {
232   $filter=NULL;
233   // xxx somehow this does not work; I've checked that the feature is working from plcsh
234   // but I suspect the php marshalling or something; no time to fix, get all nodegroups for now
235   // if ($tagnames) $filter=array("tagname"=>$tagnames);
236   $nodegroups=$api->GetNodeGroups($filter);
237   $hash=array();
238   if ($nodegroups) foreach ($nodegroups as $nodegroup) {
239       $key=$nodegroup['tagname']."=".$nodegroup['value'];
240       $hash[$key]=$nodegroup;
241     }
242   return $hash;
243 }
244   
245 //////////////////////////////////////////////////////////// titles
246 function t_site($site) { return " on site " . $site['name'] . " (" . $site['login_base'] .")"; }
247 function t_slice ($slice) { return " running slice " . $slice['name'] . " (" . $slice['slice_id'] . ")"; }
248
249 //////////////////////////////////////////////////////////// nav tabs
250 function tabs_node($node) { return array('Node ' . $node['hostname']=>l_node($node_id)); }
251 function tabs_site($site) { return array('Site ' . $site['name']=>l_site($site_id)); }
252 function tabs_slice($slice) { return array('Slice ' . $slice['name']=>l_slice($slice_id)); }
253
254 //////////////////////////////////////////////////////////// html fragments
255 function plc_vertical_table ($messages, $class="") {
256   // pretty print the cell
257   if ( empty( $messages) ) return "";
258   $formatted = "";
259   $formatted .= "<table";
260   if ($class) $formatted .= " class='" . $class . "'";
261   $formatted .= ">";
262   foreach ($messages as $message) {
263     $formatted .= "<tr><td>" . $message . "</td></tr>";
264   }
265   $formatted .= "</table>";
266   return $formatted;
267 }
268
269 function plc_section ($text,$line=true) {
270   if ($line) { print "<hr/>";}
271   print "<h2 class=plc> $text </h2>\n";
272 }
273
274 function plc_error ($text) {
275   // should use the same channel as the php errors..
276   print "<div class='plc-error'> Error " . $text . "</div>";
277 }
278
279 function plc_errors ($errors) {
280   if ($errors) {
281     print( "<div class='plc-error'>" );
282     print( "<p>The following errors occured:</p>" );
283     print("<ul>");
284     foreach( $errors as $error ) 
285       print( "<li>$error</li>\n" );
286     print( "</ul></div>\n" );
287   }
288 }
289
290 function plc_warning_text ($text)       { return "<span class='plc-warning'>" . $text . "</span>";}
291 function plc_warning ($text)            { print plc_warning_text("Warning " . $text); }
292 function plc_foreign_text($text)        { return "<span class=plc-foreign>$text</span>"; }
293
294 // shows a php variable verbatim with a heading message
295 function plc_debug ($message,$object) {
296   print "<br>" . $message . "<pre>";
297   print_r ($object);
298   print "</pre>";
299 }
300
301 function truncate ($text,$numb,$etc = "...") {
302   if (strlen($text) > $numb) {
303     $text = substr($text, 0, $numb);
304     $text = $text.$etc;
305   }
306   return $text;
307 }
308
309 if (! function_exists ("drupal_set_error")) {
310   function drupal_set_error ($text) {
311     drupal_set_message ("<span class=error>$text</span>");
312   }
313  }
314
315 //////////////////////////////////////////////////////////// sort out for obsolete / trash
316 // builds a table from an array of strings, with the given class
317 // attempt to normalize the delete buttons and confirmations
318 function plc_delete_button($width=15) {
319   return '<span title="Delete this entry"><img width=' . $width . ' alt="Delete this entry" src="/planetlab/icons/delete.png"></span>';
320 }
321
322 function plc_js_confirm($message) {
323   return "onclick=\"javascript:return confirm('Are you sure you want to delete " . $message . " ?')\"";
324 }
325
326 function plc_delete_link($url,$delete_message,$visible) {
327   return "<a href='" . $url . "' " . plc_js_confirm($delete_message) . ">" . $visible . "</a>";
328 }
329
330 function plc_delete_link_button($url,$delete_message,$width=15) {
331   return "<a href='" . $url . "' " . plc_js_confirm($delete_message) . ">" . plc_delete_button($width) . "</a>";
332 }
333
334 function plc_event_button($type,$param,$id) {
335   return '<a href="' . l_event($type,$param,$id) . '"> <span title="Related events"> <img src="/planetlab/icons/event.png" width=18></span></a>';
336 }
337
338 function plc_comon_button ($id_name, $id_value,$target="") {
339   $result='<a ';
340   if (!empty($target)) {
341     $result.='target="' . $target . '" ';
342   }
343   $result.='href="' . l_comon($id_name,$id_value) . '">';
344   $result.='<span title="Link to Comon"> <img src="/planetlab/icons/comon.png" width="18"></span></a>';
345   return $result;
346 }
347
348 ////////////////////
349 function plc_redirect ($url) {
350   header ("Location: " . $url);
351   exit ();
352 }
353
354 ?>