diff --git a/.travis.yml b/.travis.yml index 7f063528..2b02cdce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,6 +65,7 @@ before_install: install: - travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs - if [[ $LEGACY_DEPS != '' ]]; then travis_retry composer update --with-dependencies $COMPOSER_ARGS $LEGACY_DEPS ; fi + - if [[ $DEPS == 'lowest' && $TRAVIS_PHP_VERSION =~ ^7.2 ]]; then travis_retry composer require --dev --no-update phpunit/phpunit:^6.0.13 php-mock/php-mock-phpunit:^2.0; fi - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi - if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi - if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi diff --git a/composer.json b/composer.json index 41700bfb..1653006a 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "container-interop/container-interop": "^1.1", "mongodb/mongodb": "^1.0.1", "php-mock/php-mock-phpunit": "^1.1.2 || ^2.0", - "phpunit/phpunit": "^5.7.15 || ^6.0.8", + "phpunit/phpunit": "^5.7.5 || ^6.0.13", "zendframework/zend-cache": "^2.6.1", "zendframework/zend-coding-standard": "~1.0.0", "zendframework/zend-db": "^2.7", @@ -32,6 +32,9 @@ "zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3", "zendframework/zend-validator": "^2.6" }, + "conflict": { + "phpunit/phpunit": ">=6.5.0" + }, "suggest": { "mongodb/mongodb": "If you want to use the MongoDB session save handler", "zendframework/zend-cache": "Zend\\Cache component", diff --git a/composer.lock b/composer.lock index 7904849e..3fd3a4c3 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "097d88139a812af12fd8e367091f80d1", + "content-hash": "d00e1bc4c6f2029ba82cfd344c09c999", "packages": [ { "name": "zendframework/zend-eventmanager", diff --git a/src/Config/SessionConfig.php b/src/Config/SessionConfig.php index 3b74a202..dc5d3ff3 100644 --- a/src/Config/SessionConfig.php +++ b/src/Config/SessionConfig.php @@ -42,7 +42,11 @@ class SessionConfig extends StandardConfig protected $rememberMeSeconds = 1209600; // 2 weeks /** - * @var string + * Name of the save handler currently in use. This will either be a PHP + * built-in save handler name, or the name of a SessionHandlerInterface + * class being used as a save handler. + * + * @var null|string */ protected $saveHandler; @@ -85,6 +89,24 @@ class SessionConfig extends StandardConfig */ protected $validHashFunctions; + /** + * Override standard option setting. + * + * Provides an overload for setting the save handler. + * + * {@inheritDoc} + */ + public function setOption($option, $value) + { + switch (strtolower($option)) { + case 'save_handler': + $this->setPhpSaveHandler($value); + return $this; + default: + return parent::setOption($option, $value); + } + } + /** * Set storage option in backend configuration store * @@ -176,56 +198,8 @@ public function setSaveHandler($phpSaveHandler) */ public function setPhpSaveHandler($phpSaveHandler) { - $knownHandlers = $this->locateRegisteredSaveHandlers(); - - if (in_array($phpSaveHandler, $knownHandlers, true)) { - set_error_handler([$this, 'handleError']); - session_module_name($phpSaveHandler); - restore_error_handler(); - if ($this->phpErrorCode >= E_WARNING) { - throw new Exception\InvalidArgumentException(sprintf( - 'Error setting session save handler module "%s": %s', - $phpSaveHandler, - $this->phpErrorMessage - )); - } - - $this->saveHandler = $phpSaveHandler; - $this->setOption('save_handler', $phpSaveHandler); - return $this; - } - - if (is_string($phpSaveHandler) - && (! class_exists($phpSaveHandler) - || ! (in_array(SessionHandlerInterface::class, class_implements($phpSaveHandler))) - ) - ) { - throw new Exception\InvalidArgumentException(sprintf( - 'Invalid save handler specified ("%s"); must be one of [%s]' - . ' or a class implementing %s', - $phpSaveHandler, - implode(', ', $knownHandlers), - SessionHandlerInterface::class, - SessionHandlerInterface::class - )); - } - - if (is_string($phpSaveHandler)) { - $phpSaveHandler = new $phpSaveHandler(); - } - - if (! $phpSaveHandler instanceof SessionHandlerInterface) { - throw new Exception\InvalidArgumentException(sprintf( - 'Invalid save handler specified ("%s"); must implement %s', - get_class($phpSaveHandler), - SessionHandlerInterface::class - )); - } - - session_set_save_handler($phpSaveHandler); - - $this->saveHandler = get_class($phpSaveHandler); - $this->setOption('save_handler', $this->saveHandler); + $this->saveHandler = $this->performSaveHandlerUpdate($phpSaveHandler); + $this->options['save_handler'] = $this->saveHandler; return $this; } @@ -429,6 +403,83 @@ private function locateRegisteredSaveHandlers() return $this->knownSaveHandlers; } + /** + * Perform a session.save_handler update. + * + * Determines if the save handler represents a PHP built-in + * save handler, and, if so, passes that value to session_module_name + * in order to activate it. The save handler name is then returned. + * + * If it is not, it tests to see if it is a SessionHandlerInterface + * implementation. If the string is a class implementing that interface, + * it creates an instance of it. In such cases, it then calls + * session_set_save_handler to activate it. The class name of the + * handler is returned. + * + * In all other cases, an exception is raised. + * + * @param string|SessionHandlerInterface $phpSaveHandler + * @return string + * @throws Exception\InvalidArgumentException if an error occurs when + * setting a PHP session save handler module. + * @throws Exception\InvalidArgumentException if the $phpSaveHandler + * is a string that does not represent a class implementing + * SessionHandlerInterface. + * @throws Exception\InvalidArgumentException if $phpSaveHandler is + * a non-string value that does not implement SessionHandlerInterface. + */ + private function performSaveHandlerUpdate($phpSaveHandler) + { + $knownHandlers = $this->locateRegisteredSaveHandlers(); + + if (in_array($phpSaveHandler, $knownHandlers, true)) { + $phpSaveHandler = strtolower($phpSaveHandler); + set_error_handler([$this, 'handleError']); + session_module_name($phpSaveHandler); + restore_error_handler(); + if ($this->phpErrorCode >= E_WARNING) { + throw new Exception\InvalidArgumentException(sprintf( + 'Error setting session save handler module "%s": %s', + $phpSaveHandler, + $this->phpErrorMessage + )); + } + + return $phpSaveHandler; + } + + if (is_string($phpSaveHandler) + && (! class_exists($phpSaveHandler) + || ! (in_array(SessionHandlerInterface::class, class_implements($phpSaveHandler))) + ) + ) { + throw new Exception\InvalidArgumentException(sprintf( + 'Invalid save handler specified ("%s"); must be one of [%s]' + . ' or a class implementing %s', + $phpSaveHandler, + implode(', ', $knownHandlers), + SessionHandlerInterface::class, + SessionHandlerInterface::class + )); + } + + if (is_string($phpSaveHandler)) { + $phpSaveHandler = new $phpSaveHandler(); + } + + if (! $phpSaveHandler instanceof SessionHandlerInterface) { + throw new Exception\InvalidArgumentException(sprintf( + 'Invalid save handler specified ("%s"); must implement %s', + get_class($phpSaveHandler), + SessionHandlerInterface::class + )); + } + + session_set_save_handler($phpSaveHandler); + + return get_class($phpSaveHandler); + } + /** * Grab module information from phpinfo. * diff --git a/test/Config/SessionConfigTest.php b/test/Config/SessionConfigTest.php index 85697e46..5486238c 100644 --- a/test/Config/SessionConfigTest.php +++ b/test/Config/SessionConfigTest.php @@ -1206,4 +1206,26 @@ public function testProvidingValidKnownSessionHandlerToSetPhpSaveHandlerResultsI $this->assertSame($this->config, $this->config->setPhpSaveHandler('unittest')); $this->assertEquals('unittest', $this->config->getOption('save_handler')); } + + public function testCanProvidePathWhenUsingRedisSaveHandler() + { + $phpinfo = $this->getFunctionMock('Zend\Session\Config', 'phpinfo'); + $phpinfo + ->expects($this->once()) + ->will($this->returnCallback(function () { + echo "Registered save handlers => user files redis"; + })); + + $sessionModuleName = $this->getFunctionMock('Zend\Session\Config', 'session_module_name'); + $sessionModuleName + ->expects($this->once()) + ->with($this->equalTo('redis')); + + $url = 'tcp://localhost:6379?auth=foobar&database=1'; + + $this->config->setOption('save_handler', 'redis'); + $this->config->setOption('save_path', $url); + + $this->assertSame($url, $this->config->getOption('save_path')); + } }