-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathtask.cls.php
More file actions
344 lines (309 loc) · 9.1 KB
/
Copy pathtask.cls.php
File metadata and controls
344 lines (309 loc) · 9.1 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
<?php
/**
* The cron task class.
*
* @since 1.1.3
* @package LiteSpeed
*/
namespace LiteSpeed;
defined( 'WPINC' ) || exit();
/**
* Schedules and runs LiteSpeed Cache background tasks.
*/
class Task extends Root {
/**
* Tag for debug logs.
*
* @var string
*/
const LOG_TAG = '⏰';
/**
* Map of option id => cron hook registration.
*
* @var array<string,array{name:string,hook:callable|string}>
*/
private static $_triggers = [
Base::O_IMG_OPTM_CRON => [
'name' => 'litespeed_task_imgoptm_pull',
'hook' => 'LiteSpeed\Img_Optm::start_async_cron',
], // always fetch immediately
Base::O_OPTM_CSS_ASYNC => [
'name' => 'litespeed_task_ccss',
'hook' => 'LiteSpeed\CSS::cron_ccss',
],
Base::O_OPTM_UCSS => [
'name' => 'litespeed_task_ucss',
'hook' => 'LiteSpeed\UCSS::cron',
],
Base::O_MEDIA_VPI_CRON => [
'name' => 'litespeed_task_vpi',
'hook' => 'LiteSpeed\VPI::cron',
],
Base::O_OPTIMAX => [
'name' => 'litespeed_task_optimax',
'hook' => 'LiteSpeed\Optimax::cron',
],
Base::O_MEDIA_PLACEHOLDER_RESP_ASYNC => [
'name' => 'litespeed_task_lqip',
'hook' => 'LiteSpeed\Placeholder::cron',
],
Base::O_DISCUSS_AVATAR_CRON => [
'name' => 'litespeed_task_avatar',
'hook' => 'LiteSpeed\Avatar::cron',
],
Base::O_IMG_OPTM_AUTO => [
'name' => 'litespeed_task_imgoptm_req',
'hook' => 'LiteSpeed\Img_Optm::cron_auto_request',
],
Base::O_GUEST => [
'name' => 'litespeed_task_guest_sync',
'hook' => 'LiteSpeed\Guest::cron',
], // Daily sync Guest Mode IP/UA lists
Base::O_CRAWLER => [
'name' => 'litespeed_task_crawler',
'hook' => 'LiteSpeed\Crawler::start_async_cron',
], // Set crawler to last one to use above results
Base::O_MISC_MAX_FOLDER_SIZE => [
'name' => 'litespeed_task_folder_size',
'hook' => 'LiteSpeed\Folder::cron',
],
];
/**
* Options allowed to run for guest optimization.
*
* @var array<int,string>
*/
private static $_guest_options = [ Base::O_OPTM_CSS_ASYNC, Base::O_OPTM_UCSS, Base::O_MEDIA_VPI ];
/**
* Schedule id for crawler.
*
* @var string
*/
const FILTER_CRAWLER = 'litespeed_crawl_filter';
/**
* Schedule id for general tasks.
*
* @var string
*/
const FILTER = 'litespeed_filter';
/**
* Keep all tasks in cron.
*
* @since 3.0
* @access public
* @return void
*/
public function init() {
self::debug2( 'Init' );
add_filter( 'cron_schedules', [ $this, 'lscache_cron_filter' ] );
$guest_optm = $this->conf( Base::O_GUEST ) && $this->conf( Base::O_GUEST_OPTM );
foreach ( self::$_triggers as $id => $trigger ) {
// Avatar cron is a sub-switch of avatar cache: skip registration and clear any leftover schedule when the master switch is off, even if the sub-switch itself is off too.
if ( Base::O_DISCUSS_AVATAR_CRON === $id && ! $this->conf( Base::O_DISCUSS_AVATAR_CACHE ) ) {
if ( wp_next_scheduled( $trigger['name'] ) ) {
wp_clear_scheduled_hook( $trigger['name'] );
self::debug( 'Cleared avatar cron schedule as avatar cache is off' );
}
continue;
}
if ( Base::O_IMG_OPTM_CRON === $id ) {
if ( ! Img_Optm::need_pull() ) {
continue;
}
} elseif ( ! $this->conf( $id ) ) {
if ( ! $guest_optm || ! in_array( $id, self::$_guest_options, true ) ) {
continue;
}
}
// Skip cron registration if waiting for try_later timeout
$try_later_map = [
Base::O_OPTM_UCSS => [ 'UCSS', 'ucss_next_run_after' ],
Base::O_OPTM_CSS_ASYNC => [ 'CSS', 'ccss_next_run_after' ],
Base::O_OPTIMAX => [ 'Optimax', 'ox_next_run_after' ],
];
if ( isset( $try_later_map[ $id ] ) ) {
list( $cls_name, $summary_key ) = $try_later_map[ $id ];
$next_run_after = $this->cls( $cls_name )::get_summary( $summary_key );
if ( $next_run_after && time() < $next_run_after ) {
$wait_seconds = $next_run_after - time();
self::debug( "Skip $cls_name cron: try_later $wait_seconds s remaining" );
if ( wp_next_scheduled( $trigger['name'] ) ) {
wp_clear_scheduled_hook( $trigger['name'] );
self::debug( "Cleared existing $cls_name cron schedule" );
}
continue;
}
}
// Special check for crawler.
if ( Base::O_CRAWLER === $id ) {
if ( ! Router::can_crawl() ) {
continue;
}
add_filter( 'cron_schedules', [ $this, 'lscache_cron_filter_crawler' ] ); // phpcs:ignore WordPress.WP.CronInterval.ChangeDetected
}
if ( ! wp_next_scheduled( $trigger['name'] ) ) {
self::debug( 'Cron hook register [name] ' . $trigger['name'] );
// Determine schedule: crawler uses its own, guest uses daily, others use 15min
if ( Base::O_CRAWLER === $id ) {
$schedule = self::FILTER_CRAWLER;
} elseif ( Base::O_GUEST === $id ) {
$schedule = 'daily';
} else {
$schedule = self::FILTER;
}
wp_schedule_event( time(), $schedule, $trigger['name'] );
}
add_action( $trigger['name'], $trigger['hook'] );
}
// Health: schedule single-event cron when pending request exists
$health_pending = Health::get_summary( 'pending' );
if ( $health_pending ) {
$hook = 'litespeed_task_health';
if ( ! wp_next_scheduled( $hook ) ) {
$next_run = Health::get_summary( 'health_next_run_after' );
$run_at = $next_run && time() < $next_run ? $next_run : time() + 5;
wp_schedule_single_event( $run_at, $hook );
self::debug( 'Cron hook register [name] ' . $hook );
}
add_action( $hook, 'LiteSpeed\Health::cron' );
}
}
/**
* Handle all async noabort requests.
*
* @since 5.5
* @return void
*/
public static function async_litespeed_handler() {
$hash_data = self::get_option( 'async_call-hash', [] );
if ( ! $hash_data || ! is_array( $hash_data ) || empty( $hash_data['hash'] ) || empty( $hash_data['ts'] ) ) {
self::debug( 'async_litespeed_handler no hash data', $hash_data );
return;
}
$nonce = isset( $_GET['nonce'] ) ? sanitize_text_field( wp_unslash( $_GET['nonce'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
if ( 120 < time() - (int) $hash_data['ts'] || '' === $nonce || $nonce !== $hash_data['hash'] ) {
self::debug( 'async_litespeed_handler nonce mismatch' );
return;
}
self::delete_option( 'async_call-hash' );
$type = Router::verify_type();
self::debug( 'type=' . $type );
// Don't lock up other requests while processing.
session_write_close();
switch ( $type ) {
case 'crawler':
Crawler::async_handler();
break;
case 'crawler_force':
Crawler::async_handler( true );
break;
case 'imgoptm':
Img_Optm::async_handler();
break;
case 'imgoptm_force':
Img_Optm::async_handler( true );
break;
default:
break;
}
}
/**
* Async caller wrapper func.
*
* @since 5.5
*
* @param string $type Async operation type.
* @return void
*/
public static function async_call( $type ) {
$hash = Str::rrand( 32 );
self::update_option(
'async_call-hash',
[
'hash' => $hash,
'ts' => time(),
]
);
$args = [
'timeout' => 0.01,
'blocking' => false,
'sslverify' => false,
// 'cookies' => $_COOKIE,
];
$qs = [
'action' => 'async_litespeed',
'nonce' => $hash,
Router::TYPE => $type,
];
$url = add_query_arg( $qs, admin_url( 'admin-ajax.php' ) );
self::debug( 'async call to ' . $url );
wp_safe_remote_post( esc_url_raw( $url ), $args );
}
/**
* Clean all potential existing crons.
*
* @since 3.0
* @access public
* @return void
*/
public static function destroy() {
Utility::compatibility();
array_map( 'wp_clear_scheduled_hook', array_column( self::$_triggers, 'name' ) );
}
/**
* Try to clean the crons if disabled.
*
* @since 3.0
* @access public
*
* @param string $id Option id of cron trigger.
* @return void
*/
public function try_clean( $id ) {
if ( $id && ! empty( self::$_triggers[ $id ] ) ) {
if ( ! $this->conf( $id ) || ( Base::O_CRAWLER === $id && ! Router::can_crawl() ) ) {
self::debug( 'Cron clear [id] ' . $id . ' [hook] ' . self::$_triggers[ $id ]['name'] );
wp_clear_scheduled_hook( self::$_triggers[ $id ]['name'] );
}
return;
}
self::debug( '❌ Unknown cron [id] ' . $id );
}
/**
* Register cron interval for general tasks.
*
* @since 1.6.1
* @access public
*
* @param array $schedules Existing schedules.
* @return array
*/
public function lscache_cron_filter( $schedules ) {
if ( ! array_key_exists( self::FILTER, $schedules ) ) {
$schedules[ self::FILTER ] = [
'interval' => 900,
'display' => __( 'Every 15 Minutes', 'litespeed-cache' ),
];
}
return $schedules;
}
/**
* Register cron interval for crawler.
*
* @since 1.1.0
* @access public
*
* @param array $schedules Existing schedules.
* @return array
*/
public function lscache_cron_filter_crawler( $schedules ) {
$crawler_run_interval = defined( 'LITESPEED_CRAWLER_RUN_INTERVAL' ) ? (int) constant( 'LITESPEED_CRAWLER_RUN_INTERVAL' ) : 600;
if ( ! array_key_exists( self::FILTER_CRAWLER, $schedules ) ) {
$schedules[ self::FILTER_CRAWLER ] = [
'interval' => $crawler_run_interval,
'display' => __( 'LiteSpeed Crawler Cron', 'litespeed-cache' ),
];
}
return $schedules;
}
}