forked from litespeedtech/lscache_wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoocommerce.cls.php
894 lines (794 loc) · 24.6 KB
/
woocommerce.cls.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
<?php
/**
* The Third Party integration with the WooCommerce plugin.
*
* @since 1.0.5
* @since 1.6.6 Added function_exists check for compatibility
* @package LiteSpeed_Cache
* @subpackage LiteSpeed_Cache/thirdparty
* @author LiteSpeed Technologies <[email protected]>
*/
namespace LiteSpeed\Thirdparty;
defined( 'WPINC' ) || exit;
use \LiteSpeed\API;
use \LiteSpeed\Base;
use \LiteSpeed\Instance;
class WooCommerce extends Instance
{
protected static $_instance ;
const O_CACHE_TTL_FRONTPAGE = Base::O_CACHE_TTL_FRONTPAGE;
const CACHETAG_SHOP = 'WC_S' ;
const CACHETAG_TERM = 'WC_T.' ;
const O_UPDATE_INTERVAL = 'wc_update_interval' ;
const O_SHOP_FRONT_TTL = 'wc_shop_use_front_ttl' ;
const O_WOO_CACHE_CART = 'woo_cache_cart' ;
const O_PQS_CS = 0 ; // flush product on quantity + stock change, categories on stock change
const O_PS_CS = 1 ; // flush product and categories on stock change
const O_PS_CN = 2 ; // flush product on stock change, categories no flush
const O_PQS_CQS = 3 ; // flush product and categories on quantity + stock change
const ESI_PARAM_ARGS = 'wc_args' ;
const ESI_PARAM_POSTID = 'wc_post_id' ;
const ESI_PARAM_NAME = 'wc_name' ;
const ESI_PARAM_PATH = 'wc_path' ;
const ESI_PARAM_LOCATED = 'wc_located' ;
private $cache_cart ;
private $esi_eanbled ;
/**
* Detects if WooCommerce is installed.
*
* @since 1.0.5
* @access public
*/
public static function detect()
{
if ( ! defined( 'WOOCOMMERCE_VERSION' ) ) {
return ;
}
self::get_instance()->add_hooks() ;
}
/**
* Add hooks to woo actions
*
* @since 1.6.3
* @access public
*/
public function add_hooks()
{
$this->_option_append() ;
$this->cache_cart = apply_filters( 'litespeed_conf', self::O_WOO_CACHE_CART ) ;
$this->esi_eanbled = apply_filters( 'litespeed_esi_status', false );
add_action( 'litespeed_control_finalize', array( $this, 'set_control' ) );
add_action( 'litespeed_tag_finalize', array( $this, 'set_tag' ) );
// Purging a product on stock change should only occur during product purchase. This function will add the purging callback when an order is complete.
add_action( 'woocommerce_product_set_stock', array( $this, 'purge_product' ) ) ;
add_action( 'woocommerce_variation_set_stock', array( $this, 'purge_product' ) ) ; // #984479 Update variations stock
add_action( 'comment_post', array( $this, 'add_review' ), 10, 3 ) ;
if ( $this->esi_eanbled ) {
if ( function_exists( 'is_shop' ) && ! is_shop() ) {
add_action( 'litespeed_tpl_normal', array( $this, 'set_block_template' ) );
// No need for add-to-cart button
// add_action( 'litespeed_esi_load-wc-add-to-cart-form', array( $this, 'load_add_to_cart_form_block' ) ) ;
add_action( 'litespeed_esi_load-storefront-cart-header', array( $this, 'load_cart_header' ) );
add_action( 'litespeed_esi_load-widget', array( $this, 'register_post_view' ) );
}
if ( function_exists( 'is_product' ) && is_product() ) {
add_filter( 'litespeed_esi_params', array( $this, 'add_post_id' ), 10, 2 );
}
/**
* Only when cart is not empty, give it an ESI with private cache
* Call when template_include to make sure woo cart is initialized
* @since 1.7.2
*/
add_action( 'template_include', array( $this, 'check_if_need_esi' ) );
add_filter( 'litespeed_vary', array( $this, 'vary_maintain' ) );
}
if ( is_admin() ) {
add_action('litespeed_api_purge_post', array( $this, 'backend_purge' ) ) ;//todo
add_action( 'delete_term_relationships', array( $this, 'delete_rel' ), 10, 2 ) ;
add_action( 'litespeed_settings_tab', array( $this, 'settings_add_tab' ) );
add_action( 'litespeed_settings_content', array( $this, 'settings_add_content' ) );
add_filter( 'litespeed_widget_default_options', array( $this, 'wc_widget_default' ), 10, 2 );
}
// Purge cart if is ESI / Purge private if not enabled ESI
if ( $this->cache_cart ) {
$hooks_to_purge = array(
'woocommerce_add_to_cart', 'woocommerce_ajax_added_to_cart',
'woocommerce_remove_cart_item',
'woocommerce_restore_cart_item',
'woocommerce_after_cart_item_quantity_update',
'woocommerce_applied_coupon', 'woocommerce_removed_coupon',
'woocommerce_checkout_order_processed',
) ;
foreach ( $hooks_to_purge as $v ) {
if ( $this->esi_eanbled ) {
add_action( $v, array( $this, 'purge_esi' ) ) ;
}
else {
add_action( $v, array( $this, 'purge_private_all' ) ) ;
}
}
}
}
/**
* Purge esi private tag
*
* @since 1.6.3
* @access public
*/
public function purge_esi()
{
do_action( 'litespeed_debug', '3rd woo purge ESI in action: ' . current_filter() ) ;
do_action( 'litespeed_purge_private_esi', 'storefront-cart-header' );
}
/**
* Purge private all
*
* @since 3.0
* @access public
*/
public function purge_private_all()
{
do_action( 'litespeed_purge_private_all' );
}
/**
* Check if need to give an ESI block for cart
*
* @since 1.7.2
* @access public
*/
public function check_if_need_esi( $template )
{
if ( $this->vary_needed() ) {
do_action( 'litespeed_debug', 'API: 3rd woo added ESI' );
add_action( 'litespeed_tpl_normal', array( $this, 'set_swap_header_cart' ) );
}
return $template;
}
/**
* Keep vary on if cart is not empty
*
* @since 1.7.2
* @access public
*/
public function vary_maintain( $vary )
{
if ( $this->vary_needed() ) {
do_action( 'litespeed_debug', 'API: 3rd woo added vary due to cart not empty' );
$vary[ 'woo_cart' ] = 1;
}
return $vary;
}
/**
* Check if vary need to be on based on cart
*
* @since 1.7.2
* @access private
*/
private function vary_needed()
{
if ( ! function_exists( 'WC' ) ) {
return false ;
}
$woocom = WC() ;
if ( ! $woocom ) {
return false ;
}
if ( is_null( $woocom->cart ) ) {
return false ;
}
return $woocom->cart->get_cart_contents_count() > 0 ;
}
/**
* Hooked to the litespeed_is_not_esi_template action.
* If the request is not an esi request, I want to set my own hook in woocommerce_before_template_part to see if it's something I can ESI.
*
* @since 1.1.0
* @access public
*/
public function set_block_template()
{
add_action('woocommerce_before_template_part', array( $this, 'block_template' ), 999, 4) ;
}
/**
* Hooked to the litespeed_is_not_esi_template action.
* If the request is not an esi request, I want to set my own hook
* in storefront_header to see if it's something I can ESI.
*
* Will remove storefront_header_cart in storefront_header.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
*/
public function set_swap_header_cart()
{
$priority = has_action('storefront_header', 'storefront_header_cart') ;
if ( $priority !== false ) {
remove_action('storefront_header', 'storefront_header_cart', $priority) ;
add_action('storefront_header', array( $this, 'esi_cart_header' ), $priority) ;
}
}
/**
* Hooked to the woocommerce_before_template_part action.
* Checks if the template contains 'add-to-cart'. If so, and if I want to ESI the request, block it and build my esi code block.
*
* The function parameters will be passed to the esi request.
*
* @since 1.1.0
* @access public
*/
public function block_template($template_name, $template_path, $located, $args)
{
if ( strpos($template_name, 'add-to-cart') === false ) {
if ( strpos($template_name, 'related.php') !== false ) {
remove_action('woocommerce_before_template_part', array( $this, 'block_template' ), 999) ;
add_filter('woocommerce_related_products_args', array( $this, 'add_related_tags' ) ) ;
add_action('woocommerce_after_template_part', array( $this, 'end_template' ), 999) ;
}
return ;
}
return ;
// todo: wny not use?
global $post ;
$params = array(
self::ESI_PARAM_ARGS => $args,
self::ESI_PARAM_NAME => $template_name,
self::ESI_PARAM_POSTID => $post->ID,
self::ESI_PARAM_PATH => $template_path,
self::ESI_PARAM_LOCATED => $located
) ;
add_action('woocommerce_after_add_to_cart_form', array( $this, 'end_form' ) ) ;
add_action('woocommerce_after_template_part', array( $this, 'end_form' ), 999) ;
echo apply_filters( 'litespeed_esi_url', 'wc-add-to-cart-form', 'WC_CART_FORM', $params );
echo apply_filters( 'litespeed_clean_wrapper_begin', '' );
}
/**
* Hooked to the woocommerce_after_add_to_cart_form action.
* If this is hit first, clean the buffer and remove this function and
* end_template.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
*/
public function end_form($template_name = '')
{
if ( ! empty($template_name) && strpos($template_name, 'add-to-cart') === false ) {
return ;
}
echo apply_filters( 'litespeed_clean_wrapper_end', '' );
remove_action('woocommerce_after_add_to_cart_form', array( $this, 'end_form' ) ) ;
remove_action('woocommerce_after_template_part', array( $this, 'end_form' ), 999) ;
}
/**
* If related products are loaded, need to add the extra product ids.
*
* The page will be purged if any of the products are changed.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
* @param array $args The arguments used to build the related products section.
* @return array The unchanged arguments.
*/
public function add_related_tags($args)
{
if ( empty($args) || ! isset($args['post__in']) ) {
return $args ;
}
$related_posts = $args['post__in'] ;
foreach ( $related_posts as $related ) {
do_action( 'litespeed_tag_add_post', $related );
}
return $args ;
}
/**
* Hooked to the woocommerce_after_template_part action.
* If the template contains 'add-to-cart', clean the buffer.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
* @param type $template_name
*/
public function end_template($template_name)
{
if ( strpos($template_name, 'related.php') !== false ) {
remove_action('woocommerce_after_template_part', array( $this, 'end_template' ), 999) ;
$this->set_block_template() ;
}
}
/**
* Hooked to the storefront_header header.
* If I want to ESI the request, block it and build my esi code block.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
*/
public function esi_cart_header()
{
echo apply_filters( 'litespeed_esi_url', 'storefront-cart-header', 'STOREFRONT_CART_HEADER' );
}
/**
* Hooked to the litespeed_esi_load-storefront-cart-header action.
* Generates the cart header for esi display.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
*/
public function load_cart_header()
{
storefront_header_cart();
}
/**
* Hooked to the litespeed_esi_load-wc-add-to-cart-form action.
* Parses the esi input parameters and generates the add to cart form
* for esi display.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
* @global type $post
* @global type $wp_query
* @param type $params
*/
public function load_add_to_cart_form_block($params)
{
global $post, $wp_query ;
$post = get_post($params[self::ESI_PARAM_POSTID]) ;
$wp_query->setup_postdata($post) ;
function_exists( 'wc_get_template' ) && wc_get_template($params[self::ESI_PARAM_NAME], $params[self::ESI_PARAM_ARGS], $params[self::ESI_PARAM_PATH]) ;
}
/**
* Update woocommerce when someone visits a product and has the
* recently viewed products widget.
*
* Currently, this widget should not be cached.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
* @param array $params Widget parameter array
*/
public function register_post_view($params)
{
if ( $params[API::PARAM_NAME] !== 'WC_Widget_Recently_Viewed' ) {
return ;
}
if ( ! isset($params[self::ESI_PARAM_POSTID]) ) {
return ;
}
$id = $params[self::ESI_PARAM_POSTID] ;
$esi_post = get_post($id) ;
$product = function_exists( 'wc_get_product' ) ? wc_get_product($esi_post) : false ;
if ( empty($product) ) {
return ;
}
global $post ;
$post = $esi_post ;
function_exists( 'wc_track_product_view' ) && wc_track_product_view() ;
}
/**
* Adds the post id to the widget ESI parameters for the Recently Viewed widget.
*
* This is needed in the ESI request to update the cookie properly.
*
* @since 1.1.0
* @access public
*/
public function add_post_id( $params, $block_id )
{
if ( $block_id == 'widget' ) {
if ( $params[ API::PARAM_NAME ] == 'WC_Widget_Recently_Viewed' ) {
$params[ self::ESI_PARAM_POSTID ] = get_the_ID();
}
}
return $params;
}
/**
* Hooked to the litespeed_widget_default_options filter.
*
* The recently viewed widget must be esi to function properly.
* This function will set it to enable and no cache by default.
*
* @since 1.1.0
* @access public
*/
public function wc_widget_default( $options, $widget )
{
if ( ! is_array( $options ) ) {
return $options;
}
$widget_name = get_class( $widget ) ;
if ( $widget_name === 'WC_Widget_Recently_Viewed' ) {
$options[ API::WIDGET_O_ESIENABLE ] = API::VAL_ON2;
$options[ API::WIDGET_O_TTL ] = 0;
}
elseif ( $widget_name === 'WC_Widget_Recent_Reviews' ) {
$options[ API::WIDGET_O_ESIENABLE ] = API::VAL_ON;
$options[ API::WIDGET_O_TTL ] = 86400;
}
return $options;
}
/**
* Set WooCommerce cache tags based on page type.
*
* @since 1.0.9
* @since 1.6.3 Removed static
* @access public
*/
public function set_tag()
{
$id = get_the_ID() ;
if ( $id === false ) {
return ;
}
// Check if product has a cache ttl limit or not
$sale_from = get_post_meta( $id, '_sale_price_dates_from', true ) ;
$sale_to = get_post_meta( $id, '_sale_price_dates_to', true ) ;
$now = current_time( 'timestamp' ) ;
$ttl = false ;
if ( $sale_from && $now < $sale_from ) {
$ttl = $sale_from - $now ;
}
elseif ( $sale_to && $now < $sale_to ) {
$ttl = $sale_to - $now ;
}
if ( $ttl && $ttl < apply_filters( 'litespeed_control_ttl', 0 ) ) {
do_action( 'litespeed_control_set_ttl', $ttl, "WooCommerce set scheduled TTL to $ttl" ) ;
}
if ( function_exists( 'is_shop' ) && is_shop() ) {
do_action( 'litespeed_tag_add', self::CACHETAG_SHOP );
}
if ( function_exists( 'is_product_taxonomy' ) && ! is_product_taxonomy() ) {
return ;
}
if ( isset($GLOBALS['product_cat']) ) {
$term = get_term_by('slug', $GLOBALS['product_cat'], 'product_cat') ;
}
elseif ( isset($GLOBALS['product_tag']) ) {
$term = get_term_by('slug', $GLOBALS['product_tag'], 'product_tag') ;
}
else {
$term = false ;
}
if ( $term === false ) {
return ;
}
while ( isset($term) ) {
do_action( 'litespeed_tag_add', self::CACHETAG_TERM . $term->term_id );
if ( $term->parent == 0 ) {
break ;
}
$term = get_term($term->parent) ;
}
}
/**
* Check if the page is cacheable according to WooCommerce.
*
* @since 1.0.5
* @since 1.6.3 Removed static
* @access public
* @param string $esi_id The ESI block id if a request is an ESI request.
* @return boolean True if cacheable, false if not.
*/
public function set_control($esi_id)
{
if ( ! apply_filters( 'litespeed_control_cacheable', false ) ) {
return;
}
/**
* Avoid possible 500 issue
* @since 1.6.2.1
*/
if ( ! function_exists( 'WC' ) ) {
return ;
}
$woocom = WC() ;
if ( ! isset($woocom) ) {
return ;
}
// Set TTL
if ( function_exists( 'is_shop' ) && is_shop() ) {
if ( apply_filters( 'litespeed_conf', self::O_SHOP_FRONT_TTL ) ) {
do_action( 'litespeed_control_set_ttl', apply_filters( 'litespeed_conf', self::O_CACHE_TTL_FRONTPAGE ) );
}
}
// For later versions, DONOTCACHEPAGE should be set.
// No need to check uri/qs.
if ( version_compare($woocom->version, '1.4.2', '>=') ) {
if ( version_compare( $woocom->version, '3.2.0', '<' ) && defined('DONOTCACHEPAGE') && DONOTCACHEPAGE ) {
do_action( 'litespeed_control_set_nocache', '3rd party woocommerce not cache by constant' );
return ;
}
elseif ( version_compare($woocom->version, '2.1.0', '>=') ) {
$err = false ;
if ( ! function_exists( 'wc_get_page_id' ) ) {
return ;
}
/**
* From woo/inc/class-wc-cache-helper.php:prevent_caching()
* @since 1.4
*/
$page_ids = array_filter( array( wc_get_page_id( 'cart' ), wc_get_page_id( 'checkout' ), wc_get_page_id( 'myaccount' ) ) );
if ( isset( $_GET['download_file'] ) || isset( $_GET['add-to-cart'] ) || is_page( $page_ids ) ) {
$err = 'woo non cacheable pages' ;
}
elseif ( is_null($woocom->cart) ) {
$err = 'null cart' ;
}
elseif ( ! $this->esi_eanbled && $woocom->cart->get_cart_contents_count() !== 0 ) {
if ( $this->cache_cart ) {
do_action( 'litespeed_control_set_private', 'cache cart' );
/**
* no rewrite rule to set no vary, so can't set no_vary otherwise it will always miss as can't match vary
* @since 1.6.6.1
*/
// do_action( 'litespeed_vary_no' );
do_action( 'litespeed_tag_add_private_esi', 'storefront-cart-header' );
}
else {
$err = 'cart is not empty' ;
}
}
elseif ( $esi_id === 'storefront-cart-header' ) {
if ( $this->cache_cart ) {
do_action( 'litespeed_control_set_private', 'cache cart' );
do_action( 'litespeed_vary_no' );
do_action( 'litespeed_tag_add_private_esi', 'storefront-cart-header' );
}
else {
$err = 'ESI cart should be nocache' ;
}
}
elseif ( function_exists( 'wc_notice_count' ) && wc_notice_count() > 0 ) {
$err = 'has wc notice' ;
}
if ( $err ) {
do_action( 'litespeed_control_set_nocache', '3rd party woocommerce not cache due to ' . $err );
return ;
}
}
return ;
}
$uri = esc_url($_SERVER["REQUEST_URI"]) ;
$uri_len = strlen($uri) ;
if ( $uri_len < 5 ) {
return ;
}
if ( in_array($uri, array('cart/', 'checkout/', 'my-account/', 'addons/', 'logout/', 'lost-password/', 'product/')) ) {
do_action( 'litespeed_control_set_nocache', 'uri in cart/account/user pages' );
return ;
}
$qs = sanitize_text_field($_SERVER["QUERY_STRING"]) ;
$qs_len = strlen($qs) ;
if ( ! empty($qs) && $qs_len >= 12 && strpos( $qs, 'add-to-cart=' ) === 0 ) {
do_action( 'litespeed_control_set_nocache', 'qs contains add-to-cart' );
return ;
}
}
/**
* Purge a product page and related pages (based on settings) on checkout.
*
* @since 1.0.9
* @since 1.6.3 Removed static
* @access public
* @param WC_Product $product
*/
public function purge_product($product) {
do_action( 'litespeed_debug', '[3rd] Woo Purge [pid]' . $product->get_id() );
$config = apply_filters( 'litespeed_conf', self::O_UPDATE_INTERVAL ) ;
if ( is_null($config) ) {
$config = self::O_PQS_CS ;
}
if ( $config === self::O_PQS_CQS ) {
$this->backend_purge($product->get_id()) ;
}
elseif ( $config !== self::O_PQS_CS && $product->is_in_stock() ) {
do_action( 'litespeed_debug', '[3rd] Woo No purge needed [option] ' . $config );
return ;
}
elseif ( $config !== self::O_PS_CN && ! $product->is_in_stock() ) {
$this->backend_purge($product->get_id()) ;
}
do_action( 'litespeed_purge_post', $product->get_id() );
// Check if is variation, purge stock too #984479
if ( $product->is_type( 'variation' ) ) {
do_action( 'litespeed_purge_post', $product->get_parent_id() );
}
}
/**
* Delete object-term relationship. If the post is a product and
* the term ids array is not empty, will add purge tags to the deleted
* terms.
*
* @since 1.0.9
* @since 1.6.3 Removed static
* @access public
* @param int $post_id Object ID.
* @param array $term_ids An array of term taxonomy IDs.
*/
public function delete_rel($post_id, $term_ids)
{
if ( ! function_exists( 'wc_get_product' ) ) {
return ;
}
if ( empty($term_ids) || wc_get_product($post_id) === false ) {
return ;
}
foreach ( $term_ids as $term_id ) {
do_action( 'litespeed_purge', self::CACHETAG_TERM . $term_id );
}
}
/**
* Purge a product's categories and tags pages in case they are affected.
*
* @since 1.0.9
* @since 1.6.3 Removed static
* @access public
* @param int $post_id Post id that is about to be purged
*/
public function backend_purge($post_id)
{
if ( ! function_exists( 'wc_get_product' ) ) {
return ;
}
if ( ! isset($post_id) || wc_get_product($post_id) === false ) {
return ;
}
$cats = $this->get_cats($post_id) ;
if ( ! empty($cats) ) {
foreach ( $cats as $cat ) {
do_action( 'litespeed_purge', self::CACHETAG_TERM . $cat );
}
}
if ( ! function_exists( 'wc_get_product_terms' ) ) {
return ;
}
$tags = wc_get_product_terms($post_id, 'product_tag', array('fields' => 'ids')) ;
if ( ! empty($tags) ) {
foreach ( $tags as $tag ) {
do_action( 'litespeed_purge', self::CACHETAG_TERM . $tag );
}
}
}
/**
* When a product has a new review added, purge the recent reviews widget.
*
* @since 1.1.0
* @since 1.6.3 Removed static
* @access public
* @param $unused
* @param integer $comment_approved Whether the comment is approved or not.
* @param array $commentdata Information about the comment.
*/
public function add_review($unused, $comment_approved, $commentdata)
{
if ( ! function_exists( 'wc_get_product' ) ) {
return ;
}
$post_id = $commentdata['comment_post_ID'] ;
if ( $comment_approved !== 1 || ! isset($post_id) || wc_get_product($post_id) === false ) {
return ;
}
global $wp_widget_factory ;
$recent_reviews = $wp_widget_factory->widgets[ 'WC_Widget_Recent_Reviews' ] ;
if ( ! is_null( $recent_reviews ) ) {
do_action( 'litespeed_tag_add_widget', $recent_reviews->id );
}
}
/**
* Append new options
*
* @since 1.6.3 Removed static
* @since 3.0 new API
*/
private function _option_append() {
// Append option save value filter
do_action( 'litespeed_conf_multi_switch', self::O_UPDATE_INTERVAL, 3 ); // This need to be before conf_append
do_action( 'litespeed_conf_append', self::O_UPDATE_INTERVAL, false );
do_action( 'litespeed_conf_append', self::O_SHOP_FRONT_TTL, true );
do_action( 'litespeed_conf_append', self::O_WOO_CACHE_CART, true );
}
/**
* Hooked to `litespeed_settings_tab` action.
* Adds the integration configuration options (currently, to determine purge rules)
*
* @since 1.6.3 Removed static
*/
public function settings_add_tab( $setting_page )
{
if ( $setting_page != 'cache' ) {
return ;
}
require 'woocommerce.tab.tpl.php' ;
}
/**
* Hook to show config content
*
* @since 3.0
*/
public function settings_add_content( $setting_page )
{
if ( $setting_page != 'cache' ) {
return ;
}
require 'woocommerce.content.tpl.php' ;
}
/**
* Helper function to select the function(s) to use to get the product
* category ids.
*
* @since 1.0.10
* @since 1.6.3 Removed static
* @access private
* @param int $product_id The product id
* @return array An array of category ids.
*/
private function get_cats($product_id)
{
if ( ! function_exists( 'WC' ) ) {
return ;
}
$woocom = WC() ;
if ( isset($woocom) && version_compare($woocom->version, '2.5.0', '>=') && function_exists( 'wc_get_product_cat_ids' ) ) {
return wc_get_product_cat_ids($product_id) ;
}
$product_cats = wp_get_post_terms($product_id, 'product_cat', array("fields" => "ids")) ;
foreach ( $product_cats as $product_cat ) {
$product_cats = array_merge($product_cats, get_ancestors($product_cat, 'product_cat')) ;
}
return $product_cats ;
}
/**
* 3rd party prepload
*
* @since 2.9.8.4
*/
public static function preload()
{
/**
* Auto puge for WooCommerce Advanced Bulk Edit plugin,
* Bulk edit hook need to add to preload as it will die before detect.
*/
add_action( 'wp_ajax_wpmelon_adv_bulk_edit', __CLASS__ . '::bulk_edit_purge', 1 ) ;
}
/**
* Auto puge for WooCommerce Advanced Bulk Edit plugin,
*
* @since 2.9.8.4
*/
public static function bulk_edit_purge()
{
if ( empty( $_POST[ 'type' ] ) || $_POST[ 'type' ] != 'saveproducts' || empty( $_POST[ 'data' ] ) ) return ;
/*
* admin-ajax form-data structure
* array(
* "type" => "saveproducts",
* "data" => array(
* "column1" => "464$###0$###2#^#463$###0$###4#^#462$###0$###6#^#",
* "column2" => "464$###0$###2#^#463$###0$###4#^#462$###0$###6#^#"
* )
* )
*/
$stock_string_arr = array() ;
foreach ( $_POST[ 'data' ] as $stock_value ) {
$stock_string_arr = array_merge( $stock_string_arr, explode( '#^#', $stock_value ) ) ;
}
$lscwp_3rd_woocommerce = new self() ;
if ( count( $stock_string_arr ) < 1 ) {
return ;
}
foreach ( $stock_string_arr as $edited_stock ) {
$product_id = strtok( $edited_stock, '$' );
$product = wc_get_product( $product_id ) ;
if ( empty( $product ) ) {
do_action( 'litespeed_debug', '3rd woo purge: ' . $product_id . ' not found.' ) ;
continue ;
}
$lscwp_3rd_woocommerce->purge_product( $product );
}
}
}