Rename $gpex_url to $ext_url in auth-groupe-x handler.
[platal.git] / modules / auth.php
CommitLineData
5d292fd8 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 Polytechnique.org *
5d292fd8 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
22class AuthModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
eb5a266d
SJ
27 'groupex/donne-chall.php' => $this->make_hook('chall', AUTH_PUBLIC),
28 'groupex/export-econfiance.php' => $this->make_hook('econf', AUTH_PUBLIC, 'user', NO_HTTPS),
d5749a28 29
eb5a266d 30 'webservices/manageurs.php' => $this->make_hook('manageurs', AUTH_PUBLIC, 'user', NO_HTTPS),
87221416 31
e5ceaa8c 32 'auth-redirect.php' => $this->make_hook('redirect', AUTH_COOKIE, 'user'),
54cccfcc
RB
33 'auth-groupex.php' => $this->make_hook('groupex_old', AUTH_COOKIE, ''),
34 'auth-groupex' => $this->make_hook('groupex', AUTH_PUBLIC, ''),
bfe9f4c7 35 'admin/auth-groupes-x' => $this->make_hook('admin_authgroupesx', AUTH_PASSWD, 'admin'),
5d292fd8 36 );
37 }
38
26ba053e 39 function handler_chall($page)
d5749a28 40 {
41 $_SESSION["chall"] = uniqid(rand(), 1);
42 echo $_SESSION["chall"] . "\n" . session_id();
43 exit;
44 }
45
26ba053e 46 function handler_econf($page)
d5749a28 47 {
48 global $globals;
49
d5749a28 50 $cle = $globals->core->econfiance;
51
94b72319
FB
52 $res = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<membres>\n\n";
53
ed06daba 54 if (S::v('chall') && Get::s('PASS') == md5(S::v('chall').$cle)) {
7f1ff426 55 $list = new MMList(User::getWithUID(10154), "x-econfiance.polytechnique.org");
9bb8bf21 56 $members = $list->get_members('membres');
d5749a28 57 if (is_array($members)) {
58 $membres = Array();
59 foreach($members[1] as $member) {
94b72319
FB
60 $user = User::getSilent($member[1]);
61 if ($user && $user->hasProfile()) {
62 $profile = $user->profile();
63 $res .= "<membre>\n";
64 $res .= "\t<nom>" . $profile->lastName() . "</nom>\n";
65 $res .= "\t<prenom>" . $profile->firstName() . "</prenom>\n";
66 $res .= "\t<email>" . $user->forlifeEmail() . "</email>\n";
67 $res .= "</membre>\n\n";
d5749a28 68 }
69 }
70 }
d5749a28 71 $res .= "</membres>\n\n";
72
3cb500d5 73 pl_content_headers("text/xml");
d5749a28 74 echo $res;
75 }
76 exit;
77 }
78
26ba053e 79 function handler_manageurs($page)
87221416 80 {
81 global $globals;
82
83 require_once 'webservices/manageurs.server.inc.php';
84
34c8c3b5 85 $ips = array_flip(explode(' ', $globals->manageurs->authorized_ips));
87221416 86 if ($ips && isset($ips[$_SERVER['REMOTE_ADDR']])) {
87 $server = xmlrpc_server_create();
88
89 xmlrpc_server_register_method($server, 'get_annuaire_infos', 'get_annuaire_infos');
90 xmlrpc_server_register_method($server, 'get_nouveau_infos', 'get_nouveau_infos');
91
206e75c3 92 $request = @$GLOBALS['HTTP_RAW_POST_DATA'];
87221416 93 $response = xmlrpc_server_call_method($server, $request, null);
3cb500d5 94 pl_content_headers("text/xml");
87221416 95 print $response;
96 xmlrpc_server_destroy($server);
97 }
34c8c3b5 98
99 exit;
87221416 100 }
101
26ba053e 102 function handler_redirect($page)
5d292fd8 103 {
5e2307dc 104 http_redirect(Env::v('dest', '/'));
5d292fd8 105 }
106
26ba053e 107 function handler_groupex_old($page)
670b0ac0 108 {
109 return $this->handler_groupex($page, 'iso-8859-1');
110 }
111
d68646f1
RB
112 /** Handles the 'auth-groupe-x' authentication.
113 * Expects the following GET parameters:
114 * - pass: the 'password' for the authentication
115 * - challenge: the authentication challenge
116 * - url: the return URL
117 * - session: the remote PHP session ID
118 */
26ba053e 119 function handler_groupex($page, $charset = 'utf8')
5d292fd8 120 {
784e89ec 121 $ext_url = urldecode(Get::s('url'));
b271177d 122
c1a0ab30 123 if (!S::logged()) {
f7a93ff3 124 $page->assign('external_auth', true);
784e89ec 125 $page->assign('ext_url', $ext_url);
bdbe352c
RB
126 $page->setTitle('Authentification');
127 $page->setDefaultSkin('group_login');
128
129 if (Get::has('group')) {
130 $res = XDB::query('SELECT nom
131 FROM groups
132 WHERE diminutif = {?}', Get::s('group'));
133 $page->assign('group', $res->fetchOneCell());
134 } else {
135 $page->assign('group', null);
136 }
c1a0ab30
RB
137 return PL_DO_AUTH;
138 }
139
54cccfcc
RB
140 if (!S::user()->checkPerms('groups')) {
141 return PL_FORBIDDEN;
142 }
143
460d8f55 144 $this->load('auth.inc.php');
5d292fd8 145
d68646f1 146 $gpex_pass = Get::s('pass');
d68646f1 147 if (Get::has('session')) {
784e89ec
RB
148 if (strpos($ext_url, '?') === false) {
149 $ext_url .= "?PHPSESSID=" . Get::s('session');
d68646f1 150 } else {
784e89ec 151 $ext_url .= "&PHPSESSID=" . Get::s('session');
d68646f1 152 }
5d292fd8 153 }
154
e168b75d 155 // Normalize the return URL.
784e89ec
RB
156 if (!preg_match("/^(http|https):\/\/.*/",$ext_url)) {
157 $ext_url = "http://$ext_url";
670b0ac0 158 }
d68646f1 159 $gpex_challenge = Get::s('challenge');
5d292fd8 160
e168b75d 161 // Update the last login information (unless the user is in SUID).
0469a7fb 162 $uid = S::i('uid');
0c02607e 163 if (!S::suid()) {
07e8e0ab 164 global $platal;
d2f8addb 165 S::logger($uid)->log('connexion_auth_ext', $platal->path.' '.urldecode($_GET['url']));
5d292fd8 166 }
167
bd83728a 168 if (Get::has('group')) {
e7737284 169 $req_group_id = XDB::fetchOneCell('SELECT id
bd83728a
RB
170 FROM groups
171 WHERE diminutif = {?}',
172 Get::s('group'));
173 } else {
174 $req_group_id = null;
175 }
176
e168b75d 177 // Iterate over the auth token to find which one did sign the request.
b8de879d
RB
178 $res = XDB::iterRow(
179 'SELECT ga.privkey, ga.name, ga.datafields, ga.returnurls,
bd83728a 180 ga.group_id, ga.flags, g.nom
b8de879d
RB
181 FROM group_auth AS ga
182 LEFT JOIN groups AS g ON (g.id = ga.group_id)');
183
bd83728a 184 while (list($privkey, $name, $datafields, $returnurls, $group_id, $group_flags, $group_name) = $res->next()) {
5d292fd8 185 if (md5($gpex_challenge.$privkey) == $gpex_pass) {
50579de4 186 $returnurls = trim($returnurls);
e168b75d
VZ
187 // We check that the return url matches a per-key regexp to prevent
188 // replay attacks (more exactly to force replay attacks to redirect
189 // the user to the real GroupeX website, which defeats the attack).
784e89ec
RB
190 if (empty($returnurls) || @preg_match($returnurls, $ext_url)) {
191 $returl = $ext_url . gpex_make_params($gpex_challenge, $privkey, $datafields, $charset);
168a0eda
SJ
192 XDB::execute('UPDATE group_auth
193 SET last_used = DATE(NOW())
194 WHERE name = {?}',
195 $name);
b8de879d
RB
196
197 // Two conditions control access to the return URL:
198 // - If that URL is attached to a group:
199 // - If the user belongs to the group, OK
200 // - If the user is 'xnet' and doesn't belong, NOK
201 // - If the user is not 'xnet' and the group is not 'strict', OK
202 // - If the user is not 'xnet' and the group is 'strict', NOK
203 // - Otherwise, all but 'xnet' accounts may access the URL.
204 $user_is_xnet = S::user()->type == 'xnet';
bd83728a
RB
205 $group_flags = new PlFlagSet($group_flags);
206
207 // If this key is not attached to a group, but a group was
208 // requested (e.g query from wiki / blogs / ...), use the
209 // requested group_id.
210 if (!$group_id && $req_group_id) {
211 $group_id = $req_group_id;
212 }
b8de879d
RB
213
214 if ($group_id) {
215 // Check group permissions
216 $is_member = XDB::fetchOneCell('SELECT COUNT(*)
217 FROM group_members
218 WHERE uid = {?} AND asso_id = {?}',
219 S::user()->id(), $group_id);
bd83728a 220 if (!$is_member && ($user_is_xnet || $group_flags->hasFlag('group_only'))) {
b8de879d
RB
221 $page->kill("Le site demandé est réservé aux membres du groupe $group_name.");
222 }
223
bd83728a 224 } else if ($user_is_xnet && !$group_flags->hasFlag('allow_xnet')) {
b8de879d
RB
225 $page->kill("Le site demandé est réservé aux polytechniciens.");
226 }
227
f7a93ff3
RB
228 // If we logged in specifically for this 'external_auth' request
229 // and didn't want to "keep access to services", we kill the session
230 // just before returning.
231 // See classes/xorgsession.php:startSessionAs
232 if (S::b('external_auth_exit')) {
233 S::logger()->log('decconnexion', @$_SERVER['HTTP_REFERER']);
234 Platal::session()->killAccessCookie();
235 Platal::session()->destroy();
236 }
e10bc2ef 237 http_redirect($returl);
e168b75d 238 } else if (S::admin()) {
bd803525 239 $page->kill("La requête d'authentification a échoué (url de retour invalide).");
e10bc2ef 240 }
5d292fd8 241 }
242 }
243
e168b75d
VZ
244 // Otherwise (if no valid request was found, or if the return URL is not
245 // acceptable), the user is redirected back to our homepage.
246 pl_redirect('/');
5d292fd8 247 }
670b0ac0 248
26ba053e 249 function handler_admin_authgroupesx($page, $action = 'list', $id = null)
670b0ac0 250 {
46f272fe 251 $page->setTitle('Administration - Auth groupes X');
a7de4ef7 252 $page->assign('title', 'Gestion de l\'authentification centralisée');
eb41eda9 253 $table_editor = new PLTableEditor('admin/auth-groupes-x','group_auth','id');
92423144 254 $table_editor->describe('name','nom',true);
47f51789 255 $table_editor->describe('privkey','clé privée',false, true);
a7de4ef7 256 $table_editor->describe('datafields','champs renvoyés',true);
e10bc2ef 257 $table_editor->describe('returnurls','urls de retour',true);
168a0eda 258 $table_editor->describe('last_used', 'dernière utilisation', true);
92423144 259 $table_editor->apply($page, $action, $id);
eaf30d86 260 }
5d292fd8 261}
262
a7de4ef7 263// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
5d292fd8 264?>