BlockEditing
3 days ago
Convert
3 days ago
Duplicate
3 days ago
Management
3 days ago
Timestamps
3 days ago
Tracker
3 days ago
views
3 days ago
CommonMethodSettings.php
3 days ago
FreeShippingCalculator.php
3 days ago
FreeShippingThresholdRuleValidator.php
3 days ago
MethodDescription.php
3 days ago
MethodLogo.php
3 days ago
MethodLogoCheckoutBlocksAssets.php
3 days ago
MethodLogoSettingsField.php
3 days ago
MethodSettings.php
3 days ago
MethodTitle.php
3 days ago
RateCalculator.php
3 days ago
RateCalculatorFactory.php
3 days ago
SettingsDisplayPreparer.php
3 days ago
SettingsProcessor.php
3 days ago
SingleMethodSettings.php
3 days ago
MethodDescription.php
212 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Class MethodDescription |
| 4 | * |
| 5 | * @package WPDesk\FS\TableRate\ShippingMethod |
| 6 | */ |
| 7 | |
| 8 | namespace WPDesk\FS\TableRate\ShippingMethod; |
| 9 | |
| 10 | use FSVendor\WPDesk\PluginBuilder\Plugin\Hookable; |
| 11 | use FSVendor\WPDesk\View\Renderer\Renderer; |
| 12 | use WC_Shipping_Rate; |
| 13 | use WC_Shipping_Zones; |
| 14 | use WPDesk\FS\TableRate\ShippingMethodSingle; |
| 15 | use WPDesk_Flexible_Shipping; |
| 16 | |
| 17 | /** |
| 18 | * Can display method description. |
| 19 | */ |
| 20 | class MethodDescription implements Hookable { |
| 21 | |
| 22 | /** |
| 23 | * Renderer. |
| 24 | * |
| 25 | * @var Renderer; |
| 26 | */ |
| 27 | private $renderer; |
| 28 | |
| 29 | /** |
| 30 | * MethodDescription constructor. |
| 31 | * |
| 32 | * @param Renderer $renderer . |
| 33 | */ |
| 34 | public function __construct( Renderer $renderer ) { |
| 35 | $this->renderer = $renderer; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Hooks. |
| 40 | */ |
| 41 | public function hooks() { |
| 42 | add_action( 'woocommerce_after_shipping_rate', [ $this, 'display_description_if_present' ], 10, 2 ); |
| 43 | add_filter( 'woocommerce_package_rates', [ $this, 'add_description_to_rate_if_present' ] ); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * @param WC_Shipping_Rate[] $rates . |
| 48 | * |
| 49 | * @return WC_Shipping_Rate[] |
| 50 | */ |
| 51 | public function add_description_to_rate_if_present( $rates ) { |
| 52 | if ( $this->is_store_api_request() ) { |
| 53 | return $rates; |
| 54 | } |
| 55 | |
| 56 | foreach ( $rates as $rate ) { |
| 57 | if ( ! $rate instanceof WC_Shipping_Rate || ! $this->should_display_method_description( $rate ) ) { |
| 58 | continue; |
| 59 | } |
| 60 | |
| 61 | if ( ! $this->supports_native_rate_description( $rate ) ) { |
| 62 | continue; |
| 63 | } |
| 64 | |
| 65 | if ( '' !== $rate->get_description() ) { |
| 66 | continue; |
| 67 | } |
| 68 | |
| 69 | $description = $this->get_method_description_from_meta_data( $rate ); |
| 70 | |
| 71 | if ( '' === $description ) { |
| 72 | continue; |
| 73 | } |
| 74 | |
| 75 | $rate->set_description( $this->sanitize_method_description_for_rate( $description ) ); |
| 76 | } |
| 77 | |
| 78 | return $rates; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * @param WC_Shipping_Rate $method . |
| 83 | * @param int $index . |
| 84 | */ |
| 85 | public function display_description_if_present( $method, $index ) { |
| 86 | if ( ! $method instanceof WC_Shipping_Rate || ! $this->should_display_method_description( $method ) ) { |
| 87 | return; |
| 88 | } |
| 89 | |
| 90 | $description = $this->get_method_description( $method ); |
| 91 | |
| 92 | if ( '' !== $description ) { |
| 93 | $method_logo_data = $this->get_method_logo_data( $method ); |
| 94 | |
| 95 | // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 96 | echo $this->renderer->render( |
| 97 | 'cart/flexible-shipping/after-shipping-rate', |
| 98 | [ |
| 99 | 'method_description' => $description, |
| 100 | 'method_logo_url' => $method_logo_data['url'], |
| 101 | 'method_logo_alt' => $method_logo_data['alt'], |
| 102 | ] |
| 103 | ); // WPCS: XSS OK. |
| 104 | // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * @param WC_Shipping_Rate $method . |
| 110 | * |
| 111 | * @return string |
| 112 | */ |
| 113 | private function get_method_description( $method ) { |
| 114 | $description = $this->get_method_description_from_meta_data( $method ); |
| 115 | |
| 116 | if ( '' !== $description ) { |
| 117 | return $description; |
| 118 | } |
| 119 | |
| 120 | if ( ! method_exists( $method, 'get_description' ) ) { |
| 121 | return ''; |
| 122 | } |
| 123 | |
| 124 | return $method->get_description(); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * @param WC_Shipping_Rate $method . |
| 129 | * |
| 130 | * @return string |
| 131 | */ |
| 132 | private function get_method_description_from_meta_data( $method ) { |
| 133 | $meta_data = $method->get_meta_data(); |
| 134 | |
| 135 | if ( isset( $meta_data[ RateCalculator::DESCRIPTION_BASE64ENCODED ] ) && ! empty( $meta_data[ RateCalculator::DESCRIPTION_BASE64ENCODED ] ) ) { |
| 136 | // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode |
| 137 | $description = base64_decode( $meta_data[ RateCalculator::DESCRIPTION_BASE64ENCODED ] ); |
| 138 | |
| 139 | if ( $description ) { |
| 140 | return wp_kses_post( $description ); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | if ( isset( $meta_data[ RateCalculator::DESCRIPTION ] ) ) { |
| 145 | return wp_kses_post( $meta_data[ RateCalculator::DESCRIPTION ] ); |
| 146 | } |
| 147 | |
| 148 | return ''; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * @param WC_Shipping_Rate $method . |
| 153 | * |
| 154 | * @return array{url:string,alt:string} |
| 155 | */ |
| 156 | private function get_method_logo_data( $method ) { |
| 157 | $meta_data = $method->get_meta_data(); |
| 158 | |
| 159 | return [ |
| 160 | 'url' => (string) ( $meta_data[ RateCalculator::METHOD_LOGO_URL ] ?? '' ), |
| 161 | 'alt' => (string) ( $meta_data[ RateCalculator::METHOD_LOGO_ALT ] ?? '' ), |
| 162 | ]; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * @param string $description . |
| 167 | * |
| 168 | * @return string |
| 169 | */ |
| 170 | private function sanitize_method_description_for_rate( $description ) { |
| 171 | return trim( wp_strip_all_tags( html_entity_decode( $description, ENT_QUOTES, 'UTF-8' ) ) ); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * @param object $rate . |
| 176 | * |
| 177 | * @return bool |
| 178 | */ |
| 179 | private function supports_native_rate_description( $rate ) { |
| 180 | return method_exists( $rate, 'get_description' ) && method_exists( $rate, 'set_description' ); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * @return bool |
| 185 | */ |
| 186 | private function is_store_api_request() { |
| 187 | if ( ! defined( 'REST_REQUEST' ) || REST_REQUEST !== true ) { |
| 188 | return false; |
| 189 | } |
| 190 | |
| 191 | $request_uri = sanitize_text_field( wp_unslash( $_SERVER['REQUEST_URI'] ?? '' ) ); |
| 192 | |
| 193 | return false !== strpos( $request_uri, '/wc/store/' ); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * @param WC_Shipping_Rate $method . |
| 198 | * |
| 199 | * @return bool |
| 200 | */ |
| 201 | private function should_display_method_description( $method ) { |
| 202 | return in_array( |
| 203 | $method->get_method_id(), |
| 204 | [ |
| 205 | WPDesk_Flexible_Shipping::METHOD_ID, |
| 206 | ShippingMethodSingle::SHIPPING_METHOD_ID, |
| 207 | ], |
| 208 | true |
| 209 | ); |
| 210 | } |
| 211 | } |
| 212 |