]> git.mxchange.org Git - friendica.git/commitdiff
Improve redis configuration
authorPhilipp Holzer <admin@philipp.info>
Sat, 20 Apr 2019 11:40:40 +0000 (13:40 +0200)
committerPhilipp Holzer <admin@philipp.info>
Sat, 20 Apr 2019 11:40:40 +0000 (13:40 +0200)
- basic authentication
- switch database (0 - 15)

src/Core/Cache/RedisCacheDriver.php
src/Factory/CacheDriverFactory.php
tests/src/Core/Cache/RedisCacheDriverTest.php

index 6559cf6a7279be9fcbe031910209f243afa2395a..ea4eb4390a629c9c2a9b42fef9baeddcc659df2b 100644 (file)
@@ -20,11 +20,13 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
        private $redis;
 
        /**
-        * @param string $redis_host
-        * @param int    $redis_port
+        * @param string  $redis_host
+        * @param int     $redis_port
+        * @param int     $redis_db (Default = 0, maximum is 15)
+        * @param string? $redis_pw
         * @throws Exception
         */
-       public function __construct($redis_host, $redis_port)
+       public function __construct($redis_host, $redis_port, $redis_db = 0, $redis_pw = null)
        {
                if (!class_exists('Redis', false)) {
                        throw new Exception('Redis class isn\'t available');
@@ -35,6 +37,14 @@ class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
                if (!$this->redis->connect($redis_host, $redis_port)) {
                        throw new Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
                }
+
+               if (isset($redis_pw) && !$this->redis->auth($redis_pw)) {
+                       throw new Exception('Cannot authenticate redis server at ' . $redis_host . ':' . $redis_port);
+               }
+
+               if ($redis_db !== 0 && !$this->redis->select($redis_db)) {
+                       throw new Exception('Cannot switch to redis db ' . $redis_db . ' at ' . $redis_host . ':' . $redis_port);
+               }
        }
 
        /**
index 1008b679449706f18ad0f6e95c93e25294db9efb..f802d73fa6035bdc021900279232b94434be026f 100644 (file)
@@ -2,9 +2,9 @@
 
 namespace Friendica\Factory;
 
+use Friendica\Core\Cache;
 use Friendica\Core\Cache\ICacheDriver;
 use Friendica\Core\Config;
-use Friendica\Core\Cache;
 
 /**
  * Class CacheDriverFactory
@@ -40,8 +40,10 @@ class CacheDriverFactory
                        case 'redis':
                                $redis_host = Config::get('system', 'redis_host');
                                $redis_port = Config::get('system', 'redis_port');
+                               $redis_pw   = Config::get('system', 'redis_password');
+                               $redis_db   = Config::get('system', 'redis_db', 0);
 
-                               return new Cache\RedisCacheDriver($redis_host, $redis_port);
+                               return new Cache\RedisCacheDriver($redis_host, $redis_port, $redis_db, $redis_pw);
                                break;
                        default:
                                return new Cache\DatabaseCacheDriver();
index 80baa9f4b3d9f937e60b3407c1781dc3df9c0f33..6e11c3b8a42f72fbf43156df82863b13ab6881d6 100644 (file)
@@ -22,6 +22,16 @@ class RedisCacheDriverTest extends MemoryCacheTest
                        ->with('system', 'redis_port')
                        ->andReturn(null);
 
+               $this->configMock
+                       ->shouldReceive('get')
+                       ->with('system', 'redis_db')
+                       ->andReturn(3);
+
+               $this->configMock
+                       ->shouldReceive('get')
+                       ->with('system', 'redis_password')
+                       ->andReturn(null);
+
                $this->cache = CacheDriverFactory::create('redis');
                return $this->cache;
        }