Finally makes xorg/xnet sessions compliant with the new forlife/hruid scheme.
[platal.git] / include / xnet / session.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
179afa7f 3 * Copyright (C) 2003-2008 Polytechnique.org *
0337d704 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
4869f665 22class XnetSession
0337d704 23{
0337d704 24 // {{{ function init
cab08090 25
eaf30d86 26 public static function init()
1490093c 27 {
0337d704 28 global $globals;
29
cab08090 30 S::init();
31
cab08090 32 if (!S::logged()) {
0337d704 33 // prevent connexion to be linked to deconnexion
71fe935c 34 if (($i = strpos($_SERVER['REQUEST_URI'], 'exit')) !== false)
0337d704 35 $returl = "http://{$_SERVER['SERVER_NAME']}".substr($_SERVER['REQUEST_URI'], 0, $i);
36 else
37 $returl = "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
1fd4da04 38 $url = "https://www.polytechnique.org/auth-groupex";
0337d704 39 $url .= "?session=" . session_id();
cab08090 40 $url .= "&challenge=" . S::v('challenge');
41 $url .= "&pass=" . md5(S::v('challenge') . $globals->xnet->secret);
0337d704 42 $url .= "&url=".urlencode($returl);
cab08090 43 $_SESSION['loginX'] = $url;
0337d704 44 }
bf517daf 45
46 if (S::logged() && $globals->asso()) {
47 $perms = S::v('perms');
48 $perms->rmFlag('groupadmin');
49 $perms->rmFlag('groupmember');
35fa92e8 50 $perms->rmFlag('groupannu');
bf517daf 51 if (may_update()) {
52 $perms->addFlag('groupadmin');
53 $perms->addFlag('groupmember');
35fa92e8 54 $perms->addFlag('groupannu');
bf517daf 55 }
56 if (is_member()) {
57 $perms->addFlag('groupmember');
2c86d368 58 if ($globals->asso('pub') != 'private') {
35fa92e8 59 $perms->addFlag('groupannu');
60 }
61 }
62 if ($globals->asso('cat') == 'Promotions') {
63 $perms->addFlag('groupannu');
bf517daf 64 }
65 $_SESSION['perms'] = $perms;
66 }
0337d704 67 }
cab08090 68
0337d704 69 // }}}
6995a9b9 70 // {{{ public static function destroy()
cab08090 71
6995a9b9 72 public static function destroy() {
cab08090 73 S::destroy();
0337d704 74 XnetSession::init();
75 }
cab08090 76
0337d704 77 // }}}
6995a9b9 78 // {{{ public static function doAuth()
0337d704 79
80 /** Try to do an authentication.
81 *
82 * @param page the calling page (by reference)
83 */
6995a9b9 84 public static function doAuth()
0337d704 85 {
a7de4ef7 86 if (S::identified()) { // ok, c'est bon, on n'a rien à faire
0deaff1d 87 return true;
88 }
0337d704 89
90 if (Get::has('auth')) {
b0b937fd 91 return XnetSession::doAuthX();
0337d704 92 }
63528107 93
94 return false;
0337d704 95 }
96
97 // }}}
c0d6753f 98 // {{{ doAuthCookie
99
6995a9b9 100 public static function doAuthCookie() {
c0d6753f 101 return XnetSession::doAuth();
102 }
103
104 // }}}
0337d704 105 // {{{ doAuthX
106
eaf30d86 107 public static function doAuthX()
bf517daf 108 {
b0b937fd 109 global $globals, $page;
0337d704 110
2fdafb32 111 // Checks the SSO control token value.
5e2307dc 112 if (md5('1'.S::v('challenge').$globals->xnet->secret.Get::i('uid').'1') != Get::v('auth')) {
9fcc6565 113 Get::kill('auth');
7e1efe61
FB
114 if (!$page) {
115 require_once 'xnet.inc.php';
116 new_skinned_page('platal/index.tpl');
117 }
0337d704 118 $page->kill("Erreur d'authentification avec polytechnique.org !");
119 }
120
2fdafb32 121 // Fetches user's data.
08cce2ff 122 $res = XDB::query("
0337d704 123 SELECT u.user_id AS uid, prenom, nom, perms, promo, password, FIND_IN_SET('femme', u.flags) AS femme,
2fdafb32
VZ
124 u.hruid, CONCAT(a.alias, '@{$globals->mail->domain}') AS forlife, CONCAT(a2.alias, '@{$globals->mail->domain}') AS bestalias,
125 q.core_mail_fmt AS mail_fmt, q.core_rss_hash
0337d704 126 FROM auth_user_md5 AS u
127 INNER JOIN auth_user_quick AS q USING(user_id)
fd7d304d
VZ
128 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type = 'a_vie')
129 INNER JOIN aliases AS a2 ON (u.user_id = a2.id AND FIND_IN_SET('bestalias', a2.flags))
0337d704 130 WHERE u.user_id = {?} AND u.perms IN('admin','user')
5e2307dc 131 LIMIT 1", Get::i('uid'));
2fdafb32
VZ
132
133 // Sets up the session, using fetched data and Xorg's permission system.
0337d704 134 $_SESSION = array_merge($_SESSION, $res->fetchOneAssoc());
135 $_SESSION['auth'] = AUTH_MDP;
bf517daf 136 require_once 'xorg/session.inc.php';
137 $_SESSION['perms'] =& XorgSession::make_perms(S::v('perms'));
2fdafb32
VZ
138
139 // Removes session values which are of no interest in Xnet context.
cab08090 140 S::kill('challenge');
141 S::kill('loginX');
0afc7e1e 142 S::kill('may_update');
143 S::kill('is_member');
2fdafb32
VZ
144
145 // Builds the Xnet destination URL, and redirects the user.
0337d704 146 Get::kill('auth');
147 Get::kill('uid');
27472b85 148 $path = Get::v('n');
149 Get::kill('n');
63528107 150 Get::kill('PHPSESSID');
b0b937fd 151
fd834b4b 152 $args = array();
b0b937fd 153 foreach($_GET as $key => $val) {
0337d704 154 $args[] = urlencode($key).'='.urlencode($val);
155 }
63528107 156
fd834b4b 157 http_redirect($globals->baseurl . '/' . $path, join('&', $args));
0337d704 158 }
159
160 // }}}
0deaff1d 161 // {{{ doSelfSuid
b8e265bf 162
0deaff1d 163 public static function doSelfSuid()
164 {
165 if (!S::has('suid')) {
166 $_SESSION['suid'] = $_SESSION;
167 }
bf517daf 168 require_once 'xorg/session.inc.php';
169 $_SESSION['perms'] =& XorgSession::make_perms('user');
b8e265bf 170 }
b8e265bf 171
0deaff1d 172 // }}}
173 // {{{ killSuid
b8e265bf 174
0deaff1d 175 public static function killSuid()
eaf30d86 176 {
0deaff1d 177 if (!S::has('suid')) {
178 return;
179 }
180 $suid = S::v('suid');
181 S::kill('suid');
182 S::kill('may_update');
183 S::kill('is_member');
184 $_SESSION['perms'] = $suid['perms'];
b8e265bf 185 }
0deaff1d 186
187 // }}}
b8e265bf 188}
189
190// }}}
0deaff1d 191// {{{ function may_update
0337d704 192
0deaff1d 193/** Return administration rights for the current asso
194 * @param force Force administration rights to be read from database
195 * @param lose Force administration rights to be false
196 */
b8e265bf 197function may_update($force = false, $lose = false)
198{
199 if (!isset($_SESSION['may_update'])) {
200 $_SESSION['may_update'] = array();
201 }
202 $may_update =& $_SESSION['may_update'];
203
0337d704 204 global $globals;
b8e265bf 205 $asso_id = $globals->asso('id');
0deaff1d 206 if (!$asso_id) {
207 return false;
208 } elseif ($lose) {
209 $may_update[$asso_id] = false;
210 } elseif (S::has_perms() || (S::has('suid') && $force)) {
211 $may_update[$asso_id] = true;
212 } elseif (!isset($may_update[$asso_id]) || $force) {
b8e265bf 213 $res = XDB::query("SELECT perms
214 FROM groupex.membres
215 WHERE uid={?} AND asso_id={?}",
a14159bf 216 S::v('uid'), $asso_id);
b8e265bf 217 $may_update[$asso_id] = ($res->fetchOneCell() == 'admin');
b8e265bf 218 }
219 return $may_update[$asso_id];
0337d704 220}
221
222// }}}
0deaff1d 223// {{{ function is_member
0337d704 224
0deaff1d 225/** Get membership informations for the current asso
226 * @param force Force membership to be read from database
227 * @param lose Force membership to be false
eaf30d86 228 */
b8e265bf 229function is_member($force = false, $lose = false)
c1863ee9 230{
b8e265bf 231 if (!isset($_SESSION['is_member'])) {
232 $_SESSION['is_member'] = array();
233 }
234 $is_member =& $_SESSION['is_member'];
235
0337d704 236 global $globals;
258b9710 237 $asso_id = $globals->asso('id');
0deaff1d 238 if (!$asso_id) {
239 return false;
b8e265bf 240 } elseif ($lose) {
241 $is_member[$asso_id] = false;
0deaff1d 242 } elseif (S::has('suid') && $force) {
243 $is_member[$asso_id] = true;
244 } elseif (!isset($is_member[$asso_id]) || $force) {
245 $res = XDB::query("SELECT COUNT(*)
246 FROM groupex.membres
247 WHERE uid={?} AND asso_id={?}",
248 S::v('uid'), $asso_id);
249 $is_member[$asso_id] = ($res->fetchOneCell() == 1);
258b9710 250 }
251 return $is_member[$asso_id];
0337d704 252}
253
254// }}}
a7de4ef7 255// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 256?>