Do keep privileges when starting a SU
[platal.git] / include / xnet / session.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5ddeb07c 3 * Copyright (C) 2003-2007 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
6995a9b9 26 public static function init() {
0337d704 27 global $globals;
28
cab08090 29 S::init();
30
cab08090 31 if (!S::logged()) {
0337d704 32 // prevent connexion to be linked to deconnexion
71fe935c 33 if (($i = strpos($_SERVER['REQUEST_URI'], 'exit')) !== false)
0337d704 34 $returl = "http://{$_SERVER['SERVER_NAME']}".substr($_SERVER['REQUEST_URI'], 0, $i);
35 else
36 $returl = "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
37 $url = "https://www.polytechnique.org/auth-groupex.php";
38 $url .= "?session=" . session_id();
cab08090 39 $url .= "&challenge=" . S::v('challenge');
40 $url .= "&pass=" . md5(S::v('challenge') . $globals->xnet->secret);
0337d704 41 $url .= "&url=".urlencode($returl);
cab08090 42 $_SESSION['loginX'] = $url;
0337d704 43 }
44 }
cab08090 45
0337d704 46 // }}}
6995a9b9 47 // {{{ public static function destroy()
cab08090 48
6995a9b9 49 public static function destroy() {
cab08090 50 S::destroy();
0337d704 51 XnetSession::init();
52 }
cab08090 53
0337d704 54 // }}}
6995a9b9 55 // {{{ public static function doAuth()
0337d704 56
57 /** Try to do an authentication.
58 *
59 * @param page the calling page (by reference)
60 */
6995a9b9 61 public static function doAuth()
0337d704 62 {
a7de4ef7 63 if (S::identified()) { // ok, c'est bon, on n'a rien à faire
0deaff1d 64 return true;
65 }
0337d704 66
67 if (Get::has('auth')) {
b0b937fd 68 return XnetSession::doAuthX();
0337d704 69 }
63528107 70
71 return false;
0337d704 72 }
73
74 // }}}
c0d6753f 75 // {{{ doAuthCookie
76
6995a9b9 77 public static function doAuthCookie() {
c0d6753f 78 return XnetSession::doAuth();
79 }
80
81 // }}}
0337d704 82 // {{{ doAuthX
83
6995a9b9 84 public static function doAuthX() {
b0b937fd 85 global $globals, $page;
0337d704 86
5e2307dc 87 if (md5('1'.S::v('challenge').$globals->xnet->secret.Get::i('uid').'1') != Get::v('auth')) {
0337d704 88 $page->kill("Erreur d'authentification avec polytechnique.org !");
89 }
90
08cce2ff 91 $res = XDB::query("
0337d704 92 SELECT u.user_id AS uid, prenom, nom, perms, promo, password, FIND_IN_SET('femme', u.flags) AS femme,
93 a.alias AS forlife, a2.alias AS bestalias, q.core_mail_fmt AS mail_fmt, q.core_rss_hash
94 FROM auth_user_md5 AS u
95 INNER JOIN auth_user_quick AS q USING(user_id)
96 INNER JOIN aliases AS a ON (u.user_id = a.id AND a.type='a_vie')
97 INNER JOIN aliases AS a2 ON (u.user_id = a2.id AND FIND_IN_SET('bestalias',a2.flags))
98 WHERE u.user_id = {?} AND u.perms IN('admin','user')
5e2307dc 99 LIMIT 1", Get::i('uid'));
0337d704 100 $_SESSION = array_merge($_SESSION, $res->fetchOneAssoc());
101 $_SESSION['auth'] = AUTH_MDP;
cab08090 102 S::kill('challenge');
103 S::kill('loginX');
0afc7e1e 104 S::kill('may_update');
105 S::kill('is_member');
0337d704 106 Get::kill('auth');
107 Get::kill('uid');
27472b85 108 $path = Get::v('n');
109 Get::kill('n');
63528107 110 Get::kill('PHPSESSID');
b0b937fd 111
fd834b4b 112 $args = array();
b0b937fd 113 foreach($_GET as $key => $val) {
0337d704 114 $args[] = urlencode($key).'='.urlencode($val);
115 }
63528107 116
fd834b4b 117 http_redirect($globals->baseurl . '/' . $path, join('&', $args));
0337d704 118 }
119
120 // }}}
0deaff1d 121 // {{{ doSelfSuid
b8e265bf 122
0deaff1d 123 public static function doSelfSuid()
124 {
125 if (!S::has('suid')) {
126 $_SESSION['suid'] = $_SESSION;
127 }
128 $_SESSION['perms'] = 'user';
b8e265bf 129 }
b8e265bf 130
0deaff1d 131 // }}}
132 // {{{ killSuid
b8e265bf 133
0deaff1d 134 public static function killSuid()
135 {
136 if (!S::has('suid')) {
137 return;
138 }
139 $suid = S::v('suid');
140 S::kill('suid');
141 S::kill('may_update');
142 S::kill('is_member');
143 $_SESSION['perms'] = $suid['perms'];
b8e265bf 144 }
0deaff1d 145
146 // }}}
b8e265bf 147}
148
149// }}}
0deaff1d 150// {{{ function may_update
0337d704 151
0deaff1d 152/** Return administration rights for the current asso
153 * @param force Force administration rights to be read from database
154 * @param lose Force administration rights to be false
155 */
b8e265bf 156function may_update($force = false, $lose = false)
157{
158 if (!isset($_SESSION['may_update'])) {
159 $_SESSION['may_update'] = array();
160 }
161 $may_update =& $_SESSION['may_update'];
162
0337d704 163 global $globals;
b8e265bf 164 $asso_id = $globals->asso('id');
0deaff1d 165 if (!$asso_id) {
166 return false;
167 } elseif ($lose) {
168 $may_update[$asso_id] = false;
169 } elseif (S::has_perms() || (S::has('suid') && $force)) {
170 $may_update[$asso_id] = true;
171 } elseif (!isset($may_update[$asso_id]) || $force) {
b8e265bf 172 $res = XDB::query("SELECT perms
173 FROM groupex.membres
174 WHERE uid={?} AND asso_id={?}",
a14159bf 175 S::v('uid'), $asso_id);
b8e265bf 176 $may_update[$asso_id] = ($res->fetchOneCell() == 'admin');
b8e265bf 177 }
178 return $may_update[$asso_id];
0337d704 179}
180
181// }}}
0deaff1d 182// {{{ function is_member
0337d704 183
0deaff1d 184/** Get membership informations for the current asso
185 * @param force Force membership to be read from database
186 * @param lose Force membership to be false
187 */
b8e265bf 188function is_member($force = false, $lose = false)
c1863ee9 189{
b8e265bf 190 if (!isset($_SESSION['is_member'])) {
191 $_SESSION['is_member'] = array();
192 }
193 $is_member =& $_SESSION['is_member'];
194
0337d704 195 global $globals;
258b9710 196 $asso_id = $globals->asso('id');
0deaff1d 197 if (!$asso_id) {
198 return false;
b8e265bf 199 } elseif ($lose) {
200 $is_member[$asso_id] = false;
0deaff1d 201 } elseif (S::has('suid') && $force) {
202 $is_member[$asso_id] = true;
203 } elseif (!isset($is_member[$asso_id]) || $force) {
204 $res = XDB::query("SELECT COUNT(*)
205 FROM groupex.membres
206 WHERE uid={?} AND asso_id={?}",
207 S::v('uid'), $asso_id);
208 $is_member[$asso_id] = ($res->fetchOneCell() == 1);
258b9710 209 }
210 return $is_member[$asso_id];
0337d704 211}
212
213// }}}
a7de4ef7 214// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 215?>