-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathsession.cls.php
executable file
·285 lines (250 loc) · 9.04 KB
/
session.cls.php
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
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class session
{
public $G;
public $sessionname = 'currentuser';
public $sessionuser = false;
public $sessionid;
public function __construct(&$G)
{
$this->G = $G;
$this->db = $this->G->make('pepdo');
$this->ev = $this->G->make('ev');
$this->pdosql = $this->G->make('pdosql');
$this->strings = $this->G->make('strings');
$this->sessionid = $this->getSessionId();
}
//获取会话ID
public function getSessionId2()
{
if (!$this->sessionid) {
if ($_SESSION['currentuser']) {
$this->sessionid = $_SESSION['currentuser']['sessionid'];
$this->ev->setCookie('psid', $this->sessionid, 3600 * 24);
} else {
$cookie = $this->strings->decode($this->ev->getCookie($this->sessionname));
if ($cookie) {
$this->sessionid = $cookie['sessionid'];
$this->ev->setCookie('psid', $this->sessionid, 3600 * 24);
} else {
$this->sessionid = $this->ev->getCookie('psid');
}
}
}
if (!$this->sessionid) {
$this->sessionid = session_id();
$this->ev->setCookie('psid', $this->sessionid, 3600 * 24);
}
if (!$this->sessionid) {
$this->sessionid = md5(TIME.rand(1000, 9999));
$this->ev->setCookie('psid', $this->sessionid, 3600 * 24);
}
if (!$this->getSessionValue($this->sessionid)) {
$data = ['session', ['sessionid' => $this->sessionid, 'sessionuserid' => 0, 'sessionip' => $this->ev->getClientIp()]];
$sql = $this->pdosql->makeInsert($data);
$this->db->exec($sql);
}
return $this->sessionid;
}
private function _getOnlySessionid()
{
$code = uniqid($this->ev->getClientIp().print_r($_SERVER, true).microtime()).rand(100000, 999999);
$this->sessionid = md5($code);
if ($this->getSessionValue($this->sessionid)) {
$this->_getOnlySessionid();
}
}
public function getSessionId()
{
if (!$this->sessionid) {
$cookie = $this->strings->decode($this->ev->getCookie($this->sessionname));
if ($cookie) {
$this->sessionid = $cookie['sessionid'];
}
}
if (!$this->sessionid) {
$this->_getOnlySessionid();
$this->setSessionUser(['sessionid' => $this->sessionid, 'sessionip' => $this->ev->getClientIp()]);
}
if (!$this->getSessionValue()) {
$this->setSessionUser(['sessionid' => $this->sessionid, 'sessionip' => $this->ev->getClientIp()]);
}
return $this->sessionid;
}
//设置随机参数
public function setRandCode($randCode)
{
if (!$randCode) {
$array = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
$randCode = '';
for ($i = 0; $i < 4; $i++) {
$randCode .= $array[intval(rand(0, 35))];
}
}
if (!$this->sessionid) {
$this->getSessionId();
}
$data = ['session', ['sessionrandcode' => $randCode], [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeUpdate($data);
$r = $this->db->exec($sql);
if ($r) {
return $randCode;
}
$data = ['session', ['sessionid' => $this->sessionid, 'sessionuserid' => 0, 'sessionip' => $this->ev->getClientIp()]];
$sql = $this->pdosql->makeInsert($data);
$this->db->exec($sql);
return $this->setRandCode($randCode);
}
//获取随机参数
public function getRandCode()
{
if (!$this->sessionid) {
$this->getSessionId();
}
$data = ['sessionrandcode', 'session', [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeSelect($data);
$r = $this->db->fetch($sql);
return $r['randcode'];
}
//获取会话内容
public function getSessionValue($sessionid = null)
{
if (!$sessionid) {
if (!$this->sessionid) {
$this->getSessionId();
}
$sessionid = $this->sessionid;
}
$data = [false, 'session', [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeSelect($data);
return $this->db->fetch($sql);
}
//设置会话用户信息
public function setSessionUser($args = null)
{
if (!$args) {
return false;
}
if (!$args['sessiontimelimit']) {
$args['sessiontimelimit'] = TIME;
}
if (!$this->sessionid) {
$this->getSessionId();
}
$args['sessionid'] = $this->sessionid;
$args['sessiontimelimit'] = TIME;
$data = ['session', [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
$data = ['session', $args];
$sql = $this->pdosql->makeInsert($data);
$this->db->exec($sql);
$ck = ['sessionid' => $this->sessionid, 'sessionuserid' => $args['sessionuserid'], 'sessionpassword' => $args['sessionpassword'], 'sessionip' => $args['sessionip']];
$this->ev->setCookie($this->sessionname, $this->strings->encode($args), 3600 * 24);
return true;
}
//设置会话中其他信息
public function setSessionValue($args = null)
{
if (!$args) {
return false;
}
if (!$this->sessionid) {
$this->getSessionId();
}
$data = ['session', $args, [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeUpdate($data);
$this->db->exec($sql);
return true;
}
//获取会话用户
public function getSessionUser()
{
if ($this->sessionuser) {
return $this->sessionuser;
}
$cookie = $this->strings->decode($this->ev->getCookie($this->sessionname));
if ($cookie['sessionuserid']) {
$user = $this->getSessionValue();
if ($cookie['sessionuserid'] == $user['sessionuserid'] && $cookie['sessionpassword'] == $user['sessionpassword'] && $cookie['sessionip'] == $user['sessionip']) {
$this->sessionuser = $user;
return $user;
}
}
return false;
}
//清除会话用户
public function clearSessionUser()
{
if (!$this->sessionid) {
$this->getSessionId();
}
$this->ev->setCookie($this->sessionname, null);
$data = ['session', [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
return true;
}
public function offOnlineUser($userid)
{
$data = ['session', [['AND', 'sessionuserid = :sessionuserid', 'sessionuserid', $userid]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
return true;
}
//清除所有会话
public function clearSession()
{
$data = ['session', [['AND', 1]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
return true;
}
//清除超时用户
public function clearOutTimeUser($time)
{
if ($time) {
$date = $time;
} else {
$date = TIME - 24 * 3600;
}
$data = ['session', [['AND', 'sessionlogintime < :sessionlogintime', 'sessionlogintime', $date]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
return true;
}
//获取所有会话用户列表
public function getSessionUserList($page, $number = 20)
{
$data = [
'select' => false,
'table' => 'session',
'index' => false,
'serial' => false,
'query' => [['AND', 'sessionuserid > 0']],
'orderby' => 'sessionlogintime DESC',
'groupby' => false,
];
return $this->db->listElements($page, $number, $data);
}
public function __destruct()
{
$data = ['session', ['sessionlasttime' => TIME], [['AND', 'sessionid = :sessionid', 'sessionid', $this->sessionid]]];
$sql = $this->pdosql->makeUpdate($data);
$this->db->exec($sql);
if (rand(0, 5) > 4) {
$data = ['session', [['AND', 'sessionlasttime <= :sessionlasttime', 'sessionlasttime', intval((TIME - 3600 * 24 * 3))]]];
$sql = $this->pdosql->makeDelete($data);
$this->db->exec($sql);
}
}
}