Users can delete entries from their openid whitelid
[platal.git] / modules / openid.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22
23 /* Definitions for the OpenId Specification
24 * http://openid.net/specs/openid-authentication-2_0.html
25 *
26 * OP Endpoint URL: https://www.polytechnique.org/openid
27 * OP Identifier: https://www.polytechnique.org/openid
28 * User Identifier: https://www.polytechnique.org/openid/{hruid}
29 * OP-Local Identifier: {hruid}
30 */
31
32 /* This implementation supports two modes:
33 * - entering the OP Identifier, which can simply be 'polytechnique.org'
34 * - entering the User Identifier, or some URL that resolves there
35 * In both cases, Yadis discovery is made possible through the X-XRDS-Location
36 * header.
37 *
38 * In the former case, Yadis discovery is performed on /, or where it redirects;
39 * see platal.php. It resolves to the XRDS for this OP, and User Identifier
40 * selection is performed after forcing the user to log in. This only works for
41 * version 2.0 of the OpenId protocol.
42 *
43 * In the latter cas, Yadis discovery is performed on /openid/{hruid}. It
44 * resolves ta a user-specific XRDS. This page also features HTML-based
45 * discovery. This works with any version of the protocol.
46 */
47
48 /* Testing suite is here:
49 * http://openidenabled.com/resources/openid-test/
50 * It only supports User Indentifiers.
51 *
52 * To test OP Identifiers, download the JanRain PHP library and use the
53 * consumer provided as an example (although it appears that a failure is
54 * mistakenly reported: 'Server denied check_authentication').
55 * Reading the source of the server can also help understanding the code below.
56 */
57
58
59 class OpenidModule extends PLModule
60 {
61 function handlers()
62 {
63 return array(
64 'openid' => $this->make_hook('openid', AUTH_PUBLIC),
65 'openid/trust' => $this->make_hook('trust', AUTH_COOKIE),
66 'openid/trusted' => $this->make_hook('trusted', AUTH_MDP),
67 'openid/idp_xrds' => $this->make_hook('idp_xrds', AUTH_PUBLIC),
68 'openid/user_xrds' => $this->make_hook('user_xrds', AUTH_PUBLIC),
69 'openid/melix' => $this->make_hook('melix', AUTH_PUBLIC),
70 );
71 }
72
73 function handler_openid(&$page, $x = null)
74 {
75 $this->load('openid.inc.php');
76
77 // Spec ยง4.1.2: if "openid.mode" is absent, we SHOULD assume that
78 // the request is not an OpenId message
79 if (!array_key_exists('openid_mode', $_REQUEST)) {
80 return $this->render_discovery_page($page, get_user($x));
81 }
82
83 // Now, deal with the OpenId message
84 $server = init_openid_server();
85 $request = $server->decodeRequest();
86
87 // In modes 'checkid_immediate' and 'checkid_setup', the request
88 // needs some logic and can not be automatically answered by the server
89
90 // Immediate mode
91 if ($request->mode == 'checkid_immediate') {
92
93 // We deny immediate requests, unless:
94 // - the user identifier is known by the RP
95 // - the user is logged in
96 // - the user identifier matches the user logged in
97 // - the user has whitelisted the site
98 $answer = !$request->idSelect()
99 && S::logged()
100 && $request->identity == S::user()->login()
101 && is_trusted_site(S::user(), $request->trust_root);
102 $response =& $request->answer($answer);
103
104 // Setup mode
105 } else if ($request->mode == 'checkid_setup') {
106
107 // We redirect to a page where the user will authenticate
108 // and confirm the use of his/her OpenId
109 // The request is saved in session before redirecting
110 S::set('openid_request', serialize($request));
111 pl_redirect('openid/trust');
112 return;
113
114 // Other requests can be automatically handled by the server
115 } else {
116 $response =& $server->handleRequest($request);
117 }
118
119 $webresponse =& $server->encodeResponse($response);
120 $this->render_openid_response($webresponse);
121 }
122
123 function handler_trust(&$page, $x = null)
124 {
125 $this->load('openid.inc.php');
126
127 // Recover request in session
128 $request = S::v('openid_request');
129 if (is_null($request)) {
130 // There is no authentication information, something went wrong
131 pl_redirect('/');
132 return;
133 }
134
135 require_once 'Auth/OpenID/Server.php';
136 $request = unserialize($request);
137
138 $server = init_openid_server();
139 $user = S::user();
140 $identity = null;
141 $claimed_id = null;
142
143 // Set the identity to the user currently logged in
144 // if an OP Identifier was initially used
145 if ($request->identity == Auth_OpenID_IDENTIFIER_SELECT) {
146 $identity = $user->hruid;
147 $claimed_id = get_user_openid_url($user);
148 // Check that the identity matches the user currently logged in
149 // if an User Identifier was initially used
150 } else if ($request->identity != $user->hruid) {
151 $response =& $request->answer(false);
152 $webresponse =& $server->encodeResponse($response);
153 $this->render_openid_response($webresponse);
154 return;
155 }
156
157 // Prepare Simple Registration response fields
158 require_once 'Auth/OpenID/SReg.php';
159 $sreg_request = Auth_OpenID_SRegRequest::fromOpenIDRequest($request);
160 $sreg_response = Auth_OpenID_SRegResponse::extractResponse($sreg_request, get_sreg_data($user));
161
162 $whitelisted = is_trusted_site($user, $request->trust_root);
163
164 // Ask the user for confirmation
165 if (!$whitelisted && $_SERVER['REQUEST_METHOD'] != 'POST') {
166 $page->changeTpl('openid/trust.tpl');
167 $page->assign('relying_party', $request->trust_root);
168 $page->assign_by_ref('sreg_data', $sreg_response->data);
169 return;
170 }
171
172 // At this point $_SERVER['REQUEST_METHOD'] == 'POST'
173
174 // Add 'always trusted' sites to whitelist
175 if (isset($_POST['trust']) && @$_POST['always']) {
176 add_trusted_site($user, $request->trust_root);
177 }
178
179 // Answer to the Relying Party
180 if ($whitelisted || isset($_POST['trust'])) {
181 S::kill('openid_request');
182 $response =& $request->answer(true, null, $identity, $claimed_id);
183
184 // Add the simple registration response values to the OpenID
185 // response message.
186 $sreg_response->toMessage($response->fields);
187
188 } else { // !$whitelisted && !isset($_POST['trust'])
189 S::kill('openid_request');
190 $response =& $request->answer(false);
191 }
192
193 $webresponse =& $server->encodeResponse($response);
194 $this->render_openid_response($webresponse);
195 }
196
197 function handler_trusted(&$page, $action = 'list', $id = null)
198 {
199 $this->load('openid.inc.php');
200 $page->setTitle('Sites tiers de confiance');
201 $page->assign('title', 'Mes sites tiers de confiance pour OpenId');
202 $table_editor = new PLTableEditor('openid/trusted', 'openid_trusted', 'id');
203 $table_editor->set_where_clause('user_id = ' . XDB::escape(S::user()->id()));
204 // Display only URLs
205 $table_editor->vars['user_id']['display'] = false;
206 $table_editor->describe('url', 'site tiers', true);
207 $page->assign('deleteonly', true);
208 $table_editor->apply($page, $action, $id);
209 }
210
211 function handler_idp_xrds(&$page)
212 {
213 $this->load('openid.inc.php');
214 header('Content-type: application/xrds+xml');
215 $page->changeTpl('openid/idp_xrds.tpl', NO_SKIN);
216 $page->assign('type2', Auth_OpenID_TYPE_2_0_IDP);
217 $page->assign('sreg', Auth_OpenID_SREG_URI);
218 $page->assign('provider', get_openid_url());
219 }
220
221 function handler_user_xrds(&$page, $x = null)
222 {
223 $this->load('openid.inc.php');
224
225 $user = get_user($x);
226 if (is_null($user)) {
227 return PL_NOT_FOUND;
228 }
229
230 header('Content-type: application/xrds+xml');
231 $page->changeTpl('openid/user_xrds.tpl', NO_SKIN);
232 $page->assign('type2', Auth_OpenID_TYPE_2_0);
233 $page->assign('type1', Auth_OpenID_TYPE_1_1);
234 $page->assign('sreg', Auth_OpenID_SREG_URI);
235 $page->assign('provider', get_openid_url());
236 $page->assign('local_id', $user->hruid);
237 }
238
239 function handler_melix(&$page, $x = null)
240 {
241 $this->load('openid.inc.php');
242 $user = get_user_by_alias($x);
243
244 // This will redirect to the canonic URL, which was not used
245 // if this hook was triggered
246 return $this->render_discovery_page(&$page, $user);
247 }
248
249 //--------------------------------------------------------------------//
250
251 function render_discovery_page(&$page, $user)
252 {
253
254 // Show the documentation if this is not the OpenId page of an user
255 if (is_null($user)) {
256 pl_redirect('Xorg/OpenId');
257 }
258
259 // Redirect to the canonic URL if we are using an alias
260 // There might be a risk of redirection loop here
261 // if $_SERVER was not exactly what we expect
262 $current_url = 'http' . (empty($_SERVER['HTTPS']) ? '' : 's') . '://'
263 . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
264 $canonic_url = get_user_openid_url($user);
265 if ($current_url != $canonic_url) {
266 http_redirect($canonic_url);
267 }
268
269 // Include X-XRDS-Location response-header for Yadis discovery
270 header('X-XRDS-Location: ' . get_user_xrds_url($user));
271
272 $page->changeTpl('openid/openid.tpl');
273 $page->setTitle($user->fullName());
274 // Set the <link> tags for HTML-Based Discovery
275 $page->addLink('openid.server openid2.provider', get_openid_url());
276 $page->addLink('openid.delegate openid2.local_id', $user->hruid);
277 $page->assign_by_ref('user', $user);
278
279 return;
280 }
281
282 function render_openid_response($webresponse)
283 {
284 if ($webresponse->code != AUTH_OPENID_HTTP_OK) {
285 header(sprintf("HTTP/1.1 %d ", $webresponse->code),
286 true, $webresponse->code);
287 }
288 foreach ($webresponse->headers as $k => $v) {
289 header("$k: $v");
290 }
291 header('Connection: close');
292 print $webresponse->body;
293 exit;
294 }
295 }
296
297 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
298 ?>