PluginProbe
WooCommerce / 11.1.0-rc.2
WooCommerce v11.1.0-rc.2
11.1.0 11.1.0-rc.2 11.1.0-rc.1 11.1.0-beta.2 11.1.0-beta.1 11.0.1 11.0.0 11.0.0-rc.3 11.0.0-rc.2 11.0.0-rc.1 11.0.0-beta.2 11.0.0-beta.1 10.9.4 10.9.3 10.9.2 10.9.1 10.9.0 10.9.0-rc.1 10.9.0-beta.2 10.9.0-beta.1 10.8.1 10.8.0 10.8.0-rc.1 10.8.0-beta.2 10.8.0-beta.1 All 648 releases
woocommerce / src / Internal / Admin / Onboarding / OnboardingProducts.php
OnboardingProducts.php
175 lines 5.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WooCommerce Onboarding Products
4 */
5
6 namespace Automattic\WooCommerce\Internal\Admin\Onboarding;
7
8 use Automattic\WooCommerce\Internal\Admin\Onboarding\OnboardingProfile;
9 use Automattic\WooCommerce\Admin\Loader;
10 use Automattic\WooCommerce\Admin\PluginsHelper;
11
12 /**
13 * Class for handling product types and data around product types.
14 */
15 class OnboardingProducts {
16
17 /**
18 * Name of product data transient.
19 *
20 * @var string
21 */
22 const PRODUCT_DATA_TRANSIENT = 'wc_onboarding_product_data';
23
24 /**
25 * Get a list of allowed product types for the onboarding wizard.
26 *
27 * @return array
28 */
29 public static function get_allowed_product_types() {
30 $products = array(
31 'physical' => array(
32 'label' => __( 'Physical products', 'woocommerce' ),
33 'default' => true,
34 ),
35 'downloads' => array(
36 'label' => __( 'Downloads', 'woocommerce' ),
37 ),
38 'subscriptions' => array(
39 'label' => __( 'Subscriptions', 'woocommerce' ),
40 ),
41 'memberships' => array(
42 'label' => __( 'Memberships', 'woocommerce' ),
43 'product' => 958589,
44 ),
45 'bookings' => array(
46 'label' => __( 'Bookings', 'woocommerce' ),
47 'product' => 390890,
48 ),
49 'product-bundles' => array(
50 'label' => __( 'Bundles', 'woocommerce' ),
51 'product' => 18716,
52 ),
53 'product-add-ons' => array(
54 'label' => __( 'Customizable products', 'woocommerce' ),
55 'product' => 18618,
56 ),
57 );
58 $base_location = wc_get_base_location();
59 $has_cbd_industry = false;
60 if ( 'US' === $base_location['country'] ) {
61 $profile = get_option( OnboardingProfile::DATA_OPTION, array() );
62 if ( ! empty( $profile['industry'] ) ) {
63 $has_cbd_industry = in_array( 'cbd-other-hemp-derived-products', array_column( $profile['industry'], 'slug' ), true );
64 }
65 }
66 if ( 'US' !== $base_location['country'] || $has_cbd_industry ) {
67 $products['subscriptions']['product'] = 27147;
68 }
69
70 return apply_filters( 'woocommerce_admin_onboarding_product_types', $products );
71 }
72
73 /**
74 * Get dynamic product data from API.
75 *
76 * @param array $product_types Array of product types.
77 * @return array
78 */
79 public static function get_product_data( $product_types ) {
80 $locale = get_user_locale();
81 // Transient value is an array of product data keyed by locale.
82 $transient_value = get_transient( self::PRODUCT_DATA_TRANSIENT );
83 $transient_value = is_array( $transient_value ) ? $transient_value : array();
84 $woocommerce_products = $transient_value[ $locale ] ?? false;
85
86 if ( false === $woocommerce_products ) {
87 $woocommerce_products = wp_remote_get(
88 add_query_arg(
89 array(
90 'locale' => $locale,
91 ),
92 'https://woocommerce.com/wp-json/wccom-extensions/1.0/search'
93 ),
94 array(
95 'user-agent' => 'WooCommerce/' . WC()->version . '; ' . get_bloginfo( 'url' ),
96 )
97 );
98 if ( is_wp_error( $woocommerce_products ) ) {
99 return $product_types;
100 }
101 $transient_value[ $locale ] = $woocommerce_products;
102 set_transient( self::PRODUCT_DATA_TRANSIENT, $transient_value, DAY_IN_SECONDS );
103 }
104
105 $data = json_decode( $woocommerce_products['body'] );
106 $products = array();
107 $product_data = array();
108
109 // Map product data by ID.
110 if ( isset( $data ) && isset( $data->products ) ) {
111 foreach ( $data->products as $product_datum ) {
112 if ( isset( $product_datum->id ) ) {
113 $products[ $product_datum->id ] = $product_datum;
114 }
115 }
116 }
117
118 // Loop over product types and append data.
119 foreach ( $product_types as $key => $product_type ) {
120 $product_data[ $key ] = $product_types[ $key ];
121
122 if ( isset( $product_type['product'] ) && isset( $products[ $product_type['product'] ] ) ) {
123 $price = html_entity_decode( $products[ $product_type['product'] ]->price );
124 $yearly_price = (float) str_replace( '$', '', $price );
125
126 $product_data[ $key ]['yearly_price'] = $yearly_price;
127 $product_data[ $key ]['description'] = $products[ $product_type['product'] ]->excerpt;
128 $product_data[ $key ]['more_url'] = $products[ $product_type['product'] ]->link;
129 $product_data[ $key ]['slug'] = strtolower( preg_replace( '~[^\pL\d]+~u', '-', $products[ $product_type['product'] ]->slug ) );
130 }
131 }
132
133 return $product_data;
134 }
135
136 /**
137 * Get the allowed product types with the polled data.
138 *
139 * @return array
140 */
141 public static function get_product_types_with_data() {
142 return self::get_product_data( self::get_allowed_product_types() );
143 }
144
145 /**
146 * Get relevant purchaseable products for the site.
147 *
148 * @return array
149 */
150 public static function get_relevant_products() {
151 $profiler_data = get_option( OnboardingProfile::DATA_OPTION, array() );
152 $installed = PluginsHelper::get_installed_plugin_slugs();
153 $product_types = isset( $profiler_data['product_types'] ) ? $profiler_data['product_types'] : array();
154 $product_data = self::get_product_types_with_data();
155 $purchaseable = array();
156 $remaining = array();
157 foreach ( $product_types as $type ) {
158 if ( ! isset( $product_data[ $type ]['slug'] ) ) {
159 continue;
160 }
161
162 $purchaseable[] = $product_data[ $type ];
163
164 if ( ! in_array( $product_data[ $type ]['slug'], $installed, true ) ) {
165 $remaining[] = $product_data[ $type ]['label'];
166 }
167 }
168
169 return array(
170 'purchaseable' => $purchaseable,
171 'remaining' => $remaining,
172 );
173 }
174 }
175