Automattic\WooCommerce\Internal\StockNotifications\Emails

EmailActionController{}WC 1.0

Class EmailActionController

Handles email actions such as verification and unsubscribe.

Usage

$EmailActionController = new EmailActionController();
// use class methods

Methods

  1. public __construct()
  2. public init( EmailManager $email_manager )
  3. public maybe_process_email_action()
  4. public validate_and_maybe_process_request( int $notification_id, string $email_link_action_key, string $action = '' )
  5. private get_notification_to_be_processed( int $notification_id )
  6. private process_unsubscribe_action( Notification $notification, string $action_key )
  7. private process_verification_action( Notification $notification, string $action_key )

Notes

  • Package: Automattic\WooCommerce\Internal\StockNotifications\Emails

EmailActionController{} code WC 10.9.4

class EmailActionController {

	/**
	 * Email manager.
	 *
	 * @var EmailManager
	 */
	private EmailManager $email_manager;

	/**
	 * Action token for verifying (double opt-in) a pending notification sign-up.
	 *
	 * Must match the `email_link_action` query param produced by the verify
	 * email template.
	 */
	public const ACTION_VERIFY = 'verify';

	/**
	 * Action token for unsubscribing an active notification sign-up.
	 *
	 * Must match the `email_link_action` query param produced by the "back in
	 * stock" and confirmation email templates.
	 */
	public const ACTION_UNSUBSCRIBE = 'unsubscribe';

	/**
	 * EmailActionController constructor.
	 *
	 * Initializes the controller by adding actions to process verification and unsubscribe actions from requests.
	 */
	public function __construct() {
		add_action( 'template_redirect', array( $this, 'maybe_process_email_action' ) );
	}

	/**
	 * Init the service.
	 *
	 * @internal
	 *
	 * @param EmailManager $email_manager The email manager.
	 */
	final public function init( EmailManager $email_manager ): void {
		$this->email_manager = $email_manager;
	}

	/**
	 * This method checks if the request contains indicators to process an action from an email link.
	 */
	public function maybe_process_email_action(): void {
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended
		if ( ! isset( $_GET['notification_id'] ) || ! isset( $_GET['email_link_action_key'] ) || ! isset( $_GET['email_link_action'] ) ) {
			return;
		}
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$notification_id = absint( wp_unslash( $_GET['notification_id'] ) );
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$action_key = sanitize_text_field( wp_unslash( $_GET['email_link_action_key'] ) );
		// phpcs:ignore WordPress.Security.NonceVerification.Recommended
		$action = sanitize_key( wp_unslash( $_GET['email_link_action'] ) );

		$this->validate_and_maybe_process_request( $notification_id, $action_key, $action );
	}

