Skip to content

Commit 3a1df61

Browse files
committed
Revert "[PLUGINS-257: Sec-fetch header is checked to determine whether the request is a user originated operation or not. (#284)"
This reverts commit 742b9b6.
1 parent d5426e7 commit 3a1df61

File tree

3 files changed

+6
-31
lines changed

3 files changed

+6
-31
lines changed

includes/class-omise-callback.php

+6-10
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ public function __construct( $order ) {
2525
}
2626

2727
public static function execute() {
28-
if(RequestHelper::isUserOriginated()) {
29-
return wp_redirect( wc_get_checkout_url() );
30-
}
31-
3228
$order_id = isset( $_GET['order_id'] ) ? sanitize_text_field( $_GET['order_id'] ) : null;
3329

3430
$callback = new self( wc_get_order( $order_id ) );
@@ -71,8 +67,8 @@ public function validate() {
7167
protected function invalid_result() {
7268
$message = __(
7369
'<strong>We cannot validate your payment result:</strong><br/>
74-
Note that your payment may have already been processed.<br/>
75-
Please contact our support team if you have any questions.',
70+
Note that your payment may have already been processed.<br/>
71+
Please contact our support team if you have any questions.',
7672
'omise'
7773
);
7874

@@ -112,7 +108,7 @@ protected function payment_pending() {
112108
// Card authorized case.
113109
$message = __(
114110
'Omise: The payment is being processed.<br/>
115-
An amount %1$s %2$s has been authorized.',
111+
An amount %1$s %2$s has been authorized.',
116112
'omise'
117113
);
118114

@@ -138,8 +134,8 @@ protected function payment_pending() {
138134
// Offsite case.
139135
$message = __(
140136
'Omise: The payment is being processed.<br/>
141-
Depending on the payment provider, this may take some time to process.<br/>
142-
Please do a manual \'Sync Payment Status\' action from the <strong>Order Actions</strong> panel, or check the payment status directly at the Omise Dashboard later.',
137+
Depending on the payment provider, this may take some time to process.<br/>
138+
Please do a manual \'Sync Payment Status\' action from the <strong>Order Actions</strong> panel, or check the payment status directly at the Omise Dashboard later.',
143139
'omise'
144140
);
145141

@@ -156,7 +152,7 @@ protected function payment_pending() {
156152
* Resolving a case of charge status: failed.
157153
*/
158154
protected function payment_failed() {
159-
$message = __( "It seems we've been unable to process your payment properly:<br/>%s", 'omise' );
155+
$message = __( "It seems we've been unable to process your payment properly:<br/>%s", 'omise' );
160156
$failure_message = Omise()->translate( $this->charge['failure_message'] ) . ' (code: ' . $this->charge['failure_code'] . ')';
161157

162158
$this->order->add_order_note( sprintf( wp_kses( __( 'OMISE: Payment failed.<br/>%s', 'omise' ), array( 'br' => array() ) ), $failure_message ) );

includes/libraries/omise-plugin/Omise.php

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
require_once dirname(__FILE__).'/helpers/charge.php';
44
require_once dirname(__FILE__).'/helpers/wc_order.php';
55
require_once dirname(__FILE__).'/helpers/mailer.php';
6-
require_once dirname(__FILE__).'/helpers/request.php';

includes/libraries/omise-plugin/helpers/request.php

-20
This file was deleted.

0 commit comments

Comments
 (0)