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