123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
- class MongoDbSessionHandler extends AbstractSessionHandler
- {
- private $mongo;
-
- private $collection;
-
- private $options;
-
- public function __construct($mongo, array $options)
- {
- if ($mongo instanceof \MongoClient || $mongo instanceof \Mongo) {
- @trigger_error(sprintf('Using %s with the legacy mongo extension is deprecated as of 3.4 and will be removed in 4.0. Use it with the mongodb/mongodb package and ext-mongodb instead.', __CLASS__), E_USER_DEPRECATED);
- }
- if (!($mongo instanceof \MongoDB\Client || $mongo instanceof \MongoClient || $mongo instanceof \Mongo)) {
- throw new \InvalidArgumentException('MongoClient or Mongo instance required');
- }
- if (!isset($options['database']) || !isset($options['collection'])) {
- throw new \InvalidArgumentException('You must provide the "database" and "collection" option for MongoDBSessionHandler');
- }
- $this->mongo = $mongo;
- $this->options = array_merge([
- 'id_field' => '_id',
- 'data_field' => 'data',
- 'time_field' => 'time',
- 'expiry_field' => 'expires_at',
- ], $options);
- }
-
- public function close()
- {
- return true;
- }
-
- protected function doDestroy($sessionId)
- {
- $methodName = $this->mongo instanceof \MongoDB\Client ? 'deleteOne' : 'remove';
- $this->getCollection()->$methodName([
- $this->options['id_field'] => $sessionId,
- ]);
- return true;
- }
-
- public function gc($maxlifetime)
- {
- $methodName = $this->mongo instanceof \MongoDB\Client ? 'deleteMany' : 'remove';
- $this->getCollection()->$methodName([
- $this->options['expiry_field'] => ['$lt' => $this->createDateTime()],
- ]);
- return true;
- }
-
- protected function doWrite($sessionId, $data)
- {
- $expiry = $this->createDateTime(time() + (int) ini_get('session.gc_maxlifetime'));
- $fields = [
- $this->options['time_field'] => $this->createDateTime(),
- $this->options['expiry_field'] => $expiry,
- ];
- $options = ['upsert' => true];
- if ($this->mongo instanceof \MongoDB\Client) {
- $fields[$this->options['data_field']] = new \MongoDB\BSON\Binary($data, \MongoDB\BSON\Binary::TYPE_OLD_BINARY);
- } else {
- $fields[$this->options['data_field']] = new \MongoBinData($data, \MongoBinData::BYTE_ARRAY);
- $options['multiple'] = false;
- }
- $methodName = $this->mongo instanceof \MongoDB\Client ? 'updateOne' : 'update';
- $this->getCollection()->$methodName(
- [$this->options['id_field'] => $sessionId],
- ['$set' => $fields],
- $options
- );
- return true;
- }
-
- public function updateTimestamp($sessionId, $data)
- {
- $expiry = $this->createDateTime(time() + (int) ini_get('session.gc_maxlifetime'));
- if ($this->mongo instanceof \MongoDB\Client) {
- $methodName = 'updateOne';
- $options = [];
- } else {
- $methodName = 'update';
- $options = ['multiple' => false];
- }
- $this->getCollection()->$methodName(
- [$this->options['id_field'] => $sessionId],
- ['$set' => [
- $this->options['time_field'] => $this->createDateTime(),
- $this->options['expiry_field'] => $expiry,
- ]],
- $options
- );
- return true;
- }
-
- protected function doRead($sessionId)
- {
- $dbData = $this->getCollection()->findOne([
- $this->options['id_field'] => $sessionId,
- $this->options['expiry_field'] => ['$gte' => $this->createDateTime()],
- ]);
- if (null === $dbData) {
- return '';
- }
- if ($dbData[$this->options['data_field']] instanceof \MongoDB\BSON\Binary) {
- return $dbData[$this->options['data_field']]->getData();
- }
- return $dbData[$this->options['data_field']]->bin;
- }
-
- private function getCollection()
- {
- if (null === $this->collection) {
- $this->collection = $this->mongo->selectCollection($this->options['database'], $this->options['collection']);
- }
- return $this->collection;
- }
-
- protected function getMongo()
- {
- return $this->mongo;
- }
-
- private function createDateTime($seconds = null)
- {
- if (null === $seconds) {
- $seconds = time();
- }
- if ($this->mongo instanceof \MongoDB\Client) {
- return new \MongoDB\BSON\UTCDateTime($seconds * 1000);
- }
- return new \MongoDate($seconds);
- }
- }
|