Happy New Year!
[platal.git] / classes / xnetsession.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
12262f13 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
ab694eb5 37 global $globals;
7a05c64d 38 if (!S::logged() && $globals->xnet->auth_baseurl) {
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']}";
7a05c64d 44 $url = $globals->xnet->auth_baseurl;
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 }
e5539fd7
PC
67 } else if ($globals->asso('pub') == 'public') {
68 $perms->addFlag('groupannu');
35fa92e8 69 }
70 if ($globals->asso('cat') == 'Promotions') {
71 $perms->addFlag('groupannu');
bf517daf 72 }
ab694eb5 73 S::set('perms', $perms);
bf517daf 74 }
ab694eb5 75 return true;
0337d704 76 }
cab08090 77
ab694eb5 78 protected function doAuth($level)
0337d704 79 {
ab694eb5 80 if (S::identified()) { // ok, c'est bon, on n'a rien à faire
1bf36cd1 81 return User::getSilentWithValues(null, array('uid' => S::i('uid')));
0337d704 82 }
ab694eb5
FB
83 if (!Get::has('auth')) {
84 return null;
85 }
86 global $globals;
87 if (md5('1' . S::v('challenge') . $globals->xnet->secret . Get::i('uid') . '1') != Get::v('auth')) {
88 return null;
89 }
90 Get::kill('auth');
91 S::set('auth', AUTH_MDP);
1bf36cd1 92 return User::getSilentWithValues(null, array('uid' => Get::i('uid')));
c0d6753f 93 }
94
ab694eb5 95 protected function startSessionAs($user, $level)
bf517daf 96 {
7fd6dbb3
FB
97 // The user must have 'groups' permission to access X.net
98 if (!$user->checkPerms('groups')) {
99 return false;
100 }
6d1e6661 101 if ($level == AUTH_SUID) {
ab694eb5 102 S::set('auth', AUTH_MDP);
0337d704 103 }
7fd6dbb3
FB
104
105 S::set('uid', $user->uid);
106 S::set('hruid', $user->hruid);
107
108 // XXX: Transition code, should not be in session anymore
109 S::set('display_name', $user->display_name);
110 S::set('full_name', $user->full_name);
111 S::set('femme', $user->isFemale());
112 S::set('email_format', $user->email_format);
113 S::set('token', $user->token);
114 S::set('perms', $user->perms);
115 S::set('is_admin', $user->is_admin);
116
117
118 $this->makePerms($user->perms, $user->is_admin);
cab08090 119 S::kill('challenge');
120 S::kill('loginX');
0afc7e1e 121 S::kill('may_update');
122 S::kill('is_member');
0337d704 123 Get::kill('uid');
63528107 124 Get::kill('PHPSESSID');
b0b937fd 125
fd834b4b 126 $args = array();
b0b937fd 127 foreach($_GET as $key => $val) {
ab694eb5 128 $args[] = urlencode($key). '=' .urlencode($val);
0337d704 129 }
ab694eb5 130 return true;
0337d704 131 }
132
ab694eb5 133 public function doSelfSuid()
0deaff1d 134 {
866bd535
FB
135 $user =& S::user();
136 if (!$this->startSUID($user)) {
ab694eb5 137 return false;
0deaff1d 138 }
7fd6dbb3 139 S::set('perms', User::makePerms(PERMS_USER));
ab694eb5 140 return true;
b8e265bf 141 }
b8e265bf 142
ab694eb5 143 public function stopSUID()
eaf30d86 144 {
0c02607e 145 $perms = S::suid('perms');
ab694eb5
FB
146 if (!parent::stopSUID()) {
147 return false;
148 }
0deaff1d 149 S::kill('may_update');
150 S::kill('is_member');
0c02607e 151 S::set('perms', $perms);
ab694eb5 152 return true;
b8e265bf 153 }
b8e265bf 154}
155
0deaff1d 156// {{{ function may_update
0337d704 157
0deaff1d 158/** Return administration rights for the current asso
159 * @param force Force administration rights to be read from database
160 * @param lose Force administration rights to be false
161 */
b8e265bf 162function may_update($force = false, $lose = false)
163{
164 if (!isset($_SESSION['may_update'])) {
165 $_SESSION['may_update'] = array();
166 }
167 $may_update =& $_SESSION['may_update'];
168
0337d704 169 global $globals;
b8e265bf 170 $asso_id = $globals->asso('id');
0deaff1d 171 if (!$asso_id) {
172 return false;
173 } elseif ($lose) {
174 $may_update[$asso_id] = false;
0c02607e 175 } elseif (S::admin() || (S::suid() && $force)) {
0deaff1d 176 $may_update[$asso_id] = true;
177 } elseif (!isset($may_update[$asso_id]) || $force) {
b8e265bf 178 $res = XDB::query("SELECT perms
eb41eda9 179 FROM group_members
b8e265bf 180 WHERE uid={?} AND asso_id={?}",
a14159bf 181 S::v('uid'), $asso_id);
b8e265bf 182 $may_update[$asso_id] = ($res->fetchOneCell() == 'admin');
b8e265bf 183 }
184 return $may_update[$asso_id];
0337d704 185}
186
187// }}}
0deaff1d 188// {{{ function is_member
0337d704 189
0deaff1d 190/** Get membership informations for the current asso
191 * @param force Force membership to be read from database
192 * @param lose Force membership to be false
eaf30d86 193 */
b8e265bf 194function is_member($force = false, $lose = false)
c1863ee9 195{
b8e265bf 196 if (!isset($_SESSION['is_member'])) {
197 $_SESSION['is_member'] = array();
198 }
199 $is_member =& $_SESSION['is_member'];
200
0337d704 201 global $globals;
258b9710 202 $asso_id = $globals->asso('id');
0deaff1d 203 if (!$asso_id) {
204 return false;
b8e265bf 205 } elseif ($lose) {
206 $is_member[$asso_id] = false;
0c02607e 207 } elseif (S::suid() && $force) {
0deaff1d 208 $is_member[$asso_id] = true;
209 } elseif (!isset($is_member[$asso_id]) || $force) {
210 $res = XDB::query("SELECT COUNT(*)
eb41eda9 211 FROM group_members
0deaff1d 212 WHERE uid={?} AND asso_id={?}",
213 S::v('uid'), $asso_id);
214 $is_member[$asso_id] = ($res->fetchOneCell() == 1);
258b9710 215 }
216 return $is_member[$asso_id];
0337d704 217}
218
219// }}}
a7de4ef7 220// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 221?>