KTAPISession.inc.php
8.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<?
/**
* $Id$
*
* The contents of this file are subject to the KnowledgeTree Public
* License Version 1.1.2 ("License"); You may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.knowledgetree.com/KPL
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
* See the License for the specific language governing rights and
* limitations under the License.
*
* All copies of the Covered Code must include on each user interface screen:
* (i) the "Powered by KnowledgeTree" logo and
* (ii) the KnowledgeTree copyright notice
* in the same form as they appear in the distribution. See the License for
* requirements.
*
* The Original Code is: KnowledgeTree Open Source
*
* The Initial Developer of the Original Code is The Jam Warehouse Software
* (Pty) Ltd, trading as KnowledgeTree.
* Portions created by The Jam Warehouse Software (Pty) Ltd are Copyright
* (C) 2007 The Jam Warehouse Software (Pty) Ltd;
* All Rights Reserved.
* Contributor( s): ______________________________________
*
*/
class KTAPI_Session
{
var $ktapi;
var $user = null;
var $session = '';
var $sessionid = -1;
var $active;
function KTAPI_Session(&$ktapi, &$user)
{
assert(!is_null($ktapi));
assert(is_a($ktapi,'KTAPI'));
assert(!is_null($user));
assert(is_a($user,'User'));
$this->ktapi=&$ktapi;
$this->user=&$user;
$_SESSION['userID']=$user->getId();
$this->active = false;
}
/**
* return the session string
*
* @return string
*/
function get_session()
{
die('get_session() should be overloaded!');
}
/**
* Return the session id
*
* @return int
*/
function get_sessionid()
{
die('get_sessionid() should be overloaded!');
}
/**
* Return the user
*
* @return User
*/
function &get_user()
{
return $this->user;
}
function logout()
{
$this->active=false;
// don't need to do anything really
}
function is_active()
{
return $this->active;
}
}
class KTAPI_UserSession extends KTAPI_Session
{
var $ip = null;
function KTAPI_UserSession(&$ktapi, &$user, $session, $sessionid, $ip)
{
parent::KTAPI_Session($ktapi, $user);
$this->ktapi = &$ktapi;
$this->user = &$user;
$this->session = $session;
$this->sessionid = $sessionid;
$this->ip = $ip;
// TODO: get documenttransaction to not look at the session variable!
$_SESSION["userID"] = $user->getId();
$_SESSION["sessionID"] = $this->sessionid;
$this->active = true;
}
/**
* This returns the session string
*
* @return string
*/
function get_session()
{
return $this->session;
}
/**
* This returns the sessionid in the database.
*
* @return int
*/
function get_sessionid()
{
return $this->sessionid;
}
/**
* This resolves the user's ip
*
* @access private
* @return string
*/
function resolveIP()
{
if (getenv("REMOTE_ADDR"))
{
$ip = getenv("REMOTE_ADDR");
}
elseif (getenv("HTTP_X_FORWARDED_FOR"))
{
$forwardedip = getenv("HTTP_X_FORWARDED_FOR");
list($ip,$ip2,$ip3,$ip4)= split (",", $forwardedip);
}
elseif (getenv("HTTP_CLIENT_IP"))
{
$ip = getenv("HTTP_CLIENT_IP");
}
if ($ip == '')
{
$ip = '127.0.0.1';
}
return $ip;
}
/**
*
* @access protected
* @static
* @param User $user
*/
function _check_session(&$user)
{
$user_id = $user->getId();
Session::removeStaleSessions();
$config = &KTConfig::getSingleton();
$validateSession = $config->get('webservice/validateSessionCount', false);
if ($validateSession)
{
$sql = "SELECT count(*) >= u.max_sessions as over_limit FROM active_sessions ass INNER JOIN users u ON ass.user_id=u.id WHERE ass.user_id = $user_id";
$row = DBUtil::getOneResult($sql);
if (PEAR::isError($row))
{
return $row;
}
if (is_null($row))
{
return new PEAR_Error('No record found for user?');
}
if ($row['over_limit']+0 == 1)
{
return new PEAR_Error('Session limit exceeded. Logout of any active sessions.');
}
}
$session = session_id();
$sessionid = DBUtil::autoInsert('active_sessions',
array(
'user_id' => $user_id,
'session_id' => session_id(),
'lastused' => date('Y-m-d H:i:s'),
'ip' => $ip
));
if (PEAR::isError($sessionid) )
{
return $sessionid;
}
return array($session,$sessionid);
}
/**
* This returns a session object based on authentication credentials.
*
* @access public
* @static
* @param string $username
* @param string $password
* @return KTAPI_Session
*/
function &start_session(&$ktapi, $username, $password, $ip=null)
{
$this->active=false;
if ( empty($username) )
{
return new PEAR_Error(_kt('The username is empty.'));
}
$user =& User::getByUsername($username);
if (PEAR::isError($user) || ($user === false))
{
return new KTAPI_Error(_kt("The user '$username' cound not be found."),$user);
}
if ( empty($password) )
{
return new PEAR_Error(_kt('The password is empty.'));
}
$authenticated = KTAuthenticationUtil::checkPassword($user, $password);
if (PEAR::isError($authenticated) || $authenticated === false)
{
return new KTAPI_Error(_kt("The password is invalid."),$authenticated);
}
if (is_null($ip))
{
$ip = '127.0.0.1';
//$ip = KTAPI_Session::resolveIP();
}
$result = KTAPI_UserSession::_check_session($user);
if (PEAR::isError($result))
{
return $sessionid;
}
list($session,$sessionid) = $result;
$session = &new KTAPI_UserSession($ktapi, $user, $session, $sessionid, $ip);
return $session;
}
/**
* This returns an active session.
*
* @param KTAPI $ktapi
* @param string $session
* @param string $ip
* @return KTAPI_Session
*/
function &get_active_session(&$ktapi, $session, $ip)
{
$sql = "SELECT id, user_id FROM active_sessions WHERE session_id='$session'";
if (!empty($ip))
{
$sql .= " AND ip='$ip'";
}
$row = DBUtil::getOneResult($sql);
if (is_null($row) || PEAR::isError($row))
{
return new KTAPI_Error(KTAPI_ERROR_SESSION_INVALID, $row);
}
$sessionid = $row['id'];
$userid = $row['user_id'];
$user = &User::get($userid);
if (is_null($user) || PEAR::isError($user))
{
return new KTAPI_Error(KTAPI_ERROR_USER_INVALID, $user);
}
$now=date('Y-m-d H:i:s');
$sql = "UPDATE active_sessions SET last_used='$now' WHERE id=$sessionid";
DBUtil::runQuery($sql);
if ($user->isAnonymous())
$session = &new KTAPI_AnonymousSession($ktapi, $user, $session, $sessionid, $ip);
else
$session = &new KTAPI_UserSession($ktapi, $user, $session, $sessionid, $ip);
return $session;
}
/**
* This closes the current session.
*
*/
function logout()
{
$sql = "DELETE FROM active_sessions WHERE id=$this->sessionid";
$result = DBUtil::runQuery($sql);
if (PEAR::isError($result))
{
return $result;
}
$this->user = null;
$this->session = '';
$this->sessionid = -1;
$this->active=false;
}
}
class KTAPI_AnonymousSession extends KTAPI_UserSession
{
function &start_session(&$ktapi, $ip=null)
{
$user =& User::get(-2);
if (is_null($user) || PEAR::isError($user) || ($user === false) || !$user->isAnonymous())
{
return new KTAPI_Error(_kt("The anonymous user could not be found."), $user);
}
$authenticated = true;
$config = &KTConfig::getSingleton();
$allow_anonymous = $config->get('session/allowAnonymousLogin', false);
if (!$allow_anonymous)
{
return new PEAR_Error(_kt('Anonymous user not allowed'));
}
if (is_null($ip))
{
$ip = '127.0.0.1';
//$ip = KTAPI_Session::resolveIP();
}
list($session,$sessionid) = KTAPI_UserSession::_check_session($user);
if (PEAR::isError($sessionid))
{
return $sessionid;
}
$session = &new KTAPI_AnonymousSession($ktapi, $user, $session, $sessionid, $ip);
return $session;
}
}
class KTAPI_SystemSession extends KTAPI_Session
{
function KTAPI_SystemSession(&$ktapi, &$user)
{
parent::KTAPI_Session($ktapi, $user);
$this->active=true;
}
}
?>