-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathObjectCache_Plugin.php
223 lines (197 loc) · 5.91 KB
/
ObjectCache_Plugin.php
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
<?php
/**
* File: ObjectCache_Plugin.php
*
* @package W3TC
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
*/
namespace W3TC;
/**
* W3 ObjectCache plugin
*/
class ObjectCache_Plugin {
/**
* Config.
*
* @var Config
*/
private $_config = null;
/**
* If the object cache has been flushed.
*
* @since 2.2.10
*
* @var boolean
*/
private static $flushed = false;
/**
* Constructor.
*/
public function __construct() {
$this->_config = Dispatcher::config();
}
/**
* Runs plugin
*/
public function run() {
// @link https://developer.wordpress.org/reference/hooks/updated_option/
add_action( 'updated_option', array( $this, 'delete_option_cache' ), 10, 0 );
add_filter( 'cron_schedules', array( $this, 'cron_schedules' ) );
add_action( 'w3tc_objectcache_purge_wpcron', array( $this, 'w3tc_objectcache_purge_wpcron' ) );
add_filter( 'w3tc_footer_comment', array( $this, 'w3tc_footer_comment' ) );
if ( 'file' === $this->_config->get_string( 'objectcache.engine' ) ) {
add_action( 'w3_objectcache_cleanup', array( $this, 'cleanup' ) );
}
add_filter( 'w3tc_admin_bar_menu', array( $this, 'w3tc_admin_bar_menu' ) );
// usage statistics handling.
add_action( 'w3tc_usage_statistics_of_request', array( $this, 'w3tc_usage_statistics_of_request' ), 10, 1 );
add_filter( 'w3tc_usage_statistics_metrics', array( $this, 'w3tc_usage_statistics_metrics' ) );
add_filter( 'w3tc_usage_statistics_sources', array( $this, 'w3tc_usage_statistics_sources' ) );
}
/**
* Delete the options cache object.
*
* @since 2.7.6
*
* @link https://developer.wordpress.org/reference/functions/wp_cache_delete/
*
* @return bool
*/
public function delete_option_cache() {
return wp_cache_delete( 'alloptions', 'options' );
}
/**
* Does disk cache cleanup
*
* @return void
*/
public function cleanup() {
$w3_cache_file_cleaner = new Cache_File_Cleaner(
array(
'cache_dir' => Util_Environment::cache_blog_dir( 'object' ),
'clean_timelimit' => $this->_config->get_integer( 'timelimit.cache_gc' ),
)
);
$w3_cache_file_cleaner->clean();
}
/**
* Cron schedules filter
*
* @param array $schedules Schedules.
*
* @return array
*/
public function cron_schedules( $schedules ) {
$c = $this->_config;
$objectcache_enabled = $c->get_boolean( 'objectcache.enabled' );
$engine = $c->get_string( 'objectcache.engine' );
if ( $objectcache_enabled && 'file' === $engine ) {
$interval = $c->get_integer( 'objectcache.file.gc' );
$schedules['w3_objectcache_cleanup'] = array(
'interval' => $interval,
'display' => sprintf(
// translators: 1 interval in seconds.
__( '[W3TC] Object Cache file GC (every %d seconds)', 'w3-total-cache' ),
$interval
),
);
}
return $schedules;
}
/**
* Cron job for processing purging object cache.
*
* @since 2.8.0
*
* @return void
*/
public function w3tc_objectcache_purge_wpcron() {
$flusher = Dispatcher::component( 'CacheFlush' );
$flusher->objectcache_flush();
}
/**
* Setup admin menu elements
*
* @param array $menu_items Menu items.
*/
public function w3tc_admin_bar_menu( $menu_items ) {
$menu_items['20410.objectcache'] = array(
'id' => 'w3tc_flush_objectcache',
'parent' => 'w3tc_flush',
'title' => __( 'Object Cache', 'w3-total-cache' ),
'href' => wp_nonce_url( admin_url( 'admin.php?page=w3tc_dashboard&w3tc_flush_objectcache' ), 'w3tc' ),
);
return $menu_items;
}
/**
* Setup admin menu elements
*
* @param array $strings Strings.
*/
public function w3tc_footer_comment( $strings ) {
$o = Dispatcher::component( 'ObjectCache_WpObjectCache_Regular' );
$strings = $o->w3tc_footer_comment( $strings );
return $strings;
}
/**
* Usage statistics of request filter
*
* @param object $storage Storage object.
*/
public function w3tc_usage_statistics_of_request( $storage ) {
$o = Dispatcher::component( 'ObjectCache_WpObjectCache_Regular' );
$o->w3tc_usage_statistics_of_request( $storage );
}
/**
* Retrive usage statistics metrics
*
* @param array $metrics Metrics.
*/
public function w3tc_usage_statistics_metrics( $metrics ) {
$metrics = array_merge(
$metrics,
array(
'objectcache_get_total',
'objectcache_get_hits',
'objectcache_sets',
'objectcache_flushes',
'objectcache_time_ms',
)
);
return $metrics;
}
/**
* Usage Statisitcs sources filter.
*
* @param array $sources Sources.
*
* @return array
*/
public function w3tc_usage_statistics_sources( $sources ) {
$c = Dispatcher::config();
if ( 'apc' === $c->get_string( 'objectcache.engine' ) ) {
$sources['apc_servers']['objectcache'] = array(
'name' => __( 'Object Cache', 'w3-total-cache' ),
);
} elseif ( 'memcached' === $c->get_string( 'objectcache.engine' ) ) {
$sources['memcached_servers']['objectcache'] = array(
'servers' => $c->get_array( 'objectcache.memcached.servers' ),
'username' => $c->get_string( 'objectcache.memcached.username' ),
'password' => $c->get_string( 'objectcache.memcached.password' ),
'binary_protocol' => $c->get_boolean( 'objectcache.memcached.binary_protocol' ),
'name' => __( 'Object Cache', 'w3-total-cache' ),
);
} elseif ( 'redis' === $c->get_string( 'objectcache.engine' ) ) {
$sources['redis_servers']['objectcache'] = array(
'servers' => $c->get_array( 'objectcache.redis.servers' ),
'verify_tls_certificates' => $c->get_boolean( 'objectcache.redis.verify_tls_certificates' ),
'username' => $c->get_boolean( 'objectcache.redis.username' ),
'dbid' => $c->get_integer( 'objectcache.redis.dbid' ),
'password' => $c->get_string( 'objectcache.redis.password' ),
'name' => __( 'Object Cache', 'w3-total-cache' ),
);
}
return $sources;
}
}