-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathclass-sv-wp-background-job-handler.php
1138 lines (896 loc) · 27.1 KB
/
class-sv-wp-background-job-handler.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
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* WooCommerce Plugin Framework
*
* This source file is subject to the GNU General Public License v3.0
* that is bundled with this package in the file license.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.html
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@skyverge.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade the plugin to newer
* versions in the future. If you wish to customize the plugin for your
* needs please refer to http://www.skyverge.com
*
* @package SkyVerge/WooCommerce/Utilities
* @author SkyVerge / Delicious Brains
* @copyright Copyright (c) 2015-2024 Delicious Brains Inc.
* @copyright Copyright (c) 2013-2024, SkyVerge, Inc.
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0
*/
namespace SkyVerge\WooCommerce\PluginFramework\v5_12_2;
defined( 'ABSPATH' ) or exit;
if ( ! class_exists( '\\SkyVerge\\WooCommerce\\PluginFramework\\v5_12_2\\SV_WP_Background_Job_Handler' ) ) :
/**
* SkyVerge WordPress Background Job Handler class
*
* Based on the wonderful WP_Background_Process class by deliciousbrains:
* https://github.com/A5hleyRich/wp-background-processing
*
* Subclasses SV_WP_Async_Request. Instead of the concept of `batches` used in
* the Delicious Brains' version, however, this takes a more object-oriented approach
* of background `jobs`, allowing greater control over manipulating job data and
* processing.
*
* A batch implicitly expected an array of items to process, whereas a job does
* not expect any particular data structure (although it does default to
* looping over job data) and allows subclasses to provide their own
* processing logic.
*
* # Sample usage:
*
* $background_job_handler = new SV_WP_Background_Job_Handler();
* $job = $background_job_handler->create_job( $attrs );
* $background_job_handler->dispatch();
*
* @since 4.4.0
*/
#[\AllowDynamicProperties]
abstract class SV_WP_Background_Job_Handler extends SV_WP_Async_Request {
/** @var string async request prefix */
protected $prefix = 'sv_wp';
/** @var string async request action */
protected $action = 'background_job';
/** @var string data key */
protected $data_key = 'data';
/** @var int start time of current process */
protected $start_time = 0;
/** @var string cron hook identifier */
protected $cron_hook_identifier;
/** @var string cron interval identifier */
protected $cron_interval_identifier;
/** @var string debug message, used by the system status tool */
protected $debug_message;
/**
* Initiate new background job handler
*
* @since 4.4.0
*/
public function __construct() {
parent::__construct();
$this->cron_hook_identifier = $this->identifier . '_cron';
$this->cron_interval_identifier = $this->identifier . '_cron_interval';
$this->add_hooks();
}
/**
* Adds the necessary action and filter hooks.
*
* @since 4.8.0
*/
protected function add_hooks() {
// cron healthcheck
add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
// debugging & testing
add_action( "wp_ajax_nopriv_{$this->identifier}_test", array( $this, 'handle_connection_test_response' ) );
add_filter( 'woocommerce_debug_tools', array( $this, 'add_debug_tool' ) );
add_filter( 'gettext', array( $this, 'translate_success_message' ), 10, 3 );
}
/**
* Dispatch
*
* @since 4.4.0
* @return array|WP_Error
*/
public function dispatch() {
// schedule the cron healthcheck
$this->schedule_event();
// perform remote post
return parent::dispatch();
}
/**
* Maybe processes job queue.
*
* Checks whether data exists within the job queue and that the background process is not already running.
*
* @since 4.4.0
*
* @throws \Exception upon error
*/
public function maybe_handle() {
if ( $this->is_process_running() ) {
// background process already running
wp_die();
}
if ( $this->is_queue_empty() ) {
// no data to process
wp_die();
}
/**
* WC core does 2 things here that can interfere with our nonce check:
*
* 1. WooCommerce starts a session due to our GET request to dispatch a job
* However, this happens *after* we've generated a nonce without a session (in CRON context)
* 2. it then filters nonces for logged-out users indiscriminately without checking the nonce action; if
* there is a session created (and now the server does have one), it tries to filter every.single.nonce
* for logged-out users to use the customer session ID instead of 0 for user ID. We *want* to check
* against a UID of 0 (since that's how the nonce was created), so we temporarily pause the
* logged-out nonce hijacking before standing aside.
*
* @see \WC_Session_Handler::init() when the action is hooked
* @see \WC_Session_Handler::nonce_user_logged_out() WC < 5.3 callback
* @see \WC_Session_Handler::maybe_update_nonce_user_logged_out() WC >= 5.3 callback
*/
if ( SV_WC_Plugin_Compatibility::is_wc_version_gte('5.3') ) {
$callback = [ WC()->session, 'maybe_update_nonce_user_logged_out' ];
$arguments = 2;
} else {
$callback = [ WC()->session, 'nonce_user_logged_out' ];
$arguments = 1;
}
remove_filter( 'nonce_user_logged_out', $callback );
check_ajax_referer( $this->identifier, 'nonce' );
// sorry, later nonce users! please play again
add_filter( 'nonce_user_logged_out', $callback, 10, $arguments );
$this->handle();
wp_die();
}
/**
* Check whether job queue is empty or not
*
* @since 4.4.0
* @return bool True if queue is empty, false otherwise
*/
protected function is_queue_empty() {
global $wpdb;
$key = $this->identifier . '_job_%';
// only queued or processing jobs count
$queued = '%"status":"queued"%';
$processing = '%"status":"processing"%';
$count = $wpdb->get_var( $wpdb->prepare( "
SELECT COUNT(option_id)
FROM {$wpdb->options}
WHERE option_name LIKE %s
AND ( option_value LIKE %s OR option_value LIKE %s )
LIMIT 1
", $key, $queued, $processing ) );
return ( $count > 0 ) ? false : true;
}
/**
* Check whether background process is running or not
*
* Check whether the current process is already running
* in a background process.
*
* @since 4.4.0
* @return bool True if processing is running, false otherwise
*/
protected function is_process_running() {
// add a random artificial delay to prevent a race condition if 2 or more processes are trying to
// process the job queue at the very same moment in time and neither of them have yet set the lock
// before the others are calling this method
usleep( rand( 100000, 300000 ) );
return (bool) get_transient( "{$this->identifier}_process_lock" );
}
/**
* Lock process
*
* Lock the process so that multiple instances can't run simultaneously.
* Override if applicable, but the duration should be greater than that
* defined in the time_exceeded() method.
*
* @since 4.4.0
*/
protected function lock_process() {
// set start time of current process
$this->start_time = time();
// set lock duration to 1 minute by default
$lock_duration = ( property_exists( $this, 'queue_lock_time' ) ) ? $this->queue_lock_time : 60;
/**
* Filter the queue lock time
*
* @since 4.4.0
* @param int $lock_duration Lock duration in seconds
*/
$lock_duration = apply_filters( "{$this->identifier}_queue_lock_time", $lock_duration );
set_transient( "{$this->identifier}_process_lock", microtime(), $lock_duration );
}
/**
* Unlock process
*
* Unlock the process so that other instances can spawn.
*
* @since 4.4.0
* @return SV_WP_Background_Job_Handler
*/
protected function unlock_process() {
delete_transient( "{$this->identifier}_process_lock" );
return $this;
}
/**
* Check if memory limit is exceeded
*
* Ensures the background job handler process never exceeds 90%
* of the maximum WordPress memory.
*
* @since 4.4.0
*
* @return bool True if exceeded memory limit, false otherwise
*/
protected function memory_exceeded() {
$memory_limit = $this->get_memory_limit() * 0.9; // 90% of max memory
$current_memory = memory_get_usage( true );
$return = false;
if ( $current_memory >= $memory_limit ) {
$return = true;
}
/**
* Filter whether memory limit has been exceeded or not
*
* @since 4.4.0
*
* @param bool $exceeded
*/
return apply_filters( "{$this->identifier}_memory_exceeded", $return );
}
/**
* Get memory limit
*
* @since 4.4.0
*
* @return int memory limit in bytes
*/
protected function get_memory_limit() {
if ( function_exists( 'ini_get' ) ) {
$memory_limit = ini_get( 'memory_limit' );
} else {
// sensible default
$memory_limit = '128M';
}
if ( ! $memory_limit || -1 === (int) $memory_limit ) {
// unlimited, set to 32GB
$memory_limit = '32G';
}
return SV_WC_Plugin_Compatibility::convert_hr_to_bytes( $memory_limit );
}
/**
* Check whether request time limit has been exceeded or not
*
* Ensures the background job handler never exceeds a sensible time limit.
* A timeout limit of 30s is common on shared hosting.
*
* @since 4.4.0
*
* @return bool True, if time limit exceeded, false otherwise
*/
protected function time_exceeded() {
/**
* Filter default time limit for background job execution, defaults to
* 20 seconds
*
* @since 4.4.0
*
* @param int $time Time in seconds
*/
$finish = $this->start_time + apply_filters( "{$this->identifier}_default_time_limit", 20 );
$return = false;
if ( time() >= $finish ) {
$return = true;
}
/**
* Filter whether maximum execution time has exceeded or not
*
* @since 4.4.0
* @param bool $exceeded true if execution time exceeded, false otherwise
*/
return apply_filters( "{$this->identifier}_time_exceeded", $return );
}
/**
* Create a background job
*
* Delicious Brains' versions alternative would be using ->data()->save().
* Allows passing in any kind of job attributes, which will be available at item data processing time.
* This allows sharing common options between items without the need to repeat
* the same information for every single item in queue.
*
* Instead of returning self, returns the job instance, which gives greater
* control over the job.
*
* @since 4.4.0
*
* @param array|mixed $attrs Job attributes.
* @return \stdClass|object|null
*/
public function create_job( $attrs ) {
global $wpdb;
if ( empty( $attrs ) ) {
return null;
}
// generate a unique ID for the job
$job_id = md5( microtime() . mt_rand() );
/**
* Filter new background job attributes
*
* @since 4.4.0
*
* @param array $attrs Job attributes
* @param string $id Job ID
*/
$attrs = apply_filters( "{$this->identifier}_new_job_attrs", $attrs, $job_id );
// ensure a few must-have attributes
$attrs = wp_parse_args( array(
'id' => $job_id,
'created_at' => current_time( 'mysql' ),
'created_by' => get_current_user_id(),
'status' => 'queued',
), $attrs );
$wpdb->insert( $wpdb->options, array(
'option_name' => "{$this->identifier}_job_{$job_id}",
'option_value' => json_encode( $attrs ),
'autoload' => 'no'
) );
$job = new \stdClass();
foreach ( $attrs as $key => $value ) {
$job->{$key} = $value;
}
/**
* Runs when a job is created.
*
* @since 4.4.0
*
* @param \stdClass|object $job the created job
*/
do_action( "{$this->identifier}_job_created", $job );
return $job;
}
/**
* Get a job (by default the first in the queue)
*
* @since 4.4.0
*
* @param string $id Optional. Job ID. Will return first job in queue if not
* provided. Will not return completed or failed jobs from queue.
* @return \stdClass|object|null The found job object or null
*/
public function get_job( $id = null ) {
global $wpdb;
if ( ! $id ) {
$key = $this->identifier . '_job_%';
$queued = '%"status":"queued"%';
$processing = '%"status":"processing"%';
$results = $wpdb->get_var( $wpdb->prepare( "
SELECT option_value
FROM {$wpdb->options}
WHERE option_name LIKE %s
AND ( option_value LIKE %s OR option_value LIKE %s )
ORDER BY option_id ASC
LIMIT 1
", $key, $queued, $processing ) );
} else {
$results = $wpdb->get_var( $wpdb->prepare( "
SELECT option_value
FROM {$wpdb->options}
WHERE option_name = %s
", "{$this->identifier}_job_{$id}" ) );
}
if ( ! empty( $results ) ) {
$job = new \stdClass();
foreach ( json_decode( $results, true ) as $key => $value ) {
$job->{$key} = $value;
}
} else {
return null;
}
/**
* Filters the job as returned from the database.
*
* @since 4.4.0
*
* @param \stdClass|object $job
*/
return apply_filters( "{$this->identifier}_returned_job", $job );
}
/**
* Gets jobs.
*
* @since 4.4.2
*
* @param array $args {
* Optional. An array of arguments
*
* @type string|array $status Job status(es) to include
* @type string $order ASC or DESC. Defaults to DESC
* @type string $orderby Field to order by. Defaults to option_id
* }
* @return \stdClass[]|object[]|null Found jobs or null if none found
*/
public function get_jobs( $args = array() ) {
global $wpdb;
$args = wp_parse_args( $args, array(
'order' => 'DESC',
'orderby' => 'option_id',
) );
$replacements = array( $this->identifier . '_job_%' );
$status_query = '';
// prepare status query
if ( ! empty( $args['status'] ) ) {
$statuses = (array) $args['status'];
$placeholders = array();
foreach ( $statuses as $status ) {
$placeholders[] = '%s';
$replacements[] = '%"status":"' . sanitize_key( $status ) . '"%';
}
$status_query = 'AND ( option_value LIKE ' . implode( ' OR option_value LIKE ', $placeholders ) . ' )';
}
// prepare sorting vars
$order = sanitize_key( $args['order'] );
$orderby = sanitize_key( $args['orderby'] );
// put it all together now
$query = $wpdb->prepare( "
SELECT option_value
FROM {$wpdb->options}
WHERE option_name LIKE %s
{$status_query}
ORDER BY {$orderby} {$order}
", $replacements );
$results = $wpdb->get_col( $query );
if ( empty( $results ) ) {
return null;
}
$jobs = array();
foreach ( $results as $result ) {
$job = new \stdClass();
foreach ( json_decode( $result, true ) as $key => $value ) {
$job->{$key} = $value;
}
/** This filter is documented above */
$job = apply_filters( "{$this->identifier}_returned_job", $job );
$jobs[] = $job;
}
return $jobs;
}
/**
* Handles jobs.
*
* Process jobs while remaining within server memory and time limit constraints.
*
* @since 4.4.0
*
* @throws \Exception
*/
protected function handle() {
$this->lock_process();
do {
// Get next job in the queue
$job = $this->get_job();
// handle PHP errors from here on out
register_shutdown_function( array( $this, 'handle_shutdown' ), $job );
// Start processing
$this->process_job( $job );
} while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty() );
$this->unlock_process();
// Start next job or complete process
if ( ! $this->is_queue_empty() ) {
$this->dispatch();
} else {
$this->complete();
}
wp_die();
}
/**
* Process a job
*
* Default implementation is to loop over job data and passing each item to
* the item processor. Subclasses are, however, welcome to override this method
* to create totally different job processing implementations - see
* WC_CSV_Import_Suite_Background_Import in CSV Import for an example.
*
* If using the default implementation, the job must have a $data_key property set.
* Subclasses can override the data key, but the contents must be an array which
* the job processor can loop over. By default, the data key is `data`.
*
* If no data is set, the job will completed right away.
*
* @since 4.4.0
*
* @param \stdClass|object $job
* @param int $items_per_batch number of items to process in a single request. Defaults to unlimited.
* @throws \Exception when job data is incorrect
* @return \stdClass $job
*/
public function process_job( $job, $items_per_batch = null ) {
if ( ! $this->start_time ) {
$this->start_time = time();
}
// Indicate that the job has started processing
if ( 'processing' !== $job->status ) {
$job->status = 'processing';
$job->started_processing_at = current_time( 'mysql' );
$job = $this->update_job( $job );
}
$data_key = $this->data_key;
if ( ! isset( $job->{$data_key} ) ) {
throw new \Exception( sprintf( __( 'Job data key "%s" not set', 'woocommerce-plugin-framework' ), $data_key ) );
}
if ( ! is_array( $job->{$data_key} ) ) {
throw new \Exception( sprintf( __( 'Job data key "%s" is not an array', 'woocommerce-plugin-framework' ), $data_key ) );
}
$data = $job->{$data_key};
$job->total = count( $data );
// progress indicates how many items have been processed, it
// does NOT indicate the processed item key in any way
if ( ! isset( $job->progress ) ) {
$job->progress = 0;
}
// skip already processed items
if ( $job->progress && ! empty( $data ) ) {
$data = array_slice( $data, $job->progress, null, true );
}
// loop over unprocessed items and process them
if ( ! empty( $data ) ) {
$processed = 0;
$items_per_batch = (int) $items_per_batch;
foreach ( $data as $item ) {
// process the item
$this->process_item( $item, $job );
$processed++;
$job->progress++;
// update job progress
$job = $this->update_job( $job );
// job limits reached
if ( ( $items_per_batch && $processed >= $items_per_batch ) || $this->time_exceeded() || $this->memory_exceeded() ) {
break;
}
}
}
// complete current job
if ( $job->progress >= count( $job->{$data_key} ) ) {
$job = $this->complete_job( $job );
}
return $job;
}
/**
* Update job attrs
*
* @since 4.4.0
*
* @param \stdClass|object|string $job Job instance or ID
* @return \stdClass|object|false on failure
*/
public function update_job( $job ) {
if ( is_string( $job ) ) {
$job = $this->get_job( $job );
}
if ( ! $job ) {
return false;
}
$job->updated_at = current_time( 'mysql' );
$this->update_job_option( $job );
/**
* Runs when a job is updated.
*
* @since 4.4.0
*
* @param \stdClass|object $job the updated job
*/
do_action( "{$this->identifier}_job_updated", $job );
return $job;
}
/**
* Handles job completion.
*
* @since 4.4.0
*
* @param \stdClass|object|string $job Job instance or ID
* @return \stdClass|object|false on failure
*/
public function complete_job( $job ) {
if ( is_string( $job ) ) {
$job = $this->get_job( $job );
}
if ( ! $job ) {
return false;
}
$job->status = 'completed';
$job->completed_at = current_time( 'mysql' );
$this->update_job_option( $job );
/**
* Runs when a job is completed.
*
* @since 4.4.0
*
* @param \stdClass|object $job the completed job
*/
do_action( "{$this->identifier}_job_complete", $job );
return $job;
}
/**
* Handle job failure
*
* Default implementation does not call this method directly, but it's
* provided as a convenience method for subclasses that may call this to
* indicate that a particular job has failed for some reason.
*
* @since 4.4.0
*
* @param \stdClass|object|string $job Job instance or ID
* @param string $reason Optional. Reason for failure.
* @return \stdClass|false on failure
*/
public function fail_job( $job, $reason = '' ) {
if ( is_string( $job ) ) {
$job = $this->get_job( $job );
}
if ( ! $job ) {
return false;
}
$job->status = 'failed';
$job->failed_at = current_time( 'mysql' );
if ( $reason ) {
$job->failure_reason = $reason;
}
$this->update_job_option( $job );
/**
* Runs when a job is failed.
*
* @since 4.4.0
*
* @param \stdClass|object $job the failed job
*/
do_action( "{$this->identifier}_job_failed", $job );
return $job;
}
/**
* Delete a job
*
* @since 4.4.2
*
* @param \stdClass|object|string $job Job instance or ID
* @return false on failure
*/
public function delete_job( $job ) {
global $wpdb;
if ( is_string( $job ) ) {
$job = $this->get_job( $job );
}
if ( ! $job ) {
return false;
}
$wpdb->delete( $wpdb->options, array( 'option_name' => "{$this->identifier}_job_{$job->id}" ) );
/**
* Runs after a job is deleted.
*
* @since 4.4.2
*
* @param \stdClass|object $job the job that was deleted from database
*/
do_action( "{$this->identifier}_job_deleted", $job );
}
/**
* Handle job queue completion
*
* Override if applicable, but ensure that the below actions are
* performed, or, call parent::complete().
*
* @since 4.4.0
*/
protected function complete() {
// unschedule the cron healthcheck
$this->clear_scheduled_event();
}
/**
* Schedule cron healthcheck
*
* @since 4.4.0
* @param array $schedules
* @return array
*/
public function schedule_cron_healthcheck( $schedules ) {
$interval = property_exists( $this, 'cron_interval' ) ? $this->cron_interval : 5;
/**
* Filter cron health check interval
*
* @since 4.4.0
* @param int $interval Interval in minutes
*/
$interval = apply_filters( "{$this->identifier}_cron_interval", $interval );
// adds every 5 minutes to the existing schedules.
$schedules[ $this->identifier . '_cron_interval' ] = array(
'interval' => MINUTE_IN_SECONDS * $interval,
'display' => sprintf( __( 'Every %d Minutes' ), $interval ),
);
return $schedules;
}
/**
* Handle cron healthcheck
*
* Restart the background process if not already running
* and data exists in the queue.
*
* @since 4.4.0
*/
public function handle_cron_healthcheck() {
if ( $this->is_process_running() ) {
// background process already running
exit;
}
if ( $this->is_queue_empty() ) {
// no data to process
$this->clear_scheduled_event();
exit;
}
$this->dispatch();
}
/**
* Schedule cron health check event
*
* @since 4.4.0
*/
protected function schedule_event() {
if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) {
// schedule the health check to fire after 30 seconds from now, as to not create a race condition
// with job process lock on servers that fire & handle cron events instantly
wp_schedule_event( time() + 30, $this->cron_interval_identifier, $this->cron_hook_identifier );
}
}
/**
* Clear scheduled health check event
*
* @since 4.4.0
*/
protected function clear_scheduled_event() {
$timestamp = wp_next_scheduled( $this->cron_hook_identifier );
if ( $timestamp ) {
wp_unschedule_event( $timestamp, $this->cron_hook_identifier );
}
}
/**
* Process an item from job data
*
* Implement this method to perform any actions required on each
* item in job data.
*
* @since 4.4.2
*
* @param mixed $item Job data item to iterate over
* @param \stdClass|object $job Job instance
* @return mixed
*/
abstract protected function process_item( $item, $job );
/**
* Handles PHP shutdown, say after a fatal error.
*
* @since 4.5.0
*
* @param \stdClass|object $job the job being processed
*/
public function handle_shutdown( $job ) {
$error = error_get_last();
// if shutting down because of a fatal error, fail the job
if ( $error && E_ERROR === $error['type'] ) {
$this->fail_job( $job, $error['message'] );
$this->unlock_process();
}
}
/**