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