@@ -22,6 +22,7 @@ class WooCommerce_My_Account {
22
22
const DELETE_ACCOUNT_FORM = 'delete-account-form ' ;
23
23
const SEND_MAGIC_LINK_PARAM = 'magic-link ' ;
24
24
const AFTER_ACCOUNT_DELETION_PARAM = 'account-deleted ' ;
25
+ const PENDING_EMAIL_CHANGE_META = 'newspack_pending_email_change ' ;
25
26
26
27
/**
27
28
* Initialize.
@@ -47,6 +48,7 @@ public static function init() {
47
48
\add_action ( 'template_redirect ' , [ __CLASS__ , 'handle_magic_link_request ' ] );
48
49
\add_action ( 'template_redirect ' , [ __CLASS__ , 'redirect_to_account_details ' ] );
49
50
\add_action ( 'template_redirect ' , [ __CLASS__ , 'edit_account_prevent_email_update ' ] );
51
+ \add_action ( 'woocommerce_save_account_details ' , [ __CLASS__ , 'handle_email_change_request ' ] );
50
52
\add_action ( 'init ' , [ __CLASS__ , 'restrict_account_content ' ], 100 );
51
53
\add_filter ( 'woocommerce_save_account_details_required_fields ' , [ __CLASS__ , 'remove_required_fields ' ] );
52
54
\add_action ( 'template_redirect ' , [ __CLASS__ , 'verify_saved_account_details ' ] );
@@ -633,7 +635,6 @@ public static function edit_account_prevent_email_update() {
633
635
empty ( $ _POST ['account_email ' ] ) // phpcs:ignore WordPress.Security.NonceVerification.Missing
634
636
|| ! \is_user_logged_in ()
635
637
|| ! Reader_Activation::is_enabled ()
636
- || self ::is_email_change_enabled ()
637
638
) {
638
639
return ;
639
640
}
@@ -785,6 +786,62 @@ public static function is_email_change_enabled() {
785
786
*/
786
787
return \apply_filters ( 'newspack_email_change_enabled ' , $ is_enabled );
787
788
}
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
+ }
788
845
}
789
846
790
847
WooCommerce_My_Account::init ();
0 commit comments