tion ( $pattern ) { if ( ! isset( $pattern['ID'] ) ) { return true; } if ( isset( $pattern['post_type'] ) && 'wp_block' !== $pattern['post_type'] ) { return false; } if ( $this->has_external_dependencies( $pattern ) ) { return false; } return true; } ) ); } /** * Re-fetch the patterns when the WooCommerce plugin is updated. * * @param WP_Upgrader $upgrader_object WP_Upgrader instance. * @param array $options Array of bulk item update data. * * @return void */ public function fetch_patterns_on_plugin_update( $upgrader_object, $options ) { if ( 'update' === $options['action'] && 'plugin' === $options['type'] && isset( $options['plugins'] ) ) { foreach ( $options['plugins'] as $plugin ) { if ( str_contains( $plugin, 'woocommerce.php' ) ) { $this->schedule_fetch_patterns(); } } } } /** * Reset the cached patterns to fetch them again from the PTK. * * @return void */ public function flush_cached_patterns() { delete_transient( self::TRANSIENT_NAME ); } /** * Reset the cached patterns and fetch them again from the PTK API. * * @return void */ public function fetch_patterns() { if ( ! $this->allowed_tracking_is_enabled() ) { return; } $this->flush_cached_patterns(); $patterns = $this->ptk_client->fetch_patterns( array( // This is the site where the patterns are stored. Despite the 'wpcomstaging.com' domain suggesting a staging environment, this URL points to the production environment where stable versions of the patterns are maintained. 'site' => 'wooblockpatterns.wpcomstaging.com', 'categories' => array( '_woo_intro', '_woo_featured_selling', '_woo_about', '_woo_reviews', '_woo_social_media', '_woo_woocommerce', '_dotcom_imported_intro', '_dotcom_imported_about', '_dotcom_imported_services', '_dotcom_imported_reviews', ), ) ); if ( is_wp_error( $patterns ) ) { wc_get_logger()->warning( sprintf( // translators: %s is a generated error message. __( 'Failed to get WooCommerce patterns from the PTK: "%s"', 'woocommerce' ), $patterns->get_error_message() ), ); return; } $patterns = $this->filter_patterns( $patterns ); $patterns = $this->map_categories( $patterns ); set_transient( self::TRANSIENT_NAME, $patterns ); } /** * Check if the user allowed tracking. * * @return bool */ private function allowed_tracking_is_enabled(): bool { return 'yes' === get_option( 'woocommerce_allow_tracking' ); } /** * Change the categories of the patterns to match the ones used in the CYS flow * * @param array $patterns The patterns to map categories for. * @return array The patterns with the categories mapped. */ private function map_categories( array $patterns ) { return array_map( function ( $pattern ) { if ( isset( $pattern['categories'] ) ) { foreach ( $pattern['categories'] as $key => $category ) { if ( isset( $category['slug'] ) && isset( self::CATEGORY_MAPPING[ $key ] ) ) { $new_category = self::CATEGORY_MAPPING[ $key ]; unset( $pattern['categories'][ $key ] ); $pattern['categories'][ $new_category ]['slug'] = $new_category; $pattern['categories'][ $new_category ]['title'] = ucfirst( $new_category ); } } } return $pattern; }, $patterns ); } /** * Check if the pattern has external dependencies. * * @param array $pattern The pattern to check. * * @return bool */ private function has_external_dependencies( $pattern ) { if ( ! isset( $pattern['dependencies'] ) || ! is_array( $pattern['dependencies'] ) ) { return false; } foreach ( $pattern['dependencies'] as $dependency ) { if ( 'woocommerce' !== $dependency ) { return true; } } return false; } }