	/**
	 * Checks request parameters and processes the notification based on the action type.
	 *
	 * @param int    $notification_id       The ID of the notification to process.
	 * @param string $email_link_action_key The action key from the email link.
	 * @param string $action                The action to perform: 'verify' or 'unsubscribe'.
	 * @return void
	 */
	public function validate_and_maybe_process_request( int $notification_id, string $email_link_action_key, string $action = '' ): void {
		if ( empty( $email_link_action_key ) || empty( $notification_id ) ) {
			return;
		}

		// An empty $action means the caller omitted the routing argument — a
		// programming error, not a mis-routed email. Return silently so the
		// debug branch in the switch is reserved for genuinely-unknown
		// tokens arriving in the wild.
		if ( '' === $action ) {
			return;
		}

		$notification = $this->get_notification_to_be_processed( $notification_id );

		if ( ! $notification ) {
			return;
		}

		switch ( $action ) {
			case self::ACTION_VERIFY:
				$this->process_verification_action( $notification, $email_link_action_key );
				break;
			case self::ACTION_UNSUBSCRIBE:
				$this->process_unsubscribe_action( $notification, $email_link_action_key );
				break;
			default:
				// Unknown action — silently drop in production, log in debug so
				// mis-routed email links surface during alpha testing rather
				// than no-op'ing invisibly.
				if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
					wc_get_logger()->debug(
						sprintf(
							'Unknown email_link_action "%s" for notification %d',
							$action,
							$notification->get_id()
						),
						array( 'source' => 'stock-notifications' )
					);
				}
				break;
		}//end switch
	}

	/**
	 * If the verification key matches, it updates the notification status to active.
	 *
	 * @param Notification $notification The notification to process.
	 * @param string       $action_key The action key to verify.
	 * @return void
	 */
	private function process_verification_action( Notification $notification, string $action_key ): void {
		if ( $notification->check_verification_key( $action_key ) ) {
			// Guard against re-hits of a still-valid verification URL (double-click, email prefetch,
			// link-scanner bots). Without this, each hit would re-dispatch the verified email.
			if ( NotificationStatus::ACTIVE === $notification->get_status() ) {
				return;
			}

			$notification->set_status( NotificationStatus::ACTIVE );
			$notification->set_date_confirmed( time() );
			$notification->save();

			/**
			 * Action: woocommerce_customer_stock_notifications_verified
			 *
			 * Fires after a stock-notification signup has been verified via the
			 * double opt-in email link. Mirrors `woocommerce_customer_stock_notifications_signup`.
			 *
			 * @since 10.9.0
			 *
			 * @param Notification $notification The notification.
			 */
			do_action( 'woocommerce_customer_stock_notifications_verified', $notification );

			$this->email_manager->send_verified_email( $notification );

			// We need a cookie-based session for notices to work on frontend pages.
			if ( WC()->session instanceof \WC_Session_Handler && ! WC()->session->has_session() ) {
				WC()->session->set_customer_session_cookie( true );
			}

			$product = wc_get_product( $notification->get_product_id() );

			/* translators: %s is product name */
			$notice_text = sprintf( esc_html__( 'Successfully verified stock notifications for "%s".', 'woocommerce' ), $product->get_name() );
			wc_add_notice( $notice_text );
			/**
			 * `woocommerce_customer_stock_notification_verified_redirect_url` filter.
			 *
			 * @since 10.2.0
			 *
			 * @param  string  $url
			 * @return string
			 */
			$url = apply_filters( 'woocommerce_customer_stock_notification_verified_redirect_url', get_permalink( wc_get_page_id( 'shop' ) ) );
			wp_safe_redirect( $url );
			exit;
		}
	}

	/**
	 * If the unsubscribe key matches, it updates the notification status to cancelled.
	 *
	 * @param Notification $notification The Notification to process.
	 * @param string       $action_key The action key to verify.
	 * @return void
	 */
	private function process_unsubscribe_action( Notification $notification, string $action_key ): void {
		if ( $notification->check_unsubscribe_key( $action_key ) ) {
			$notification->set_status( NotificationStatus::CANCELLED );
			$notification->set_cancellation_source( NotificationCancellationSource::USER );
			$notification->set_date_cancelled( time() );
			$notification->save();

			// We need a cookie-based session for notices to work on frontend pages.
			if ( WC()->session instanceof \WC_Session_Handler && ! WC()->session->has_session() ) {
				WC()->session->set_customer_session_cookie( true );
			}

			$product = wc_get_product( $notification->get_product_id() );

			/* translators: %2$s product name, %1$s user email */
			$notice_text = sprintf( esc_html__( 'Successfully unsubscribed %1$s. You will not receive a notification when "%2$s" becomes available.', 'woocommerce' ), $notification->get_user_email(), $product->get_name() );
			wc_add_notice( $notice_text );
			/**
			 * `woocommerce_customer_stock_notification_unsubscribe_redirect_url` filter.
			 *
			 * @since 10.2.0
			 *
			 * @param  string  $url
			 * @return string
			 */
			$url = apply_filters( 'woocommerce_customer_stock_notification_unsubscribe_redirect_url', get_permalink( wc_get_page_id( 'shop' ) ) );
			wp_safe_redirect( $url );
			exit;
		}
	}

	/**
	 * Retrieves the notification to be processed based on the provided notification ID.
	 *
	 * @param int $notification_id The ID of the notification to process.
	 * @return Notification|null The notification object if found, null otherwise.
	 */
	private function get_notification_to_be_processed( int $notification_id ): ?Notification {
		$notification = Factory::get_notification( (int) $notification_id );

		return $notification instanceof Notification ? $notification : null;
	}
}