add node : allowed to everyone
[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: planetlab.module 809 2007-09-03 09:47:40Z thierry $
9   //
10
11 require_once 'plc_config.php';
12 require_once 'plc_session.php';
13
14 function planetlab_help($section)
15 {
16   switch ($section) {
17   case 'admin/modules#description':
18     return t('Enables authenticated login via a PlanetLab API server.');
19   }
20 }
21
22 function planetlab_info($field = 0)
23 {
24   $info['name'] = 'PlanetLab';
25
26   if ($field) {
27     return $info[$field];
28   }
29   else {
30     return $info;
31   }
32 }
33
34 function planetlab_menu($may_cache)
35 {
36   $items = array();
37
38   if ($may_cache) {
39     $items[] = array(
40                      'path' => 'planetlab/logout',
41                      'title' => t('Log out of %s', array('%s' => variable_get('site_name', 'local'))),
42                      'callback' => 'planetlab_logout',
43                      'access' => TRUE,
44                      'type' => MENU_CALLBACK
45                      );
46     $items[] = array(
47                      'path' => 'db',
48                      'title' => variable_get('site_name', 'local'),
49                      'callback' => 'planetlab_page',
50                      'access' => TRUE,
51                      'type' => MENU_CALLBACK
52                      );
53   }
54
55   return $items;
56 }
57
58 function planetlab_block($op = 'list', $delta = 0, $edit = array())
59 {
60   global $user, $plc;
61
62   if ($op == 'list') {
63     $blocks[0]['info'] = t('PlanetLab login');
64
65     return $blocks;
66   }
67   else if ($op == 'view') {
68     $block = array();
69
70     if (!$plc->person) {
71       // Force login via HTTPS
72       unset($_GET['time']);
73       $form['#action'] = "https://" . $_SERVER['HTTP_HOST'] . url($_GET['q'], drupal_get_destination());
74       $form['#id'] = 'planetlab-login-form';
75       $form['name'] = array('#type' => 'textfield',
76                             '#title' => t('E-mail'),
77                             '#maxlength' => 60,
78                             '#size' => 25,
79                             '#required' => TRUE,
80                             );
81       $form['pass'] = array('#type' => 'password',
82                             '#title' => t('Password'),
83                             '#size' => 25,
84                             '#required' => TRUE,
85                             );
86       $form['submit'] = array('#type' => 'submit',
87                               '#value' => t('Log in'),
88                               );
89
90       $block['subject'] = t('%s login', array('%s' => variable_get('site_name', 'local')));
91       $block['content'] = drupal_get_form('planetlab_login_block', $form, 'planetlab_login');
92       $block['content'] .= '<p><p><a href="/db/persons/reset_password.php">Forgot your password?</a></p>';
93       $block['content'] .= '<p><a href="/db/persons/register.php">Create an account</a></p>';
94       $block['content'] .= '<p><a href="/db/sites/register.php">File a site registration</a></p>';
95     } else {
96       $block['subject'] = $plc->person['email'];
97       $is_admin = in_array(10,$plc->person['role_ids']);
98       $is_pi =    in_array(20,$plc->person['role_ids']);
99       $is_user =  in_array(30,$plc->person['role_ids']);
100       $is_tech =  in_array(40,$plc->person['role_ids']);
101
102       $site_item = '';
103       $site_item .= '<a href="/db/sites/">Sites</a>';
104       $site_item .= '<ul>';
105       $site_item .= '<li><a href="/db/sites/index.php?id='. $plc->person['site_ids'][0] .'">My Site</a></li>';
106       if ( $is_admin ) 
107         $site_item .= "<li><a href='/db/sites/join_request.php'>Join Requests</a></li>";
108       if( $is_admin )
109         $site_item .= "<li><a href='/db/sites/peers.php'>Migration Status</a></li>";
110       $site_item .= "</ul>";
111       $items[] = $site_item;
112
113       $user_item = '';
114       $user_item .= '<a href="/db/persons/">Users</a>';
115       $user_item .= '<ul>';
116       $user_item .= '<li><a href="/db/persons/index.php?id='. $plc->person['person_id'] .'">My account</a></li>';
117       if (is_pi) 
118         $user_item .= '<li><a href="/db/persons/index.php?site_id='. $plc->person['site_ids'][0] .'">My users</a></li>';
119       if ( $plc->alt_person && $plc->alt_auth) {
120         $email = $plc->person['email']; 
121         $user_item .= "<li><a href='/db/sulogout.php'>Log out of $email </a></li>";
122       } 
123
124
125       $user_item .= '</ul>';
126       $items [] = $user_item;
127
128       $node_item = '';
129       $node_item .= '<a href="/db/nodes/">Nodes</a>';
130       $node_item .= '<ul>';
131       $node_item .= '<li><a href="/db/nodes/index.php?site_id='. $plc->person['site_ids'][0] .'">My Site Nodes</a></li>';
132       $node_item .= "<li><a href='/db/nodes/add_node.php'>Add Node</a></li>";
133       if ( $is_admin) 
134         $node_item .= "<li> <a href='/db/nodes/settings.php'> Setting Types </a> </li>";
135       $node_item .= '</ul>';
136       $items [] = $node_item;
137
138       $slice_item = '';
139       //if( !( $is_tech && ! $is_user && ! $is_pi && ! $is_admin ) ) 
140       $slice_item .= '<a href="/db/slices/">Slices</a>';
141       $slice_item .= '<ul>';
142       if( $is_admin || $is_pi ) {
143         $slice_item .= "<li><a href='/db/slices/add_slice.php'>Create Slice</a></li>";
144         $slice_item .= "<li><a href='/db/slices/attributes.php'>Attribute Types</a></li>";
145       }
146       if( !( $is_tech && ! $is_user && ! $is_pi && ! $is_admin ) ) 
147         $slice_item .= '<li><a href="/db/sirius/index.php">Sirius</a></li>';
148       $slice_item .= '</ul>';
149       $items [] = $slice_item;
150
151       if ( $is_admin )
152         $items[] = l(t('Peers'),'db/peers/');
153      
154       if ( $is_admin )
155         $items[] = l(t('Events'),'db/events/');
156       
157       $items[] = l(t('About'),'db/about.php');
158
159       if ($user->uid) {
160         // Drupal logout (destroys the session and cleans up $user)
161         $items[] = l(t('Log out of %s', array('%s' => variable_get('site_name', 'local'))), 'logout');
162       } else {
163         // PlanetLab logout (just destroy the session)
164         $items[] = l(t('Log out'), 'planetlab/logout');
165       }
166
167       $block['content'] = theme('item_list', $items);
168     }
169
170     /*
171      ob_start();
172      print '<pre>';
173      print_r($_SESSION);
174      print '</pre>';
175      $block['content'] .= ob_get_contents();
176      ob_end_clean();
177     */
178
179     return $block;
180   }
181 }
182
183 function planetlab_login_validate($form_id, $form_values)
184 {
185   global $user, $plc;
186
187   if ($form_values['name'] && $form_values['pass']) {
188     // Drupal login succeeded
189     if (($user = user_authenticate($form_values['name'], trim($form_values['pass']))) &&
190         $user->uid) {
191       return;
192     }
193
194     $plc = new PLCSession($form_values['name'], $form_values['pass']);
195
196     // PlanetLab login failed
197     if (!$plc->person) {
198       form_set_error('login', t('Sorry. Unrecognized username or password.'));
199       watchdog('planetlab', t('Login attempt failed for %user.', array('%user' => theme('placeholder', $form_values['name']))));
200     }
201
202     // PlanetLab login succeeded
203     else {
204       // Login admins to Drupal as the superuser
205       if (in_array('admin', $plc->person['roles'])) {
206         $user = user_load(array('uid' => 1));
207       }
208     }
209   }
210 }
211
212 function planetlab_login_submit($form_id, $form_values)
213 {
214   global $plc;
215
216   // Our referring page is encased in a query string of the form
217   // "destination=referrer".
218   parse_str(drupal_get_destination()); // => $destination
219
220   // The referrer itself is a URL path with the original query string,
221   // e.g. "referer.php?query".
222   extract(parse_url($destination)); // => $query
223
224   // Which we then have to parse again as a query string.
225   parse_str($query); // => $url
226
227   if ($plc->person) {
228     // To handle the edge case where this function is called during a
229     // bootstrap, check for the existence of t().
230     if (function_exists('t')) {
231       $message = t('Session opened for %name.', array('%name' => theme('placeholder', $plc->person['email'])));
232     }
233     else {
234       $message = "Session opened for ". check_plain($person['email']);
235     }
236     watchdog('planetlab', $message);
237
238     if (empty($url)) {
239       // Create a timestamped final URL so that browsers don't return the user to
240       // a cached page (where it would appear as if they never logged in or out).
241       return array('time='. time());
242     } else {
243       // Make sure that redirections are always local
244       $url = urldecode($url);
245       if ($url[0] != "/") {
246         $url = "/$url";
247       }
248       Header("Location: $url");
249       exit();
250     }
251   }
252 }
253
254 function planetlab_logout()
255 {
256   global $plc;
257
258   if ($plc->person) {
259     // Invalidate PlanetLab session
260     $plc->logout();
261     watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
262   }
263
264   // Destroy the current session:
265   session_destroy();
266
267   // The time prevents caching.
268   drupal_goto(NULL, 'time='. time());
269 }
270
271 function planetlab_user($type, &$edit, &$user, $category = NULL)
272 {
273   switch ($type) {
274   case 'logout':
275     if ($plc->person) {
276       $plc->logout();
277       watchdog('planetlab', t('Session closed for %name.', array('%name' => theme('placeholder', $plc->person['email']))));
278     }
279     break;
280   }
281 }
282
283 function planetlab_page()
284 {
285   $path = $_SERVER['DOCUMENT_ROOT'] . preg_replace('/^db\//', '/planetlab/', $_GET['q']);
286
287   // error_log("Requested " . $_GET['q'] . " -> $path");
288
289   if (is_dir($path)) {
290     foreach (array('index.php', 'index.html', 'index.htm') as $index) {
291       if (is_file($path . "/$index")) {
292         $path .= "/$index";
293         break;
294       }
295     }
296   }
297
298   if (is_file($path)) {
299     if (preg_match('/.php$/', $path)) {
300       ob_start();
301       include $path;
302       $output = ob_get_contents();
303       ob_end_clean();
304     } else {
305       $output = file_get_contents($path);
306     }
307     return $output;
308   }
309             
310   drupal_not_found();
311 }
312
313 function theme_planetlab($content)
314 {
315   return $content;
316 }
317
318 ?>