Skip to content

Commit c9ba046

Browse files
feat(my-account): add pending email change state (#3763)
This PR adds a pending change state to email updates in my account.
1 parent 0aee542 commit c9ba046

File tree

2 files changed

+62
-2
lines changed

2 files changed

+62
-2
lines changed

includes/reader-revenue/my-account/class-woocommerce-my-account.php

+58-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class WooCommerce_My_Account {
2222
const DELETE_ACCOUNT_FORM = 'delete-account-form';
2323
const SEND_MAGIC_LINK_PARAM = 'magic-link';
2424
const AFTER_ACCOUNT_DELETION_PARAM = 'account-deleted';
25+
const PENDING_EMAIL_CHANGE_META = 'newspack_pending_email_change';
2526

2627
/**
2728
* Initialize.
@@ -47,6 +48,7 @@ public static function init() {
4748
\add_action( 'template_redirect', [ __CLASS__, 'handle_magic_link_request' ] );
4849
\add_action( 'template_redirect', [ __CLASS__, 'redirect_to_account_details' ] );
4950
\add_action( 'template_redirect', [ __CLASS__, 'edit_account_prevent_email_update' ] );
51+
\add_action( 'woocommerce_save_account_details', [ __CLASS__, 'handle_email_change_request' ] );
5052
\add_action( 'init', [ __CLASS__, 'restrict_account_content' ], 100 );
5153
\add_filter( 'woocommerce_save_account_details_required_fields', [ __CLASS__, 'remove_required_fields' ] );
5254
\add_action( 'template_redirect', [ __CLASS__, 'verify_saved_account_details' ] );
@@ -633,7 +635,6 @@ public static function edit_account_prevent_email_update() {
633635
empty( $_POST['account_email'] ) // phpcs:ignore WordPress.Security.NonceVerification.Missing
634636
|| ! \is_user_logged_in()
635637
|| ! Reader_Activation::is_enabled()
636-
|| self::is_email_change_enabled()
637638
) {
638639
return;
639640
}
@@ -785,6 +786,62 @@ public static function is_email_change_enabled() {
785786
*/
786787
return \apply_filters( 'newspack_email_change_enabled', $is_enabled );
787788
}
789+
790+
/**
791+
* Handle email change request.
792+
*
793+
* @param int $user_id User ID.
794+
*/
795+
public static function handle_email_change_request( $user_id ) {
796+
$new_email = filter_input( INPUT_POST, 'newspack_account_email', FILTER_SANITIZE_EMAIL );
797+
if (
798+
empty( $new_email )
799+
|| ! \is_user_logged_in()
800+
|| ! Reader_Activation::is_enabled()
801+
|| ! self::is_email_change_enabled()
802+
) {
803+
return;
804+
}
805+
$old_email = \wp_get_current_user()->user_email;
806+
if ( $new_email === $old_email ) {
807+
return;
808+
}
809+
if ( ! \is_email( $new_email ) ) {
810+
\wc_add_notice( __( 'Please enter a valid email address.', 'newspack-plugin' ), 'error' );
811+
} elseif ( \email_exists( $new_email ) ) {
812+
\wc_add_notice( __( 'This email address is already in use.', 'newspack-plugin' ), 'error' );
813+
} else {
814+
\update_user_meta( $user_id, self::PENDING_EMAIL_CHANGE_META, $new_email );
815+
// TODO: Update email with custom template.
816+
\wp_mail( // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.wp_mail_wp_mail
817+
$new_email,
818+
__( 'Please verify your new email address', 'newspack-plugin' ),
819+
\wp_kses_post(
820+
sprintf(
821+
// Translators: %s is the verification link.
822+
__( 'Please verify your new email address by clicking the following link: %s', 'newspack-plugin' ),
823+
\add_query_arg(
824+
[
825+
'newspack_verify_email' => $new_email,
826+
'nonce' => \wp_create_nonce( 'newspack_verify_email' ),
827+
],
828+
\home_url()
829+
)
830+
)
831+
)
832+
);
833+
\wc_add_notice(
834+
sprintf(
835+
// Translators: %s is the new email address.
836+
__( 'A verification email has been sent to %s. Please verify to complete the change.', 'newspack-plugin' ),
837+
$new_email
838+
)
839+
);
840+
}
841+
// Redirect and exit ahead of Woo so only our notice is displayed.
842+
\wp_safe_redirect( \wc_get_endpoint_url( 'edit-account', '', \wc_get_page_permalink( 'myaccount' ) ) );
843+
exit;
844+
}
788845
}
789846

790847
WooCommerce_My_Account::init();

includes/reader-revenue/templates/myaccount-edit-account.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
$without_password = true === Reader_Activation::is_reader_without_password( $user );
3333
$is_reader = true === Reader_Activation::is_user_reader( $user );
3434
$is_email_change_enabled = true === WooCommerce_My_Account::is_email_change_enabled();
35+
$is_pending_email_change = $user->get( WooCommerce_My_Account::PENDING_EMAIL_CHANGE_META ) ? true : false;
36+
$display_email = $is_pending_email_change ? $user->get( WooCommerce_My_Account::PENDING_EMAIL_CHANGE_META ) : $user->user_email;
3537
?>
3638

3739
<?php
@@ -65,7 +67,8 @@ class="woocommerce-Input woocommerce-Input--text input-text"
6567
<p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide mt0">
6668
<label for="account_email_display"><?php \esc_html_e( 'Email address', 'newspack-plugin' ); ?>
6769
<?php if ( $is_email_change_enabled ) : ?>
68-
<input type="email" class="woocommerce-Input woocommerce-Input--email input-text" name="account_email" id="account_email" autocomplete="email" value="<?php echo \esc_attr( $user->user_email ); ?>" />
70+
<input type="email" class="woocommerce-Input woocommerce-Input--email input-text" name="newspack_account_email" id="newspack_account_email" autocomplete="email" <?php echo \esc_attr( $is_pending_email_change ? 'disabled' : '' ); ?> value="<?php echo \esc_attr( $display_email ); ?>" />
71+
<input type="hidden" class="woocommerce-Input woocommerce-Input--email input-text" name="account_email" id="account_email" autocomplete="email" value="<?php echo \esc_attr( $user->user_email ); ?>" />
6972
<?php else : ?>
7073
<input type="email" class="woocommerce-Input woocommerce-Input--email input-text" name="account_email_display" id="account_email_display" autocomplete="email" disabled value="<?php echo \esc_attr( $user->user_email ); ?>" />
7174
<input type="hidden" class="woocommerce-Input woocommerce-Input--email input-text" name="account_email" id="account_email" autocomplete="email" value="<?php echo \esc_attr( $user->user_email ); ?>" />

0 commit comments

Comments
 (0)