| @@ -1,549 +1,530 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace Payplug\PayplugWoocommerce\Controller; |
| 4 | 4 | |
| 5 | -use Payplug\Exception\HttpException; | |
| 6 | -use Payplug\Payplug; | |
| 7 | 5 | use Payplug\PayplugWoocommerce\Gateway\PayplugAddressData; |
| 8 | 6 | use Payplug\PayplugWoocommerce\Gateway\PayplugGateway; |
| 9 | 7 | use Payplug\PayplugWoocommerce\Interfaces\PayplugGatewayBuilder; |
| 10 | 8 | use Payplug\PayplugWoocommerce\PayplugWoocommerceHelper; |
| 9 | +use Automattic\WooCommerce\Utilities\OrderUtil; | |
| 10 | + | |
| 11 | + | |
| 12 | +use Payplug\Authentication; | |
| 13 | +use Payplug\Exception\ConfigurationException; | |
| 14 | +use Payplug\Exception\HttpException; | |
| 15 | +use Payplug\Exception\ForbiddenException; | |
| 16 | +use Payplug\Payplug; | |
| 11 | 17 | use Payplug\Resource\Payment as PaymentResource; |
| 12 | 18 | use Payplug\Resource\Refund as RefundResource; |
| 13 | 19 | |
| 14 | 20 | class PayplugGenericGateway extends PayplugGateway implements PayplugGatewayBuilder |
| 15 | 21 | { |
| 16 | - /** | |
| 17 | - * @var string | |
| 18 | - */ | |
| 19 | - public $image; | |
| 20 | 22 | |
| 21 | - /** | |
| 22 | - * @var array | |
| 23 | - */ | |
| 24 | - protected $allowed_country_codes; | |
| 23 | + public function __construct() | |
| 24 | + { | |
| 25 | + parent::__construct(); | |
| 25 | 26 | |
| 26 | - public function __construct() | |
| 27 | - { | |
| 28 | - parent::__construct(); | |
| 29 | - add_action('woocommerce_after_order_itemmeta', [$this, 'hide_wc_refund_button'], 10, 3); | |
| 30 | - } | |
| 27 | + //this is only for PPRo payments | |
| 28 | + add_action('woocommerce_after_order_itemmeta', [$this, 'hide_wc_refund_button']); | |
| 29 | + //TODO:: add requirements here | |
| 31 | 30 | |
| 32 | - /** | |
| 33 | - * Generic code to fetch payment gateway specific image | |
| 34 | - * | |
| 35 | - * @return string | |
| 36 | - */ | |
| 37 | - public function get_icon() | |
| 38 | - { | |
| 31 | + } | |
| 39 | 32 | |
| 40 | - //get object $image | |
| 41 | - $icons = apply_filters('payplug_payment_icons', [ | |
| 42 | - 'payplug' => sprintf('<img src="%s" alt="%s" class="payplug-payment-icon" />', esc_url(PAYPLUG_GATEWAY_PLUGIN_URL . '/assets/images/checkout/' . $this->image), $this->id . ' Icon'), | |
| 43 | - ]); | |
| 33 | + /** | |
| 34 | + * Generic code to fetch payment gateway specific image | |
| 35 | + * @return string | |
| 36 | + */ | |
| 37 | + public function get_icon() | |
| 38 | + { | |
| 44 | 39 | |
| 45 | - $icons_str = ''; | |
| 46 | - foreach ($icons as $icon) { | |
| 47 | - $icons_str .= $icon; | |
| 48 | - } | |
| 40 | + //get object $image | |
| 41 | + $icons = apply_filters('payplug_payment_icons', [ | |
| 42 | + 'payplug' => sprintf('<img src="%s" alt="%s" class="payplug-payment-icon" />', esc_url(PAYPLUG_GATEWAY_PLUGIN_URL . '/assets/images/checkout/' . $this->image), $this->id . " Icon"), | |
| 43 | + ]); | |
| 49 | 44 | |
| 50 | - return $icons_str; | |
| 51 | - } | |
| 45 | + $icons_str = ''; | |
| 46 | + foreach ($icons as $icon) { | |
| 47 | + $icons_str .= $icon; | |
| 48 | + } | |
| 52 | 49 | |
| 53 | - /** | |
| 54 | - * @return void | |
| 55 | - */ | |
| 56 | - public function display_notice(): void | |
| 57 | - { | |
| 58 | - $error_message = 'payplug_' . $this->id . '_unauthorized_message'; ?> | |
| 50 | + return $icons_str; | |
| 51 | + } | |
| 52 | + | |
| 53 | + /** | |
| 54 | + * @return void | |
| 55 | + */ | |
| 56 | + public function display_notice() | |
| 57 | + { | |
| 58 | + $error_message = 'payplug_' . $this->id . '_unauthorized_message'; | |
| 59 | + ?> | |
| 59 | 60 | <div class="notice notice-error is-dismissible"> |
| 60 | - <p><?php echo __($error_message, 'payplug'); ?></p> | |
| 61 | + <p><?php echo __( $error_message, 'payplug' ); ?></p> | |
| 61 | 62 | </div> |
| 62 | 63 | <?php |
| 63 | - } | |
| 64 | + } | |
| 64 | 65 | |
| 65 | - public function checkGateway() | |
| 66 | - { | |
| 67 | - //check if module is enabled | |
| 68 | - if (!isset($this->settings['enabled']) || !$this->settings['enabled']) { | |
| 69 | - return false; | |
| 70 | - } | |
| 66 | + public function checkGateway() | |
| 67 | + { | |
| 71 | 68 | |
| 72 | - // todo: delete this usage to avoid call to getAccount resource each checkout loading | |
| 73 | - $account = PayplugWoocommerceHelper::generic_get_account_data_from_options($this->id); | |
| 74 | - $options = PayplugWoocommerceHelper::get_payplug_options(); | |
| 69 | + //check if module is enabled | |
| 70 | + if(!empty($this->settings['enabled']) && 'no' === $this->settings['enabled']){ | |
| 71 | + return false; | |
| 72 | + } | |
| 75 | 73 | |
| 76 | - if (!$this->check_api_gateway_enable($account)) { | |
| 77 | - return false; | |
| 78 | - } | |
| 74 | + $account = PayplugWoocommerceHelper::generic_get_account_data_from_options( $this->id ); | |
| 79 | 75 | |
| 80 | - if (!isset($options['payment_methods']) || empty($options['payment_methods'])) { | |
| 81 | - return false; | |
| 82 | - } | |
| 76 | + if( !$this->check_api_gateway_enable($account)){ | |
| 77 | + return false; | |
| 78 | + } | |
| 83 | 79 | |
| 84 | - if (!$options['payment_methods']['configuration'][$this->id]['active']) { | |
| 85 | - return false; | |
| 86 | - } | |
| 87 | 80 | |
| 88 | - $is_order_pay = is_wc_endpoint_url('order-pay'); | |
| 89 | - $country_code_billing = null; | |
| 90 | - if (!is_admin() && (!PayplugWoocommerceHelper::is_checkout_block() || $is_order_pay)) { | |
| 91 | - if (empty(WC()->cart) && !is_admin() && !$is_order_pay) { | |
| 92 | - return false; | |
| 93 | - } | |
| 81 | + if(!is_admin()){ | |
| 82 | + if (empty(WC()->cart) && !is_admin()) { | |
| 83 | + return false; | |
| 84 | + } | |
| 94 | 85 | |
| 95 | - //for backend orders | |
| 96 | - if (!empty(get_query_var('order-pay'))) { | |
| 97 | - $order = wc_get_order((int) get_query_var('order-pay')); | |
| 98 | - $items = $order->get_items(); | |
| 99 | - $country_code_billing = $order->get_billing_country(); | |
| 100 | - // Skip cart population for subscription renewals: WC Subscriptions manages the cart | |
| 101 | - // itself and adding items here would cause a double entry in the order summary. | |
| 102 | - $is_renewal = function_exists('wcs_order_contains_renewal') && wcs_order_contains_renewal($order); | |
| 103 | - if (!$is_renewal) { | |
| 104 | - if (is_null(WC()->cart)) { | |
| 105 | - wc_load_cart(); | |
| 106 | - } | |
| 107 | - $this->order_items_to_cart(WC()->cart, $items); | |
| 108 | - } | |
| 109 | - } | |
| 86 | + //for backend orders | |
| 87 | + if (!empty(get_query_var('order-pay'))) { | |
| 88 | + $order = wc_get_order( (int) get_query_var('order-pay')); | |
| 89 | + $items = $order->get_items(); | |
| 90 | + $country_code_shipping = $order->get_shipping_country(); | |
| 91 | + $country_code_billing = $order->get_billing_country(); | |
| 92 | + $this->order_items_to_cart(WC()->cart, $items); | |
| 93 | + } | |
| 110 | 94 | |
| 111 | - $source_before_fallback = $country_code_billing; | |
| 112 | - if (empty($country_code_billing)) { | |
| 113 | - $country_code_billing = method_exists(WC()->customer, 'get_billing_country') ? WC()->customer->get_billing_country() : null; | |
| 114 | - } | |
| 95 | + if ( empty( $country_code_billing ) || empty( $country_code_shipping ) ) { | |
| 96 | + $country_code_shipping = method_exists(WC()->customer, "get_shipping_country") ? WC()->customer->get_shipping_country() : null; | |
| 97 | + $country_code_billing = method_exists(WC()->customer, "get_billing_country") ? WC()->customer->get_billing_country() : null;; | |
| 98 | + } | |
| 115 | 99 | |
| 116 | - $permission_result = $this->check_billing_country_permissions($account, $country_code_billing); | |
| 100 | + if( !$this->check_billing_country_permissions($account, $country_code_billing) ){ | |
| 101 | + return false; | |
| 102 | + } | |
| 103 | + } | |
| 117 | 104 | |
| 118 | - if (!$permission_result) { | |
| 119 | - return false; | |
| 120 | - } | |
| 121 | - } | |
| 105 | + return true; | |
| 106 | + } | |
| 122 | 107 | |
| 123 | - return true; | |
| 124 | - } | |
| 108 | + /** | |
| 109 | + * check if payment is enable and customer has permissions | |
| 110 | + * @param $account | |
| 111 | + * @return bool | |
| 112 | + */ | |
| 113 | + protected function check_api_gateway_enable($account){ | |
| 125 | 114 | |
| 126 | - /** | |
| 127 | - * check if payment is enable and customer has permissions | |
| 128 | - * | |
| 129 | - * @param $account | |
| 130 | - * | |
| 131 | - * @return bool | |
| 132 | - */ | |
| 133 | - protected function check_api_gateway_enable($account) | |
| 134 | - { | |
| 135 | - if ( | |
| 136 | - isset($account['payment_methods']) && | |
| 137 | - empty($account['payment_methods'][$this->id]) && | |
| 138 | - !$account['payment_methods'][$this->id]['enabled'] | |
| 139 | - ) { | |
| 140 | - return false; | |
| 141 | - } | |
| 115 | + if ( | |
| 116 | + isset( $account["payment_methods"] ) && | |
| 117 | + empty( $account["payment_methods"][ $this->id ] ) && | |
| 118 | + !$account["payment_methods"][ $this->id ]['enabled'] | |
| 119 | + ) { | |
| 120 | + return false; | |
| 121 | + } | |
| 142 | 122 | |
| 143 | - return true; | |
| 144 | - } | |
| 145 | 123 | |
| 146 | - /** | |
| 147 | - * Check if billing country can use this payment method | |
| 148 | - * | |
| 149 | - * @param $account | |
| 150 | - * @param $billing_code | |
| 151 | - * | |
| 152 | - * @return bool | |
| 153 | - */ | |
| 154 | - public function check_billing_country_permissions($account, $billing_code) | |
| 155 | - { | |
| 156 | - if (!isset($account['payment_methods'][$this->id]['allowed_countries'])) { | |
| 157 | - return true; | |
| 158 | - } | |
| 124 | + if (! isset( $account['permissions'][ $this->id ] ) || | |
| 125 | + ( isset( $account['permissions'][ $this->id ] ) && !$account['permissions'][ $this->id ] ) | |
| 126 | + ) { | |
| 127 | + return false; | |
| 128 | + } | |
| 159 | 129 | |
| 160 | - $this->allowed_country_codes = $account['payment_methods'][$this->id]['allowed_countries']; | |
| 130 | + return true; | |
| 131 | + } | |
| 161 | 132 | |
| 162 | - if (is_array($this->allowed_country_codes)) { | |
| 163 | - if (in_array('ALL', $this->allowed_country_codes) || empty($this->allowed_country_codes)) { | |
| 164 | - return true; | |
| 165 | - } | |
| 166 | 133 | |
| 167 | - //check if country is allowed | |
| 168 | - if (in_array($billing_code, $this->allowed_country_codes)) { | |
| 169 | - return true; | |
| 170 | - } else { | |
| 171 | - return false; | |
| 172 | - } | |
| 173 | - } | |
| 134 | + /** | |
| 135 | + * Check if billing country can use this payment method | |
| 136 | + * @param $account | |
| 137 | + * @param $billing_code | |
| 138 | + * @return bool | |
| 139 | + */ | |
| 140 | + public function check_billing_country_permissions($account, $billing_code){ | |
| 141 | + $this->allowed_country_codes = !empty($account["payment_methods"][ $this->id ]['allowed_countries']) ? $account["payment_methods"][ $this->id ]['allowed_countries'] : null; | |
| 174 | 142 | |
| 175 | - return false; | |
| 176 | - } | |
| 143 | + if (is_array($this->allowed_country_codes)) { | |
| 144 | + if ( in_array( "ALL", $this->allowed_country_codes) || empty( $this->allowed_country_codes ) ) { | |
| 145 | + return true; | |
| 146 | + } | |
| 177 | 147 | |
| 178 | - /** | |
| 179 | - * if payment was generated by an intend, we shouldn't generate another one and try to pay it, this would generate duplications | |
| 180 | - * | |
| 181 | - * @param $order | |
| 182 | - * | |
| 183 | - * @throws \Exception | |
| 184 | - * | |
| 185 | - * @return array|null | |
| 186 | - */ | |
| 187 | - private function process_standard_intent_payment($order) | |
| 188 | - { | |
| 189 | - $embedded_mode = $this->settings['payment_methods']['configuration']['payplug']['embedded_mode']; | |
| 148 | + //check if country is allowed | |
| 149 | + if ( in_array( $billing_code, $this->allowed_country_codes ) ) { | |
| 150 | + return true; | |
| 190 | 151 | |
| 191 | - // This can run from AJAX endpoints whose own request URL never carries the order-pay | |
| 192 | - // query var, so is_wc_endpoint_url() alone can't detect that context here: fall back | |
| 193 | - // to the order_key/order_pay_key sent by the order-pay AJAX flows. | |
| 194 | - $is_order_pay = $this->is_order_pay_request($order); | |
| 152 | + } else { | |
| 153 | + return false; | |
| 154 | + } | |
| 155 | + } | |
| 195 | 156 | |
| 196 | - if (!$is_order_pay && | |
| 197 | - empty($_POST['payplug_non_blocks']) && | |
| 198 | - PayplugWoocommerceHelper::is_checkout_block() && | |
| 199 | - ( | |
| 200 | - ($this->id === 'payplug' && in_array($embedded_mode, ['integrated', 'popup'])) || | |
| 201 | - ($this->id === 'american_express' && 'popup' == $embedded_mode) | |
| 202 | - ) && | |
| 203 | - !empty($order->get_transaction_id())) { | |
| 204 | - $order_id = PayplugWoocommerceHelper::is_pre_30() ? $order->id : $order->get_id(); | |
| 157 | + return true; | |
| 158 | + } | |
| 205 | 159 | |
| 206 | - try { | |
| 207 | - $payment = $this->payplug_api->payment_retrieve($order->get_transaction_id()); | |
| 208 | - if (ob_get_length() > 0) { | |
| 209 | - ob_clean(); | |
| 210 | - } | |
| 211 | 160 | |
| 212 | - // Save transaction id for the order | |
| 213 | - PayplugWoocommerceHelper::is_pre_30() | |
| 214 | - ? update_post_meta($order_id, '_transaction_id', $payment->id) | |
| 215 | - : $order->set_transaction_id($payment->id); | |
| 161 | + /** | |
| 162 | + * if payment was generated by an intend, we shouldn't generate another one and try to pay it, this would generate duplications | |
| 163 | + * @param $order | |
| 164 | + * @return array|null | |
| 165 | + * @throws \Exception | |
| 166 | + */ | |
| 167 | + private function process_standard_intent_payment($order){ | |
| 216 | 168 | |
| 217 | - if (is_callable([$order, 'save'])) { | |
| 218 | - $order->save(); | |
| 219 | - } | |
| 169 | + if ( !is_wc_endpoint_url('order-pay') && | |
| 170 | + $this->is_checkout_block() && | |
| 171 | + ( | |
| 172 | + ( $this->id === "payplug" && ($this->payment_method === 'integrated'|| $this->payment_method === 'popup') ) || | |
| 173 | + ( $this->id === "american_express" && $this->payment_method === 'popup') | |
| 174 | + ) && | |
| 175 | + !empty($order->get_transaction_id()) ) { | |
| 220 | 176 | |
| 221 | - /** | |
| 222 | - * Fires once a payment has been created. | |
| 223 | - * | |
| 224 | - * @param int $order_id Order ID | |
| 225 | - * @param PaymentResource $payment Payment resource | |
| 226 | - */ | |
| 227 | - \do_action('payplug_gateway_payment_created', $order_id, $payment); | |
| 177 | + $order_id = PayplugWoocommerceHelper::is_pre_30() ? $order->id : $order->get_id(); | |
| 228 | 178 | |
| 229 | - $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 230 | - PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 179 | + try { | |
| 180 | + $payment = $this->api->payment_retrieve($order->get_transaction_id()); | |
| 181 | + if (ob_get_length() > 0) { | |
| 182 | + ob_clean(); | |
| 183 | + } | |
| 231 | 184 | |
| 232 | - PayplugGateway::log(sprintf('Payment intent created for order #%s', $order_id)); | |
| 233 | 185 | |
| 234 | - $return_url = esc_url_raw($order->get_checkout_order_received_url()); | |
| 186 | + // Save transaction id for the order | |
| 187 | + PayplugWoocommerceHelper::is_pre_30() | |
| 188 | + ? update_post_meta($order_id, '_transaction_id', $payment->id) | |
| 189 | + : $order->set_transaction_id($payment->id); | |
| 235 | 190 | |
| 236 | - $result = [ | |
| 237 | - 'payment_id' => $payment->id, | |
| 238 | - 'result' => 'success', | |
| 239 | - 'redirect' => !empty($payment->hosted_payment->payment_url) ? $payment->hosted_payment->payment_url : $return_url, | |
| 240 | - 'cancel' => !empty($payment->hosted_payment->cancel_url) ? $payment->hosted_payment->cancel_url : null, | |
| 241 | - ]; | |
| 191 | + if (is_callable([$order, 'save'])) { | |
| 192 | + $order->save(); | |
| 193 | + } | |
| 242 | 194 | |
| 243 | - // wp_send_json_success() calls die(), which is only safe for the classic | |
| 244 | - // wc-ajax request this was written for: the Store API checkout flow (used by | |
| 245 | - // the checkout block) calls process_payment() through the REST framework, | |
| 246 | - // and killing the process mid-request there produces a broken response. | |
| 247 | - if (wp_doing_ajax()) { | |
| 248 | - wp_send_json_success($result); | |
| 249 | - } | |
| 195 | + /** | |
| 196 | + * Fires once a payment has been created. | |
| 197 | + * | |
| 198 | + * @param int $order_id Order ID | |
| 199 | + * @param PaymentResource $payment Payment resource | |
| 200 | + */ | |
| 201 | + \do_action('payplug_gateway_payment_created', $order_id, $payment); | |
| 250 | 202 | |
| 251 | - return $result; | |
| 252 | - } catch (HttpException $e) { | |
| 253 | - PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 254 | - throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 255 | - } catch (\Exception $e) { | |
| 256 | - PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, $e->getMessage()), 'error'); | |
| 257 | - throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 258 | - } | |
| 259 | - } | |
| 203 | + $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 204 | + PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 260 | 205 | |
| 261 | - return null; | |
| 262 | - } | |
| 206 | + PayplugGateway::log(sprintf('Payment intent created for order #%s', $order_id)); | |
| 263 | 207 | |
| 264 | - public function process_standard_payment($order, $amount, $customer_id) | |
| 265 | - { | |
| 266 | - $intent = $this->process_standard_intent_payment($order); | |
| 267 | - if (!empty($intent)) { | |
| 268 | - return $intent; | |
| 269 | - } | |
| 208 | + $return_url = esc_url_raw($order->get_checkout_order_received_url()); | |
| 270 | 209 | |
| 271 | - $order_id = PayplugWoocommerceHelper::is_pre_30() ? $order->id : $order->get_id(); | |
| 210 | + wp_send_json_success( | |
| 211 | + array( | |
| 212 | + 'payment_id' => $payment->id, | |
| 213 | + 'result' => 'success', | |
| 214 | + 'redirect' => !empty($payment->hosted_payment->payment_url) ? $payment->hosted_payment->payment_url : $return_url, | |
| 215 | + 'cancel' => !empty($payment->hosted_payment->cancel_url) ? $payment->hosted_payment->cancel_url : null | |
| 216 | + ) | |
| 217 | + ); | |
| 272 | 218 | |
| 273 | - try { | |
| 219 | + return array("stt" => "OK"); | |
| 274 | 220 | |
| 275 | - //if there's no auth to process payment | |
| 276 | - if (!$this->checkGateway()) { | |
| 277 | - throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 278 | - } | |
| 221 | + } catch (HttpException $e) { | |
| 222 | + PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 223 | + throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 224 | + } catch (\Exception $e) { | |
| 225 | + PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, $e->getMessage()), 'error'); | |
| 226 | + throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 227 | + } | |
| 228 | + } | |
| 279 | 229 | |
| 280 | - $address_data = PayplugAddressData::from_order($order); | |
| 281 | - $return_url = esc_url_raw($order->get_checkout_order_received_url()); | |
| 230 | + return null; | |
| 231 | + } | |
| 282 | 232 | |
| 283 | - if (!(substr($return_url, 0, 4) === 'http')) { | |
| 284 | - $return_url = get_site_url() . $return_url; | |
| 285 | - } | |
| 286 | - $payment_data = [ | |
| 287 | - 'amount' => $amount, | |
| 288 | - 'currency' => get_woocommerce_currency(), | |
| 289 | - 'payment_method' => $this->id, | |
| 290 | - 'billing' => $address_data->get_billing(), | |
| 291 | - 'shipping' => $address_data->get_shipping(), | |
| 292 | - 'hosted_payment' => [ | |
| 293 | - 'return_url' => $return_url, | |
| 294 | - 'cancel_url' => esc_url_raw($order->get_cancel_order_url_raw()), | |
| 295 | - ], | |
| 296 | - 'notification_url' => esc_url_raw(WC()->api_request_url('PayplugGateway')), | |
| 297 | - 'metadata' => [ | |
| 298 | - 'order_id' => $order_id, | |
| 299 | - 'customer_id' => ((int) $customer_id > 0) ? $customer_id : 'guest', | |
| 300 | - 'domain' => $this->limit_length(esc_url_raw(home_url()), 500), | |
| 301 | - ], | |
| 302 | - 'save_card' => false, | |
| 303 | - 'force_3ds' => false, | |
| 304 | - ]; | |
| 305 | - if (!empty($payment_data['billing']['landline_phone_number'])) { | |
| 306 | - $payment_data['billing']['mobile_phone_number'] = $payment_data['billing']['landline_phone_number']; | |
| 307 | - } | |
| 233 | + public function process_standard_payment($order, $amount, $customer_id) | |
| 234 | + { | |
| 308 | 235 | |
| 309 | - if (PayplugWoocommerceHelper::is_checkout_block() && is_checkout()) { | |
| 310 | - $payment_data['metadata']['woocommerce_block'] = 'CHECKOUT'; | |
| 311 | - } elseif (PayplugWoocommerceHelper::is_cart_block() && is_cart()) { | |
| 312 | - $payment_data['metadata']['woocommerce_block'] = 'CART'; | |
| 313 | - } | |
| 314 | - /** | |
| 315 | - * Filter the payment data before it's used | |
| 316 | - * | |
| 317 | - * @param array $payment_data | |
| 318 | - * @param int $order_id | |
| 319 | - * @param array $customer_details | |
| 320 | - * @param PayplugAddressData $address_data | |
| 321 | - */ | |
| 322 | - $payment_data = apply_filters('payplug_gateway_payment_data', $payment_data, $order_id, [], $address_data); | |
| 323 | - $payment = $this->payplug_api->payment_create($payment_data); | |
| 236 | + $intent = $this->process_standard_intent_payment($order); | |
| 237 | + if( !empty($intent) ){ | |
| 238 | + return $intent; | |
| 239 | + } | |
| 324 | 240 | |
| 325 | - // Save transaction id for the order | |
| 326 | - PayplugWoocommerceHelper::is_pre_30() | |
| 327 | - ? update_post_meta($order_id, '_transaction_id', $payment->id) | |
| 328 | - : $order->set_transaction_id($payment->id); | |
| 241 | + $order_id = PayplugWoocommerceHelper::is_pre_30() ? $order->id : $order->get_id(); | |
| 242 | + try { | |
| 329 | 243 | |
| 330 | - $order->set_payment_method($this->id); | |
| 331 | - $order->set_payment_method_title($this->method_title); | |
| 244 | + //if there's no auth to process payment | |
| 245 | + if ( !$this->checkGateway() ){ | |
| 246 | + throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 247 | + } | |
| 332 | 248 | |
| 333 | - if (is_callable([$order, 'save'])) { | |
| 334 | - $order->save(); | |
| 335 | - } | |
| 249 | + $address_data = PayplugAddressData::from_order($order); | |
| 336 | 250 | |
| 337 | - /** | |
| 338 | - * Fires once a payment has been created. | |
| 339 | - * | |
| 340 | - * @param int $order_id Order ID | |
| 341 | - * @param PaymentResource $payment Payment resource | |
| 342 | - */ | |
| 343 | - \do_action('payplug_gateway_payment_created', $order_id, $payment); | |
| 251 | + $return_url = esc_url_raw($order->get_checkout_order_received_url()); | |
| 344 | 252 | |
| 345 | - $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 346 | - PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 253 | + if (!(substr( $return_url, 0, 4 ) === "http")) { | |
| 254 | + $return_url = get_site_url().$return_url; | |
| 255 | + } | |
| 347 | 256 | |
| 348 | - PayplugGateway::log(sprintf('Payment creation complete for order #%s', $order_id)); | |
| 257 | + $payment_data = [ | |
| 258 | + 'amount' => $amount, | |
| 259 | + 'currency' => get_woocommerce_currency(), | |
| 260 | + 'payment_method' => $this->id, | |
| 261 | + 'billing' => $address_data->get_billing(), | |
| 262 | + 'shipping' => $address_data->get_shipping(), | |
| 263 | + 'hosted_payment' => [ | |
| 264 | + 'return_url' => $return_url, | |
| 265 | + 'cancel_url' => esc_url_raw($order->get_cancel_order_url_raw()), | |
| 266 | + ], | |
| 267 | + 'notification_url' => esc_url_raw(WC()->api_request_url('PayplugGateway')), | |
| 268 | + 'metadata' => [ | |
| 269 | + 'order_id' => $order_id, | |
| 270 | + 'customer_id' => ((int) $customer_id > 0) ? $customer_id : 'guest', | |
| 271 | + 'domain' => $this->limit_length(esc_url_raw(home_url()), 500), | |
| 272 | + ], | |
| 273 | + "save_card"=> false, | |
| 274 | + "force_3ds"=> false | |
| 275 | + ]; | |
| 349 | 276 | |
| 350 | - return [ | |
| 351 | - 'result' => 'success', | |
| 352 | - 'redirect' => $payment->hosted_payment->payment_url, | |
| 353 | - 'cancel' => $payment->hosted_payment->cancel_url, | |
| 354 | - ]; | |
| 355 | - } catch (HttpException $e) { | |
| 356 | - PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 357 | - throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 358 | - } catch (\Exception $e) { | |
| 359 | - PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, $e->getMessage()), 'error'); | |
| 360 | - throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 361 | - } | |
| 362 | - } | |
| 277 | + /** | |
| 278 | + * Filter the payment data before it's used | |
| 279 | + * | |
| 280 | + * @param array $payment_data | |
| 281 | + * @param int $order_id | |
| 282 | + * @param array $customer_details | |
| 283 | + * @param PayplugAddressData $address_data | |
| 284 | + */ | |
| 285 | + $payment_data = apply_filters('payplug_gateway_payment_data', $payment_data, $order_id, [], $address_data); | |
| 286 | + $payment = $this->api->payment_create($payment_data); | |
| 363 | 287 | |
| 364 | - /** | |
| 365 | - * Process refund for an order paid with PayPlug gateway. | |
| 366 | - * | |
| 367 | - * @param int $order_id | |
| 368 | - * @param null $amount | |
| 369 | - * @param string $reason | |
| 370 | - * | |
| 371 | - * @return bool|\WP_Error | |
| 372 | - */ | |
| 373 | - public function process_refund($order_id, $amount = null, $reason = '') | |
| 374 | - { | |
| 375 | - PayplugGateway::log(sprintf('Processing refund for order #%s', $order_id)); | |
| 288 | + // Save transaction id for the order | |
| 289 | + PayplugWoocommerceHelper::is_pre_30() | |
| 290 | + ? update_post_meta($order_id, '_transaction_id', $payment->id) | |
| 291 | + : $order->set_transaction_id($payment->id); | |
| 376 | 292 | |
| 377 | - if (!$this->user_logged_in()) { | |
| 378 | - PayplugGateway::log(__('You must be logged in with your PayPlug account.', 'payplug'), 'error'); | |
| 293 | + if (is_callable([$order, 'save'])) { | |
| 294 | + $order->save(); | |
| 295 | + } | |
| 379 | 296 | |
| 380 | - return new \WP_Error('process_refund_error', __('You must be logged in with your PayPlug account.', 'payplug')); | |
| 381 | - } | |
| 297 | + /** | |
| 298 | + * Fires once a payment has been created. | |
| 299 | + * | |
| 300 | + * @param int $order_id Order ID | |
| 301 | + * @param PaymentResource $payment Payment resource | |
| 302 | + */ | |
| 303 | + \do_action('payplug_gateway_payment_created', $order_id, $payment); | |
| 382 | 304 | |
| 383 | - $order = wc_get_order($order_id); | |
| 384 | - if (!$order instanceof \WC_Order) { | |
| 385 | - PayplugGateway::log(sprintf('The order #%s does not exist.', $order_id), 'error'); | |
| 305 | + $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 306 | + PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 386 | 307 | |
| 387 | - return new \WP_Error('process_refund_error', sprintf(__('The order %s does not exist.', 'payplug'), $order_id)); | |
| 388 | - } | |
| 308 | + PayplugGateway::log(sprintf('Payment creation complete for order #%s', $order_id)); | |
| 389 | 309 | |
| 390 | - if ($order->get_status() === 'cancelled') { | |
| 391 | - PayplugGateway::log(sprintf('The order #%s cannot be refund.', $order_id), 'error'); | |
| 310 | + return [ | |
| 311 | + 'result' => 'success', | |
| 312 | + 'redirect' => $payment->hosted_payment->payment_url, | |
| 313 | + 'cancel' => $payment->hosted_payment->cancel_url, | |
| 314 | + ]; | |
| 392 | 315 | |
| 393 | - return new \WP_Error('process_refund_error', sprintf(__('The order %s cannot be refund.', 'payplug'), $order_id)); | |
| 394 | - } | |
| 316 | + } catch (HttpException $e) { | |
| 317 | + PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 318 | + throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 319 | + } catch (\Exception $e) { | |
| 320 | + PayplugGateway::log(sprintf('Error while processing order #%s : %s', $order_id, $e->getMessage()), 'error'); | |
| 321 | + throw new \Exception(__('Payment processing failed. Please retry.', 'payplug')); | |
| 322 | + } | |
| 395 | 323 | |
| 396 | - $transaction_id = PayplugWoocommerceHelper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id(); | |
| 397 | - if (empty($transaction_id)) { | |
| 398 | - PayplugGateway::log(sprintf('The order #%s does not have PayPlug transaction ID associated with it.', $order_id), 'error'); | |
| 324 | + } | |
| 399 | 325 | |
| 400 | - return new \WP_Error('process_refund_error', __('No PayPlug transaction was found for this order. The refund could not be processed.', 'payplug')); | |
| 401 | - } | |
| 326 | + /** | |
| 327 | + * Process refund for an order paid with PayPlug gateway. | |
| 328 | + * | |
| 329 | + * @param int $order_id | |
| 330 | + * @param null $amount | |
| 331 | + * @param string $reason | |
| 332 | + * | |
| 333 | + * @return bool|\WP_Error | |
| 334 | + */ | |
| 335 | + public function process_refund($order_id, $amount = null, $reason = ''){ | |
| 402 | 336 | |
| 403 | - /** | |
| 404 | - * PPRO gateways feature! | |
| 405 | - */ | |
| 406 | - if (isset($this->enable_refund) && $this->enable_refund === false) { | |
| 407 | - PayplugGateway::log(__('payplug_refund_disabled_error', 'payplug'), 'error'); | |
| 337 | + PayplugGateway::log(sprintf('Processing refund for order #%s', $order_id)); | |
| 408 | 338 | |
| 409 | - return new \WP_Error('process_refund_error', __('payplug_refund_disabled_error', 'payplug')); | |
| 410 | - } | |
| 339 | + if( !$this->user_logged_in()){ | |
| 340 | + PayplugGateway::log(__('You must be logged in with your PayPlug account.', 'payplug'), 'error'); | |
| 341 | + return new \WP_Error('process_refund_error', __('You must be logged in with your PayPlug account.', 'payplug')); | |
| 342 | + } | |
| 411 | 343 | |
| 412 | - $customer_id = PayplugWoocommerceHelper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); | |
| 413 | - $data = [ | |
| 414 | - 'metadata' => [ | |
| 415 | - 'order_id' => $order_id, | |
| 416 | - 'customer_id' => ((int) $customer_id > 0) ? $customer_id : 'guest', | |
| 417 | - 'refund_from' => 'woocommerce', | |
| 418 | - ], | |
| 419 | - ]; | |
| 344 | + $order = wc_get_order($order_id); | |
| 345 | + if (!$order instanceof \WC_Order) { | |
| 346 | + PayplugGateway::log(sprintf('The order #%s does not exist.', $order_id), 'error'); | |
| 347 | + return new \WP_Error('process_refund_error', sprintf(__('The order %s does not exist.', 'payplug'), $order_id)); | |
| 348 | + } | |
| 420 | 349 | |
| 421 | - if (!is_null($amount)) { | |
| 422 | - $data['amount'] = PayplugWoocommerceHelper::get_payplug_amount($amount); | |
| 423 | - } | |
| 350 | + if ($order->get_status() === "cancelled") { | |
| 351 | + PayplugGateway::log(sprintf('The order #%s cannot be refund.', $order_id), 'error'); | |
| 352 | + return new \WP_Error('process_refund_error', sprintf(__('The order %s cannot be refund.', 'payplug'), $order_id)); | |
| 353 | + } | |
| 424 | 354 | |
| 425 | - if (!empty($reason)) { | |
| 426 | - $data['metadata']['reason'] = $reason; | |
| 427 | - } | |
| 355 | + $transaction_id = PayplugWoocommerceHelper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id(); | |
| 356 | + if (empty($transaction_id)) { | |
| 357 | + PayplugGateway::log(sprintf('The order #%s does not have PayPlug transaction ID associated with it.', $order_id), 'error'); | |
| 358 | + return new \WP_Error('process_refund_error', __('No PayPlug transaction was found for this order. The refund could not be processed.', 'payplug')); | |
| 359 | + } | |
| 428 | 360 | |
| 429 | - /** | |
| 430 | - * Filter the refund data before it's used. | |
| 431 | - * | |
| 432 | - * @param array $data | |
| 433 | - * @param int $order_id | |
| 434 | - * @param string $transaction_id | |
| 435 | - */ | |
| 436 | - $data = apply_filters('payplug_gateway_refund_data', $data, $order_id, $transaction_id); | |
| 361 | + /** | |
| 362 | + * PPRO gateways feature! | |
| 363 | + */ | |
| 364 | + if( isset($this->enable_refund) && $this->enable_refund === false){ | |
| 365 | + add_action('admin_head', [$this, 'hide_wc_refund_button'] ); | |
| 366 | + PayplugGateway::log(__('payplug_refund_disabled_error', 'payplug'), 'error'); | |
| 367 | + return new \WP_Error('process_refund_error', __('payplug_refund_disabled_error', 'payplug')); | |
| 368 | + } | |
| 437 | 369 | |
| 438 | - try { | |
| 439 | - $refund = $this->payplug_api->refund_create($transaction_id, $data); | |
| 370 | + $customer_id = PayplugWoocommerceHelper::is_pre_30() ? $order->customer_user : $order->get_customer_id(); | |
| 371 | + $data = [ | |
| 372 | + 'metadata' => [ | |
| 373 | + 'order_id' => $order_id, | |
| 374 | + 'customer_id' => ((int) $customer_id > 0) ? $customer_id : 'guest', | |
| 375 | + 'refund_from' => 'woocommerce', | |
| 376 | + ] | |
| 377 | + ]; | |
| 440 | 378 | |
| 441 | - if ($refund->object === 'error') { | |
| 442 | - PayplugGateway::log(__('payplug_ppro_flag_error', 'payplug'), 'error'); | |
| 379 | + if (!is_null($amount)) { | |
| 380 | + $data['amount'] = PayplugWoocommerceHelper::get_payplug_amount($amount); | |
| 381 | + } | |
| 443 | 382 | |
| 444 | - return new \WP_Error('process_refund_error', __('payplug_ppro_flag_error', 'payplug')); | |
| 445 | - } | |
| 383 | + if (!empty($reason)) { | |
| 384 | + $data['metadata']['reason'] = $reason; | |
| 385 | + } | |
| 446 | 386 | |
| 447 | - /** | |
| 448 | - * Fires once a refund has been created. | |
| 449 | - * | |
| 450 | - * @param int $order_id Order ID | |
| 451 | - * @param RefundResource $refund Refund resource | |
| 452 | - * @param string $transaction_id Transaction id | |
| 453 | - */ | |
| 454 | - \do_action('payplug_gateway_refund_created', $order_id, $refund, $transaction_id); | |
| 387 | + /** | |
| 388 | + * Filter the refund data before it's used. | |
| 389 | + * | |
| 390 | + * @param array $data | |
| 391 | + * @param int $order_id | |
| 392 | + * @param string $transaction_id | |
| 393 | + */ | |
| 394 | + $data = apply_filters('payplug_gateway_refund_data', $data, $order_id, $transaction_id); | |
| 455 | 395 | |
| 456 | - $refund_meta_key = sprintf('_pr_%s', wc_clean($refund->id)); | |
| 457 | - if (PayplugWoocommerceHelper::is_pre_30()) { | |
| 458 | - update_post_meta($order_id, $refund_meta_key, $refund->id); | |
| 459 | - } else { | |
| 460 | - $order->add_meta_data($refund_meta_key, $refund->id, true); | |
| 461 | - $order->save(); | |
| 462 | - } | |
| 396 | + try { | |
| 397 | + $refund = $this->api->refund_create($transaction_id, $data); | |
| 463 | 398 | |
| 464 | - $note = sprintf(__('Refund %s : Refunded %s', 'payplug'), wc_clean($refund->id), wc_price(((int) $refund->amount) / 100)); | |
| 465 | - if (!empty($refund->metadata['reason'])) { | |
| 466 | - $note .= sprintf(' (%s)', esc_html($refund->metadata['reason'])); | |
| 467 | - } | |
| 468 | - $order->add_order_note($note); | |
| 399 | + /** | |
| 400 | + * Fires once a refund has been created. | |
| 401 | + * | |
| 402 | + * @param int $order_id Order ID | |
| 403 | + * @param RefundResource $refund Refund resource | |
| 404 | + * @param string $transaction_id Transaction id | |
| 405 | + */ | |
| 406 | + \do_action('payplug_gateway_refund_created', $order_id, $refund, $transaction_id); | |
| 469 | 407 | |
| 470 | - try { | |
| 471 | - $payment = $this->payplug_api->payment_retrieve($transaction_id); | |
| 472 | - $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 473 | - PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 474 | - } catch (\Exception $e) { | |
| 475 | - } | |
| 408 | + $refund_meta_key = sprintf('_pr_%s', wc_clean($refund->id)); | |
| 409 | + if (PayplugWoocommerceHelper::is_pre_30()) { | |
| 410 | + update_post_meta($order_id, $refund_meta_key, $refund->id); | |
| 411 | + } else { | |
| 412 | + $order->add_meta_data($refund_meta_key, $refund->id, true); | |
| 413 | + $order->save(); | |
| 414 | + } | |
| 476 | 415 | |
| 477 | - PayplugGateway::log('Refund process complete for the order.'); | |
| 416 | + $note = sprintf(__('Refund %s : Refunded %s', 'payplug'), wc_clean($refund->id), wc_price(((int) $refund->amount) / 100)); | |
| 417 | + if (!empty($refund->metadata['reason'])) { | |
| 418 | + $note .= sprintf(' (%s)', esc_html($refund->metadata['reason'])); | |
| 419 | + } | |
| 420 | + $order->add_order_note($note); | |
| 478 | 421 | |
| 479 | - return true; | |
| 480 | - } catch (HttpException $e) { | |
| 481 | - PayplugGateway::log(sprintf('Refund request error for the order %s from PayPlug API : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 422 | + try { | |
| 423 | + $payment = $this->api->payment_retrieve($transaction_id); | |
| 424 | + $metadata = PayplugWoocommerceHelper::extract_transaction_metadata($payment); | |
| 425 | + PayplugWoocommerceHelper::save_transaction_metadata($order, $metadata); | |
| 426 | + } catch (\Exception $e) { | |
| 427 | + } | |
| 482 | 428 | |
| 483 | - return new \WP_Error('process_refund_error', __('The transaction could not be refunded. Please try again.', 'payplug')); | |
| 484 | - } catch (\Exception $e) { | |
| 485 | - PayplugGateway::log(sprintf('Refund request error for the order %s : %s', $order_id, wc_clean($e->getMessage())), 'error'); | |
| 429 | + PayplugGateway::log('Refund process complete for the order.'); | |
| 486 | 430 | |
| 487 | - return new \WP_Error('process_refund_error', __('The transaction could not be refunded. Please try again.', 'payplug')); | |
| 488 | - } | |
| 489 | - } | |
| 431 | + return true; | |
| 432 | + } catch (HttpException $e) { | |
| 433 | + PayplugGateway::log(sprintf('Refund request error for the order %s from PayPlug API : %s', $order_id, wc_print_r($e->getErrorObject(), true)), 'error'); | |
| 490 | 434 | |
| 491 | - /** | |
| 492 | - * Avoid usage of button refund on the BO | |
| 493 | - * | |
| 494 | - * @param int $item_id | |
| 495 | - * @param \WC_Order_Item|null $item | |
| 496 | - * @param mixed $product | |
| 497 | - * | |
| 498 | - * @return false|void | |
| 499 | - */ | |
| 500 | - public function hide_wc_refund_button($item_id, $item = null, $product = null) | |
| 501 | - { | |
| 502 | - if (!$item instanceof \WC_Order_Item) { | |
| 503 | - return false; | |
| 504 | - } | |
| 435 | + return new \WP_Error('process_refund_error', __('The transaction could not be refunded. Please try again.', 'payplug')); | |
| 436 | + } catch (\Exception $e) { | |
| 437 | + PayplugGateway::log(sprintf('Refund request error for the order %s : %s', $order_id, wc_clean($e->getMessage())), 'error'); | |
| 505 | 438 | |
| 506 | - $order = $item->get_order(); | |
| 507 | - if (!$order instanceof \WC_Order) { | |
| 508 | - return false; | |
| 509 | - } | |
| 439 | + return new \WP_Error('process_refund_error', __('The transaction could not be refunded. Please try again.', 'payplug')); | |
| 440 | + } | |
| 510 | 441 | |
| 511 | - if ($order->get_payment_method() === $this->id && isset($this->enable_refund) && $this->enable_refund === false) { | |
| 512 | - ?> | |
| 442 | + | |
| 443 | + | |
| 444 | + } | |
| 445 | + | |
| 446 | + | |
| 447 | + public function hide_wc_refund_button(){ | |
| 448 | + global $post; | |
| 449 | + | |
| 450 | + $payment_methods = ['satispay', 'sofort', 'ideal', 'mybank']; | |
| 451 | + | |
| 452 | + if ( class_exists("OrderUtil") && OrderUtil::custom_orders_table_usage_is_enabled() ) { | |
| 453 | + $order_id = !empty($_GET["id"]) ? $_GET["id"] : null; | |
| 454 | + | |
| 455 | + }else{ | |
| 456 | + | |
| 457 | + if(!empty($post->ID)){ | |
| 458 | + $order_id = $post->ID; | |
| 459 | + | |
| 460 | + }else if( !empty($_GET["id"]) ){ | |
| 461 | + $order_id = $_GET["id"]; | |
| 462 | + | |
| 463 | + }else{ | |
| 464 | + $order_id = null; | |
| 465 | + | |
| 466 | + } | |
| 467 | + } | |
| 468 | + | |
| 469 | + if(empty($order_id)){ | |
| 470 | + return false; | |
| 471 | + } | |
| 472 | + | |
| 473 | + $order = new \WC_Order($order_id); | |
| 474 | + if (in_array($order->get_payment_method(), $payment_methods)) { | |
| 475 | + ?> | |
| 513 | 476 | <script> |
| 514 | - jQuery(function () { | |
| 515 | - jQuery('.refund-items').attr("disabled", true); | |
| 516 | - }); | |
| 517 | - </script> | |
| 518 | - <?php | |
| 519 | - } | |
| 520 | - } | |
| 477 | + jQuery(function () { | |
| 478 | + jQuery('.refund-items').attr("disabled", true); | |
| 479 | + }); | |
| 480 | + </script> | |
| 481 | + <?php | |
| 482 | + } | |
| 483 | + } | |
| 521 | 484 | |
| 522 | - /** | |
| 523 | - * refund not possible for PPRO payments | |
| 524 | - * | |
| 525 | - * @return void | |
| 526 | - */ | |
| 527 | - public function refund_not_available($order): void | |
| 528 | - { | |
| 529 | - if ($this->id === $order->get_payment_method() && isset($this->enable_refund) && $this->enable_refund === false) { | |
| 530 | - echo "<p style='color: red;'>" . __('payplug_refund_disabled_error', 'payplug') . '</p>'; | |
| 531 | - } | |
| 532 | - } | |
| 485 | + /** | |
| 486 | + * refund not possible for PPRO payments | |
| 487 | + * | |
| 488 | + * @return void | |
| 489 | + */ | |
| 490 | + public function refund_not_available($order) | |
| 491 | + { | |
| 492 | + if ($this->id === $order->get_payment_method() ) { | |
| 493 | + echo "<p style='color: red;'>" . __('payplug_refund_disabled_error', 'payplug') . "</p>"; | |
| 494 | + } | |
| 495 | + } | |
| 533 | 496 | |
| 534 | - /** | |
| 535 | - * Empty the cart and add all order_items | |
| 536 | - * | |
| 537 | - * @param $cart | |
| 538 | - * @param $items | |
| 539 | - * | |
| 540 | - * @return void | |
| 541 | - */ | |
| 542 | - private function order_items_to_cart($cart, $items): void | |
| 543 | - { | |
| 544 | - $cart->empty_cart(); | |
| 545 | - foreach ($items as $item) { | |
| 546 | - $cart->add_to_cart($item->get_product_id(), $item->get_quantity(), $item->get_variation_id()); | |
| 547 | - } | |
| 548 | - } | |
| 497 | + /** | |
| 498 | + * Empty the cart and add all order_items | |
| 499 | + * | |
| 500 | + * @param $cart | |
| 501 | + * @param $items | |
| 502 | + * @return void | |
| 503 | + */ | |
| 504 | + private function order_items_to_cart($cart, $items){ | |
| 505 | + $cart->empty_cart(); | |
| 506 | + foreach ($items as $item){ | |
| 507 | + $cart->add_to_cart($item->get_product_id(), $item->get_quantity(), $item->get_variation_id()); | |
| 508 | + } | |
| 509 | + } | |
| 510 | + | |
| 511 | + /** | |
| 512 | + * get threshold values for the current payment method | |
| 513 | + * @param $account | |
| 514 | + * @return void | |
| 515 | + */ | |
| 516 | + private function get_thresholds_values($account){ | |
| 517 | + | |
| 518 | + if(!empty($account["payment_methods"][$this->id]['min_amounts']['EUR'])){ | |
| 519 | + $this->min_thresholds = floatval($account["payment_methods"][$this->id]['min_amounts']['EUR']/100); | |
| 520 | + | |
| 521 | + } | |
| 522 | + | |
| 523 | + if(!empty($account["payment_methods"][$this->id]['max_amounts']['EUR'])){ | |
| 524 | + $this->max_thresholds = floatval($account["payment_methods"][$this->id]['max_amounts']['EUR']/100); | |
| 525 | + | |
| 526 | + } | |
| 527 | + | |
| 528 | + } | |
| 529 | + | |
| 549 | 530 | } |