Adds login page for xnet users (Closes #1211).
[platal.git] / classes / xnetsession.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5e1513f6 3 * Copyright (C) 2003-2011 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
ef0c3d8b 22class XnetSession extends XorgSession
0337d704 23{
6b79b8ef
FB
24 public function __construct()
25 {
ab694eb5 26 parent::__construct();
6b79b8ef
FB
27 }
28
ab694eb5 29 public function startAvailableAuth()
1490093c 30 {
6b79b8ef 31 if (!S::logged() && Get::has('auth')) {
ab694eb5
FB
32 if (!$this->start(AUTH_MDP)) {
33 return false;
34 }
6b79b8ef
FB
35 }
36
3c64137d
SJ
37 if (!S::logged() && Post::has('auth_type') && Post::v('auth_type') == 'xnet') {
38 $type = XDB::fetchOneCell('SELECT type
39 FROM accounts
40 WHERE hruid = {?}',
41 Post::v('username'));
42 if (!is_null($type) && $type != 'xnet') {
43 Platal::page()->trigErrorRedirect('Ce formulaire d\'authentification est réservé aux extérieurs à la communauté polytechnicienne.', '');
44 }
45
46 $user = parent::doAuth(AUTH_MDP);
47 if (is_null($user)) {
48 return false;
49 }
50 if (!parent::checkAuth(AUTH_MDP) || !parent::startSessionAs($user, AUTH_MDP)) {
51 $this->destroy();
52 return false;
53 }
54 }
55
ab694eb5 56 global $globals;
7a05c64d 57 if (!S::logged() && $globals->xnet->auth_baseurl) {
ab694eb5 58 // prevent connection to be linked to disconnection
71fe935c 59 if (($i = strpos($_SERVER['REQUEST_URI'], 'exit')) !== false)
0337d704 60 $returl = "http://{$_SERVER['SERVER_NAME']}".substr($_SERVER['REQUEST_URI'], 0, $i);
61 else
62 $returl = "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
7a05c64d 63 $url = $globals->xnet->auth_baseurl;
0337d704 64 $url .= "?session=" . session_id();
cab08090 65 $url .= "&challenge=" . S::v('challenge');
66 $url .= "&pass=" . md5(S::v('challenge') . $globals->xnet->secret);
0337d704 67 $url .= "&url=".urlencode($returl);
ab694eb5 68 S::set('loginX', $url);
0337d704 69 }
bf517daf 70
71 if (S::logged() && $globals->asso()) {
72 $perms = S::v('perms');
73 $perms->rmFlag('groupadmin');
74 $perms->rmFlag('groupmember');
35fa92e8 75 $perms->rmFlag('groupannu');
bf517daf 76 if (may_update()) {
77 $perms->addFlag('groupadmin');
78 $perms->addFlag('groupmember');
35fa92e8 79 $perms->addFlag('groupannu');
bf517daf 80 }
81 if (is_member()) {
82 $perms->addFlag('groupmember');
2c86d368 83 if ($globals->asso('pub') != 'private') {
35fa92e8 84 $perms->addFlag('groupannu');
85 }
e5539fd7
PC
86 } else if ($globals->asso('pub') == 'public') {
87 $perms->addFlag('groupannu');
35fa92e8 88 }
89 if ($globals->asso('cat') == 'Promotions') {
90 $perms->addFlag('groupannu');
bf517daf 91 }
ab694eb5 92 S::set('perms', $perms);
bf517daf 93 }
ab694eb5 94 return true;
0337d704 95 }
cab08090 96
ab694eb5 97 protected function doAuth($level)
0337d704 98 {
ab694eb5 99 if (S::identified()) { // ok, c'est bon, on n'a rien à faire
1bf36cd1 100 return User::getSilentWithValues(null, array('uid' => S::i('uid')));
0337d704 101 }
ab694eb5
FB
102 if (!Get::has('auth')) {
103 return null;
104 }
105 global $globals;
106 if (md5('1' . S::v('challenge') . $globals->xnet->secret . Get::i('uid') . '1') != Get::v('auth')) {
107 return null;
108 }
109 Get::kill('auth');
110 S::set('auth', AUTH_MDP);
1bf36cd1 111 return User::getSilentWithValues(null, array('uid' => Get::i('uid')));
c0d6753f 112 }
113
ab694eb5 114 protected function startSessionAs($user, $level)
bf517daf 115 {
7fd6dbb3
FB
116 // The user must have 'groups' permission to access X.net
117 if (!$user->checkPerms('groups')) {
118 return false;
119 }
6d1e6661 120 if ($level == AUTH_SUID) {
ab694eb5 121 S::set('auth', AUTH_MDP);
0337d704 122 }
7fd6dbb3
FB
123
124 S::set('uid', $user->uid);
125 S::set('hruid', $user->hruid);
126
127 // XXX: Transition code, should not be in session anymore
128 S::set('display_name', $user->display_name);
129 S::set('full_name', $user->full_name);
130 S::set('femme', $user->isFemale());
131 S::set('email_format', $user->email_format);
132 S::set('token', $user->token);
133 S::set('perms', $user->perms);
134 S::set('is_admin', $user->is_admin);
135
136
137 $this->makePerms($user->perms, $user->is_admin);
cab08090 138 S::kill('challenge');
139 S::kill('loginX');
0afc7e1e 140 S::kill('may_update');
141 S::kill('is_member');
0337d704 142 Get::kill('uid');
63528107 143 Get::kill('PHPSESSID');
b0b937fd 144
fd834b4b 145 $args = array();
b0b937fd 146 foreach($_GET as $key => $val) {
ab694eb5 147 $args[] = urlencode($key). '=' .urlencode($val);
0337d704 148 }
ab694eb5 149 return true;
0337d704 150 }
151
ab694eb5 152 public function doSelfSuid()
0deaff1d 153 {
866bd535
FB
154 $user =& S::user();
155 if (!$this->startSUID($user)) {
ab694eb5 156 return false;
0deaff1d 157 }
7fd6dbb3 158 S::set('perms', User::makePerms(PERMS_USER));
ab694eb5 159 return true;
b8e265bf 160 }
b8e265bf 161
ab694eb5 162 public function stopSUID()
eaf30d86 163 {
0c02607e 164 $perms = S::suid('perms');
ab694eb5
FB
165 if (!parent::stopSUID()) {
166 return false;
167 }
0deaff1d 168 S::kill('may_update');
169 S::kill('is_member');
0c02607e 170 S::set('perms', $perms);
ab694eb5 171 return true;
b8e265bf 172 }
b8e265bf 173}
174
0deaff1d 175// {{{ function may_update
0337d704 176
0deaff1d 177/** Return administration rights for the current asso
178 * @param force Force administration rights to be read from database
179 * @param lose Force administration rights to be false
180 */
b8e265bf 181function may_update($force = false, $lose = false)
182{
183 if (!isset($_SESSION['may_update'])) {
184 $_SESSION['may_update'] = array();
185 }
186 $may_update =& $_SESSION['may_update'];
187
0337d704 188 global $globals;
b8e265bf 189 $asso_id = $globals->asso('id');
0deaff1d 190 if (!$asso_id) {
191 return false;
192 } elseif ($lose) {
193 $may_update[$asso_id] = false;
0c02607e 194 } elseif (S::admin() || (S::suid() && $force)) {
0deaff1d 195 $may_update[$asso_id] = true;
196 } elseif (!isset($may_update[$asso_id]) || $force) {
b8e265bf 197 $res = XDB::query("SELECT perms
eb41eda9 198 FROM group_members
b8e265bf 199 WHERE uid={?} AND asso_id={?}",
a14159bf 200 S::v('uid'), $asso_id);
b8e265bf 201 $may_update[$asso_id] = ($res->fetchOneCell() == 'admin');
b8e265bf 202 }
203 return $may_update[$asso_id];
0337d704 204}
205
206// }}}
0deaff1d 207// {{{ function is_member
0337d704 208
0deaff1d 209/** Get membership informations for the current asso
210 * @param force Force membership to be read from database
211 * @param lose Force membership to be false
eaf30d86 212 */
b8e265bf 213function is_member($force = false, $lose = false)
c1863ee9 214{
b8e265bf 215 if (!isset($_SESSION['is_member'])) {
216 $_SESSION['is_member'] = array();
217 }
218 $is_member =& $_SESSION['is_member'];
219
0337d704 220 global $globals;
258b9710 221 $asso_id = $globals->asso('id');
0deaff1d 222 if (!$asso_id) {
223 return false;
b8e265bf 224 } elseif ($lose) {
225 $is_member[$asso_id] = false;
0c02607e 226 } elseif (S::suid() && $force) {
0deaff1d 227 $is_member[$asso_id] = true;
228 } elseif (!isset($is_member[$asso_id]) || $force) {
229 $res = XDB::query("SELECT COUNT(*)
eb41eda9 230 FROM group_members
0deaff1d 231 WHERE uid={?} AND asso_id={?}",
232 S::v('uid'), $asso_id);
233 $is_member[$asso_id] = ($res->fetchOneCell() == 1);
258b9710 234 }
235 return $is_member[$asso_id];
0337d704 236}
237
238// }}}
a7de4ef7 239// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 240?>