Initial commit
diff --git a/includes/admin/class-wc-stripe-settings-controller.php b/includes/admin/class-wc-stripe-settings-controller.php
new file mode 100644
index 0000000..93a136b
--- /dev/null
+++ b/includes/admin/class-wc-stripe-settings-controller.php
@@ -0,0 +1,131 @@
+<?php
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit;
+}
+
+/**
+ * Controls whether we're on the settings page and enqueues the JS code.
+ *
+ * @since 5.4.1
+ */
+class WC_Stripe_Settings_Controller {
+ /**
+ * The Stripe account instance.
+ *
+ * @var WC_Stripe_Account
+ */
+ private $account;
+
+ /**
+ * Constructor
+ *
+ * @param WC_Stripe_Account $account Stripe account
+ */
+ public function __construct( WC_Stripe_Account $account ) {
+ $this->account = $account;
+ add_action( 'admin_enqueue_scripts', [ $this, 'admin_scripts' ] );
+ add_action( 'wc_stripe_gateway_admin_options_wrapper', [ $this, 'admin_options' ] );
+ }
+
+ /**
+ * Prints the admin options for the gateway.
+ * Remove this action once we're fully migrated to UPE and move the wrapper in the `admin_options` method of the UPE gateway.
+ *
+ * @param WC_Stripe_Payment_Gateway $gateway the Stripe gateway.
+ */
+ public function admin_options( WC_Stripe_Payment_Gateway $gateway ) {
+ global $hide_save_button;
+ $hide_save_button = true;
+
+ echo '<h2>' . esc_html( $gateway->get_method_title() );
+ wc_back_link( __( 'Return to payments', 'woocommerce-gateway-stripe' ), admin_url( 'admin.php?page=wc-settings&tab=checkout' ) );
+ echo '</h2>';
+
+ $settings = get_option( WC_Stripe_Connect::SETTINGS_OPTION, [] );
+
+ $account_data_exists = ( ! empty( $settings['publishable_key'] ) && ! empty( $settings['secret_key'] ) ) || ( ! empty( $settings['test_publishable_key'] ) && ! empty( $settings['test_secret_key'] ) );
+ echo $account_data_exists ? '<div id="wc-stripe-account-settings-container"></div>' : '<div id="wc-stripe-new-account-container"></div>';
+ }
+
+ /**
+ * Load admin scripts.
+ */
+ public function admin_scripts( $hook_suffix ) {
+ if ( 'woocommerce_page_wc-settings' !== $hook_suffix ) {
+ return;
+ }
+
+ // TODO: refactor this to a regex approach, we will need to touch `should_enqueue_in_current_tab_section` to support it
+ if ( ! ( WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_sepa' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_giropay' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_ideal' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_bancontact' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_eps' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_sofort' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_p24' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_alipay' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_multibanco' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_oxxo' )
+ || WC_Stripe_Helper::should_enqueue_in_current_tab_section( 'checkout', 'stripe_boleto' ) ) ) {
+ return;
+ }
+
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
+
+ // Webpack generates an assets file containing a dependencies array for our built JS file.
+ $script_asset_path = WC_STRIPE_PLUGIN_PATH . '/build/upe_settings.asset.php';
+ $script_asset = file_exists( $script_asset_path )
+ ? require $script_asset_path
+ : [
+ 'dependencies' => [],
+ 'version' => WC_STRIPE_VERSION,
+ ];
+
+ wp_register_script(
+ 'woocommerce_stripe_admin',
+ plugins_url( 'build/upe_settings.js', WC_STRIPE_MAIN_FILE ),
+ $script_asset['dependencies'],
+ $script_asset['version'],
+ true
+ );
+ wp_register_style(
+ 'woocommerce_stripe_admin',
+ plugins_url( 'build/upe_settings.css', WC_STRIPE_MAIN_FILE ),
+ [ 'wc-components' ],
+ $script_asset['version']
+ );
+
+ $oauth_url = woocommerce_gateway_stripe()->connect->get_oauth_url();
+ if ( is_wp_error( $oauth_url ) ) {
+ $oauth_url = '';
+ }
+
+ $message = sprintf(
+ /* translators: 1) Html strong opening tag 2) Html strong closing tag */
+ esc_html__( '%1$sWarning:%2$s your site\'s time does not match the time on your browser and may be incorrect. Some payment methods depend on webhook verification and verifying webhooks with a signing secret depends on your site\'s time being correct, so please check your site\'s time before setting a webhook secret. You may need to contact your site\'s hosting provider to correct the site\'s time.', 'woocommerce-gateway-stripe' ),
+ '<strong>',
+ '</strong>'
+ );
+
+ $params = [
+ 'time' => time(),
+ 'i18n_out_of_sync' => $message,
+ 'is_upe_checkout_enabled' => WC_Stripe_Feature_Flags::is_upe_checkout_enabled(),
+ 'stripe_oauth_url' => $oauth_url,
+ ];
+ wp_localize_script(
+ 'woocommerce_stripe_admin',
+ 'wc_stripe_settings_params',
+ $params
+ );
+ wp_set_script_translations(
+ 'woocommerce_stripe_admin',
+ 'woocommerce-gateway-stripe'
+ );
+
+ wp_enqueue_script( 'woocommerce_stripe_admin' );
+ wp_enqueue_style( 'woocommerce_stripe_admin' );
+ }
+}