rename "Slices" to "My Slices" for users as the link will show user's
[plewww.git] / modules / planetlab.module
1 <?php // -*-php-*-
2   //
3   // PlanetLab authentication and integration with Drupal
4   //
5   // Mark Huang <mlhuang@cs.princeton.edu>
6   // Copyright (C) 2006 The Trustees of Princeton University
7   //
8   // $Id$
9   //
10
11 require_once 'plc_config.php';
12 require_once 'plc_session.php';
13 require_once 'plc_functions.php';
14
15 drupal_set_html_head('<link href="/planetlab/css/plc_style.css" rel="stylesheet" type="text/css"/>');
16
17 function planetlab_help($section) {
18   switch ($section) {
19   case 'admin/modules#description':
20     return t('Enables authenticated login via a PlanetLab API server.');
21   }
22 }
23
24 function planetlab_info($field = 0) {
25   $info['name'] = 'PlanetLab';
26
27   if ($field) {
28     return $info[$field];
29   } else {
30     return $info;
31   }
32 }
33
34 function planetlab_menu($may_cache) {
35   $items = array();
36
37   if ($may_cache) {
38     $items[] = array(
39                      'path' => 'planetlab/common/logout',
40                      'title' => t('Logout of %s', array('%s' => variable_get('site_name', 'local'))),
41                      'callback' => 'planetlab_logout',
42                      'access' => TRUE,
43                      'type' => MENU_CALLBACK
44                      );
45     $items[] = array(
46                      'path' => 'db',
47                      'title' => variable_get('site_name', 'local'),
48                      'callback' => 'planetlab_page',
49                      'access' => TRUE,
50                      'type' => MENU_CALLBACK
51                      );
52   }
53
54   return $items;
55 }
56
57 //////////////////// formatting helpers - specific to module presentation
58 function ul_start () { return '<ul class="menu">'; }
59 function ul_end () { return '</ul>'; }
60 function leaf($text) { return '<li class="leaf">' . $text . '</li>'; }
61 function expanded($text) { return '<li class="expanded">' . $text . '</li>'; }
62 function p($text) { return '<p>' . $text . '</p>'; }
63
64 # this should get embedded into a ul_start()/ul_end() pair
65 function plc_my_site_links() {
66   $html = '';
67   $sites = plc_my_sites();
68   if (count($sites)>1) foreach ($sites as $site) {
69       $html .= leaf( href(l_site($site['site_id']),$site['abbreviated_name']));
70     } else {
71     $html .= leaf( href(l_site(plc_my_site_id()),"My Site"));
72   }
73   return $html;
74 }
75
76 // ditto
77 function plc_my_node_links () {
78   $html = '';
79   if (count (plc_my_site_ids()) == 1) {
80     $html .= leaf( href (l_nodes_site (plc_my_site_id()),"My Site Nodes"));
81   } else {
82     $html .= leaf( href (l_nodes_person (plc_my_person_id()),"All My Sites Nodes"));
83   }
84   return $html;
85 }
86
87 // fake theme to look like menu
88 function menu_theme ($menu) {
89   $result = '';
90   $result .= ul_start();
91   foreach ($menu as $item) $result .= $item;
92   $result .= ul_end();
93   return $result;
94 }
95
96 function planetlab_block($op = 'list', $delta = 0, $edit = array()) {
97   global $user, $plc;
98
99   if ($op == 'list') {
100     $blocks[0]['info'] = t('PlanetLab login');
101
102     return $blocks;
103
104   } else if ($op == 'view') {
105     $block = array();
106
107     if (!$plc->person) {
108       // Force login via HTTPS
109       unset($_GET['time']);
110       $form['#action'] = "https://" . $_SERVER['HTTP_HOST'] . url($_GET['q'], drupal_get_destination());
111       $form['#id'] = 'planetlab-login-form';
112       $form['name'] = array('#type' => 'textfield',
113                             '#title' => t('E-mail'),
114                             '#maxlength' => 60,
115                             '#size' => 25,
116                             '#required' => TRUE,
117                             );
118       $form['pass'] = array('#type' => 'password',
119                             '#title' => t('Password'),
120                             '#size' => 25,
121                             '#required' => TRUE,
122                             );
123       $form['submit'] = array('#type' => 'submit',
124                               '#value' => t('Log in'),
125                               );
126
127       $block['subject'] = t('%s login', array('%s' => variable_get('site_name', 'local')));
128       $block['content'] = drupal_get_form('planetlab_login_block', $form, 'planetlab_login');
129       $block['content'] .= p('');
130       $block['content'] .= p( href (l_reset_password(),"Forgot your password?") );
131       $block['content'] .= p( href(l_person_register(),"Create an account") );
132       $block['content'] .= p( href(l_site_register(),"File a site registration") );
133     } else {
134       $block['subject'] = truncate($plc->person['email'],30);
135
136       //////////////////// Logout 
137       $bullet_item = '';
138       if ($user->uid) {
139         // Drupal logout (destroys the session and cleans up $user)
140         // Thierry unclear when this triggers, I suspect this is obsolete
141         $bullet_item .= l(t('Logout of %s', 
142                           array('%s' => variable_get('site_name', 'local'))), 'logout');
143       } else {
144         // PlanetLab logout (just destroy the session)
145         $bullet_item .= href (l_logout(),'Logout');
146       }
147       $bullet_item .= ul_start();
148       // logout 
149       if ( $plc->alt_person && $plc->alt_auth) {
150         $email = truncate($plc->person['email'],20); 
151         $bullet_item .= leaf( href( l_sulogout(),"Un-become $email"));
152       } 
153       $bullet_item .= ul_end();
154       $items []= expanded ($bullet_item);
155
156       //////////////////// accounts
157       $bullet_item = '';
158       $bullet_item .=  l_person_t(plc_my_person_id(),"My Account");
159       $bullet_item .= ul_start();
160       if (plc_is_admin() || plc_is_pi()) 
161         $bullet_item .= leaf( href( l_persons_site(plc_my_site_id()), "My Users"));
162       if (plc_is_admin()) {
163         $bullet_item .= leaf(href(l_persons_peer('local'),'Local users (looong)'));
164         $bullet_item .= leaf(href(l_persons(),'All users (looong)'));
165       }
166         
167       $bullet_item .= ul_end();
168       $items [] = expanded($bullet_item);
169
170       //////////////////// Sites
171       $bullet_item = '';
172       $bullet_item .= href(l_sites(),"Sites");
173       $bullet_item .= ul_start();
174       $bullet_item .= plc_my_site_links();
175       if ( plc_is_admin() ) 
176         $bullet_item .= leaf( href(l_sites_pending(),"Pending Requests"));
177       $bullet_item .= ul_end();
178       $items[] = expanded($bullet_item);
179
180       //////////////////// Nodes
181       $bullet_item = '';
182       $bullet_item .= href(l_nodes(),"Nodes");
183       $bullet_item .= ul_start();
184       $bullet_item .= plc_my_node_links();
185       $bullet_item .= leaf( href (l_register_node(),"Register Node"));
186       $bullet_item .= ul_end();
187       $items [] = expanded($bullet_item);
188
189       //////////////////// Slices
190       $bullet_item = '';
191       //if( !( plc_is_tech() && ! plc_is_user() && ! plc_is_pi() && ! plc_is_admin() ) ) 
192       if (plc_is_admin()) {
193         $bullet_item .= href(l_slices(),"Slices");
194       } else {
195         $bullet_item .= href(l_slices(),"My Slices");
196       }
197       $bullet_item .= ul_start();
198       if (plc_is_admin()) 
199         $bullet_item .= leaf ( href(l_slices_site(plc_my_site_id()), 'My Site Slices'));
200       if( plc_is_admin() || plc_is_pi() ) {
201         $bullet_item .= leaf(href(l_slice_add(),"Create Slice"));
202       }
203       if( !( plc_is_tech() && ! plc_is_user() && ! plc_is_pi() && ! plc_is_admin() ) ) 
204         $bullet_item .= leaf(href(l_sirius(),"Sirius"));
205       $bullet_item .= ul_end();
206       $items [] = expanded($bullet_item);
207
208       //////////////////// Admin
209       if( plc_is_admin() || plc_is_pi() ) {
210         $bullet_item = '';
211         $bullet_item .= href(l_admin(),"Admin search");
212         $bullet_item .= ul_start();
213         $bullet_item .= leaf( href (l_node_add(),"Add Node"));
214         $bullet_item .= leaf( href( l_tags(),"Tags"));
215         $bullet_item .= leaf( href( l_nodegroups(),"Node groups"));
216         $bullet_item .= leaf (href(l_peers(),'Peers'));
217         if ( plc_is_admin() )
218           $bullet_item .= leaf (href(l_events(),'Events'));
219         $bullet_item .= ul_end();
220         $items [] = expanded($bullet_item);
221       }
222
223       $bullet_item = '';
224       $bullet_item .= href(l_about(),'About MyPLC');
225       $bullet_item .= ul_start();
226       $bullet_item .= leaf ( href (l_doc_plcapi(),"PLCAPI doc"));
227       $bullet_item .= leaf ( href (l_doc_nmapi(),"NMAPI doc"));
228       $bullet_item .= ul_end();
229       $items[] = expanded($bullet_item);
230
231       //$block['content'] = theme('list_item', $items);
232       $block['content'] = menu_theme($items);
233     }
234
235     /*
236      ob_start();
237      print '<pre>';
238      print_r($_SESSION);
239      print '</pre>';
240      $block['content'] .= ob_get_contents();
241      ob_end_clean();
242     */
243
244     return $block;
245   }
246 }
247
248 function planetlab_login_validate($form_id, $form_values) {
249   global $user, $plc;
250
251   if ($form_values['name'] && $form_values['pass']) {
252     // Drupal login succeeded
253     if (($user = user_authenticate($form_values['name'], trim($form_values['pass']))) &&
254         $user->uid) {
255       return;
256     }
257
258     $plc = new PLCSession($form_values['name'], $form_values['pass']);
259
260     // PlanetLab login failed
261     if (!$plc->person) {
262       form_set_error('login', t('Sorry. Unrecognized username or password.'));
263       watchdog('planetlab', t('Login attempt failed for %user.', array('%user' => theme('placeholder', $form_values['name']))));
264     }
265
266     // PlanetLab login succeeded
267     else {
268       // Login admins to Drupal as the superuser
269       if (in_array('admin', $plc->person['roles'])) {
270         $user = user_load(array('uid' => 1));
271       }
272     }
273   }
274 }
275
276 function planetlab_login_submit($form_id, $form_values) {
277   global $plc;
278
279   // Our referring page is encased in a query string of the form
280   // "destination=referrer".
281   parse_str(drupal_get_destination()); // => $destination
282
283   // The referrer itself is a URL path with the original query string,
284   // e.g. "referer.php?query".
285   extract(parse_url($destination)); // => $query
286
287   // Which we then have to parse again as a query string.
288   parse_str($query); // => $url
289
290   if ($plc->person) {
291     // To handle the edge case where this function is called during a
292     // bootstrap, check for the existence of t().
293     if (function_exists('t')) {
294       $message = t('Session opened for %name.', array('%name' => theme('placeholder', $plc->person['email'])));
295     }
296     else {
297       $message = "Session opened for ". check_plain($person['email']);
298     }
299     watchdog('planetlab', $message);
300
301     if (empty($url)) {
302       // Create a timestamped final URL so that browsers don't return the user to
303       // a cached page (where it would appear as if they never logged in or out).
304       return array('time='. time());
305     } else {
306       // Make sure that redirections are always local
307       $url = urldecode($url);
308       if ($url[0] != "/") {
309         $url = "/$url";
310       }
311       header("Location: $url");
312       exit();
313     }
314   }
315 }
316
317 function planetlab_logout() {
318   global $plc;
319
320   if ($plc->person) {
321     // Invalidate PlanetLab session
322     $plc->logout();
323     watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
324   }
325
326   // Destroy the current session:
327   session_destroy();
328
329   // The time prevents caching.
330   drupal_goto(NULL, 'time='. time());
331 }
332
333 function planetlab_user($type, &$edit, &$user, $category = NULL) {
334   switch ($type) {
335   case 'logout':
336     if ($plc->person) {
337       $plc->logout();
338       watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
339     }
340     break;
341   }
342 }
343
344 function planetlab_page() {
345   $path = $_SERVER['DOCUMENT_ROOT'] . preg_replace('/^db\//', '/planetlab/', $_GET['q']);
346
347   // error_log("Requested " . $_GET['q'] . " -> $path");
348
349   if (is_dir($path)) {
350     foreach (array('index.php', 'index.html', 'index.htm') as $index) {
351       if (is_file($path . "/$index")) {
352         $path .= "/$index";
353         break;
354       }
355     }
356   }
357
358   if (is_file($path)) {
359     if (preg_match('/.php$/', $path)) {
360       ob_start();
361       include $path;
362       $output = ob_get_contents();
363       ob_end_clean();
364     } else {
365       $output = file_get_contents($path);
366     }
367     return $output;
368   }
369             
370   drupal_not_found();
371 }
372
373 function theme_planetlab($content) {
374   return $content;
375 }
376
377 ?>