PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
16.3-a.3 16.3-a.1 16.2 16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 All 504 releases
← All changes | extensions/blocks/subscriptions/subscriptions.php +206 -103 13.6.216.3-a.1 View file →
@@ -7,18 +7,21 @@
7 7
8 8 namespace Automattic\Jetpack\Extensions\Subscriptions;
9 9
10 10 use Automattic\Jetpack\Blocks;
11 -use Automattic\Jetpack\Connection\Manager as Connection_Manager;
12 11 use Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service\Abstract_Token_Subscription_Service;
13 12 use Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service\Jetpack_Token_Subscription_Service;
14 -use Automattic\Jetpack\Status;
13 +use Automattic\Jetpack\Modules;
15 14 use Automattic\Jetpack\Status\Host;
16 -use Jetpack;
15 +use Automattic\Jetpack\Status\Request;
17 16 use Jetpack_Gutenberg;
18 17 use Jetpack_Memberships;
19 18 use Jetpack_Subscriptions_Widget;
20 19
20 +if ( ! defined( 'ABSPATH' ) ) {
21 + exit( 0 );
22 +}
23 +
21 24 require_once __DIR__ . '/class-jetpack-subscription-site.php';
22 25 require_once __DIR__ . '/constants.php';
23 26 require_once JETPACK__PLUGIN_DIR . 'extensions/blocks/premium-content/_inc/subscription-service/include.php';
24 27
@@ -29,8 +32,9 @@
29 32 const DEFAULT_BORDER_WEIGHT_VALUE = 1;
30 33 const DEFAULT_FONTSIZE_VALUE = '16px';
31 34 const DEFAULT_PADDING_VALUE = 15;
32 35 const DEFAULT_SPACING_VALUE = 10;
36 +const DEFAULT_BUTTON_WIDTH = 'auto';
33 37
34 38 /**
35 39 * Registers the block for use in Gutenberg
36 40 * This is done via an action so that we can disable
@@ -44,17 +48,24 @@
44 48 \WPForTeams\is_wpforteams_site( get_current_blog_id() ) ) {
45 49 return;
46 50 }
47 51
48 - if (
49 - ( defined( 'IS_WPCOM' ) && IS_WPCOM )
50 - || ( ( new Connection_Manager( 'jetpack' ) )->has_connected_owner() && ! ( new Status() )->is_offline_mode() )
51 - ) {
52 + /*
53 + * Do not proceed if the newsletter feature (Subscriptions module) is not enabled
54 + */
55 + if ( ! ( new Modules() )->is_active( 'subscriptions' ) ) {
56 + return;
57 + }
58 +
59 + require_once JETPACK__PLUGIN_DIR . '/modules/memberships/class-jetpack-memberships.php';
60 +
61 + if ( \Jetpack_Memberships::should_enable_monetize_blocks_in_editor() ) {
52 62 Blocks::jetpack_register_block(
53 63 __DIR__,
54 64 array(
55 - 'render_callback' => __NAMESPACE__ . '\render_block',
56 - 'supports' => array(
65 + 'render_callback' => __NAMESPACE__ . '\render_block',
66 + 'render_email_callback' => __NAMESPACE__ . '\render_email',
67 + 'supports' => array(
57 68 'spacing' => array(
58 69 'margin' => true,
59 70 'padding' => true,
60 71 ),
@@ -63,42 +74,37 @@
63 74 )
64 75 );
65 76 }
66 77
67 - /*
68 - * If the Subscriptions module is not active,
69 - * do not make any further changes on the site.
70 - */
71 - if ( ! Jetpack::is_module_active( 'subscriptions' ) ) {
72 - return;
73 - }
74 -
75 - /**
76 - * Do not proceed if the newsletter feature is not enabled
77 - * or if the 'Jetpack_Memberships' class does not exists.
78 - */
79 - if ( ! class_exists( '\Jetpack_Memberships' ) ) {
80 - return;
81 - }
82 -
83 78 register_post_meta(
84 79 'post',
85 80 META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS,
86 81 array(
87 - 'show_in_rest' => true,
88 - 'single' => true,
89 - 'type' => 'string',
90 - 'auth_callback' => function () {
82 + 'show_in_rest' => true,
83 + 'single' => true,
84 + 'type' => 'string',
85 + // The REST schema already rejects non-strings, but non-REST writers
86 + // (importers, XML-RPC, WP-CLI, direct update_post_meta, sync) only pass
87 + // through sanitize_meta(). Coerce anything that isn't a string to ''
88 + // ("everybody") so a corrupt value can't be persisted and later fatal the
89 + // strict string-typed access checks.
90 + 'sanitize_callback' => function ( $value ) {
91 + return is_string( $value ) ? $value : '';
92 + },
93 + 'auth_callback' => function () {
91 94 return wp_get_current_user()->has_cap( 'edit_posts' );
92 95 },
93 96 )
94 97 );
95 98
99 + // The meta is a "don't send" flag, so invert the blog option (which defaults to true = "send").
100 + $dont_email_default = ! get_option( 'wpcom_newsletter_send_default', true );
101 +
96 102 register_post_meta(
97 103 'post',
98 104 META_NAME_FOR_POST_DONT_EMAIL_TO_SUBS,
99 105 array(
100 - 'default' => false,
106 + 'default' => $dont_email_default,
101 107 'show_in_rest' => true,
102 108 'single' => true,
103 109 'type' => 'boolean',
104 110 'auth_callback' => function () {
@@ -142,8 +148,10 @@
142 148 array(
143 149 META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS,
144 150 META_NAME_FOR_POST_DONT_EMAIL_TO_SUBS,
145 151 META_NAME_CONTAINS_PAYWALLED_CONTENT,
152 + META_NAME_FOR_POST_TIER_ID_SETTINGS,
153 + META_NAME_CONTAINS_PAID_CONTENT,
146 154 )
147 155 );
148 156 }
149 157 );
@@ -157,11 +165,8 @@
157 165
158 166 // Hide existing comments
159 167 add_filter( 'get_comment', __NAMESPACE__ . '\maybe_gate_existing_comments' );
160 168
161 - // Gate the excerpt for a post
162 - add_filter( 'get_the_excerpt', __NAMESPACE__ . '\jetpack_filter_excerpt_for_newsletter', 10, 2 );
163 -
164 169 // Add a 'Newsletter' column to the Edit posts page
165 170 // We only display the "Newsletter" column if we have configured the paid newsletter plan
166 171 if ( defined( 'WP_ADMIN' ) && WP_ADMIN && Jetpack_Memberships::has_configured_plans_jetpack_recurring_payments( 'newsletter' ) ) {
167 172 add_action( 'manage_post_posts_columns', __NAMESPACE__ . '\register_newsletter_access_column' );
@@ -183,9 +188,9 @@
183 188 }
184 189 );
185 190
186 191 // If called via REST API, we need to register later in the lifecycle
187 - if ( ( new Host() )->is_wpcom_platform() && ! jetpack_is_frontend() ) {
192 + if ( ( new Host() )->is_wpcom_platform() && ! Request::is_frontend() ) {
188 193 add_action(
189 194 'restapi_theme_init',
190 195 function () {
191 196 Jetpack_Subscription_Site::init()->handle_subscribe_block_placements();
@@ -289,11 +294,11 @@
289 294 echo '<style id="jetpack-newsletter-newsletter-access-column"> table.fixed .column-newsletter_access { width: 10%; } </style>';
290 295 }
291 296
292 297 /**
293 - * Determine the amount of folks currently subscribed to the blog, splitted out in email_subscribers & social_followers & paid_subscribers
298 + * Determine the amount of folks currently subscribed to the blog, splitted out in total_subscribers, email_subscribers, social_followers & paid_subscribers.
294 299 *
295 - * @return array containing ['value' => ['email_subscribers' => 0, 'paid_subscribers' => 0, 'social_followers' => 0]]
300 + * @return array containing ['value' => ['total_subscribers' => 0, 'email_subscribers' => 0, 'paid_subscribers' => 0, 'social_followers' => 0]]
296 301 */
297 302 function fetch_subscriber_counts() {
298 303 $subs_count = 0;
299 304 if ( is_wpcom() ) {
@@ -311,9 +316,10 @@
311 316 $subs_count = array(
312 317 'status' => 'failed',
313 318 'code' => $xml->getErrorCode(),
314 319 'message' => $xml->getErrorMessage(),
315 - 'value' => ( isset( $subs_count['value'] ) ) ? $subs_count['value'] : array(
320 + 'value' => $subs_count['value'] ?? array(
321 + 'total_subscribers' => 0,
316 322 'email_subscribers' => 0,
317 323 'social_followers' => 0,
318 324 'paid_subscribers' => 0,
319 325 ),
@@ -339,11 +345,11 @@
339 345 function get_subscriber_count( $include_social_followers ) {
340 346 $counts = fetch_subscriber_counts();
341 347
342 348 if ( $include_social_followers ) {
343 - $subscriber_count = $counts['value']['email_subscribers'] + $counts['value']['social_followers'];
349 + $subscriber_count = $counts['value']['total_subscribers'] + $counts['value']['social_followers'];
344 350 } else {
345 - $subscriber_count = $counts['value']['email_subscribers'];
351 + $subscriber_count = $counts['value']['total_subscribers'];
346 352 }
347 353 return $subscriber_count;
348 354 }
349 355
@@ -489,15 +495,15 @@
489 495 $submit_button_styles .= sprintf( 'color: %s;', get_attribute( $attributes, 'customTextColor' ) );
490 496 }
491 497
492 498 if ( has_attribute( $attributes, 'buttonWidth' ) ) {
493 - $submit_button_wrapper_styles .= sprintf( 'width: %s;', get_attribute( $attributes, 'buttonWidth' ) );
499 + $submit_button_wrapper_styles .= sprintf( 'width: %s;', get_attribute( $attributes, 'buttonWidth', DEFAULT_BUTTON_WIDTH ) );
494 500 $submit_button_wrapper_styles .= 'max-width: 100%;';
495 501
496 502 // Account for custom margins on inline forms.
497 503 $submit_button_styles .= true === get_attribute( $attributes, 'buttonOnNewLine' )
498 - ? sprintf( 'width: calc(100%% - %dpx);', get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE ) )
499 - : 'width: 100%;';
504 + ? 'width: 100%;'
505 + : sprintf( 'width: calc(100%% - %dpx);', get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE ) );
500 506 }
501 507
502 508 $font_size = get_attribute( $attributes, 'customFontSize', DEFAULT_FONTSIZE_VALUE );
503 509 $style = sprintf( 'font-size: %s%s;', $font_size, is_numeric( $font_size ) ? 'px' : '' );
@@ -510,9 +516,8 @@
510 516
511 517 $submit_button_styles .= $style;
512 518 $email_field_styles .= $style;
513 519
514 - $button_spacing = get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE );
515 520 if ( ! $is_button_only_style ) {
516 521 $button_spacing = get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE );
517 522 if ( true === get_attribute( $attributes, 'buttonOnNewLine' ) ) {
518 523 $submit_button_styles .= sprintf( 'margin-top: %dpx;', $button_spacing );
@@ -542,9 +547,9 @@
542 547 $submit_button_styles .= $style;
543 548 $email_field_styles .= $style;
544 549 }
545 550
546 - if ( ! jetpack_is_frontend() ) {
551 + if ( ! Request::is_frontend() ) {
547 552 $background_color_style = get_attribute_color( 'buttonBackgroundColor', $attributes, '#113AF5' /* default lettre theme color */ );
548 553 $text_color_style = get_attribute_color( 'textColor', $attributes, '#FFFFFF' );
549 554 $submit_button_styles .= sprintf( ' background-color: %s; color: %s;', $background_color_style, $text_color_style );
550 555 }
@@ -629,8 +634,15 @@
629 634 return null;
630 635 }
631 636
632 637 /**
638 + * Is the Jetpack_Memberships class loaded.
639 + */
640 +function is_jetpack_memberships_loaded(): bool {
641 + return class_exists( '\Jetpack_Memberships' );
642 +}
643 +
644 +/**
633 645 * Subscriptions block render callback.
634 646 *
635 647 * @param array $attributes Array containing the block attributes.
636 648 *
@@ -637,13 +649,13 @@
637 649 * @return string
638 650 */
639 651 function render_block( $attributes ) {
640 652 // If the Subscriptions module is not active, don't render the block.
641 - if ( ! Jetpack::is_module_active( 'subscriptions' ) ) {
653 + if ( ! ( new Modules() )->is_active( 'subscriptions' ) ) {
642 654 return '';
643 655 }
644 656
645 - if ( class_exists( '\Jetpack_Memberships' ) ) {
657 + if ( is_jetpack_memberships_loaded() ) {
646 658 // We only want the sites that have newsletter feature enabled to be graced by this JavaScript.
647 659 Jetpack_Gutenberg::load_assets_as_required( __DIR__ );
648 660 } else {
649 661 Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME );
@@ -648,12 +660,17 @@
648 660 } else {
649 661 Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME );
650 662 }
651 663
664 + if ( ! class_exists( 'Jetpack_Subscriptions_Widget' ) ) {
665 + return '';
666 + }
667 +
668 + // Prefill the email field with the current user's email if they are logged in via Memberships premium content token
652 669 $subscribe_email = Jetpack_Memberships::get_current_user_email();
653 670
654 - /** This filter is documented in \Automattic\Jetpack\Forms\ContactForm\Contact_Form */
655 - if ( is_wpcom() || false !== apply_filters( 'jetpack_auto_fill_logged_in_user', false ) ) {
671 + // If no email, then prefill the email field with the current user's email if they are logged in
672 + if ( empty( $subscribe_email ) ) {
656 673 $current_user = wp_get_current_user();
657 674 if ( ! empty( $current_user->user_email ) ) {
658 675 $subscribe_email = $current_user->user_email;
659 676 }
@@ -672,37 +689,44 @@
672 689 // We want to disencourage including social count as it's misleading.
673 690 $include_social_followers = isset( $attributes['includeSocialFollowers'] ) ? (bool) get_attribute( $attributes, 'includeSocialFollowers' ) : true;
674 691
675 692 $data = array(
676 - 'widget_id' => Jetpack_Subscriptions_Widget::$instance_count,
677 - 'subscribe_email' => $subscribe_email,
678 - 'is_paid_subscriber' => get_attribute( $attributes, 'isPaidSubscriber', false ),
679 - 'wrapper_attributes' => get_block_wrapper_attributes(
693 + 'widget_id' => Jetpack_Subscriptions_Widget::$instance_count,
694 + 'subscribe_email' => $subscribe_email,
695 + 'is_paid_subscriber' => get_attribute( $attributes, 'isPaidSubscriber', false ),
696 + 'wrapper_attributes' => get_block_wrapper_attributes(
680 697 array(
681 698 'class' => $classes['block_wrapper'],
682 699 )
683 700 ),
684 - 'subscribe_placeholder' => get_attribute( $attributes, 'subscribePlaceholder', __( 'Type your email…', 'jetpack' ) ),
685 - 'submit_button_text' => get_attribute( $attributes, 'submitButtonText', __( 'Subscribe', 'jetpack' ) ),
686 - 'submit_button_text_subscribed' => get_attribute( $attributes, 'submitButtonTextSubscribed', __( 'Subscribed', 'jetpack' ) ),
687 - 'submit_button_text_upgrade' => get_attribute( $attributes, 'submitButtonTextUpgrade', __( 'Upgrade subscription', 'jetpack' ) ),
688 - 'success_message' => get_attribute(
701 + 'subscribe_placeholder' => get_attribute( $attributes, 'subscribePlaceholder', __( 'Type your email…', 'jetpack' ) ),
702 + 'submit_button_text' => get_attribute( $attributes, 'submitButtonText', __( 'Subscribe', 'jetpack' ) ),
703 + 'submit_button_text_subscribed' => get_attribute( $attributes, 'submitButtonTextSubscribed', __( 'Subscribed', 'jetpack' ) ),
704 + 'submit_button_text_upgrade' => get_attribute( $attributes, 'submitButtonTextUpgrade', __( 'Upgrade subscription', 'jetpack' ) ),
705 + 'success_message' => get_attribute(
689 706 $attributes,
690 707 'successMessage',
691 708 esc_html__( "Success! An email was just sent to confirm your subscription. Please find the email now and click 'Confirm' to start subscribing.", 'jetpack' )
692 709 ),
693 - 'show_subscribers_total' => (bool) get_attribute( $attributes, 'showSubscribersTotal' ),
694 - 'subscribers_total' => get_subscriber_count( $include_social_followers ),
695 - 'referer' => esc_url_raw(
710 + 'show_subscribers_total' => (bool) get_attribute( $attributes, 'showSubscribersTotal' ),
711 + 'subscribers_total' => get_attribute( $attributes, 'showSubscribersTotal' ) ? get_subscriber_count( $include_social_followers ) : 0,
712 + 'referer' => esc_url_raw(
696 713 ( is_ssl() ? 'https' : 'http' ) . '://' . ( isset( $_SERVER['HTTP_HOST'] ) ? wp_unslash( $_SERVER['HTTP_HOST'] ) : '' ) .
697 714 ( isset( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : '' )
698 715 ),
699 - 'source' => 'subscribe-block',
700 - 'app_source' => get_attribute( $attributes, 'appSource', null ),
701 - 'class_name' => get_attribute( $attributes, 'className' ),
716 + 'source' => 'subscribe-block',
717 + 'app_source' => get_attribute( $attributes, 'appSource', null ),
718 + 'class_name' => get_attribute( $attributes, 'className' ),
719 + 'selected_newsletter_categories' => get_attribute( $attributes, 'selectedNewsletterCategoryIds', array() ),
720 + 'preselected_newsletter_categories' => get_attribute( $attributes, 'preselectNewsletterCategories', false ),
702 721 );
703 722
704 - if ( ! jetpack_is_frontend() ) {
723 + // Only render the email version in non-frontend contexts.
724 + if ( is_feed() || wp_is_xml_request() ||
725 + ( defined( 'REST_REQUEST' ) && REST_REQUEST && ! wp_is_json_request() ) ||
726 + ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST ) ||
727 + ( defined( 'WP_CLI' ) && WP_CLI ) ||
728 + wp_is_jsonp_request() ) {
705 729 return render_for_email( $data, $styles );
706 730 }
707 731
708 732 return render_for_website( $data, $classes, $styles );
@@ -772,9 +796,9 @@
772 796 style="<?php echo esc_attr( $styles['submit_button_wrapper'] ); ?>"
773 797 <?php endif; ?>
774 798 >
775 799 <a
776 - href="<?php echo esc_url( 'https://wordpress.com/read/site/subscription/' . $blog_id ); ?>"
800 + href="<?php echo esc_url( 'https://wordpress.com/reader/site/subscription/' . $blog_id ); ?>"
777 801 <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
778 802 class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
779 803 <?php endif; ?>
780 804 <?php if ( ! empty( $styles['submit_button'] ) ) : ?>
@@ -809,8 +833,9 @@
809 833 '<input
810 834 required="required"
811 835 type="email"
812 836 name="email"
837 + autocomplete="email"
813 838 %1$s
814 839 style="%2$s"
815 840 placeholder="%3$s"
816 841 value="%4$s"
@@ -857,8 +882,12 @@
857 882
858 883 if ( ! empty( $tier_id ) ) {
859 884 echo '<input type="hidden" name="tier_id" value="' . esc_attr( $tier_id ) . '"/>';
860 885 }
886 +
887 + if ( $data['preselected_newsletter_categories'] && ! empty( $data['selected_newsletter_categories'] ) ) {
888 + echo '<input type="hidden" name="selected_newsletter_categories" value="' . esc_attr( implode( ',', $data['selected_newsletter_categories'] ) ) . '"/>';
889 + }
861 890 ?>
862 891 <button type="submit"
863 892 <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
864 893 class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
@@ -912,26 +941,56 @@
912 941 return $html;
913 942 }
914 943
915 944 /**
916 - * Filter excerpts looking for subscription data.
945 + * WooCommerce Email Editor render callback for the subscriptions block.
917 946 *
918 - * @param string $excerpt The extrapolated excerpt string.
919 - * @param \WP_Post $post The current post being processed (in `get_the_excerpt`).
947 + * @param string $block_content The block content.
948 + * @param array $parsed_block The parsed block data.
949 + * @param object $rendering_context The email rendering context.
920 950 *
921 - * @return mixed
951 + * @return string
922 952 */
923 -function jetpack_filter_excerpt_for_newsletter( $excerpt, $post = null ) {
924 - // The blogmagazine theme is overriding WP core `get_the_excerpt` filter and only passing the excerpt
925 - // TODO: Until this is fixed, return the excerpt without gating. See https://github.com/Automattic/jetpack/pull/28102#issuecomment-1369161116
926 - if ( $post && str_contains( $post->post_content, '<!-- wp:jetpack/subscriptions -->' ) ) {
927 - $excerpt .= sprintf(
928 - // translators: %s is the permalink url to the current post.
929 - __( "<p><a href='%s'>View post</a> to subscribe to site newsletter.</p>", 'jetpack' ),
930 - get_post_permalink()
931 - );
953 +function render_email( $block_content, array $parsed_block, $rendering_context ) {
954 + if ( ! isset( $parsed_block['attrs'] ) || ! is_array( $parsed_block['attrs'] ) || ! function_exists( '\Automattic\Jetpack\Extensions\Button\render_email' ) || ! class_exists( '\Automattic\WooCommerce\EmailEditor\Integrations\Core\Renderer\Blocks\Button' ) ) {
955 + return '';
932 956 }
933 - return $excerpt;
957 +
958 + // Map subscription block attributes to button block attributes
959 + $button_attributes = array(
960 + 'text' => ! empty( $parsed_block['attrs']['submitButtonText'] ) ? sanitize_text_field( $parsed_block['attrs']['submitButtonText'] ) : __( 'Subscribe', 'jetpack' ),
961 + 'url' => get_post_permalink(),
962 + 'element' => 'a',
963 + // Map background colors
964 + 'backgroundColor' => $parsed_block['attrs']['buttonBackgroundColor'] ?? null,
965 + 'customBackgroundColor' => $parsed_block['attrs']['customButtonBackgroundColor'] ?? null,
966 + // Map text colors
967 + 'textColor' => $parsed_block['attrs']['textColor'] ?? null,
968 + 'customTextColor' => $parsed_block['attrs']['customTextColor'] ?? null,
969 + // Map borders
970 + 'borderRadius' => $parsed_block['attrs']['borderRadius'] ?? 0,
971 + 'borderWeight' => $parsed_block['attrs']['borderWeight'] ?? 1,
972 + 'borderColor' => $parsed_block['attrs']['borderColor'] ?? null,
973 + 'customBorderColor' => $parsed_block['attrs']['customBorderColor'] ?? null,
974 + // Map typography
975 + 'fontSize' => $parsed_block['attrs']['fontSize'] ?? null,
976 + 'customFontSize' => $parsed_block['attrs']['customFontSize'] ?? null,
977 + // Map spacing
978 + 'padding' => $parsed_block['attrs']['padding'] ?? null,
979 + );
980 +
981 + // Create a mock button block structure
982 + $button_parsed_block = array(
983 + 'attrs' => $button_attributes,
984 + 'email_attrs' => $parsed_block['email_attrs'] ?? array(),
985 + );
986 +
987 + // Call the Jetpack button's email rendering
988 + return \Automattic\Jetpack\Extensions\Button\render_email(
989 + $block_content,
990 + $button_parsed_block,
991 + $rendering_context
992 + );
934 993 }
935 994
936 995 /**
937 996 * Gate access to posts
@@ -956,9 +1015,9 @@
956 1015 }
957 1016 return $the_content;
958 1017 }
959 1018
960 - $paywalled_content = get_paywall_content( $post_access_level ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
1019 + $paywalled_content = get_paywall_content();
961 1020
962 1021 if ( has_block( \Automattic\Jetpack\Extensions\Paywall\BLOCK_NAME ) ) {
963 1022 if ( strpos( $the_content, \Automattic\Jetpack\Extensions\Paywall\BLOCK_HTML ) ) {
964 1023 return strstr( $the_content, \Automattic\Jetpack\Extensions\Paywall\BLOCK_HTML, true ) . $paywalled_content;
@@ -1037,12 +1096,11 @@
1037 1096
1038 1097 /**
1039 1098 * Returns paywall content blocks
1040 1099 *
1041 - * @param string $post_access_level The newsletter access level.
1042 1100 * @return string
1043 1101 */
1044 -function get_paywall_content( $post_access_level ) {
1102 +function get_paywall_content() {
1045 1103 if ( Jetpack_Memberships::user_is_pending_subscriber() ) {
1046 1104 return get_paywall_blocks_subscribe_pending();
1047 1105 }
1048 1106 if ( doing_filter( 'get_the_excerpt' ) ) {
@@ -1047,9 +1105,9 @@
1047 1105 }
1048 1106 if ( doing_filter( 'get_the_excerpt' ) ) {
1049 1107 return '';
1050 1108 }
1051 - return get_paywall_blocks( $post_access_level );
1109 + return get_paywall_blocks();
1052 1110 }
1053 1111
1054 1112 /**
1055 1113 * Returns the current URL.
@@ -1131,22 +1189,22 @@
1131 1189
1132 1190 /**
1133 1191 * Returns paywall content blocks if user is not authenticated
1134 1192 *
1135 - * @param string $newsletter_access_level The newsletter access level.
1136 1193 * @return string
1137 1194 */
1138 -function get_paywall_blocks( $newsletter_access_level ) {
1195 +function get_paywall_blocks() {
1139 1196 $custom_paywall = apply_filters( 'jetpack_custom_paywall_blocks', false );
1140 1197 if ( ! empty( $custom_paywall ) ) {
1141 1198 return $custom_paywall;
1142 1199 }
1143 - if ( ! jetpack_is_frontend() ) { // emails
1200 +
1201 + if ( ! Request::is_frontend() ) { // emails
1144 1202 return get_paywall_simple();
1145 1203 }
1204 +
1146 1205 require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
1147 - // Only display paid texts when Stripe is connected and the post is marked for paid subscribers
1148 - $is_paid_post = $newsletter_access_level === 'paid_subscribers' && Jetpack_Memberships::has_connected_account();
1206 + $is_paid_post = is_paid_post();
1149 1207 $is_paid_subscriber = Jetpack_Memberships::user_is_paid_subscriber();
1150 1208
1151 1209 $access_heading = $is_paid_subscriber
1152 1210 ? esc_html__( 'Upgrade to continue reading', 'jetpack' )
@@ -1153,11 +1211,13 @@
1153 1211 : esc_html__( 'Subscribe to continue reading', 'jetpack' );
1154 1212
1155 1213 $subscribe_text = $is_paid_post
1156 1214 // translators: %s is the name of the site.
1157 - ? $is_paid_subscriber
1158 - ? esc_html__( 'Upgrade to get access to the rest of this post and other exclusive content.', 'jetpack' )
1159 - : esc_html__( 'Become a paid subscriber to get access to the rest of this post and other exclusive content.', 'jetpack' )
1215 + ? (
1216 + $is_paid_subscriber
1217 + ? esc_html__( 'Upgrade to get access to the rest of this post and other exclusive content.', 'jetpack' )
1218 + : esc_html__( 'Become a paid subscriber to get access to the rest of this post and other exclusive content.', 'jetpack' )
1219 + )
1160 1220 // translators: %s is the name of the site.
1161 1221 : esc_html__( 'Subscribe to get access to the rest of this post and other subscriber-only content.', 'jetpack' );
1162 1222
1163 1223 $login_block = '';
@@ -1233,8 +1293,36 @@
1233 1293 return false;
1234 1294 }
1235 1295
1236 1296 /**
1297 + * Returns `true` if the post is a paid post.
1298 + */
1299 +function is_paid_post(): bool {
1300 + require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
1301 +
1302 + // Make sure Stripe is connected and the post is marked for paid subscribers.
1303 + if ( Jetpack_Memberships::has_connected_account() && is_jetpack_token_subscription_service_loaded() ) {
1304 + return Jetpack_Memberships::get_post_access_level() === Jetpack_Token_Subscription_Service::POST_ACCESS_LEVEL_PAID_SUBSCRIBERS;
1305 + }
1306 +
1307 + return false;
1308 +}
1309 +
1310 +/**
1311 + * Returns true if the post is a subscribers post.
1312 + */
1313 +function is_subscribers_post(): bool {
1314 + require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
1315 +
1316 + // Make sure Stripe is connected and the post is marked for paid subscribers.
1317 + if ( Jetpack_Memberships::has_connected_account() && is_jetpack_token_subscription_service_loaded() ) {
1318 + return Jetpack_Memberships::get_post_access_level() === Jetpack_Token_Subscription_Service::POST_ACCESS_LEVEL_SUBSCRIBERS;
1319 + }
1320 +
1321 + return false;
1322 +}
1323 +
1324 +/**
1237 1325 * Returns paywall content blocks when email confirmation is pending
1238 1326 *
1239 1327 * @return string
1240 1328 */
@@ -1275,22 +1363,37 @@
1275 1363 ';
1276 1364 }
1277 1365
1278 1366 /**
1279 - * Return content for non frontend views like emails.
1280 - *
1281 - * @return string
1367 + * Return content for non frontend views like Reader, emails.
1282 1368 */
1283 -function get_paywall_simple() {
1284 - $access_heading = esc_html__( "You're currently a free subscriber. Upgrade your subscription to get access to the rest of this post and other paid-subscriber only content.", 'jetpack' );
1369 +function get_paywall_simple(): string {
1370 + $is_paid_post = is_paid_post();
1371 + $is_subscribers_post = is_subscribers_post();
1372 + $is_subscriber = is_jetpack_memberships_loaded() && Jetpack_Memberships::is_current_user_subscribed();
1373 + $paywall_heading = esc_html__( 'Subscribe to keep reading', 'jetpack' );
1285 1374
1286 - $subscribe_text = esc_html__( 'Upgrade subscription', 'jetpack' );
1375 + if ( $is_subscribers_post && ! $is_subscriber ) {
1376 + $paywall_description = esc_html__( "It's a subscribers only post. Subscribe to get access to the rest of this post and other subscriber-only content.", 'jetpack' );
1377 + $paywall_action_btn = esc_html__( 'Subscribe', 'jetpack' );
1378 + } elseif ( $is_paid_post && $is_subscriber ) {
1379 + $paywall_description = esc_html__( "You're currently a free subscriber. Upgrade your subscription to get access to the rest of this post and other paid-subscriber only content.", 'jetpack' );
1380 + $paywall_action_btn = esc_html__( 'Upgrade subscription', 'jetpack' );
1381 + } else {
1382 + // - For paid post when the user is not a subscriber.
1383 + // - Default for all other cases.
1384 + $paywall_description = esc_html__( 'Become a paid subscriber to get access to the rest of this post and other exclusive content.', 'jetpack' );
1385 + $paywall_action_btn = esc_html__( 'Subscribe', 'jetpack' );
1386 + }
1287 1387
1288 1388 return '
1289 1389 <!-- wp:columns -->
1290 -<div class="wp-block-columns" style="display: inline-block; width: 90%">
1390 +<div class="wp-block-columns jetpack-paywall-simple" style="display: inline-block; width: 90%">
1291 1391 <!-- wp:column -->
1292 1392 <div class="wp-block-column" style="background-color: #F6F7F7; padding: 32px; 24px;">
1393 + <!-- wp:heading -->
1394 + <h2 class="has-text-align-center" style="margin: 0 0 12px; font-weight: 600;">' . $paywall_heading . '</h2>
1395 + <!-- /wp:heading -->
1293 1396 <!-- wp:paragraph -->
1294 1397 <p class="has-text-align-center"
1295 1398 style="text-align: center;
1296 1399 color: #50575E;
@@ -1297,20 +1400,20 @@
1297 1400 font-weight: 400;
1298 1401 font-size: 16px;
1299 1402 font-family: \'SF Pro Text\', sans-serif;
1300 1403 line-height: 28.8px;">
1301 - ' . $access_heading . '
1404 + ' . $paywall_description . '
1302 1405 </p>
1303 1406 <!-- /wp:paragraph -->
1304 1407 <!-- wp:buttons -->
1305 1408 <div class="wp-block-buttons" style="text-align: center;">
1306 1409 <!-- wp:button -->
1307 - <div class="wp-block-button" style="display: inline-block; margin: 10px 0;">
1410 + <div class="wp-block-button" style="display: inline-block; margin: 10px 0; border-style: none; padding: 0;">
1308 1411 <a href="' . esc_url( get_post_permalink() ) . '" class="wp-block-button__link wp-element-button"
1309 1412 data-wpcom-track data-tracks-link-desc="paywall-email-click"
1310 1413 style="display: inline-block;
1311 - padding: 15px 20px;
1312 - background-color: #0675C4;
1414 + padding: 12px 15px;
1415 + background-color: #3858e9;
1313 1416 color: #FFFFFF;
1314 1417 text-decoration: none;
1315 1418 border-radius: 5px;
1316 1419 font-family: \'SF Pro Display\', sans-serif;
@@ -1315,9 +1418,9 @@
1315 1418 border-radius: 5px;
1316 1419 font-family: \'SF Pro Display\', sans-serif;
1317 1420 font-weight: 500;
1318 1421 font-size: 16px;
1319 - text-align: center;">' . $subscribe_text . '</a>
1422 + text-align: center;">' . $paywall_action_btn . '</a>
1320 1423 </div>
1321 1424 <!-- /wp:button -->
1322 1425 </div>
1323 1426 <!-- /wp:buttons -->