-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.php
More file actions
427 lines (367 loc) · 13.8 KB
/
api.php
File metadata and controls
427 lines (367 loc) · 13.8 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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<?php
/**
* Copyright © Rhubarb Tech Inc. All Rights Reserved.
*
* All information contained herein is, and remains the property of Rhubarb Tech Incorporated.
* The intellectual and technical concepts contained herein are proprietary to Rhubarb Tech Incorporated and
* are protected by trade secret or copyright law. Dissemination and modification of this information or
* reproduction of this material is strictly forbidden unless prior written permission is obtained from
* Rhubarb Tech Incorporated.
*
* You should have received a copy of the `LICENSE` with this file. If not, please visit:
* https://objectcache.pro/license.txt
*
* Kelvin, you have my full attention. How rich we will make our lawyers is up to you.
*/
defined('ABSPATH') || exit;
require_once __DIR__ . '/bootstrap.php';
/**
* Set up object cache.
*
* @since 2.0.0
*
* @global array $wp_object_cache_errors
* @global \RedisCachePro\ObjectCaches\ObjectCacheInterface $wp_object_cache
*/
function wp_cache_init()
{
global $wp_object_cache, $wp_object_cache_errors;
$wp_object_cache_errors = [];
try {
if (! defined('WP_REDIS_CONFIG')) {
throw new \RedisCachePro\Exceptions\ConfigurationMissingException;
}
$config = WP_REDIS_CONFIG;
// set `debug` config value to `WP_DEBUG`, if not present already
if (! isset($config['debug']) && defined('WP_DEBUG')) {
$config['debug'] = (bool) WP_DEBUG;
}
// set `save_commands` config value to `SAVEQUERIES`, if not present already
if (! isset($config['save_commands']) && defined('SAVEQUERIES')) {
$config['save_commands'] = (bool) SAVEQUERIES;
}
$config = \RedisCachePro\Configuration\Configuration::from($config)->validate();
$config->connector::boot();
$connection = $config->connector::connect($config);
$objectCache = new $config->cache($connection, $config);
// register additional global groups
if ($config->global_groups) {
$objectCache->add_global_groups($config->global_groups);
}
// register additional non-persistent groups
if ($config->non_persistent_groups) {
$objectCache->add_non_persistent_groups($config->non_persistent_groups);
}
// register non-prefetchable groups
if ($config->non_prefetchable_groups) {
$objectCache->add_non_prefetchable_groups($config->non_prefetchable_groups);
}
$objectCache->add_non_prefetchable_groups([
'userlogins',
'wc_session_id',
]);
// set up multisite environments
if (is_multisite()) {
$objectCache->setMultisite(true);
}
$connection->ping();
$wp_object_cache = $objectCache;
} catch (Throwable $exception) {
$error = sprintf('Failed to initialize object cache: %s', $exception->getMessage());
$wp_object_cache_errors[] = $error;
error_log("objectcache.critical: {$error}");
if (! isset($config) || ! ($config instanceof \RedisCachePro\Configuration\Configuration)) {
$config = (new \RedisCachePro\Configuration\Configuration)->init();
}
if ($config->debug) {
error_log('objectcache.info: `debug` option is enabled. Throwing exception.');
throw $exception;
}
error_log('objectcache.info: Failing over to in-memory object cache.');
$wp_object_cache = new \RedisCachePro\ObjectCaches\ArrayObjectCache($config);
}
if (method_exists($wp_object_cache, 'prefetch')) {
if (is_multisite()) {
add_action('ms_loaded', [$wp_object_cache, 'prefetch'], 0);
} else {
$wp_object_cache->prefetch();
}
}
}
/**
* Adds data to the cache, if the cache key doesn't already exist.
*
* @since 2.0.0
*
* @param int|string $key The cache key to use for retrieval later.
* @param mixed $data The data to add to the cache.
* @param string $group Optional. The group to add the cache to. Enables the same key
* to be used across groups. Default empty.
* @param int $expire Optional. When the cache data should expire, in seconds.
* Default 0 (no expiration).
* @return bool False if cache key and group already exist, true on success.
*/
function wp_cache_add($key, $data, $group = '', $expire = 0)
{
global $wp_object_cache;
return $wp_object_cache->add((string) $key, $data, trim((string) $group) ?: 'default', (int) $expire);
}
/**
* Closes the cache.
*
* This function has ceased to do anything since WordPress 2.5. The
* functionality was removed along with the rest of the persistent cache.
*
* This does not mean that plugins can't implement this function when they need
* to make sure that the cache is cleaned up after WordPress no longer needs it.
*
* @since 2.0.0
*
* @return true Always returns true.
*/
function wp_cache_close()
{
global $wp_object_cache;
return $wp_object_cache->close();
}
/**
* Decrements numeric cache item's value.
*
* @since 3.3.0
*
* @param int|string $key The cache key to decrement.
* @param int $offset Optional. The amount by which to decrement the item's value. Default 1.
* @param string $group Optional. The group the key is in. Default empty.
* @return false|int False on failure, the item's new value on success.
*/
function wp_cache_decr($key, $offset = 1, $group = '')
{
global $wp_object_cache;
return $wp_object_cache->decr((string) $key, (int) $offset, trim((string) $group) ?: 'default');
}
/**
* Removes the cache contents matching key and group.
*
* @since 2.0.0
*
* @param int|string $key What the contents in the cache are called.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @return bool True on successful removal, false on failure.
*/
function wp_cache_delete($key, $group = '')
{
global $wp_object_cache;
return $wp_object_cache->delete((string) $key, trim((string) $group) ?: 'default');
}
/**
* Removes all cache items.
*
* @since 2.0.0
*
* @return bool False on failure, true on success
*/
function wp_cache_flush()
{
global $wp_object_cache;
return $wp_object_cache->flush();
}
/**
* Retrieves the cache contents from the cache by key and group.
*
* @since 2.0.0
*
* @param int|string $key The key under which the cache contents are stored.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @param bool $force Optional. Whether to force an update of the local cache from the persistent
* cache. Default false.
* @param bool &$found Optional. Whether the key was found in the cache (passed by reference).
* Disambiguates a return of false, a storable value. Default null.
* @return bool|mixed False on failure to retrieve contents or the cache
* contents on success
*/
function wp_cache_get($key, $group = '', $force = false, &$found = null)
{
global $wp_object_cache;
return $wp_object_cache->get((string) $key, trim((string) $group) ?: 'default', (bool) $force, $found);
}
/**
* Retrieves multiple values from the cache in one call.
*
* @since 5.5.0
*
* @param array $keys Array of keys under which the cache contents are stored.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @param bool $force Optional. Whether to force an update of the local cache
* from the persistent cache. Default false.
* @return array Array of values organized into groups.
*/
function wp_cache_get_multiple($keys, $group = '', $force = false)
{
global $wp_object_cache;
return $wp_object_cache->get_multiple((array) $keys, trim((string) $group) ?: 'default', (bool) $force);
}
/**
* Increment numeric cache item's value.
*
* @since 3.3.0
*
* @param int|string $key The key for the cache contents that should be incremented.
* @param int $offset Optional. The amount by which to increment the item's value. Default 1.
* @param string $group Optional. The group the key is in. Default empty.
* @return false|int False on failure, the item's new value on success.
*/
function wp_cache_incr($key, $offset = 1, $group = '')
{
global $wp_object_cache;
return $wp_object_cache->incr((string) $key, (int) $offset, trim((string) $group) ?: 'default');
}
/**
* Replaces the contents of the cache with new data.
*
* @since 2.0.0
*
* @param int|string $key The key for the cache data that should be replaced.
* @param mixed $data The new data to store in the cache.
* @param string $group Optional. The group for the cache data that should be replaced.
* Default empty.
* @param int $expire Optional. When to expire the cache contents, in seconds.
* Default 0 (no expiration).
* @return bool False if original value does not exist, true if contents were replaced
*/
function wp_cache_replace($key, $data, $group = '', $expire = 0)
{
global $wp_object_cache;
return $wp_object_cache->replace((string) $key, $data, trim((string) $group) ?: 'default', (int) $expire);
}
/**
* Saves the data to the cache.
*
* Differs from wp_cache_add() and wp_cache_replace() in that it will always write data.
*
* @since 2.0.0
*
* @param int|string $key The cache key to use for retrieval later.
* @param mixed $data The contents to store in the cache.
* @param string $group Optional. Where to group the cache contents. Enables the same key
* to be used across groups. Default empty.
* @param int $expire Optional. When to expire the cache contents, in seconds.
* Default 0 (no expiration).
* @return bool False on failure, true on success
*/
function wp_cache_set($key, $data, $group = '', $expire = 0)
{
global $wp_object_cache;
return $wp_object_cache->set((string) $key, $data, trim((string) $group) ?: 'default', (int) $expire);
}
/**
* Switches the internal blog ID.
*
* This changes the blog id used to create keys in blog specific groups.
*
* @since 3.5.0
*
* @param int $blog_id Site ID.
*/
function wp_cache_switch_to_blog($blog_id)
{
global $wp_object_cache;
$wp_object_cache->switch_to_blog((int) $blog_id);
}
/**
* Adds a group or set of groups to the list of global groups.
*
* @since 2.6.0
*
* @param string|array $groups A group or an array of groups to add.
*/
function wp_cache_add_global_groups($groups)
{
global $wp_object_cache;
$wp_object_cache->add_global_groups((array) $groups);
}
/**
* Adds a group or set of groups to the list of non-persistent groups.
*
* @since 2.6.0
*
* @param string|array $groups A group or an array of groups to add.
*/
function wp_cache_add_non_persistent_groups($groups)
{
global $wp_object_cache;
$wp_object_cache->add_non_persistent_groups((array) $groups);
}
/**
* Reset internal cache keys and structures.
*
* If the cache back end uses global blog or site IDs as part of its cache keys,
* this function instructs the back end to reset those keys and perform any cleanup
* since blog or site IDs have changed since cache init.
*
* This function is deprecated. Use wp_cache_switch_to_blog() instead of this
* function when preparing the cache for a blog switch. For clearing the cache
* during unit tests, consider using wp_cache_init(). wp_cache_init() is not
* recommended outside of unit tests as the performance penalty for using it is
* high.
*
* @since 2.6.0
*/
function wp_cache_reset()
{
_deprecated_function(__FUNCTION__, '3.5.0', 'WP_Object_Cache::reset()');
}
/**
* Adds a group or set of groups to the list of non-prefetchable groups.
*
* This is a non-standard function that does not ship with WordPress,
* be sure to copy it when uninstalling Object Cache Pro.
*
* @since 2.6.0
*
* @param string|array $groups A group or an array of groups to add.
*/
function wp_cache_add_non_prefetchable_groups($groups)
{
global $wp_object_cache;
$wp_object_cache->add_non_prefetchable_groups((array) $groups);
}
/**
* Get data from the cache, or execute the given Closure and store the result.
*
* This is a non-standard function that does not ship with WordPress,
* be sure to copy it when uninstalling Object Cache Pro.
*
* @param int|string $key The key under which the cache contents are stored.
* @param int $expire Optional. When the cache data should expire, in seconds.
* Default 0 (no expiration).
* @param \Closure $callback The contents to store in the cache.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @return bool|mixed False on failure to retrieve contents or the cache
* contents on success
*/
function wp_cache_remember($key, $expire, Closure $callback, $group = '')
{
$data = wp_cache_get($key, $group);
if ($data !== false) {
return $data;
}
$data = $callback();
wp_cache_set($key, $data, $group, $expire);
return $data;
}
/**
* Get data from the cache, or execute the given Closure and store the result forever.
*
* This is a non-standard function that does not ship with WordPress,
* be sure to copy it when uninstalling Object Cache Pro.
*
* @param int|string $key The key under which the cache contents are stored.
* @param \Closure $callback The contents to store in the cache.
* @param string $group Optional. Where the cache contents are grouped. Default empty.
* @return bool|mixed False on failure to retrieve contents or the cache
* contents on success
*/
function wp_cache_sear($key, Closure $callback, $group = '')
{
return wp_cache_remember($key, 0, $callback, $group);
}