cache.php
6.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?php
/**
* @package Joomla.Administrator
* @subpackage com_cache
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Factory;
use Joomla\Utilities\ArrayHelper;
/**
* Cache Model
*
* @since 1.6
*/
class CacheModelCache extends JModelList
{
/**
* An Array of CacheItems indexed by cache group ID
*
* @var Array
*/
protected $_data = array();
/**
* Group total
*
* @var integer
*/
protected $_total = null;
/**
* Pagination object
*
* @var object
*/
protected $_pagination = null;
/**
* Constructor.
*
* @param array $config An optional associative array of configuration settings.
*
* @since 3.5
*/
public function __construct($config = array())
{
if (empty($config['filter_fields']))
{
$config['filter_fields'] = array(
'group',
'count',
'size',
'client_id',
);
}
parent::__construct($config);
}
/**
* Method to auto-populate the model state.
*
* Note. Calling getState in this method will result in recursion.
*
* @param string $ordering Field for ordering.
* @param string $direction Direction of ordering.
*
* @return void
*
* @since 1.6
*/
protected function populateState($ordering = 'group', $direction = 'asc')
{
// Load the filter state.
$this->setState('filter.search', $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search', '', 'string'));
// Special case for client id.
$clientId = (int) $this->getUserStateFromRequest($this->context . '.client_id', 'client_id', 0, 'int');
$clientId = (!in_array($clientId, array (0, 1))) ? 0 : $clientId;
$this->setState('client_id', $clientId);
parent::populateState($ordering, $direction);
}
/**
* Method to get a store id based on model configuration state.
*
* This is necessary because the model is used by the component and
* different modules that might need different sets of data or different
* ordering requirements.
*
* @param string $id A prefix for the store id.
*
* @return string A store id.
*
* @since 3.5
*/
protected function getStoreId($id = '')
{
// Compile the store id.
$id .= ':' . $this->getState('client_id');
$id .= ':' . $this->getState('filter.search');
return parent::getStoreId($id);
}
/**
* Method to get cache data
*
* @return array
*/
public function getData()
{
if (empty($this->_data))
{
try
{
$cache = $this->getCache();
$data = $cache->getAll();
if ($data && count($data) > 0)
{
// Process filter by search term.
if ($search = $this->getState('filter.search'))
{
foreach ($data as $key => $cacheItem)
{
if (stripos($cacheItem->group, $search) === false)
{
unset($data[$key]);
continue;
}
}
}
// Process ordering.
$listOrder = $this->getState('list.ordering', 'group');
$listDirn = $this->getState('list.direction', 'ASC');
$this->_data = ArrayHelper::sortObjects($data, $listOrder, strtolower($listDirn) === 'desc' ? -1 : 1, true, true);
// Process pagination.
$limit = (int) $this->getState('list.limit', 25);
if ($limit !== 0)
{
$start = (int) $this->getState('list.start', 0);
return array_slice($this->_data, $start, $limit);
}
}
else
{
$this->_data = array();
}
}
catch (JCacheExceptionConnecting $exception)
{
$this->setError(JText::_('COM_CACHE_ERROR_CACHE_CONNECTION_FAILED'));
$this->_data = array();
}
catch (JCacheExceptionUnsupported $exception)
{
$this->setError(JText::_('COM_CACHE_ERROR_CACHE_DRIVER_UNSUPPORTED'));
$this->_data = array();
}
}
return $this->_data;
}
/**
* Method to get cache instance.
*
* @return JCacheController
*/
public function getCache($clientId = null)
{
$conf = JFactory::getConfig();
if (is_null($clientId))
{
$clientId = $this->getState('client_id');
}
$options = array(
'defaultgroup' => '',
'storage' => $conf->get('cache_handler', ''),
'caching' => true,
'cachebase' => (int) $clientId === 1 ? JPATH_ADMINISTRATOR . '/cache' : $conf->get('cache_path', JPATH_SITE . '/cache')
);
return JCache::getInstance('', $options);
}
/**
* Method to get client data.
*
* @return array
*
* @deprecated 4.0 No replacement.
*/
public function getClient()
{
return JApplicationHelper::getClientInfo($this->getState('client_id', 0));
}
/**
* Get the number of current Cache Groups.
*
* @return integer
*/
public function getTotal()
{
if (empty($this->_total))
{
$this->_total = count($this->getData());
}
return $this->_total;
}
/**
* Method to get a pagination object for the cache.
*
* @return JPagination
*/
public function getPagination()
{
if (empty($this->_pagination))
{
$this->_pagination = new JPagination($this->getTotal(), $this->getState('list.start'), $this->getState('list.limit'));
}
return $this->_pagination;
}
/**
* Clean out a cache group as named by param.
* If no param is passed clean all cache groups.
*
* @param string $group Cache group name.
*
* @return boolean True on success, false otherwise
*/
public function clean($group = '')
{
try
{
$this->getCache()->clean($group);
}
catch (JCacheExceptionConnecting $exception)
{
return false;
}
catch (JCacheExceptionUnsupported $exception)
{
return false;
}
Factory::getApplication()->triggerEvent('onAfterPurge', array($group));
return true;
}
/**
* Purge an array of cache groups.
*
* @param array $array Array of cache group names.
*
* @return array Array with errors, if they exist.
*/
public function cleanlist($array)
{
$errors = array();
foreach ($array as $group)
{
if (!$this->clean($group))
{
$errors[] = $group;
}
}
return $errors;
}
/**
* Purge all cache items.
*
* @return boolean True if successful; false otherwise.
*/
public function purge()
{
try
{
JFactory::getCache('')->gc();
}
catch (JCacheExceptionConnecting $exception)
{
return false;
}
catch (JCacheExceptionUnsupported $exception)
{
return false;
}
Factory::getApplication()->triggerEvent('onAfterPurge', array());
return true;
}
}