forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMongo.php
163 lines (140 loc) · 4.07 KB
/
Mongo.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
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2016 Phalcon Team (http://www.phalconphp.com) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file docs/LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Authors: Andres Gutierrez <[email protected]> |
| Eduar Carvajal <[email protected]> |
+------------------------------------------------------------------------+
*/
namespace Phalcon\Session\Adapter;
use Phalcon\Session\Adapter;
use Phalcon\Session\AdapterInterface;
use Phalcon\Session\Exception;
/**
* Phalcon\Session\Adapter\Mongo
* Mongo adapter for Phalcon\Session
*/
class Mongo extends Adapter implements AdapterInterface
{
/**
* Current session data
*
* @var string
*/
protected $data;
/**
* Class constructor.
*
* @param array $options
* @throws Exception
*/
public function __construct($options = null)
{
if (!isset($options['collection'])) {
throw new Exception("The parameter 'collection' is required");
}
session_set_save_handler(
[$this, 'open'],
[$this, 'close'],
[$this, 'read'],
[$this, 'write'],
[$this, 'destroy'],
[$this, 'gc']
);
parent::__construct($options);
}
/**
* {@inheritdoc}
*
* @return boolean
*/
public function open()
{
return true;
}
/**
* {@inheritdoc}
*/
public function close()
{
return true;
}
/**
* {@inheritdoc}
*
* @param string $sessionId
* @return string
*/
public function read($sessionId)
{
$sessionData = $this->getCollection()->findOne(['_id' => $sessionId]);
if (!isset($sessionData['data'])) {
return '';
}
$this->data = $sessionData['data'];
return $sessionData['data'];
}
/**
* {@inheritdoc}
*
* @param string $sessionId
* @param string $sessionData
* @return bool
*/
public function write($sessionId, $sessionData)
{
if ($this->data === $sessionData) {
return true;
}
$sessionData = [
'_id' => $sessionId,
'modified' => new \MongoDate(),
'data' => $sessionData
];
$this->getCollection()->save($sessionData);
return true;
}
/**
* {@inheritdoc}
*/
public function destroy($sessionId = null)
{
if (is_null($sessionId)) {
$sessionId =$this->getId();
}
$this->data = null;
$remove = $this->getCollection()->remove(['_id' => $sessionId]);
return (bool) $remove['ok'];
}
/**
* {@inheritdoc}
* @param string $maxLifetime
*/
public function gc($maxLifetime)
{
$minAge = new \DateTime();
$minAge->sub(new \DateInterval('PT' . $maxLifetime . 'S'));
$minAgeMongo = new \MongoDate($minAge->getTimestamp());
$query = ['modified' => ['$lte' => $minAgeMongo]];
$remove = $this->getCollection()->remove($query);
return (bool) $remove['ok'];
}
/**
* @return \MongoCollection
*/
protected function getCollection()
{
$options = $this->getOptions();
return $options['collection'];
}
}