sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							193 lines
						
					
					
						
							5.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							193 lines
						
					
					
						
							5.4 KiB
						
					
					
				| <?php | |
| 
 | |
| /* | |
|  * This file is part of the Symfony package. | |
|  * | |
|  * (c) Fabien Potencier <fabien@symfony.com> | |
|  * | |
|  * For the full copyright and license information, please view the LICENSE | |
|  * file that was distributed with this source code. | |
|  */ | |
| 
 | |
| namespace Symfony\Component\HttpFoundation\Session\Storage\Handler; | |
| 
 | |
| /** | |
|  * Session handler using the mongodb/mongodb package and MongoDB driver extension. | |
|  * | |
|  * @author Markus Bachmann <markus.bachmann@bachi.biz> | |
|  * | |
|  * @see https://packagist.org/packages/mongodb/mongodb | |
|  * @see http://php.net/manual/en/set.mongodb.php | |
|  */ | |
| class MongoDbSessionHandler extends AbstractSessionHandler | |
| { | |
|     private $mongo; | |
| 
 | |
|     /** | |
|      * @var \MongoDB\Collection | |
|      */ | |
|     private $collection; | |
| 
 | |
|     /** | |
|      * @var array | |
|      */ | |
|     private $options; | |
| 
 | |
|     /** | |
|      * Constructor. | |
|      * | |
|      * List of available options: | |
|      *  * database: The name of the database [required] | |
|      *  * collection: The name of the collection [required] | |
|      *  * id_field: The field name for storing the session id [default: _id] | |
|      *  * data_field: The field name for storing the session data [default: data] | |
|      *  * time_field: The field name for storing the timestamp [default: time] | |
|      *  * expiry_field: The field name for storing the expiry-timestamp [default: expires_at]. | |
|      * | |
|      * It is strongly recommended to put an index on the `expiry_field` for | |
|      * garbage-collection. Alternatively it's possible to automatically expire | |
|      * the sessions in the database as described below: | |
|      * | |
|      * A TTL collections can be used on MongoDB 2.2+ to cleanup expired sessions | |
|      * automatically. Such an index can for example look like this: | |
|      * | |
|      *     db.<session-collection>.ensureIndex( | |
|      *         { "<expiry-field>": 1 }, | |
|      *         { "expireAfterSeconds": 0 } | |
|      *     ) | |
|      * | |
|      * More details on: http://docs.mongodb.org/manual/tutorial/expire-data/ | |
|      * | |
|      * If you use such an index, you can drop `gc_probability` to 0 since | |
|      * no garbage-collection is required. | |
|      * | |
|      * @param \MongoDB\Client $mongo   A MongoDB\Client instance | |
|      * @param array           $options An associative array of field options | |
|      * | |
|      * @throws \InvalidArgumentException When "database" or "collection" not provided | |
|      */ | |
|     public function __construct(\MongoDB\Client $mongo, array $options) | |
|     { | |
|         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(array( | |
|             'id_field' => '_id', | |
|             'data_field' => 'data', | |
|             'time_field' => 'time', | |
|             'expiry_field' => 'expires_at', | |
|         ), $options); | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     public function close() | |
|     { | |
|         return true; | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     protected function doDestroy($sessionId) | |
|     { | |
|         $this->getCollection()->deleteOne(array( | |
|             $this->options['id_field'] => $sessionId, | |
|         )); | |
| 
 | |
|         return true; | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     public function gc($maxlifetime) | |
|     { | |
|         $this->getCollection()->deleteMany(array( | |
|             $this->options['expiry_field'] => array('$lt' => new \MongoDB\BSON\UTCDateTime()), | |
|         )); | |
| 
 | |
|         return true; | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     protected function doWrite($sessionId, $data) | |
|     { | |
|         $expiry = new \MongoDB\BSON\UTCDateTime((time() + (int) ini_get('session.gc_maxlifetime')) * 1000); | |
| 
 | |
|         $fields = array( | |
|             $this->options['time_field'] => new \MongoDB\BSON\UTCDateTime(), | |
|             $this->options['expiry_field'] => $expiry, | |
|             $this->options['data_field'] => new \MongoDB\BSON\Binary($data, \MongoDB\BSON\Binary::TYPE_OLD_BINARY), | |
|         ); | |
| 
 | |
|         $this->getCollection()->updateOne( | |
|             array($this->options['id_field'] => $sessionId), | |
|             array('$set' => $fields), | |
|             array('upsert' => true) | |
|         ); | |
| 
 | |
|         return true; | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     public function updateTimestamp($sessionId, $data) | |
|     { | |
|         $expiry = new \MongoDB\BSON\UTCDateTime((time() + (int) ini_get('session.gc_maxlifetime')) * 1000); | |
| 
 | |
|         $this->getCollection()->updateOne( | |
|             array($this->options['id_field'] => $sessionId), | |
|             array('$set' => array( | |
|                 $this->options['time_field'] => new \MongoDB\BSON\UTCDateTime(), | |
|                 $this->options['expiry_field'] => $expiry, | |
|             )) | |
|         ); | |
| 
 | |
|         return true; | |
|     } | |
| 
 | |
|     /** | |
|      * {@inheritdoc} | |
|      */ | |
|     protected function doRead($sessionId) | |
|     { | |
|         $dbData = $this->getCollection()->findOne(array( | |
|             $this->options['id_field'] => $sessionId, | |
|             $this->options['expiry_field'] => array('$gte' => new \MongoDB\BSON\UTCDateTime()), | |
|         )); | |
| 
 | |
|         if (null === $dbData) { | |
|             return ''; | |
|         } | |
| 
 | |
|         return $dbData[$this->options['data_field']]->getData(); | |
|     } | |
| 
 | |
|     /** | |
|      * @return \MongoDB\Collection | |
|      */ | |
|     private function getCollection() | |
|     { | |
|         if (null === $this->collection) { | |
|             $this->collection = $this->mongo->selectCollection($this->options['database'], $this->options['collection']); | |
|         } | |
| 
 | |
|         return $this->collection; | |
|     } | |
| 
 | |
|     /** | |
|      * @return \MongoDB\Client | |
|      */ | |
|     protected function getMongo() | |
|     { | |
|         return $this->mongo; | |
|     } | |
| }
 | |
| 
 |