2013-04-09 09:38:40 +00:00
< ? php
/**
* WC_Cache_Helper class .
*
2018-02-26 19:18:38 +00:00
* @ package WooCommerce / Classes
2013-04-09 09:38:40 +00:00
*/
2017-11-08 14:54:13 +00:00
2018-02-26 19:18:38 +00:00
defined ( 'ABSPATH' ) || exit ;
2017-11-08 14:54:13 +00:00
/**
* WC_Cache_Helper .
*/
2013-04-09 09:38:40 +00:00
class WC_Cache_Helper {
/**
2015-11-03 13:31:20 +00:00
* Hook in methods .
2013-04-09 09:38:40 +00:00
*/
2014-05-28 13:52:50 +00:00
public static function init () {
2015-06-22 13:55:15 +00:00
add_action ( 'template_redirect' , array ( __CLASS__ , 'geolocation_ajax_redirect' ) );
2014-05-28 13:52:50 +00:00
add_action ( 'admin_notices' , array ( __CLASS__ , 'notices' ) );
2015-07-15 14:12:52 +00:00
add_action ( 'delete_version_transients' , array ( __CLASS__ , 'delete_version_transients' ) );
2017-11-08 14:54:13 +00:00
add_action ( 'wp' , array ( __CLASS__ , 'prevent_caching' ) );
2018-02-28 18:35:58 +00:00
add_action ( 'clean_term_cache' , array ( __CLASS__ , 'clean_term_cache' ), 10 , 2 );
2018-03-13 19:00:08 +00:00
add_action ( 'edit_terms' , array ( __CLASS__ , 'clean_term_cache' ), 10 , 2 );
2013-04-09 09:38:40 +00:00
}
2015-11-13 23:06:38 +00:00
/**
* Get prefix for use with wp_cache_set . Allows all cache in a group to be invalidated at once .
2017-11-08 14:54:13 +00:00
*
* @ param string $group Group of cache to get .
2015-11-13 23:06:38 +00:00
* @ return string
*/
public static function get_cache_prefix ( $group ) {
2017-11-08 14:54:13 +00:00
// Get cache key - uses cache key wc_orders_cache_prefix to invalidate when needed.
2015-11-13 23:06:38 +00:00
$prefix = wp_cache_get ( 'wc_' . $group . '_cache_prefix' , $group );
if ( false === $prefix ) {
$prefix = 1 ;
wp_cache_set ( 'wc_' . $group . '_cache_prefix' , $prefix , $group );
}
return 'wc_cache_' . $prefix . '_' ;
}
/**
* Increment group cache prefix ( invalidates cache ) .
2017-11-08 14:54:13 +00:00
*
* @ param string $group Group of cache to clear .
2015-11-13 23:06:38 +00:00
*/
public static function incr_cache_prefix ( $group ) {
wp_cache_incr ( 'wc_' . $group . '_cache_prefix' , 1 , $group );
}
2015-06-22 13:55:15 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get a hash of the customer location .
2017-11-08 14:54:13 +00:00
*
2015-06-22 13:55:15 +00:00
* @ return string
*/
public static function geolocation_ajax_get_location_hash () {
2016-11-14 18:18:08 +00:00
$customer = new WC_Customer ( 0 , true );
2015-06-22 13:55:15 +00:00
$location = array ();
2016-03-17 19:39:29 +00:00
$location [ 'country' ] = $customer -> get_billing_country ();
$location [ 'state' ] = $customer -> get_billing_state ();
$location [ 'postcode' ] = $customer -> get_billing_postcode ();
$location [ 'city' ] = $customer -> get_billing_city ();
2015-06-22 13:55:15 +00:00
return substr ( md5 ( implode ( '' , $location ) ), 0 , 12 );
}
2017-11-08 14:27:30 +00:00
/**
* Prevent caching on certain pages
*/
2017-11-08 14:54:13 +00:00
public static function prevent_caching () {
2017-11-08 14:27:30 +00:00
if ( ! is_blog_installed () ) {
return ;
}
$page_ids = array_filter ( array ( wc_get_page_id ( 'cart' ), wc_get_page_id ( 'checkout' ), wc_get_page_id ( 'myaccount' ) ) );
2017-11-08 15:07:00 +00:00
2017-11-08 14:27:30 +00:00
if ( is_page ( $page_ids ) ) {
2017-11-08 15:07:00 +00:00
self :: set_nocache_constants ();
nocache_headers ();
2017-11-08 14:27:30 +00:00
}
}
2015-06-22 13:55:15 +00:00
/**
* When using geolocation via ajax , to bust cache , redirect if the location hash does not equal the querystring .
*
* This prevents caching of the wrong data for this request .
*/
public static function geolocation_ajax_redirect () {
2017-11-08 14:54:13 +00:00
if ( 'geolocation_ajax' === get_option ( 'woocommerce_default_customer_address' ) && ! is_checkout () && ! is_cart () && ! is_account_page () && ! is_ajax () && empty ( $_POST ) ) { // WPCS: CSRF ok, input var ok.
2015-06-22 13:55:15 +00:00
$location_hash = self :: geolocation_ajax_get_location_hash ();
2018-02-26 19:18:38 +00:00
$current_hash = isset ( $_GET [ 'v' ] ) ? wc_clean ( wp_unslash ( $_GET [ 'v' ] ) ) : '' ; // WPCS: sanitization ok, input var ok, CSRF ok.
2015-06-22 13:55:15 +00:00
if ( empty ( $current_hash ) || $current_hash !== $location_hash ) {
global $wp ;
2015-06-22 14:30:42 +00:00
$redirect_url = trailingslashit ( home_url ( $wp -> request ) );
2017-11-08 14:54:13 +00:00
if ( ! empty ( $_SERVER [ 'QUERY_STRING' ] ) ) { // WPCS: Input var ok.
$redirect_url = add_query_arg ( wp_unslash ( $_SERVER [ 'QUERY_STRING' ] ), '' , $redirect_url ); // WPCS: sanitization ok, Input var ok.
2015-09-07 15:58:05 +00:00
}
2015-06-22 14:30:42 +00:00
if ( ! get_option ( 'permalink_structure' ) ) {
$redirect_url = add_query_arg ( $wp -> query_string , '' , $redirect_url );
}
$redirect_url = add_query_arg ( 'v' , $location_hash , remove_query_arg ( 'v' , $redirect_url ) );
wp_safe_redirect ( esc_url_raw ( $redirect_url ), 307 );
2015-06-22 13:55:15 +00:00
exit ;
}
}
}
2014-07-03 11:59:54 +00:00
/**
2015-11-03 13:31:20 +00:00
* Get transient version .
2014-07-03 11:59:54 +00:00
*
2018-01-18 18:50:27 +00:00
* When using transients with unpredictable names , e . g . those containing an md5
2014-09-20 18:44:22 +00:00
* hash in the name , we need a way to invalidate them all at once .
2014-07-03 11:59:54 +00:00
*
2018-01-18 18:50:27 +00:00
* When using default WP transients we ' re able to do this with a DB query to
2014-07-03 11:59:54 +00:00
* delete transients manually .
*
2018-01-18 18:50:27 +00:00
* With external cache however , this isn ' t possible . Instead , this function is used
* to append a unique string ( based on time ()) to each transient . When transients
2014-07-03 11:59:54 +00:00
* are invalidated , the transient version will increment and data will be regenerated .
*
2016-09-28 10:17:40 +00:00
* Raised in issue https :// github . com / woocommerce / woocommerce / issues / 5777.
2015-11-03 13:31:20 +00:00
* Adapted from ideas in http :// tollmanz . com / invalidation - schemes /.
2014-09-20 18:44:22 +00:00
*
2017-11-08 14:54:13 +00:00
* @ param string $group Name for the group of transients we need to invalidate .
* @ param boolean $refresh true to force a new version .
* @ return string transient version based on time (), 10 digits .
2014-07-03 11:59:54 +00:00
*/
public static function get_transient_version ( $group , $refresh = false ) {
$transient_name = $group . '-transient-version' ;
2014-07-03 12:02:19 +00:00
$transient_value = get_transient ( $transient_name );
2018-06-15 12:56:23 +00:00
$transient_value = strval ( $transient_value ? $transient_value : '' );
2014-07-03 11:59:54 +00:00
2018-06-15 12:56:23 +00:00
if ( '' === $transient_value || true === $refresh ) {
$old_transient_value = $transient_value ;
$transient_value = ( string ) time ();
2018-02-26 19:18:38 +00:00
2018-06-15 12:56:23 +00:00
if ( $old_transient_value === $transient_value ) {
// Time did not change but transient needs flushing now.
self :: delete_version_transients ( $transient_value );
} else {
self :: queue_delete_version_transients ( $transient_value );
}
2018-02-26 19:18:38 +00:00
set_transient ( $transient_name , $transient_value );
2014-07-03 11:59:54 +00:00
}
return $transient_value ;
}
2018-06-14 13:40:08 +00:00
/**
* Queues a cleanup event for version transients .
*
* @ param string $version Version of the transient to remove .
*/
2018-06-14 15:35:34 +00:00
protected static function queue_delete_version_transients ( $version = '' ) {
2018-06-14 13:40:08 +00:00
if ( ! wp_using_ext_object_cache () && ! empty ( $version ) ) {
wp_schedule_single_event ( time () + 30 , 'delete_version_transients' , array ( $version ) );
}
}
2015-05-25 00:48:17 +00:00
/**
* When the transient version increases , this is used to remove all past transients to avoid filling the DB .
*
* Note ; this only works on transients appended with the transient version , and when object caching is not being used .
*
* @ since 2.3 . 10
2017-11-08 14:54:13 +00:00
* @ param string $version Version of the transient to remove .
2015-05-25 00:48:17 +00:00
*/
2015-07-15 14:12:52 +00:00
public static function delete_version_transients ( $version = '' ) {
2015-05-27 14:56:42 +00:00
if ( ! wp_using_ext_object_cache () && ! empty ( $version ) ) {
2015-05-25 00:48:17 +00:00
global $wpdb ;
2015-07-15 14:12:52 +00:00
2018-05-01 12:26:57 +00:00
$limit = apply_filters ( 'woocommerce_delete_version_transients_limit' , 1000 );
if ( ! $limit ) {
return ;
}
2017-11-08 14:54:13 +00:00
$affected = $wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> options } WHERE option_name LIKE %s ORDER BY option_id LIMIT %d; " , '\_transient\_%' . $version , $limit ) ); // WPCS: cache ok, db call ok.
2015-07-15 14:12:52 +00:00
2018-06-14 13:40:08 +00:00
// If affected rows is equal to limit, there are more rows to delete. Delete in 30 secs.
2018-05-01 12:26:57 +00:00
if ( $affected === $limit ) {
2018-06-14 13:40:08 +00:00
self :: queue_delete_version_transients ( $version );
2015-07-15 14:12:52 +00:00
}
2015-05-25 00:48:17 +00:00
}
}
2013-04-09 09:38:40 +00:00
/**
2017-11-08 15:07:00 +00:00
* Set constants to prevent caching by some plugins .
*
* @ param mixed $return Value to return . Previously hooked into a filter .
* @ return mixed
2013-04-09 09:38:40 +00:00
*/
2017-11-08 15:07:00 +00:00
public static function set_nocache_constants ( $return = true ) {
2017-09-05 19:52:39 +00:00
wc_maybe_define_constant ( 'DONOTCACHEPAGE' , true );
wc_maybe_define_constant ( 'DONOTCACHEOBJECT' , true );
wc_maybe_define_constant ( 'DONOTCACHEDB' , true );
2017-11-08 15:07:00 +00:00
return $return ;
2013-04-09 09:38:40 +00:00
}
/**
2017-11-08 14:54:13 +00:00
* Notices function .
2013-04-09 09:38:40 +00:00
*/
2014-05-28 13:52:50 +00:00
public static function notices () {
if ( ! function_exists ( 'w3tc_pgcache_flush' ) || ! function_exists ( 'w3_instance' ) ) {
2013-04-09 09:38:40 +00:00
return ;
2014-05-28 13:52:50 +00:00
}
2013-04-09 09:38:40 +00:00
2016-09-02 01:51:31 +00:00
$config = w3_instance ( 'W3_Config' );
2013-04-09 09:38:40 +00:00
$enabled = $config -> get_integer ( 'dbcache.enabled' );
2014-10-21 20:24:55 +00:00
$settings = array_map ( 'trim' , $config -> get_array ( 'dbcache.reject.sql' ) );
2013-04-09 09:38:40 +00:00
2017-11-08 14:54:13 +00:00
if ( $enabled && ! in_array ( '_wc_session_' , $settings , true ) ) {
2013-04-09 09:38:40 +00:00
?>
< div class = " error " >
2018-02-26 19:18:38 +00:00
< p >
< ? php
/* translators: 1: key 2: URL */
echo wp_kses_post ( sprintf ( __ ( 'In order for <strong>database caching</strong> to work with WooCommerce you must add %1$s to the "Ignored Query Strings" option in <a href="%2$s">W3 Total Cache settings</a>.' , 'woocommerce' ), '<code>_wc_session_</code>' , esc_url ( admin_url ( 'admin.php?page=w3tc_dbcache' ) ) ) );
?>
</ p >
2013-04-09 09:38:40 +00:00
</ div >
< ? php
}
}
2018-02-26 19:15:42 +00:00
/**
* Clean term caches added by WooCommerce .
*
* @ since 3.3 . 4
2018-03-13 19:00:08 +00:00
* @ param array | int $ids Array of ids or single ID to clear cache for .
* @ param string $taxonomy Taxonomy name .
2018-02-28 18:35:58 +00:00
*/
public static function clean_term_cache ( $ids , $taxonomy ) {
if ( 'product_cat' === $taxonomy ) {
2018-03-13 19:00:08 +00:00
$ids = is_array ( $ids ) ? $ids : array ( $ids );
2018-05-30 12:29:44 +00:00
$clear_ids = array ( 0 );
2018-03-25 18:28:14 +00:00
2018-03-13 19:00:08 +00:00
foreach ( $ids as $id ) {
$clear_ids [] = $id ;
$clear_ids = array_merge ( $clear_ids , get_ancestors ( $id , 'product_cat' , 'taxonomy' ) );
}
$clear_ids = array_unique ( $clear_ids );
foreach ( $clear_ids as $id ) {
wp_cache_delete ( 'product-category-hierarchy-' . $id , 'product_cat' );
}
2018-02-28 18:35:58 +00:00
}
}
2013-04-09 09:38:40 +00:00
}
2014-05-28 13:52:50 +00:00
WC_Cache_Helper :: init ();