OwlCyberSecurity - MANAGER
Edit File: setup-flow-interceptor.php
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Dashboard\User_Interface\Setup; use Yoast\WP\SEO\Conditionals\Admin_Conditional; use Yoast\WP\SEO\Conditionals\Google_Site_Kit_Feature_Conditional; use Yoast\WP\SEO\Dashboard\Infrastructure\Integrations\Site_Kit; use Yoast\WP\SEO\Helpers\Current_Page_Helper; use Yoast\WP\SEO\Helpers\Redirect_Helper; use Yoast\WP\SEO\Integrations\Integration_Interface; /** * Setup flow interceptor class. */ class Setup_Flow_Interceptor implements Integration_Interface { /** * The page name of the Site Kit Setup finished page. */ private const GOOGLE_SITE_KIT_SEARCH_CONSOLE_SETUP_FINISHED_PAGE = 'googlesitekit-splash'; private const GOOGLE_SITE_KIT_ANALYTICS_SETUP_FINISHED_PAGE = 'googlesitekit-dashboard'; /** * The Site Kit configuration object. * * @var Site_Kit $site_kit_configuration */ private $site_kit_configuration; /** * Holds the Current_Page_Helper. * * @var Current_Page_Helper */ private $current_page_helper; /** * Holds the redirect helper. * * @var Redirect_Helper $redirect_helper */ private $redirect_helper; /** * The constructor. * * @param Current_Page_Helper $current_page_helper The current page helper. * @param Redirect_Helper $redirect_helper The redirect helper to abstract away the actual redirecting. * @param Site_Kit $site_kit_configuration The Site Kit configuration object. */ public function __construct( Current_Page_Helper $current_page_helper, Redirect_Helper $redirect_helper, Site_Kit $site_kit_configuration ) { $this->current_page_helper = $current_page_helper; $this->redirect_helper = $redirect_helper; $this->site_kit_configuration = $site_kit_configuration; } /** * Registers our redirect back to our dashboard all the way at the end of the admin init to make sure everything from the Site Kit callback can be finished. * * @return void */ public function register_hooks() { \add_action( 'admin_init', [ $this, 'intercept_site_kit_setup_flow' ], 999 ); } /** * The conditions for this integration to load. * * @return string[] The conditionals. */ public static function get_conditionals() { return [ Google_Site_Kit_Feature_Conditional::class, Admin_Conditional::class ]; } /** * Checks if we should intercept the final page from the Site Kit flow. * * @return void */ public function intercept_site_kit_setup_flow() { if ( \get_transient( Setup_Url_Interceptor::SITE_KIT_SETUP_TRANSIENT ) === '1' && $this->is_site_kit_setup_completed_page() ) { \delete_transient( Setup_Url_Interceptor::SITE_KIT_SETUP_TRANSIENT ); $this->redirect_helper->do_safe_redirect( \self_admin_url( 'admin.php?page=wpseo_dashboard&redirected_from_site_kit' ), 302, 'Yoast SEO' ); } } /** * Checks if we are on the site kit setup completed page. * * @return bool */ private function is_site_kit_setup_completed_page(): bool { $current_page = $this->current_page_helper->get_current_yoast_seo_page(); $on_search_console_setup_page = $current_page === self::GOOGLE_SITE_KIT_SEARCH_CONSOLE_SETUP_FINISHED_PAGE; $on_analytics_setup_page = $current_page === self::GOOGLE_SITE_KIT_ANALYTICS_SETUP_FINISHED_PAGE; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information. $authentication_success_notification = isset( $_GET['notification'] ) && \sanitize_text_field( \wp_unslash( $_GET['notification'] ) ) === 'authentication_success'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information. $analytics_4_slug = isset( $_GET['slug'] ) && \sanitize_text_field( \wp_unslash( $_GET['slug'] ) ) === 'analytics-4'; /** * This checks two scenarios * 1. The user only wants Search Console. In this case just checking if you are on the thank-you page from Site Kit is enough. * 2. The user also wants analytics. So we need to check another page and also check if the analytics 4 connection is finalized. */ return ( $on_search_console_setup_page && $authentication_success_notification ) || ( $on_analytics_setup_page && $authentication_success_notification && $analytics_4_slug && $this->site_kit_configuration->is_ga_connected() ); } }