AdditionalPayments.php
1 year ago
Appearance.php
2 years ago
CustomizeStore.php
5 months ago
ExperimentalShippingRecommendation.php
5 months ago
ExtendStore.php
1 year ago
GetMobileApp.php
3 years ago
LaunchYourStore.php
2 years ago
Marketing.php
7 months ago
Payments.php
10 months ago
Products.php
1 month ago
ReviewShippingOptions.php
3 years ago
Shipping.php
3 months ago
StoreCreation.php
4 years ago
StoreDetails.php
3 years ago
Tax.php
1 year ago
TourInAppMarketplace.php
2 years ago
WooCommercePayments.php
5 months ago
Shipping.php
185 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks; |
| 4 | |
| 5 | use Automattic\WooCommerce\Admin\Features\Features; |
| 6 | use Automattic\WooCommerce\Internal\Admin\Onboarding\OnboardingProfile; |
| 7 | use Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task; |
| 8 | use WC_Data_Store; |
| 9 | |
| 10 | /** |
| 11 | * Shipping Task |
| 12 | */ |
| 13 | class Shipping extends Task { |
| 14 | |
| 15 | const ZONE_COUNT_TRANSIENT_NAME = 'woocommerce_shipping_task_zone_count_transient'; |
| 16 | |
| 17 | /** |
| 18 | * Constructor |
| 19 | * |
| 20 | * @param TaskList $task_list Parent task list. |
| 21 | */ |
| 22 | public function __construct( $task_list = null ) { |
| 23 | parent::__construct( $task_list ); |
| 24 | // wp_ajax_woocommerce_shipping_zone_methods_save_changes |
| 25 | // and wp_ajax_woocommerce_shipping_zones_save_changes get fired |
| 26 | // when a new zone is added or an existing one has been changed. |
| 27 | add_action( 'wp_ajax_woocommerce_shipping_zones_save_changes', array( __CLASS__, 'delete_zone_count_transient' ), 9 ); |
| 28 | add_action( 'wp_ajax_woocommerce_shipping_zone_methods_save_changes', array( __CLASS__, 'delete_zone_count_transient' ), 9 ); |
| 29 | add_action( 'woocommerce_shipping_zone_method_added', array( __CLASS__, 'delete_zone_count_transient' ), 9 ); |
| 30 | add_action( 'woocommerce_after_shipping_zone_object_save', array( __CLASS__, 'delete_zone_count_transient' ), 9 ); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * ID. |
| 35 | * |
| 36 | * @return string |
| 37 | */ |
| 38 | public function get_id() { |
| 39 | return 'shipping'; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Title. |
| 44 | * |
| 45 | * @return string |
| 46 | */ |
| 47 | public function get_title() { |
| 48 | return __( 'Select your shipping options', 'woocommerce' ); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Content. |
| 53 | * |
| 54 | * @return string |
| 55 | */ |
| 56 | public function get_content() { |
| 57 | return __( |
| 58 | "Set your store location and where you'll ship to.", |
| 59 | 'woocommerce' |
| 60 | ); |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Time. |
| 65 | * |
| 66 | * @return string |
| 67 | */ |
| 68 | public function get_time() { |
| 69 | return __( '1 minute', 'woocommerce' ); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Task completion. |
| 74 | * |
| 75 | * @return bool |
| 76 | */ |
| 77 | public function is_complete() { |
| 78 | return self::has_shipping_zones(); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Task visibility. |
| 83 | * |
| 84 | * @return bool |
| 85 | */ |
| 86 | public function can_view() { |
| 87 | if ( Features::is_enabled( 'shipping-smart-defaults' ) ) { |
| 88 | if ( 'yes' === get_option( 'woocommerce_admin_created_default_shipping_zones' ) ) { |
| 89 | // If the user has already created a default shipping zone, we don't need to show the task. |
| 90 | return false; |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Do not display the task when: |
| 95 | * - The store sells digital products only |
| 96 | * Display the task when: |
| 97 | * - We don't know where the store's located |
| 98 | * - The store is located in the UK, Australia or Canada |
| 99 | */ |
| 100 | |
| 101 | if ( self::is_selling_digital_type_only() ) { |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | $default_store_country = wc_format_country_state_string( get_option( 'woocommerce_default_country', '' ) )['country']; |
| 106 | |
| 107 | // Check if a store address is set so that we don't default to WooCommerce's default country US. |
| 108 | // Similar logic: https://github.com/woocommerce/woocommerce/blob/059d542394b48468587f252dcb6941c6425cd8d3/plugins/woocommerce-admin/client/profile-wizard/steps/store-details/index.js#L511-L516. |
| 109 | $store_country = ''; |
| 110 | if ( ! empty( get_option( 'woocommerce_store_address', '' ) ) || 'US' !== $default_store_country ) { |
| 111 | $store_country = $default_store_country; |
| 112 | } |
| 113 | |
| 114 | // Unknown country. |
| 115 | if ( empty( $store_country ) ) { |
| 116 | return true; |
| 117 | } |
| 118 | |
| 119 | return in_array( $store_country, array( 'US', 'CA', 'AU', 'NZ', 'SG', 'HK', 'GB', 'ES', 'IT', 'DE', 'FR', 'MX', 'CO', 'CL', 'AR', 'PE', 'BR', 'UY', 'GT', 'NL', 'AT', 'BE', 'IE', 'PT' ), true ); |
| 120 | } |
| 121 | |
| 122 | return self::has_physical_products(); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Action URL. |
| 127 | * |
| 128 | * @return string |
| 129 | */ |
| 130 | public function get_action_url() { |
| 131 | return self::has_shipping_zones() |
| 132 | ? admin_url( 'admin.php?page=wc-settings&tab=shipping' ) |
| 133 | : null; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Check if the store has any shipping zones. |
| 138 | * |
| 139 | * @return bool |
| 140 | */ |
| 141 | public static function has_shipping_zones() { |
| 142 | $zone_count = get_transient( self::ZONE_COUNT_TRANSIENT_NAME ); |
| 143 | if ( false !== $zone_count ) { |
| 144 | return (int) $zone_count > 0; |
| 145 | } |
| 146 | |
| 147 | $zone_count = count( WC_Data_Store::load( 'shipping-zone' )->get_zones() ); |
| 148 | set_transient( self::ZONE_COUNT_TRANSIENT_NAME, $zone_count ); |
| 149 | |
| 150 | return $zone_count > 0; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Check if the store has physical products. |
| 155 | * |
| 156 | * @return bool |
| 157 | */ |
| 158 | public static function has_physical_products() { |
| 159 | $profiler_data = get_option( OnboardingProfile::DATA_OPTION, array() ); |
| 160 | $product_types = isset( $profiler_data['product_types'] ) ? $profiler_data['product_types'] : array(); |
| 161 | |
| 162 | return in_array( 'physical', $product_types, true ); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Delete the zone count transient used in has_shipping_zones() method |
| 167 | * to refresh the cache. |
| 168 | */ |
| 169 | public static function delete_zone_count_transient() { |
| 170 | delete_transient( self::ZONE_COUNT_TRANSIENT_NAME ); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Check if the store sells digital products only. |
| 175 | * |
| 176 | * @return bool |
| 177 | */ |
| 178 | private static function is_selling_digital_type_only() { |
| 179 | $profiler_data = get_option( OnboardingProfile::DATA_OPTION, array() ); |
| 180 | $product_types = isset( $profiler_data['product_types'] ) ? $profiler_data['product_types'] : array(); |
| 181 | |
| 182 | return array( 'downloads' ) === $product_types; |
| 183 | } |
| 184 | } |
| 185 |