Removes AX-Xorg synchronisation related code.
[platal.git] / classes / xnetsession.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 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
ab694eb5 37 global $globals;
cab08090 38 if (!S::logged()) {
ab694eb5 39 // prevent connection to be linked to disconnection
71fe935c 40 if (($i = strpos($_SERVER['REQUEST_URI'], 'exit')) !== false)
0337d704 41 $returl = "http://{$_SERVER['SERVER_NAME']}".substr($_SERVER['REQUEST_URI'], 0, $i);
42 else
43 $returl = "http://{$_SERVER['SERVER_NAME']}{$_SERVER['REQUEST_URI']}";
1fd4da04 44 $url = "https://www.polytechnique.org/auth-groupex";
0337d704 45 $url .= "?session=" . session_id();
cab08090 46 $url .= "&challenge=" . S::v('challenge');
47 $url .= "&pass=" . md5(S::v('challenge') . $globals->xnet->secret);
0337d704 48 $url .= "&url=".urlencode($returl);
ab694eb5 49 S::set('loginX', $url);
0337d704 50 }
bf517daf 51
52 if (S::logged() && $globals->asso()) {
53 $perms = S::v('perms');
54 $perms->rmFlag('groupadmin');
55 $perms->rmFlag('groupmember');
35fa92e8 56 $perms->rmFlag('groupannu');
bf517daf 57 if (may_update()) {
58 $perms->addFlag('groupadmin');
59 $perms->addFlag('groupmember');
35fa92e8 60 $perms->addFlag('groupannu');
bf517daf 61 }
62 if (is_member()) {
63 $perms->addFlag('groupmember');
2c86d368 64 if ($globals->asso('pub') != 'private') {
35fa92e8 65 $perms->addFlag('groupannu');
66 }
67 }
68 if ($globals->asso('cat') == 'Promotions') {
69 $perms->addFlag('groupannu');
bf517daf 70 }
ab694eb5 71 S::set('perms', $perms);
bf517daf 72 }
ab694eb5 73 return true;
0337d704 74 }
cab08090 75
ab694eb5 76 protected function doAuth($level)
0337d704 77 {
ab694eb5 78 if (S::identified()) { // ok, c'est bon, on n'a rien à faire
6d1e6661 79 return User::getSilentWithValues(null, array('user_id' => S::i('uid')));
0337d704 80 }
ab694eb5
FB
81 if (!Get::has('auth')) {
82 return null;
83 }
84 global $globals;
85 if (md5('1' . S::v('challenge') . $globals->xnet->secret . Get::i('uid') . '1') != Get::v('auth')) {
86 return null;
87 }
88 Get::kill('auth');
89 S::set('auth', AUTH_MDP);
6d1e6661 90 return User::getSilentWithValues(null, array('user_id' => Get::i('uid')));
c0d6753f 91 }
92
ab694eb5 93 protected function startSessionAs($user, $level)
bf517daf 94 {
6d1e6661 95 if ($level == AUTH_SUID) {
ab694eb5 96 S::set('auth', AUTH_MDP);
0337d704 97 }
1f759655 98 $res = XDB::query("SELECT a.uid, a.hruid, a.display_name, a.full_name,
6d1e6661
FB
99 a.sex = 'female' AS femme,
100 a.email_format, a.token,
101 at.perms, a.is_admin
102 FROM accounts AS a
103 INNER JOIN account_types AS at ON (at.type = a.type)
104 WHERE a.uid = {?} AND a.state = 'active'
105 LIMIT 1", $user->id());
ab694eb5 106 $sess = $res->fetchOneAssoc();
ab694eb5 107 $_SESSION = array_merge($_SESSION, $sess);
6d1e6661 108 $this->makePerms(S::s('perms'), S::b('is_admin'));
cab08090 109 S::kill('challenge');
110 S::kill('loginX');
0afc7e1e 111 S::kill('may_update');
112 S::kill('is_member');
0337d704 113 Get::kill('uid');
63528107 114 Get::kill('PHPSESSID');
b0b937fd 115
fd834b4b 116 $args = array();
b0b937fd 117 foreach($_GET as $key => $val) {
ab694eb5 118 $args[] = urlencode($key). '=' .urlencode($val);
0337d704 119 }
ab694eb5 120 return true;
0337d704 121 }
122
ab694eb5 123 public function doSelfSuid()
0deaff1d 124 {
866bd535
FB
125 $user =& S::user();
126 if (!$this->startSUID($user)) {
ab694eb5 127 return false;
0deaff1d 128 }
50d5ec0b 129 S::set('perms', User::makePerms('user'));
ab694eb5 130 return true;
b8e265bf 131 }
b8e265bf 132
ab694eb5 133 public function stopSUID()
eaf30d86 134 {
0c02607e 135 $perms = S::suid('perms');
ab694eb5
FB
136 if (!parent::stopSUID()) {
137 return false;
138 }
0deaff1d 139 S::kill('may_update');
140 S::kill('is_member');
0c02607e 141 S::set('perms', $perms);
ab694eb5 142 return true;
b8e265bf 143 }
b8e265bf 144}
145
0deaff1d 146// {{{ function may_update
0337d704 147
0deaff1d 148/** Return administration rights for the current asso
149 * @param force Force administration rights to be read from database
150 * @param lose Force administration rights to be false
151 */
b8e265bf 152function may_update($force = false, $lose = false)
153{
154 if (!isset($_SESSION['may_update'])) {
155 $_SESSION['may_update'] = array();
156 }
157 $may_update =& $_SESSION['may_update'];
158
0337d704 159 global $globals;
b8e265bf 160 $asso_id = $globals->asso('id');
0deaff1d 161 if (!$asso_id) {
162 return false;
163 } elseif ($lose) {
164 $may_update[$asso_id] = false;
0c02607e 165 } elseif (S::admin() || (S::suid() && $force)) {
0deaff1d 166 $may_update[$asso_id] = true;
167 } elseif (!isset($may_update[$asso_id]) || $force) {
b8e265bf 168 $res = XDB::query("SELECT perms
eb41eda9 169 FROM group_members
b8e265bf 170 WHERE uid={?} AND asso_id={?}",
a14159bf 171 S::v('uid'), $asso_id);
b8e265bf 172 $may_update[$asso_id] = ($res->fetchOneCell() == 'admin');
b8e265bf 173 }
174 return $may_update[$asso_id];
0337d704 175}
176
177// }}}
0deaff1d 178// {{{ function is_member
0337d704 179
0deaff1d 180/** Get membership informations for the current asso
181 * @param force Force membership to be read from database
182 * @param lose Force membership to be false
eaf30d86 183 */
b8e265bf 184function is_member($force = false, $lose = false)
c1863ee9 185{
b8e265bf 186 if (!isset($_SESSION['is_member'])) {
187 $_SESSION['is_member'] = array();
188 }
189 $is_member =& $_SESSION['is_member'];
190
0337d704 191 global $globals;
258b9710 192 $asso_id = $globals->asso('id');
0deaff1d 193 if (!$asso_id) {
194 return false;
b8e265bf 195 } elseif ($lose) {
196 $is_member[$asso_id] = false;
0c02607e 197 } elseif (S::suid() && $force) {
0deaff1d 198 $is_member[$asso_id] = true;
199 } elseif (!isset($is_member[$asso_id]) || $force) {
200 $res = XDB::query("SELECT COUNT(*)
eb41eda9 201 FROM group_members
0deaff1d 202 WHERE uid={?} AND asso_id={?}",
203 S::v('uid'), $asso_id);
204 $is_member[$asso_id] = ($res->fetchOneCell() == 1);
258b9710 205 }
206 return $is_member[$asso_id];
0337d704 207}
208
209// }}}
a7de4ef7 210// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 211?>