Skip to content

Commit 545f0c3

Browse files
Opt to just strip out port number from origin
Co-authored-by: felixarntz <[email protected]>
1 parent 9d6e807 commit 545f0c3

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

plugins/optimization-detective/storage/rest-api.php

+3-18
Original file line numberDiff line numberDiff line change
@@ -98,30 +98,15 @@ function od_register_endpoint(): void {
9898
* @since n.e.x.t
9999
* @access private
100100
*
101-
* @see get_allowed_http_origins()
102101
* @see is_allowed_http_origin()
103102
*
104103
* @param string $origin Origin to check.
105104
* @return bool Whether the origin is allowed.
106105
*/
107106
function od_is_allowed_http_origin( string $origin ): bool {
108-
$allowed_origins = get_allowed_http_origins();
109-
$home_url_port = wp_parse_url( home_url(), PHP_URL_PORT );
110-
111-
// Append the home URL's port to the allowed origins if they lack a port number.
112-
if ( is_int( $home_url_port ) ) {
113-
$allowed_origins = array_map(
114-
static function ( string $allowed_origin ) use ( $home_url_port ): string {
115-
if ( null === wp_parse_url( $allowed_origin, PHP_URL_PORT ) ) {
116-
$allowed_origin .= ':' . (string) $home_url_port;
117-
}
118-
return $allowed_origin;
119-
},
120-
$allowed_origins
121-
);
122-
}
123-
124-
return in_array( $origin, $allowed_origins, true );
107+
// Strip out the port number since core does not account for it yet as noted in get_allowed_http_origins().
108+
$origin = preg_replace( '/:\d+$/', '', $origin );
109+
return '' !== is_allowed_http_origin( $origin );
125110
}
126111

127112
/**

0 commit comments

Comments
 (0)