reviewed planetlab module, downgrade the "all users" link
[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
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 // fake theme to look like menu
64 function menu_theme ($menu) {
65   $result = '';
66   $result .= ul_start();
67   foreach ($menu as $item) $result .= $item;
68   $result .= ul_end();
69   return $result;
70 }
71
72 function planetlab_block($op = 'list', $delta = 0, $edit = array()) {
73   global $user, $plc;
74
75   if ($op == 'list') {
76     $blocks[0]['info'] = t('PlanetLab login');
77
78     return $blocks;
79
80   } else if ($op == 'view') {
81     $block = array();
82
83     if (!$plc->person) {
84       // Force login via HTTPS
85       unset($_GET['time']);
86       $form['#action'] = "https://" . $_SERVER['HTTP_HOST'] . url($_GET['q'], drupal_get_destination());
87       $form['#id'] = 'planetlab-login-form';
88       $form['name'] = array('#type' => 'textfield',
89                             '#title' => t('E-mail'),
90                             '#maxlength' => 60,
91                             '#size' => 25,
92                             '#required' => TRUE,
93                             );
94       $form['pass'] = array('#type' => 'password',
95                             '#title' => t('Password'),
96                             '#size' => 25,
97                             '#required' => TRUE,
98                             );
99       $form['submit'] = array('#type' => 'submit',
100                               '#value' => t('Log in'),
101                               );
102
103       $block['subject'] = t('%s login', array('%s' => variable_get('site_name', 'local')));
104       $block['content'] = drupal_get_form('planetlab_login_block', $form, 'planetlab_login');
105       $block['content'] .= p('');
106       $block['content'] .= p( href (l_reset_password(),"Forgot your password?") );
107       $block['content'] .= p( href(l_person_register(),"Create an account") );
108       $block['content'] .= p( href(l_site_register(),"File a site registration") );
109     } else {
110       $block['subject'] = truncate($plc->person['email'],30);
111
112       //////////////////// Logout 
113       $bullet_item = '';
114       if ($user->uid) {
115         // Drupal logout (destroys the session and cleans up $user)
116         // Thierry unclear when this triggers, I suspect this is obsolete
117         $bullet_item .= l(t('Logout of %s', 
118                           array('%s' => variable_get('site_name', 'local'))), 'logout');
119       } else {
120         // PlanetLab logout (just destroy the session)
121         $bullet_item .= href (l_logout(),'Logout');
122       }
123       $bullet_item .= ul_start();
124       // logout 
125       if ( $plc->alt_person && $plc->alt_auth) {
126         $email = truncate($plc->person['email'],20); 
127         $bullet_item .= leaf( href( l_sulogout(),"Un-become $email"));
128       } 
129       $bullet_item .= ul_end();
130       $items []= expanded ($bullet_item);
131
132       //////////////////// accounts
133       $bullet_item = '';
134       $bullet_item .=  l_person_t(plc_my_person_id(),"My Account");
135       $bullet_item .= ul_start();
136       if (plc_is_admin() || plc_is_pi()) 
137         $bullet_item .= leaf( href( l_persons_site(plc_my_site_id()), "My Users"));
138       if (plc_is_admin()) {
139         $bullet_item .= leaf(href(l_persons_peer('local'),'Local users (looong)'));
140         $bullet_item .= leaf(href(l_persons(),'All users (looong)'));
141       }
142         
143       $bullet_item .= ul_end();
144       $items [] = expanded($bullet_item);
145
146       //////////////////// Sites
147       $bullet_item = '';
148       $bullet_item .= href(l_sites(),"Sites");
149       $bullet_item .= ul_start();
150       $bullet_item .= leaf( href(l_site(plc_my_site_id()),"My Site"));
151       if ( plc_is_admin() ) 
152         $bullet_item .= leaf( href(l_sites_pending(),"Pending Requests"));
153       $bullet_item .= ul_end();
154       $items[] = expanded($bullet_item);
155
156       //////////////////// Nodes
157       $bullet_item = '';
158       $bullet_item .= href(l_nodes(),"Nodes");
159       $bullet_item .= ul_start();
160       $bullet_item .= leaf( href (l_nodes_site (plc_my_site_id()),"My Site Nodes"));
161       $bullet_item .= leaf( href (l_node_add(),"Add Node"));
162       $bullet_item .= ul_end();
163       $items [] = expanded($bullet_item);
164
165       //////////////////// Slices
166       $bullet_item = '';
167       //if( !( plc_is_tech() && ! plc_is_user() && ! plc_is_pi() && ! plc_is_admin() ) ) 
168       $bullet_item .= href(l_slices(),"Slices");
169       $bullet_item .= ul_start();
170       if (plc_is_admin()) 
171         $bullet_item .= leaf ( href(l_slices_site(plc_my_site_id()), 'My Site Slices'));
172       if( plc_is_admin() || plc_is_pi() ) {
173         $bullet_item .= leaf(href(l_slice_add(),"Create Slice"));
174       }
175       if( !( plc_is_tech() && ! plc_is_user() && ! plc_is_pi() && ! plc_is_admin() ) ) 
176         $bullet_item .= leaf(href(l_sirius(),"Sirius"));
177       $bullet_item .= ul_end();
178       $items [] = expanded($bullet_item);
179
180       //////////////////// Admin
181       if( plc_is_admin() || plc_is_pi() ) {
182         $bullet_item = '';
183         $bullet_item .= href(l_admin(),"Admin search");
184         $bullet_item .= ul_start();
185         $bullet_item .= leaf( href( l_tags(),"Tags"));
186         $bullet_item .= leaf( href( l_nodegroups(),"Node groups"));
187         $bullet_item .= leaf (href(l_peers(),'Peers'));
188         if ( plc_is_admin() )
189           $bullet_item .= leaf (href(l_events(),'Events'));
190         $bullet_item .= ul_end();
191         $items [] = expanded($bullet_item);
192       }
193
194       $bullet_item = '';
195       $bullet_item .= href(l_about(),'About MyPLC');
196       $bullet_item .= ul_start();
197       $bullet_item .= leaf ( href (l_doc_plcapi(),"PLCAPI doc"));
198       $bullet_item .= leaf ( href (l_doc_nmapi(),"NMAPI doc"));
199       $bullet_item .= ul_end();
200       $items[] = expanded($bullet_item);
201
202       //$block['content'] = theme('list_item', $items);
203       $block['content'] = menu_theme($items);
204     }
205
206     /*
207      ob_start();
208      print '<pre>';
209      print_r($_SESSION);
210      print '</pre>';
211      $block['content'] .= ob_get_contents();
212      ob_end_clean();
213     */
214
215     return $block;
216   }
217 }
218
219 function planetlab_login_validate($form_id, $form_values) {
220   global $user, $plc;
221
222   if ($form_values['name'] && $form_values['pass']) {
223     // Drupal login succeeded
224     if (($user = user_authenticate($form_values['name'], trim($form_values['pass']))) &&
225         $user->uid) {
226       return;
227     }
228
229     $plc = new PLCSession($form_values['name'], $form_values['pass']);
230
231     // PlanetLab login failed
232     if (!$plc->person) {
233       form_set_error('login', t('Sorry. Unrecognized username or password.'));
234       watchdog('planetlab', t('Login attempt failed for %user.', array('%user' => theme('placeholder', $form_values['name']))));
235     }
236
237     // PlanetLab login succeeded
238     else {
239       // Login admins to Drupal as the superuser
240       if (in_array('admin', $plc->person['roles'])) {
241         $user = user_load(array('uid' => 1));
242       }
243     }
244   }
245 }
246
247 function planetlab_login_submit($form_id, $form_values) {
248   global $plc;
249
250   // Our referring page is encased in a query string of the form
251   // "destination=referrer".
252   parse_str(drupal_get_destination()); // => $destination
253
254   // The referrer itself is a URL path with the original query string,
255   // e.g. "referer.php?query".
256   extract(parse_url($destination)); // => $query
257
258   // Which we then have to parse again as a query string.
259   parse_str($query); // => $url
260
261   if ($plc->person) {
262     // To handle the edge case where this function is called during a
263     // bootstrap, check for the existence of t().
264     if (function_exists('t')) {
265       $message = t('Session opened for %name.', array('%name' => theme('placeholder', $plc->person['email'])));
266     }
267     else {
268       $message = "Session opened for ". check_plain($person['email']);
269     }
270     watchdog('planetlab', $message);
271
272     if (empty($url)) {
273       // Create a timestamped final URL so that browsers don't return the user to
274       // a cached page (where it would appear as if they never logged in or out).
275       return array('time='. time());
276     } else {
277       // Make sure that redirections are always local
278       $url = urldecode($url);
279       if ($url[0] != "/") {
280         $url = "/$url";
281       }
282       header("Location: $url");
283       exit();
284     }
285   }
286 }
287
288 function planetlab_logout() {
289   global $plc;
290
291   if ($plc->person) {
292     // Invalidate PlanetLab session
293     $plc->logout();
294     watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
295   }
296
297   // Destroy the current session:
298   session_destroy();
299
300   // The time prevents caching.
301   drupal_goto(NULL, 'time='. time());
302 }
303
304 function planetlab_user($type, &$edit, &$user, $category = NULL) {
305   switch ($type) {
306   case 'logout':
307     if ($plc->person) {
308       $plc->logout();
309       watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
310     }
311     break;
312   }
313 }
314
315 function planetlab_page() {
316   $path = $_SERVER['DOCUMENT_ROOT'] . preg_replace('/^db\//', '/planetlab/', $_GET['q']);
317
318   // error_log("Requested " . $_GET['q'] . " -> $path");
319
320   if (is_dir($path)) {
321     foreach (array('index.php', 'index.html', 'index.htm') as $index) {
322       if (is_file($path . "/$index")) {
323         $path .= "/$index";
324         break;
325       }
326     }
327   }
328
329   if (is_file($path)) {
330     if (preg_match('/.php$/', $path)) {
331       ob_start();
332       include $path;
333       $output = ob_get_contents();
334       ob_end_clean();
335     } else {
336       $output = file_get_contents($path);
337     }
338     return $output;
339   }
340             
341   drupal_not_found();
342 }
343
344 function theme_planetlab($content) {
345   return $content;
346 }
347
348 ?>