-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle 402 errors so it won't be hijacked by the hosting provider error page #8102
base: develop
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: fix | ||
|
||
Fixed parsing of 402 status codes. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -591,10 +591,16 @@ public static function get_filtered_error_message( Exception $e ) { | |
* @return int | ||
*/ | ||
public static function get_filtered_error_status_code( Exception $e ) : int { | ||
$status_code = 400; | ||
if ( $e instanceof API_Exception ) { | ||
return $e->get_http_code() ?? 400; | ||
$status_code = $e->get_http_code() ?? 400; | ||
// Sometimes hosting companies hijack this status code and return their own predefined error page. | ||
// In this case, we want to return a 400 instead, since it will break the flow of the checkout page. | ||
if ( 402 === $status_code ) { | ||
$status_code = 400; | ||
} | ||
} | ||
return 400; | ||
return $status_code; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What are your thoughts on the following alternative, to decrease the indentation due to the cyclomatic complexity? $status_code = null;
if ( $e instanceof API_Exception ) {
$status_code = $e->get_http_code();
}
// Sometimes hosting companies hijack the 402 status code to return their own predefined error page.
// In this case, we want to return a 400 instead, since it will break the flow of the checkout page.
if ( 402 === $status_code ) {
$status_code = 400;
}
return $status_code ?? 400; There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @frosso's suggestion is easier to read 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Addressed here: ffb36ec . Thank you for the feedback. |
||
} | ||
|
||
/** | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zmaglica do you plan to add a test for this change? As I checked the test file does exist.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not planning to write tests in this PR for this file, since the tests for this particular file don't exist, as you mentioned too. I will keep this PR as clean as possible and open a new issue to address the issue with the tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@zmaglica I meant the test file, which is this, does exist :))
IMO, it is always a good idea to write test in the same PR.