woocommerce/plugins/woocommerce-beta-tester/api/tools/set-wccom-base-url.php

103 lines
2.8 KiB
PHP
Raw Normal View History

[Beta tester] Add tool for changing woocommerce.com base URL (#51537) * Refactor WooCommerce Helper class This commit refactors the WooCommerce Helper class in the `class-wc-helper.php` file. The changes include: - Updating the comparison operator from `==` to `===` in the `activate_plugin` condition. - Renaming the `get_install_base_url` method to `get_woocommerce_com_base_url`. - Adding a new `get_install_base_url` method that returns the base URL for the plugin auto installer. These changes improve the readability and maintainability of the code. * Refactor data source poller classes for marketing recommendations, payment gateway suggestions, shipping partner suggestions, inbox notifications, remote free extensions, and WooPayments promotion - Refactor the data source poller classes for marketing recommendations, payment gateway suggestions, shipping partner suggestions, inbox notifications, remote free extensions, and WooPayments promotion to use a dynamic base URL for the data sources. - Update the deprecated DATA_SOURCES constant to an empty array in each class. - Add a new method get_data_sources() in each class to return the updated data sources with the dynamic base URL. - Modify the constructor of each class to use the get_data_sources() method instead of the deprecated DATA_SOURCES constant. * Add changelog * Add set-woocom-base-url tool * Add changelog * Rename woo_com and woocom -> wccom * Change to falsy check !url * Change woocom/WOOCOM to wccom/WCCOM * Change default value to https://woocommerce.com/ --------- Co-authored-by: Ilyas Foo <foo.ilyas@gmail.com>
2024-09-24 11:37:57 +00:00
<?php
/**
* WooCommerce Beta Tester WooCommerce.com Base URL
*
* @package WC_Beta_Tester
*/
defined( 'ABSPATH' ) || exit;
/**
* Register REST API routes for setting and getting WooCommerce.com base URL.
*/
register_woocommerce_admin_test_helper_rest_route(
'/tools/set-wccom-base-url/v1',
'tools_set_wccom_base_url',
array(
'methods' => 'POST',
'args' => array(
'url' => array(
'description' => 'WooCommerce.com base URL',
'type' => 'string',
'required' => true,
'sanitize_callback' => 'esc_url_raw',
),
),
)
);
register_woocommerce_admin_test_helper_rest_route(
'/tools/get-wccom-base-url/v1',
'tools_get_wccom_base_url',
array(
'methods' => 'GET',
)
);
/**
* Set WooCommerce.com base URL.
*
* @param WP_REST_Request $request Full details about the request.
* @return WP_REST_Response
*/
function tools_set_wccom_base_url( $request ) {
$url = $request->get_param( 'url' );
if ( empty( $url ) ) {
delete_option( 'wc_beta_tester_wccom_base_url' );
return new WP_REST_Response( array( 'message' => 'WooCommerce.com base URL is reset' ), 200 );
}
if ( ! filter_var( $url, FILTER_VALIDATE_URL ) ) {
return new WP_REST_Response( array( 'message' => 'Invalid URL' ), 400 );
}
update_option( 'wc_beta_tester_wccom_base_url', $url );
return new WP_REST_Response( $url, 200 );
}
/**
* Get WooCommerce.com base URL.
*
* @return WP_REST_Response
*/
function tools_get_wccom_base_url() {
if ( class_exists( 'WC_Helper' ) && method_exists( 'WC_Helper', 'get_woocommerce_com_base_url' ) ) {
$url = WC_Helper::get_woocommerce_com_base_url();
} else {
$url = get_option( 'wc_beta_tester_wccom_base_url', '' );
}
return new WP_REST_Response( $url, 200 );
}
/**
* Filter WooCommerce.com base URL.
*
* @param string $default_url Default WooCommerce.com base URL.
* @return string
*/
function filter_wccom_base_url( $default_url ) {
$custom_url = get_option( 'wc_beta_tester_wccom_base_url', '' );
return ! empty( $custom_url ) ? $custom_url : $default_url;
}
add_filter( 'woo_com_base_url', 'filter_wccom_base_url' );
/**
* Filter HTTP request arguments to disable SSL verification for custom WooCommerce.com base URL.
*
* @param array $args HTTP request arguments.
* @param string $url HTTP request URL.
* @return array Modified HTTP request arguments.
*/
function filter_http_request_args_for_custom_wccom_url( $args, $url ) {
$custom_url = get_option( 'wc_beta_tester_wccom_base_url', false );
if ( $custom_url && strpos( $url, $custom_url ) !== false ) {
// Disable SSL verification for requests to the custom URL since local dev might not have a valid SSL certificate.
$args['sslverify'] = false;
}
return $args;
}
add_filter( 'http_request_args', 'filter_http_request_args_for_custom_wccom_url', 10, 2 );