2016-04-14 16:41:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Alejandro Varela <epma01@gmail.com>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-04-14 16:41:04 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-04-14 16:41:04 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC;
|
|
|
|
|
|
|
|
class RedisFactory {
|
|
|
|
/** @var \Redis */
|
|
|
|
private $instance;
|
|
|
|
|
|
|
|
/** @var SystemConfig */
|
|
|
|
private $config;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RedisFactory constructor.
|
|
|
|
*
|
|
|
|
* @param SystemConfig $config
|
|
|
|
*/
|
|
|
|
public function __construct(SystemConfig $config) {
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function create() {
|
2016-03-14 01:41:04 +03:00
|
|
|
if ($config = $this->config->getValue('redis.cluster', [])) {
|
|
|
|
if (!class_exists('RedisCluster')) {
|
|
|
|
throw new \Exception('Redis Cluster support is not available');
|
|
|
|
}
|
|
|
|
// cluster config
|
2016-11-11 14:17:00 +03:00
|
|
|
if (isset($config['timeout'])) {
|
|
|
|
$timeout = $config['timeout'];
|
|
|
|
} else {
|
|
|
|
$timeout = null;
|
|
|
|
}
|
|
|
|
if (isset($config['read_timeout'])) {
|
|
|
|
$readTimeout = $config['read_timeout'];
|
|
|
|
} else {
|
|
|
|
$readTimeout = null;
|
|
|
|
}
|
2019-05-22 13:19:07 +03:00
|
|
|
if (isset($config['password']) && $config['password'] !== '') {
|
|
|
|
$this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout, false, $config['password']);
|
|
|
|
} else {
|
|
|
|
$this->instance = new \RedisCluster(null, $config['seeds'], $timeout, $readTimeout);
|
|
|
|
}
|
2016-03-14 01:41:04 +03:00
|
|
|
|
|
|
|
if (isset($config['failover_mode'])) {
|
2016-11-11 11:58:05 +03:00
|
|
|
$this->instance->setOption(\RedisCluster::OPT_SLAVE_FAILOVER, $config['failover_mode']);
|
2016-03-14 01:41:04 +03:00
|
|
|
}
|
2016-04-14 16:41:04 +03:00
|
|
|
} else {
|
2016-03-14 01:41:04 +03:00
|
|
|
$this->instance = new \Redis();
|
|
|
|
$config = $this->config->getValue('redis', []);
|
|
|
|
if (isset($config['host'])) {
|
|
|
|
$host = $config['host'];
|
|
|
|
} else {
|
|
|
|
$host = '127.0.0.1';
|
|
|
|
}
|
|
|
|
if (isset($config['port'])) {
|
|
|
|
$port = $config['port'];
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif ($host[0] !== '/') {
|
2016-03-14 01:41:04 +03:00
|
|
|
$port = 6379;
|
2019-05-01 23:12:27 +03:00
|
|
|
} else {
|
|
|
|
$port = null;
|
2016-03-14 01:41:04 +03:00
|
|
|
}
|
|
|
|
if (isset($config['timeout'])) {
|
|
|
|
$timeout = $config['timeout'];
|
|
|
|
} else {
|
|
|
|
$timeout = 0.0; // unlimited
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->instance->connect($host, $port, $timeout);
|
|
|
|
if (isset($config['password']) && $config['password'] !== '') {
|
|
|
|
$this->instance->auth($config['password']);
|
|
|
|
}
|
2016-04-14 16:41:04 +03:00
|
|
|
|
2016-03-14 01:41:04 +03:00
|
|
|
if (isset($config['dbindex'])) {
|
|
|
|
$this->instance->select($config['dbindex']);
|
|
|
|
}
|
2016-04-14 16:41:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getInstance() {
|
|
|
|
if (!$this->isAvailable()) {
|
|
|
|
throw new \Exception('Redis support is not available');
|
|
|
|
}
|
|
|
|
if (!$this->instance instanceof \Redis) {
|
|
|
|
$this->create();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isAvailable() {
|
|
|
|
return extension_loaded('redis')
|
|
|
|
&& version_compare(phpversion('redis'), '2.2.5', '>=');
|
|
|
|
}
|
|
|
|
}
|