(dev/core#178) Redis - Be a little more conservative about sharing error info
[civicrm-core.git] / CRM / Utils / Cache / Redis.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2018
32 * $Id$
33 *
34 */
35 class CRM_Utils_Cache_Redis implements CRM_Utils_Cache_Interface {
36 const DEFAULT_HOST = 'localhost';
37 const DEFAULT_PORT = 6379;
38 const DEFAULT_TIMEOUT = 3600;
39 const DEFAULT_PREFIX = '';
40
41 /**
42 * The host name of the redisd server
43 *
44 * @var string
45 */
46 protected $_host = self::DEFAULT_HOST;
47
48 /**
49 * The port on which to connect on
50 *
51 * @var int
52 */
53 protected $_port = self::DEFAULT_PORT;
54
55 /**
56 * The default timeout to use
57 *
58 * @var int
59 */
60 protected $_timeout = self::DEFAULT_TIMEOUT;
61
62 /**
63 * The prefix prepended to cache keys.
64 *
65 * If we are using the same redis instance for multiple CiviCRM
66 * installs, we must have a unique prefix for each install to prevent
67 * the keys from clobbering each other.
68 *
69 * @var string
70 */
71 protected $_prefix = self::DEFAULT_PREFIX;
72
73 /**
74 * The actual redis object
75 *
76 * @var Redis
77 */
78 protected $_cache;
79
80 /**
81 * Constructor
82 *
83 * @param array $config
84 * An array of configuration params.
85 *
86 * @return \CRM_Utils_Cache_Redis
87 */
88 public function __construct($config) {
89 if (isset($config['host'])) {
90 $this->_host = $config['host'];
91 }
92 if (isset($config['port'])) {
93 $this->_port = $config['port'];
94 }
95 if (isset($config['timeout'])) {
96 $this->_timeout = $config['timeout'];
97 }
98 if (isset($config['prefix'])) {
99 $this->_prefix = $config['prefix'];
100 }
101
102 $this->_cache = new Redis();
103 if (!$this->_cache->connect($this->_host, $this->_port)) {
104 // dont use fatal here since we can go in an infinite loop
105 echo 'Could not connect to redisd server';
106 CRM_Utils_System::civiExit();
107 }
108 $this->_cache->auth(CIVICRM_DB_CACHE_PASSWORD);
109 }
110
111 /**
112 * @param $key
113 * @param $value
114 *
115 * @return bool
116 * @throws Exception
117 */
118 public function set($key, &$value) {
119 if (!$this->_cache->set($this->_prefix . $key, serialize($value), $this->_timeout)) {
120 if (PHP_SAPI === 'cli' || (Civi\Core\Container::isContainerBooted() && CRM_Core_Permission::check('view debug output'))) {
121 CRM_Core_Error::fatal("Redis set ($key) failed: " . $this->_cache->getLastError());
122 }
123 else {
124 Civi::log()->error("Redis set ($key) failed: " . $this->_cache->getLastError());
125 CRM_Core_Error::fatal("Redis set ($key) failed");
126 }
127 return FALSE;
128 }
129 return TRUE;
130 }
131
132 /**
133 * @param $key
134 *
135 * @return mixed
136 */
137 public function get($key) {
138 $result = $this->_cache->get($this->_prefix . $key);
139 return unserialize($result);
140 }
141
142 /**
143 * @param $key
144 *
145 * @return mixed
146 */
147 public function delete($key) {
148 return $this->_cache->delete($this->_prefix . $key);
149 }
150
151 /**
152 * @return mixed
153 */
154 public function flush() {
155 return $this->_cache->flushDB();
156 }
157
158 }