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 +972 -293 12.0.3 → 16.3-a.1 View file →
@@ -7,15 +7,24 @@
7 7
8 8 namespace Automattic\Jetpack\Extensions\Subscriptions;
9 9
10 10 use Automattic\Jetpack\Blocks;
11 -use Automattic\Jetpack\Status;
12 -use Jetpack;
11 +use Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service\Abstract_Token_Subscription_Service;
12 +use Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service\Jetpack_Token_Subscription_Service;
13 +use Automattic\Jetpack\Modules;
14 +use Automattic\Jetpack\Status\Host;
15 +use Automattic\Jetpack\Status\Request;
13 16 use Jetpack_Gutenberg;
14 17 use Jetpack_Memberships;
15 18 use Jetpack_Subscriptions_Widget;
16 19
20 +if ( ! defined( 'ABSPATH' ) ) {
21 + exit( 0 );
22 +}
23 +
24 +require_once __DIR__ . '/class-jetpack-subscription-site.php';
17 25 require_once __DIR__ . '/constants.php';
26 +require_once JETPACK__PLUGIN_DIR . 'extensions/blocks/premium-content/_inc/subscription-service/include.php';
18 27
19 28 /**
20 29 * These block defaults should match ./constants.js
21 30 */
@@ -23,8 +32,9 @@
23 32 const DEFAULT_BORDER_WEIGHT_VALUE = 1;
24 33 const DEFAULT_FONTSIZE_VALUE = '16px';
25 34 const DEFAULT_PADDING_VALUE = 15;
26 35 const DEFAULT_SPACING_VALUE = 10;
36 +const DEFAULT_BUTTON_WIDTH = 'auto';
27 37
28 38 /**
29 39 * Registers the block for use in Gutenberg
30 40 * This is done via an action so that we can disable
@@ -30,17 +40,32 @@
30 40 * This is done via an action so that we can disable
31 41 * registration if we need to.
32 42 */
33 43 function register_block() {
34 - if (
35 - ( defined( 'IS_WPCOM' ) && IS_WPCOM )
36 - || ( Jetpack::is_connection_ready() && ! ( new Status() )->is_offline_mode() )
37 - ) {
44 + /*
45 + * Disable the feature on P2 blogs
46 + */
47 + if ( function_exists( '\WPForTeams\is_wpforteams_site' ) &&
48 + \WPForTeams\is_wpforteams_site( get_current_blog_id() ) ) {
49 + return;
50 + }
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() ) {
38 62 Blocks::jetpack_register_block(
39 - BLOCK_NAME,
63 + __DIR__,
40 64 array(
41 - 'render_callback' => __NAMESPACE__ . '\render_block',
42 - 'supports' => array(
65 + 'render_callback' => __NAMESPACE__ . '\render_block',
66 + 'render_email_callback' => __NAMESPACE__ . '\render_email',
67 + 'supports' => array(
43 68 'spacing' => array(
44 69 'margin' => true,
45 70 'padding' => true,
46 71 ),
@@ -49,27 +74,40 @@
49 74 )
50 75 );
51 76 }
52 77
53 - /*
54 - * If the Subscriptions module is not active,
55 - * do not make any further changes on the site.
56 - */
57 - if ( ! Jetpack::is_module_active( 'subscriptions' ) ) {
58 - return;
59 - }
78 + register_post_meta(
79 + 'post',
80 + META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS,
81 + array(
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 () {
94 + return wp_get_current_user()->has_cap( 'edit_posts' );
95 + },
96 + )
97 + );
60 98
61 - if ( ! Jetpack_Gutenberg::is_newsletter_enabled() ) {
62 - return; // Stop here if the Newsletter feature is not enabled.
63 - }
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 );
64 101
65 102 register_post_meta(
66 103 'post',
67 - META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS,
104 + META_NAME_FOR_POST_DONT_EMAIL_TO_SUBS,
68 105 array(
106 + 'default' => $dont_email_default,
69 107 'show_in_rest' => true,
70 108 'single' => true,
71 - 'type' => 'string',
109 + 'type' => 'boolean',
72 110 'auth_callback' => function () {
73 111 return wp_get_current_user()->has_cap( 'edit_posts' );
74 112 },
75 113 )
@@ -74,18 +112,53 @@
74 112 },
75 113 )
76 114 );
77 115
116 + register_post_meta(
117 + 'post',
118 + META_NAME_FOR_POST_TIER_ID_SETTINGS,
119 + array(
120 + 'show_in_rest' => true,
121 + 'single' => true,
122 + 'type' => 'integer',
123 + 'auth_callback' => function () {
124 + return wp_get_current_user()->has_cap( 'edit_posts' );
125 + },
126 + )
127 + );
128 +
129 + register_post_meta(
130 + 'post',
131 + META_NAME_CONTAINS_PAYWALLED_CONTENT,
132 + array(
133 + 'show_in_rest' => true,
134 + 'single' => true,
135 + 'type' => 'boolean',
136 + 'auth_callback' => function () {
137 + return wp_get_current_user()->has_cap( 'edit_posts' );
138 + },
139 + )
140 + );
141 +
78 142 // This ensures Jetpack will sync this post meta to WPCOM.
79 143 add_filter(
80 144 'jetpack_sync_post_meta_whitelist',
81 145 function ( $allowed_meta ) {
82 - return array_merge( $allowed_meta, array( META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS ) );
146 + return array_merge(
147 + $allowed_meta,
148 + array(
149 + META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS,
150 + META_NAME_FOR_POST_DONT_EMAIL_TO_SUBS,
151 + META_NAME_CONTAINS_PAYWALLED_CONTENT,
152 + META_NAME_FOR_POST_TIER_ID_SETTINGS,
153 + META_NAME_CONTAINS_PAID_CONTENT,
154 + )
155 + );
83 156 }
84 157 );
85 158
86 - // Hide the content
87 - add_action( 'the_content', __NAMESPACE__ . '\maybe_get_locked_content' );
159 + // Hide the content – Priority 8 makes it run before do_blocks gets called for the content
160 + add_filter( 'the_content', __NAMESPACE__ . '\add_paywall', 8 );
88 161
89 162 // Close comments on the front-end
90 163 add_filter( 'comments_open', __NAMESPACE__ . '\maybe_close_comments', 10, 2 );
91 164 add_filter( 'pings_open', __NAMESPACE__ . '\maybe_close_comments', 10, 2 );
@@ -92,10 +165,41 @@
92 165
93 166 // Hide existing comments
94 167 add_filter( 'get_comment', __NAMESPACE__ . '\maybe_gate_existing_comments' );
95 168
96 - // Gate the excerpt for a post
97 - add_filter( 'get_the_excerpt', __NAMESPACE__ . '\jetpack_filter_excerpt_for_newsletter', 10, 2 );
169 + // Add a 'Newsletter' column to the Edit posts page
170 + // We only display the "Newsletter" column if we have configured the paid newsletter plan
171 + if ( defined( 'WP_ADMIN' ) && WP_ADMIN && Jetpack_Memberships::has_configured_plans_jetpack_recurring_payments( 'newsletter' ) ) {
172 + add_action( 'manage_post_posts_columns', __NAMESPACE__ . '\register_newsletter_access_column' );
173 + add_action( 'manage_post_posts_custom_column', __NAMESPACE__ . '\render_newsletter_access_rows', 10, 2 );
174 + add_action( 'admin_head', __NAMESPACE__ . '\newsletter_access_column_styles' );
175 + }
176 +
177 + add_action( 'init', __NAMESPACE__ . '\maybe_prevent_super_cache_caching' );
178 +
179 + add_action( 'wp_after_insert_post', __NAMESPACE__ . '\add_paywalled_content_post_meta', 99, 2 );
180 +
181 + add_filter(
182 + 'jetpack_options_whitelist',
183 + function ( $options ) {
184 + $options[] = 'jetpack_subscriptions_subscribe_post_end_enabled';
185 + $options[] = 'jetpack_subscriptions_subscribe_navigation_enabled';
186 +
187 + return $options;
188 + }
189 + );
190 +
191 + // If called via REST API, we need to register later in the lifecycle
192 + if ( ( new Host() )->is_wpcom_platform() && ! Request::is_frontend() ) {
193 + add_action(
194 + 'restapi_theme_init',
195 + function () {
196 + Jetpack_Subscription_Site::init()->handle_subscribe_block_placements();
197 + }
198 + );
199 + } else {
200 + Jetpack_Subscription_Site::init()->handle_subscribe_block_placements();
201 + }
98 202 }
99 203 add_action( 'init', __NAMESPACE__ . '\register_block', 9 );
100 204
101 205 /**
@@ -107,20 +211,100 @@
107 211 return defined( 'IS_WPCOM' ) && IS_WPCOM;
108 212 }
109 213
110 214 /**
111 - * Determine the amount of folks currently subscribed to the blog, splitted out in email_subscribers & social_followers
215 + * Adds a 'Newsletter' column after the 'Title' column in the post list
112 216 *
113 - * @return array containing ['value' => ['email_subscribers' => 0, 'social_followers' => 0]]
217 + * @param array $columns An array of column names.
218 + * @return array An array of column names.
114 219 */
220 +function register_newsletter_access_column( $columns ) {
221 + $position = array_search( 'title', array_keys( $columns ), true );
222 + $new_column = array( NEWSLETTER_COLUMN_ID => __( 'Newsletter', 'jetpack' ) );
223 + return array_merge(
224 + array_slice( $columns, 0, $position + 1, true ),
225 + $new_column,
226 + array_slice( $columns, $position, null, true )
227 + );
228 +}
229 +
230 +/**
231 + * Add a meta to prevent publication on firehose, ES AI or Reader
232 + *
233 + * @param int $post_id Post id being saved.
234 + * @param \WP_Post $post Post being saved.
235 + * @return void
236 + */
237 +function add_paywalled_content_post_meta( int $post_id, \WP_Post $post ) {
238 + if ( $post->post_type !== 'post' ) {
239 + return;
240 + }
241 +
242 + $access_level = get_post_meta( $post_id, META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS, true );
243 +
244 + $is_paywalled = false;
245 + switch ( $access_level ) {
246 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_PAID_SUBSCRIBERS_ALL_TIERS:
247 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_PAID_SUBSCRIBERS:
248 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_SUBSCRIBERS:
249 + $is_paywalled = true;
250 + }
251 + if ( $is_paywalled ) {
252 + update_post_meta( $post_id, META_NAME_CONTAINS_PAYWALLED_CONTENT, $is_paywalled );
253 + }
254 + if ( ! $is_paywalled ) {
255 + delete_post_meta( $post_id, META_NAME_CONTAINS_PAYWALLED_CONTENT );
256 + }
257 +}
258 +
259 +/**
260 + * Displays the newsletter access level.
261 + *
262 + * @param string $column_id The ID of the column to display.
263 + * @param int $post_id The current post ID.
264 + */
265 +function render_newsletter_access_rows( $column_id, $post_id ) {
266 + if ( NEWSLETTER_COLUMN_ID !== $column_id ) {
267 + return;
268 + }
269 +
270 + $access_level = get_post_meta( $post_id, META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS, true );
271 +
272 + switch ( $access_level ) {
273 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_PAID_SUBSCRIBERS_ALL_TIERS:
274 + echo esc_html__( 'Paid Subscribers (all plans)', 'jetpack' );
275 + break;
276 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_PAID_SUBSCRIBERS:
277 + echo esc_html__( 'Paid Subscribers', 'jetpack' );
278 + break;
279 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_SUBSCRIBERS:
280 + echo esc_html__( 'Subscribers', 'jetpack' );
281 + break;
282 + case Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_EVERYBODY:
283 + echo esc_html__( 'Everybody', 'jetpack' );
284 + break;
285 + default:
286 + echo '';
287 + }
288 +}
289 +
290 +/**
291 + * Adds the Newsletter column styles
292 + */
293 +function newsletter_access_column_styles() {
294 + echo '<style id="jetpack-newsletter-newsletter-access-column"> table.fixed .column-newsletter_access { width: 10%; } </style>';
295 +}
296 +
297 +/**
298 + * Determine the amount of folks currently subscribed to the blog, splitted out in total_subscribers, email_subscribers, social_followers & paid_subscribers.
299 + *
300 + * @return array containing ['value' => ['total_subscribers' => 0, 'email_subscribers' => 0, 'paid_subscribers' => 0, 'social_followers' => 0]]
301 + */
115 302 function fetch_subscriber_counts() {
116 303 $subs_count = 0;
117 304 if ( is_wpcom() ) {
118 305 $subs_count = array(
119 - 'value' => array(
120 - 'email_subscribers' => \wpcom_subs_total_for_blog(),
121 - 'social_followers' => \wpcom_social_followers_total_for_blog(),
122 - ),
306 + 'value' => \wpcom_fetch_subs_counts( true ),
123 307 );
124 308 } else {
125 309 $cache_key = 'wpcom_subscribers_totals';
126 310 $subs_count = get_transient( $cache_key );
@@ -132,11 +316,13 @@
132 316 $subs_count = array(
133 317 'status' => 'failed',
134 318 'code' => $xml->getErrorCode(),
135 319 'message' => $xml->getErrorMessage(),
136 - 'value' => ( isset( $subs_count['value'] ) ) ? $subs_count['value'] : array(
320 + 'value' => $subs_count['value'] ?? array(
321 + 'total_subscribers' => 0,
137 322 'email_subscribers' => 0,
138 323 'social_followers' => 0,
324 + 'paid_subscribers' => 0,
139 325 ),
140 326 );
141 327 } else {
142 328 $subs_count = array(
@@ -159,11 +345,11 @@
159 345 function get_subscriber_count( $include_social_followers ) {
160 346 $counts = fetch_subscriber_counts();
161 347
162 348 if ( $include_social_followers ) {
163 - $subscriber_count = $counts['value']['email_subscribers'] + $counts['value']['social_followers'];
349 + $subscriber_count = $counts['value']['total_subscribers'] + $counts['value']['social_followers'];
164 350 } else {
165 - $subscriber_count = $counts['value']['email_subscribers'];
351 + $subscriber_count = $counts['value']['total_subscribers'];
166 352 }
167 353 return $subscriber_count;
168 354 }
169 355
@@ -259,15 +445,31 @@
259 445 )
260 446 );
261 447
262 448 return array(
263 - 'block_wrapper' => join( ' ', array_keys( $block_wrapper_classes ) ),
264 - 'email_field' => join( ' ', array_keys( $email_field_classes ) ),
265 - 'submit_button' => join( ' ', array_keys( $submit_button_classes ) ),
449 + 'block_wrapper' => implode( ' ', array_keys( $block_wrapper_classes ) ),
450 + 'email_field' => implode( ' ', array_keys( $email_field_classes ) ),
451 + 'submit_button' => implode( ' ', array_keys( $submit_button_classes ) ),
266 452 );
267 453 }
268 454
269 455 /**
456 + * Checks if block style is "button only"
457 + *
458 + * @param string $class_name Block attribute className; multiple names are spearated by space.
459 + *
460 + * @return bool
461 + */
462 +function is_button_only_style( $class_name ) {
463 + if ( empty( $class_name ) ) {
464 + return false;
465 + }
466 +
467 + $class_names = explode( ' ', $class_name );
468 + return in_array( 'is-style-button', $class_names, true );
469 +}
470 +
471 +/**
270 472 * Uses block attributes to generate an array containing the styles for various block elements.
271 473 * Based on Jetpack_Subscriptions_Widget::do_subscription_form() which the block was originally using.
272 474 *
273 475 * @param array $attributes Array containing the block attributes.
@@ -274,8 +476,10 @@
274 476 *
275 477 * @return array
276 478 */
277 479 function get_element_styles_from_attributes( $attributes ) {
480 + $is_button_only_style = is_button_only_style( get_attribute( $attributes, 'className', '' ) );
481 +
278 482 $button_background_style = ! has_attribute( $attributes, 'buttonBackgroundColor' ) && has_attribute( $attributes, 'customButtonGradient' )
279 483 ? get_attribute( $attributes, 'customButtonGradient' )
280 484 : get_attribute( $attributes, 'customButtonBackgroundColor' );
281 485
@@ -291,15 +495,15 @@
291 495 $submit_button_styles .= sprintf( 'color: %s;', get_attribute( $attributes, 'customTextColor' ) );
292 496 }
293 497
294 498 if ( has_attribute( $attributes, 'buttonWidth' ) ) {
295 - $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 ) );
296 500 $submit_button_wrapper_styles .= 'max-width: 100%;';
297 501
298 502 // Account for custom margins on inline forms.
299 503 $submit_button_styles .= true === get_attribute( $attributes, 'buttonOnNewLine' )
300 - ? sprintf( 'width: calc(100%% - %dpx);', get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE ) )
301 - : 'width: 100%;';
504 + ? 'width: 100%;'
505 + : sprintf( 'width: calc(100%% - %dpx);', get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE ) );
302 506 }
303 507
304 508 $font_size = get_attribute( $attributes, 'customFontSize', DEFAULT_FONTSIZE_VALUE );
305 509 $style = sprintf( 'font-size: %s%s;', $font_size, is_numeric( $font_size ) ? 'px' : '' );
@@ -312,14 +516,16 @@
312 516
313 517 $submit_button_styles .= $style;
314 518 $email_field_styles .= $style;
315 519
316 - $button_spacing = get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE );
317 - if ( true === get_attribute( $attributes, 'buttonOnNewLine' ) ) {
318 - $submit_button_styles .= sprintf( 'margin-top: %dpx;', $button_spacing );
319 - } else {
320 - $submit_button_styles .= 'margin: 0px; '; // Reset Safari's 2px default margin for buttons affecting input and button union
321 - $submit_button_styles .= sprintf( 'margin-left: %dpx;', $button_spacing );
520 + if ( ! $is_button_only_style ) {
521 + $button_spacing = get_attribute( $attributes, 'spacing', DEFAULT_SPACING_VALUE );
522 + if ( true === get_attribute( $attributes, 'buttonOnNewLine' ) ) {
523 + $submit_button_styles .= sprintf( 'margin-top: %dpx;', $button_spacing );
524 + } else {
525 + $submit_button_styles .= 'margin: 0; '; // Reset Safari's 2px default margin for buttons affecting input and button union
526 + $submit_button_styles .= sprintf( 'margin-left: %dpx;', $button_spacing );
527 + }
322 528 }
323 529
324 530 if ( has_attribute( $attributes, 'borderColor' ) ) {
325 531 $style = sprintf( 'border-color: %s;', get_attribute( $attributes, 'borderColor', '' ) );
@@ -341,8 +547,14 @@
341 547 $submit_button_styles .= $style;
342 548 $email_field_styles .= $style;
343 549 }
344 550
551 + if ( ! Request::is_frontend() ) {
552 + $background_color_style = get_attribute_color( 'buttonBackgroundColor', $attributes, '#113AF5' /* default lettre theme color */ );
553 + $text_color_style = get_attribute_color( 'textColor', $attributes, '#FFFFFF' );
554 + $submit_button_styles .= sprintf( ' background-color: %s; color: %s;', $background_color_style, $text_color_style );
555 + }
556 +
345 557 return array(
346 558 'email_field' => $email_field_styles,
347 559 'submit_button' => $submit_button_styles,
348 560 'submit_button_wrapper' => $submit_button_wrapper_styles,
@@ -349,8 +561,88 @@
349 561 );
350 562 }
351 563
352 564 /**
565 + * Retrieve the resolved color for a given attribute.
566 + *
567 + * @param string $attribute_name The name of the attribute to resolve.
568 + * @param array $attributes An array of all attributes.
569 + * @param string $default_color A fallback color in case no color can be resolved.
570 + *
571 + * @return string Returns the resolved color or the default color if no color is found.
572 + */
573 +function get_attribute_color( $attribute_name, $attributes, $default_color ) {
574 + if ( has_attribute( $attributes, $attribute_name ) ) {
575 + $color_slug = get_attribute( $attributes, $attribute_name );
576 + $resolved_color = get_color_from_slug( $color_slug );
577 +
578 + if ( $resolved_color ) {
579 + return $resolved_color;
580 + }
581 + }
582 +
583 + return get_global_style_color( $attribute_name, $default_color );
584 +}
585 +
586 +/**
587 + * Retrieve the global style color based on a provided style key.
588 + *
589 + * @param string $style_key The key for the desired style.
590 + * @param string $default_color A fallback color in case the global style is not set.
591 + *
592 + * @return string Returns the color defined in global styles or the default color if not defined.
593 + */
594 +function get_global_style_color( $style_key, $default_color ) {
595 + $global_styles = wp_get_global_styles(
596 + array( 'color' ),
597 + array(
598 + 'block_name' => 'core/button',
599 + 'transforms' => array( 'resolve-variables' ),
600 + )
601 + );
602 +
603 + if ( isset( $global_styles[ $style_key ] ) ) {
604 + return $global_styles[ $style_key ];
605 + }
606 +
607 + return $default_color;
608 +}
609 +
610 +/**
611 + * Convert a color slug into its corresponding color value.
612 + *
613 + * @param string $slug The slug representation of the color.
614 + *
615 + * @return string|null Returns the color value if found, or null otherwise.
616 + */
617 +function get_color_from_slug( $slug ) {
618 + $color_palettes = wp_get_global_settings( array( 'color', 'palette' ) );
619 +
620 + if ( ! is_array( $color_palettes ) ) {
621 + return null;
622 + }
623 +
624 + foreach ( $color_palettes as $palette ) {
625 + if ( is_array( $palette ) ) {
626 + foreach ( $palette as $color ) {
627 + if ( isset( $color['slug'] ) && $color['slug'] === $slug && isset( $color['color'] ) ) {
628 + return $color['color'];
629 + }
630 + }
631 + }
632 + }
633 +
634 + return null;
635 +}
636 +
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 +/**
353 645 * Subscriptions block render callback.
354 646 *
355 647 * @param array $attributes Array containing the block attributes.
356 648 *
@@ -357,88 +649,106 @@
357 649 * @return string
358 650 */
359 651 function render_block( $attributes ) {
360 652 // If the Subscriptions module is not active, don't render the block.
361 - if ( ! Jetpack::is_module_active( 'subscriptions' ) ) {
653 + if ( ! ( new Modules() )->is_active( 'subscriptions' ) ) {
362 654 return '';
363 655 }
364 656
365 - if ( Jetpack_Gutenberg::is_newsletter_enabled() ) {
366 - // We only want the sites that have newsletter feature enabled to be graced by this JavaScript and thickbox.
367 - Jetpack_Gutenberg::load_assets_as_required( FEATURE_NAME, array( 'thickbox' ) );
368 - if ( ! wp_style_is( 'enqueued' ) ) {
369 - wp_enqueue_style( 'thickbox' );
370 - }
657 + if ( is_jetpack_memberships_loaded() ) {
658 + // We only want the sites that have newsletter feature enabled to be graced by this JavaScript.
659 + Jetpack_Gutenberg::load_assets_as_required( __DIR__ );
371 660 } else {
372 661 Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME );
373 662 }
374 663
375 - $subscribe_email = '';
664 + if ( ! class_exists( 'Jetpack_Subscriptions_Widget' ) ) {
665 + return '';
666 + }
376 667
377 - /** This filter is documented in modules/contact-form/grunion-contact-form.php */
378 - if ( is_wpcom() || false !== apply_filters( 'jetpack_auto_fill_logged_in_user', false ) ) {
379 - $current_user = wp_get_current_user();
380 - $subscribe_email = ! empty( $current_user->user_email ) ? $current_user->user_email : '';
668 + // Prefill the email field with the current user's email if they are logged in via Memberships premium content token
669 + $subscribe_email = Jetpack_Memberships::get_current_user_email();
670 +
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 ) ) {
673 + $current_user = wp_get_current_user();
674 + if ( ! empty( $current_user->user_email ) ) {
675 + $subscribe_email = $current_user->user_email;
676 + }
381 677 }
382 678
383 679 // The block is using the Jetpack_Subscriptions_Widget backend, hence the need to increase the instance count.
384 680 ++Jetpack_Subscriptions_Widget::$instance_count;
385 681
386 - $classes = get_element_class_names_from_attributes( $attributes );
387 - $styles = get_element_styles_from_attributes( $attributes );
682 + $classes = get_element_class_names_from_attributes( $attributes );
683 + $styles = get_element_styles_from_attributes( $attributes );
684 +
685 + // The default value was previously "true" in block.json. We don't want to rely setting "default" in block.json to falsy,
686 + // because it would change the setting for previously saved blocks. Block editor doesn't store default values in attributes at all.
687 + // Hence users without this set will still get social counts included in the subscriber counter.
688 + // Lowering the subscriber count on their behalf with code change would be controversial.
689 + // We want to disencourage including social count as it's misleading.
388 690 $include_social_followers = isset( $attributes['includeSocialFollowers'] ) ? (bool) get_attribute( $attributes, 'includeSocialFollowers' ) : true;
389 691
390 692 $data = array(
391 - 'widget_id' => Jetpack_Subscriptions_Widget::$instance_count,
392 - 'subscribe_email' => $subscribe_email,
393 -
394 - '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(
395 697 array(
396 698 'class' => $classes['block_wrapper'],
397 699 )
398 700 ),
399 - 'subscribe_placeholder' => get_attribute( $attributes, 'subscribePlaceholder', esc_html__( 'Type your email…', 'jetpack' ) ),
400 - 'submit_button_text' => get_attribute( $attributes, 'submitButtonText', esc_html__( 'Subscribe', 'jetpack' ) ),
401 - '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(
402 706 $attributes,
403 707 'successMessage',
404 - esc_html__( "Success! An email was just sent to confirm your subscription. Please find the email now and click 'Confirm Follow' to start subscribing.", 'jetpack' )
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' )
405 709 ),
406 - 'show_subscribers_total' => (bool) get_attribute( $attributes, 'showSubscribersTotal' ),
407 - 'subscribers_total' => get_subscriber_count( $include_social_followers ),
408 - '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(
409 713 ( is_ssl() ? 'https' : 'http' ) . '://' . ( isset( $_SERVER['HTTP_HOST'] ) ? wp_unslash( $_SERVER['HTTP_HOST'] ) : '' ) .
410 714 ( isset( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : '' )
411 715 ),
412 - 'source' => 'subscribe-block',
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 ),
413 721 );
414 722
415 - if ( is_wpcom() ) {
416 - return render_wpcom_subscribe_form( $data, $classes, $styles );
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() ) {
729 + return render_for_email( $data, $styles );
417 730 }
418 731
419 - return render_jetpack_subscribe_form( $data, $classes, $styles );
732 + return render_for_website( $data, $classes, $styles );
420 733 }
421 734
422 735 /**
423 - * Generates the source parameter to pass to the iframe
736 + * Get the post access level for the current post. Defaults to 'everybody' if the query is not for a single post
424 737 *
425 - * @return string the actual post access level (see projects/plugins/jetpack/extensions/blocks/subscriptions/settings.js for the values).
738 + * @return string the actual post access level (see projects/plugins/jetpack/extensions/blocks/subscriptions/constants.js for the values).
426 739 */
427 -function get_post_access_level() {
428 - $post_id = get_the_ID();
429 - if ( ! $post_id ) {
430 - return 'everybody';
740 +function get_post_access_level_for_current_post() {
741 + if ( ! is_singular() ) {
742 + // There is no "actual" current post.
743 + return Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_EVERYBODY;
431 744 }
432 - $meta = get_post_meta( $post_id, META_NAME_FOR_POST_LEVEL_ACCESS_SETTINGS, true );
433 - if ( empty( $meta ) ) {
434 - $meta = 'everybody';
435 - }
436 - return $meta;
745 +
746 + return Jetpack_Memberships::get_post_access_level();
437 747 }
438 748
439 749 /**
440 - * Renders the WP.com version of the subscriptions block.
750 + * Renders the subscriptions block at the site.
441 751 *
442 752 * @param array $data Array containing block view data.
443 753 * @param array $classes Array containing the classes for different block elements.
444 754 * @param array $styles Array containing the styles for different block elements.
@@ -444,14 +754,33 @@
444 754 * @param array $styles Array containing the styles for different block elements.
445 755 *
446 756 * @return string
447 757 */
448 -function render_wpcom_subscribe_form( $data, $classes, $styles ) {
449 - global $current_blog;
758 +function render_for_website( $data, $classes, $styles ) {
759 + $lang = get_locale();
760 + $blog_id = \Jetpack_Options::get_option( 'id' );
761 + $widget_id_suffix = Jetpack_Subscriptions_Widget::$instance_count > 1 ? '-' . Jetpack_Subscriptions_Widget::$instance_count : '';
762 + $form_id = 'subscribe-blog' . $widget_id_suffix;
763 + $form_url = 'https://wordpress.com/email-subscriptions';
764 + $post_access_level = get_post_access_level_for_current_post();
765 + $is_button_only_style = ! empty( $data['class_name'] ) ? is_button_only_style( $data['class_name'] ) : false;
450 766
451 - $form_id = 'subscribe-blog' . ( Jetpack_Subscriptions_Widget::$instance_count > 1 ? '-' . Jetpack_Subscriptions_Widget::$instance_count : '' );
452 - $url = defined( 'SUBSCRIBE_BLOG_URL' ) ? SUBSCRIBE_BLOG_URL : '';
767 + // Post ID is used for pulling post-specific paid status, and returning to the right post after confirming subscription
768 + $post_id = null;
769 + if ( in_the_loop() ) {
770 + $post_id = get_the_ID();
771 + } elseif ( is_singular( 'post' ) || is_page() ) {
772 + $post_id = get_queried_object_id();
773 + } else {
774 + $post_id = get_option( 'page_on_front' );
775 + }
453 776
777 + $subscribe_field_id = apply_filters( 'subscribe_field_id', 'subscribe-field' . $widget_id_suffix, $data['widget_id'] );
778 + $tier_id = get_post_meta( $post_id, META_NAME_FOR_POST_TIER_ID_SETTINGS, true );
779 + $is_subscribed = Jetpack_Memberships::is_current_user_subscribed();
780 + $button_text = get_submit_button_text( $data );
781 + $show_subscriber_count = $data['show_subscribers_total'] && $data['subscribers_total'] && ! $is_subscribed;
782 +
454 783 ob_start();
455 784
456 785 Jetpack_Subscriptions_Widget::render_widget_status_messages(
457 786 array(
@@ -457,231 +786,211 @@
457 786 array(
458 787 'success_message' => $data['success_message'],
459 788 )
460 789 );
461 -
462 - $post_access_level = get_post_access_level();
463 -
464 790 ?>
465 791 <div <?php echo wp_kses_data( $data['wrapper_attributes'] ); ?>>
466 - <div class="wp-block-jetpack-subscriptions__container">
467 - <form
468 - action="<?php echo esc_url( $url ); ?>"
469 - method="post"
470 - accept-charset="utf-8"
471 - data-blog="<?php echo esc_attr( get_current_blog_id() ); ?>"
472 - data-post_access_level="<?php echo esc_attr( $post_access_level ); ?>"
473 - id="<?php echo esc_attr( $form_id ); ?>"
474 - >
475 - <?php
476 - $email_field_id = 'subscribe-field';
477 - $email_field_id .= Jetpack_Subscriptions_Widget::$instance_count > 1
478 - ? '-' . Jetpack_Subscriptions_Widget::$instance_count
479 - : '';
480 - $label_field_id = $email_field_id . '-label';
481 - ?>
482 - <p id="subscribe-email">
483 - <label
484 - id="<?php echo esc_attr( $label_field_id ); ?>"
485 - for="<?php echo esc_attr( $email_field_id ); ?>"
486 - class="screen-reader-text"
487 - >
488 - <?php echo esc_html( $data['subscribe_placeholder'] ); ?>
489 - </label>
490 -
491 - <?php
492 - printf(
493 - '<input
494 - required="required"
495 - type="email"
496 - name="email"
497 - %1$s
498 - style="%2$s"
499 - placeholder="%3$s"
500 - value="%4$s"
501 - id="%5$s"
502 - />',
503 - ( ! empty( $classes['email_field'] )
504 - ? 'class="' . esc_attr( $classes['email_field'] ) . '"'
505 - : ''
506 - ),
507 - ( ! empty( $styles['email_field'] )
508 - ? esc_attr( $styles['email_field'] )
509 - : 'width: 95%; padding: 1px 10px'
510 - ),
511 - esc_attr( $data['subscribe_placeholder'] ),
512 - esc_attr( $data['subscribe_email'] ),
513 - esc_attr( $email_field_id )
514 - );
515 - ?>
516 - </p>
517 -
518 - <p id="subscribe-submit"
792 + <div class="wp-block-jetpack-subscriptions__container<?php echo ! $is_subscribed ? ' is-not-subscriber' : ''; ?>">
793 + <?php if ( is_top_subscription() ) : ?>
794 + <p id="subscribe-submit" class="is-link"
519 795 <?php if ( ! empty( $styles['submit_button_wrapper'] ) ) : ?>
520 796 style="<?php echo esc_attr( $styles['submit_button_wrapper'] ); ?>"
521 797 <?php endif; ?>
522 798 >
523 - <input type="hidden" name="action" value="subscribe"/>
524 - <input type="hidden" name="blog_id" value="<?php echo (int) $current_blog->blog_id; ?>"/>
525 - <input type="hidden" name="source" value="<?php echo esc_url( $data['referer'] ); ?>"/>
526 - <input type="hidden" name="sub-type" value="<?php echo esc_attr( $data['source'] ); ?>"/>
527 - <input type="hidden" name="redirect_fragment" value="<?php echo esc_attr( $form_id ); ?>"/>
528 - <?php wp_nonce_field( 'blogsub_subscribe_' . $current_blog->blog_id, '_wpnonce', false ); ?>
529 - <button type="submit"
530 - <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
531 - class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
799 + <a
800 + href="<?php echo esc_url( 'https://wordpress.com/reader/site/subscription/' . $blog_id ); ?>"
801 + <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
802 + class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
803 + <?php endif; ?>
804 + <?php if ( ! empty( $styles['submit_button'] ) ) : ?>
805 + style="<?php echo esc_attr( $styles['submit_button'] ); ?>"
806 + <?php endif; ?>
807 + >
808 + <?php echo sanitize_submit_text( $button_text ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
809 + </a>
810 + </p>
811 + <?php else : ?>
812 + <form
813 + action="<?php echo esc_url( $form_url ); ?>"
814 + method="post"
815 + accept-charset="utf-8"
816 + data-blog="<?php echo esc_attr( $blog_id ); ?>"
817 + data-post_access_level="<?php echo esc_attr( $post_access_level ); ?>"
818 + data-subscriber_email="<?php echo esc_attr( $data['subscribe_email'] ); ?>"
819 + id="<?php echo esc_attr( $form_id ); ?>"
820 + >
821 + <div class="wp-block-jetpack-subscriptions__form-elements">
822 + <?php if ( ! $is_subscribed && ! $is_button_only_style ) : ?>
823 + <p id="subscribe-email">
824 + <label
825 + id="<?php echo esc_attr( $subscribe_field_id . '-label' ); ?>"
826 + for="<?php echo esc_attr( $subscribe_field_id ); ?>"
827 + class="screen-reader-text"
828 + >
829 + <?php echo esc_html( $data['subscribe_placeholder'] ); ?>
830 + </label>
831 + <?php
832 + printf(
833 + '<input
834 + required="required"
835 + type="email"
836 + name="email"
837 + autocomplete="email"
838 + %1$s
839 + style="%2$s"
840 + placeholder="%3$s"
841 + value="%4$s"
842 + id="%5$s"
843 + %6$s
844 + />',
845 + ( ! empty( $classes['email_field'] )
846 + ? 'class="' . esc_attr( $classes['email_field'] ) . '"'
847 + : ''
848 + ),
849 + ( ! empty( $styles['email_field'] )
850 + ? esc_attr( $styles['email_field'] )
851 + : 'width: 95%; padding: 1px 10px'
852 + ),
853 + esc_attr( $data['subscribe_placeholder'] ),
854 + esc_attr( $data['subscribe_email'] ),
855 + esc_attr( $subscribe_field_id ),
856 + ( ! empty( $data['subscribe_email'] )
857 + ? 'disabled title="' . esc_attr__( "You're logged in with this email", 'jetpack' ) . '"'
858 + : 'title="' . esc_attr__( 'Please fill in this field.', 'jetpack' ) . '"'
859 + )
860 + );
861 + ?>
862 + </p>
532 863 <?php endif; ?>
533 - <?php if ( ! empty( $styles['submit_button'] ) ) : ?>
534 - style="<?php echo esc_attr( $styles['submit_button'] ); ?>"
535 - <?php endif; ?>
536 - >
537 - <?php
538 - echo wp_kses(
539 - html_entity_decode( $data['submit_button_text'], ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 ),
540 - Jetpack_Subscriptions_Widget::$allowed_html_tags_for_submit_button
541 - );
542 - ?>
543 - </button>
544 - </p>
545 - </form>
546 - <?php if ( $data['show_subscribers_total'] && $data['subscribers_total'] ) : ?>
864 + <p id="subscribe-submit"
865 + <?php if ( ! empty( $styles['submit_button_wrapper'] ) ) : ?>
866 + style="<?php echo esc_attr( $styles['submit_button_wrapper'] ); ?>"
867 + <?php endif; ?>
868 + >
869 + <input type="hidden" name="action" value="subscribe"/>
870 + <input type="hidden" name="blog_id" value="<?php echo (int) $blog_id; ?>"/>
871 + <input type="hidden" name="source" value="<?php echo esc_url( $data['referer'] ); ?>"/>
872 + <input type="hidden" name="sub-type" value="<?php echo esc_attr( $data['source'] ); ?>"/>
873 + <input type="hidden" name="app_source" value="<?php echo esc_attr( $data['app_source'] ); ?>"/>
874 + <input type="hidden" name="redirect_fragment" value="<?php echo esc_attr( $form_id ); ?>"/>
875 + <input type="hidden" name="lang" value="<?php echo esc_attr( $lang ); ?>"/>
876 + <?php
877 + wp_nonce_field( 'blogsub_subscribe_' . $blog_id );
878 +
879 + if ( ! empty( $post_id ) ) {
880 + echo '<input type="hidden" name="post_id" value="' . esc_attr( $post_id ) . '"/>';
881 + }
882 +
883 + if ( ! empty( $tier_id ) ) {
884 + echo '<input type="hidden" name="tier_id" value="' . esc_attr( $tier_id ) . '"/>';
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 + }
890 + ?>
891 + <button type="submit"
892 + <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
893 + class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
894 + <?php endif; ?>
895 + <?php if ( ! empty( $styles['submit_button'] ) ) : ?>
896 + style="<?php echo esc_attr( $styles['submit_button'] ); ?>"
897 + <?php endif; ?>
898 + name="jetpack_subscriptions_widget"
899 + >
900 + <?php echo sanitize_submit_text( $button_text ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
901 + </button>
902 + </p>
903 + </div>
904 + </form>
905 + <?php endif; ?>
906 + <?php if ( $show_subscriber_count ) : ?>
547 907 <div class="wp-block-jetpack-subscriptions__subscount">
548 - <?php
549 - /* translators: %s: number of folks following the blog */
550 - echo esc_html( sprintf( _n( 'Join %s other follower', 'Join %s other followers', $data['subscribers_total'], 'jetpack' ), number_format_i18n( $data['subscribers_total'] ) ) );
551 - ?>
908 + <?php echo esc_html( Jetpack_Memberships::get_join_others_text( $data['subscribers_total'] ) ); ?>
552 909 </div>
553 910 <?php endif; ?>
554 911 </div>
555 912 </div>
556 913 <?php
557 -
558 914 return ob_get_clean();
559 915 }
560 916
561 917 /**
562 - * Renders the Jetpack version of the subscriptions block.
918 + * Renders the email version of the subscriptions block.
563 919 *
564 920 * @param array $data Array containing block view data.
565 - * @param array $classes Array containing the classes for different block elements.
566 921 * @param array $styles Array containing the styles for different block elements.
567 922 *
568 923 * @return string
569 924 */
570 -function render_jetpack_subscribe_form( $data, $classes, $styles ) {
571 - $form_id = sprintf( 'subscribe-blog-%s', $data['widget_id'] );
572 - $subscribe_field_id = apply_filters( 'subscribe_field_id', 'subscribe-field', $data['widget_id'] );
573 - ob_start();
925 +function render_for_email( $data, $styles ) {
926 + $submit_button_wrapper_style = ! empty( $styles['submit_button_wrapper'] ) ? 'style="' . esc_attr( $styles['submit_button_wrapper'] ) . '"' : '';
927 + $button_text = get_submit_button_text( $data );
574 928
575 - Jetpack_Subscriptions_Widget::render_widget_status_messages(
576 - array(
577 - 'success_message' => $data['success_message'],
578 - )
579 - );
580 -
581 - $blog_id = \Jetpack_Options::get_option( 'id' );
582 - $post_access_level = get_post_access_level();
583 -
584 - ?>
585 - <div <?php echo wp_kses_data( $data['wrapper_attributes'] ); ?>>
586 - <div class="jetpack_subscription_widget">
587 - <div class="wp-block-jetpack-subscriptions__container">
588 - <form
589 - action="#"
590 - method="post"
591 - accept-charset="utf-8"
592 - data-blog="<?php echo esc_attr( $blog_id ); ?>"
593 - data-post_access_level="<?php echo esc_attr( $post_access_level ); ?>"
594 - id="<?php echo esc_attr( $form_id ); ?>"
595 - >
596 - <p id="subscribe-email">
597 - <label id="jetpack-subscribe-label"
598 - class="screen-reader-text"
599 - for="<?php echo esc_attr( $subscribe_field_id . '-' . $data['widget_id'] ); ?>">
600 - <?php echo esc_html( $data['subscribe_placeholder'] ); ?>
601 - </label>
602 - <input type="email" name="email" required="required"
603 - <?php if ( ! empty( $classes['email_field'] ) ) : ?>
604 - class="<?php echo esc_attr( $classes['email_field'] ); ?> required"
605 - <?php endif; ?>
606 - <?php if ( ! empty( $styles['email_field'] ) ) : ?>
607 - style="<?php echo esc_attr( $styles['email_field'] ); ?>"
608 - <?php endif; ?>
609 - value="<?php echo esc_attr( $data['subscribe_email'] ); ?>"
610 - id="<?php echo esc_attr( $subscribe_field_id . '-' . $data['widget_id'] ); ?>"
611 - placeholder="<?php echo esc_attr( $data['subscribe_placeholder'] ); ?>"
612 - />
929 + $html = '<div ' . wp_kses_data( $data['wrapper_attributes'] ) . '>
930 + <div>
931 + <div>
932 + <div>
933 + <p ' . $submit_button_wrapper_style . '>
934 + <a href="' . esc_url( get_post_permalink() ) . '" style="' . esc_attr( $styles['submit_button'] ) . ' text-decoration: none; white-space: nowrap; margin-left: 0">' . sanitize_submit_text( $button_text ) . '</a>
613 935 </p>
614 -
615 - <p id="subscribe-submit"
616 - <?php if ( ! empty( $styles['submit_button_wrapper'] ) ) : ?>
617 - style="<?php echo esc_attr( $styles['submit_button_wrapper'] ); ?>"
618 - <?php endif; ?>
619 - >
620 - <input type="hidden" name="action" value="subscribe"/>
621 - <input type="hidden" name="blog_id" value="<?php echo (int) $blog_id; ?>"/>
622 - <input type="hidden" name="source" value="<?php echo esc_url( $data['referer'] ); ?>"/>
623 - <input type="hidden" name="sub-type" value="<?php echo esc_attr( $data['source'] ); ?>"/>
624 - <input type="hidden" name="redirect_fragment" value="<?php echo esc_attr( $form_id ); ?>"/>
625 - <?php
626 - if ( is_user_logged_in() ) {
627 - wp_nonce_field( 'blogsub_subscribe_' . get_current_blog_id(), '_wpnonce', false );
628 - }
629 - ?>
630 - <button type="submit"
631 - <?php if ( ! empty( $classes['submit_button'] ) ) : ?>
632 - class="<?php echo esc_attr( $classes['submit_button'] ); ?>"
633 - <?php endif; ?>
634 - <?php if ( ! empty( $styles['submit_button'] ) ) : ?>
635 - style="<?php echo esc_attr( $styles['submit_button'] ); ?>"
636 - <?php endif; ?>
637 - name="jetpack_subscriptions_widget"
638 - >
639 - <?php
640 - echo wp_kses(
641 - html_entity_decode( $data['submit_button_text'], ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 ),
642 - Jetpack_Subscriptions_Widget::$allowed_html_tags_for_submit_button
643 - );
644 - ?>
645 - </button>
646 - </p>
647 - </form>
648 -
649 - <?php if ( $data['show_subscribers_total'] && $data['subscribers_total'] ) : ?>
650 - <div class="wp-block-jetpack-subscriptions__subscount">
651 - <?php
652 - /* translators: %s: number of folks following the blog */
653 - echo esc_html( sprintf( _n( 'Join %s other subscriber', 'Join %s other subscribers', $data['subscribers_total'], 'jetpack' ), number_format_i18n( $data['subscribers_total'] ) ) );
654 - ?>
655 - </div>
656 - <?php endif; ?>
936 + </div>
657 937 </div>
658 938 </div>
659 - </div>
660 - <?php
939 + </div>';
661 940
662 - return ob_get_clean();
941 + return $html;
663 942 }
664 943
665 944 /**
666 - * Filter excerpts looking for subscription data.
945 + * WooCommerce Email Editor render callback for the subscriptions block.
667 946 *
668 - * @param string $excerpt The extrapolated excerpt string.
669 - * @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.
670 950 *
671 - * @return mixed
951 + * @return string
672 952 */
673 -function jetpack_filter_excerpt_for_newsletter( $excerpt, $post = null ) {
674 - // The blogmagazine theme is overriding WP core `get_the_excerpt` filter and only passing the excerpt
675 - // TODO: Until this is fixed, return the excerpt without gating. See https://github.com/Automattic/jetpack/pull/28102#issuecomment-1369161116
676 - if ( $post && false !== strpos( $post->post_content, '<!-- wp:jetpack/subscriptions -->' ) ) {
677 - $excerpt .= sprintf(
678 - // translators: %s is the permalink url to the current post.
679 - __( "<p><a href='%s'>View post</a> to subscribe to site newsletter.</p>", 'jetpack' ),
680 - get_post_permalink()
681 - );
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 '';
682 956 }
683 - 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 + );
684 993 }
685 994
686 995 /**
687 996 * Gate access to posts
@@ -689,15 +998,39 @@
689 998 * @param string $the_content Post content.
690 999 *
691 1000 * @return string
692 1001 */
693 -function maybe_get_locked_content( $the_content ) {
1002 +function add_paywall( $the_content ) {
694 1003 require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
695 1004
1005 + $post_access_level = Jetpack_Memberships::get_post_access_level();
1006 +
696 1007 if ( Jetpack_Memberships::user_can_view_post() ) {
1008 + if ( $post_access_level !== Abstract_Token_Subscription_Service::POST_ACCESS_LEVEL_EVERYBODY ) {
1009 + do_action(
1010 + 'earn_track_paywalled_post_view',
1011 + array(
1012 + 'post_id' => get_the_ID(),
1013 + )
1014 + );
1015 + }
697 1016 return $the_content;
698 1017 }
699 - return get_locked_content_placeholder_text();
1018 +
1019 + $paywalled_content = get_paywall_content();
1020 +
1021 + if ( has_block( \Automattic\Jetpack\Extensions\Paywall\BLOCK_NAME ) ) {
1022 + if ( strpos( $the_content, \Automattic\Jetpack\Extensions\Paywall\BLOCK_HTML ) ) {
1023 + return strstr( $the_content, \Automattic\Jetpack\Extensions\Paywall\BLOCK_HTML, true ) . $paywalled_content;
1024 + }
1025 + // WordPress generates excerpts by either rendering or stripping blocks before invoking the `the_content` filter.
1026 + // In the context of generating an excerpt, the Paywall block specifically renders THE_EXCERPT_BLOCK.
1027 + if ( strpos( $the_content, \Automattic\Jetpack\Extensions\Paywall\THE_EXCERPT_BLOCK ) ) {
1028 + return strstr( $the_content, \Automattic\Jetpack\Extensions\Paywall\THE_EXCERPT_BLOCK, true );
1029 + }
1030 + }
1031 +
1032 + return $paywalled_content;
700 1033 }
701 1034
702 1035 /**
703 1036 * Gate access to comments. We want to close comments on private sites.
@@ -710,14 +1043,15 @@
710 1043 function maybe_close_comments( $default_comments_open, $post_id ) {
711 1044 if ( ! $default_comments_open || ! $post_id ) {
712 1045 return $default_comments_open;
713 1046 }
1047 +
714 1048 require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
715 1049 return Jetpack_Memberships::user_can_view_post();
716 1050 }
717 1051
718 1052 /**
719 - * Gate access to exisiting comments
1053 + * Gate access to existing comments
720 1054 *
721 1055 * @param string $comment The comment.
722 1056 *
723 1057 * @return string
@@ -734,20 +1068,365 @@
734 1068 return '';
735 1069 }
736 1070
737 1071 /**
738 - * Placeholder text for non-subscribers
1072 + * Is the Jetpack_Token_Subscription_Service class loaded
739 1073 *
1074 + * @return bool
1075 + */
1076 +function is_jetpack_token_subscription_service_loaded(): bool {
1077 + return class_exists( 'Automattic\Jetpack\Extensions\Premium_Content\Subscription_Service\Jetpack_Token_Subscription_Service' );
1078 +}
1079 +
1080 +/**
1081 + * Adds support for WP Super cache and Boost cache
1082 + */
1083 +function maybe_prevent_super_cache_caching() {
1084 + // Prevents cached page to be served if the Membership cookie is present
1085 + if ( is_jetpack_token_subscription_service_loaded() ) {
1086 + do_action( 'wpsc_add_cookie', Jetpack_Token_Subscription_Service::JWT_AUTH_TOKEN_COOKIE_NAME );
1087 + }
1088 +
1089 + if ( is_user_auth() ) {
1090 + // Do not cache the page if user is auth with Membership token
1091 + if ( ! defined( 'DONOTCACHEPAGE' ) ) {
1092 + define( 'DONOTCACHEPAGE', true );
1093 + }
1094 + }
1095 +}
1096 +
1097 +/**
1098 + * Returns paywall content blocks
1099 + *
740 1100 * @return string
741 1101 */
742 -function get_locked_content_placeholder_text() {
743 - return do_blocks(
744 - '<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|80","bottom":"var:preset|spacing|80","left":"var:preset|spacing|80"}},"border":{"width":"1px","radius":"4px"}},"borderColor":"primary","layout":{"type":"constrained","contentSize":"400px"}} -->
745 - <div class="wp-block-group has-border-color has-primary-border-color" style="border-width:1px;border-radius:4px;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--80)"><!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"24px"},"spacing":{"margin":{"bottom":"var:preset|spacing|60"}}}} -->
746 - <h2 class="wp-block-heading has-text-align-center" style="margin-bottom:var(--wp--preset--spacing--60);font-size:24px">' . esc_html__( 'This post is for paid subscribers', 'jetpack' ) . '</h2>
747 - <!-- /wp:heading -->
1102 +function get_paywall_content() {
1103 + if ( Jetpack_Memberships::user_is_pending_subscriber() ) {
1104 + return get_paywall_blocks_subscribe_pending();
1105 + }
1106 + if ( doing_filter( 'get_the_excerpt' ) ) {
1107 + return '';
1108 + }
1109 + return get_paywall_blocks();
1110 +}
748 1111
749 - <!-- wp:jetpack/subscriptions {"borderRadius":50,"borderColor":"primary","className":"is-style-compact"} /-->
750 - </div>
751 - <!-- /wp:group -->'
1112 +/**
1113 + * Returns the current URL.
1114 + *
1115 + * TODO: Copied from https://github.com/Automattic/jetpack/blob/bb885061dc3ee7a80a78a5f0116ab3fcebfddb09/projects/packages/boost-core/src/lib/class-url.php#L39
1116 + * TODO: Move to a shared package
1117 + *
1118 + * @return string
1119 + */
1120 +function get_current_url() {
1121 + // Fallback to the site URL if we're unable to determine the URL from $_SERVER global.
1122 + $current_url = site_url();
1123 +
1124 + if ( isset( $_SERVER ) && is_array( $_SERVER ) ) {
1125 + // phpcs:disable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Sanitization happens at the end
1126 + $scheme = isset( $_SERVER['HTTPS'] ) && 'on' === $_SERVER['HTTPS'] ? 'https' : 'http';
1127 + $host = ! empty( $_SERVER['HTTP_HOST'] ) ? wp_unslash( $_SERVER['HTTP_HOST'] ) : null;
1128 + $path = ! empty( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : '';
1129 +
1130 + // Support for local plugin development and testing using ngrok.
1131 + if ( ! empty( $_SERVER['HTTP_X_ORIGINAL_HOST'] ) && str_contains( $_SERVER['HTTP_X_ORIGINAL_HOST'], 'ngrok.io' ) ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput -- This is validating.
1132 + $host = wp_unslash( $_SERVER['HTTP_X_ORIGINAL_HOST'] );
1133 + }
1134 + // phpcs:enable WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
1135 +
1136 + if ( $host ) {
1137 + $current_url = esc_url_raw( sprintf( '%s://%s%s', $scheme, $host, $path ) );
1138 + }
1139 + }
1140 +
1141 + return $current_url;
1142 +}
1143 +
1144 +/**
1145 + * Get the submit button text based on the subscription status.
1146 + *
1147 + * @param array $data Array containing block view data.
1148 + *
1149 + * @return string
1150 + */
1151 +function get_submit_button_text( $data ) {
1152 + if ( ! Jetpack_Memberships::is_current_user_subscribed() ) {
1153 + return $data['submit_button_text'];
1154 + }
1155 + if ( ! Jetpack_Memberships::user_can_view_post() ) {
1156 + return $data['submit_button_text_upgrade'];
1157 + }
1158 + return '✓ ' . $data['submit_button_text_subscribed'];
1159 +}
1160 +
1161 +/**
1162 + * Returns true if there are no more tiers to upgrade to.
1163 + *
1164 + * @return boolean
1165 + */
1166 +function is_top_subscription() {
1167 + if ( ! Jetpack_Memberships::is_current_user_subscribed() ) {
1168 + return false;
1169 + }
1170 + if ( ! Jetpack_Memberships::user_can_view_post() ) {
1171 + return false;
1172 + }
1173 + return true;
1174 +}
1175 +
1176 +/**
1177 + * Sanitize the submit button text.
1178 + *
1179 + * @param string $text String containing the submit button text.
1180 + *
1181 + * @return string
1182 + */
1183 +function sanitize_submit_text( $text ) {
1184 + return wp_kses(
1185 + html_entity_decode( $text, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 ),
1186 + Jetpack_Subscriptions_Widget::$allowed_html_tags_for_submit_button
752 1187 );
1188 +}
1189 +
1190 +/**
1191 + * Returns paywall content blocks if user is not authenticated
1192 + *
1193 + * @return string
1194 + */
1195 +function get_paywall_blocks() {
1196 + $custom_paywall = apply_filters( 'jetpack_custom_paywall_blocks', false );
1197 + if ( ! empty( $custom_paywall ) ) {
1198 + return $custom_paywall;
1199 + }
1200 +
1201 + if ( ! Request::is_frontend() ) { // emails
1202 + return get_paywall_simple();
1203 + }
1204 +
1205 + require_once JETPACK__PLUGIN_DIR . 'modules/memberships/class-jetpack-memberships.php';
1206 + $is_paid_post = is_paid_post();
1207 + $is_paid_subscriber = Jetpack_Memberships::user_is_paid_subscriber();
1208 +
1209 + $access_heading = $is_paid_subscriber
1210 + ? esc_html__( 'Upgrade to continue reading', 'jetpack' )
1211 + : esc_html__( 'Subscribe to continue reading', 'jetpack' );
1212 +
1213 + $subscribe_text = $is_paid_post
1214 + // translators: %s is the name of the site.
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 + )
1220 + // translators: %s is the name of the site.
1221 + : esc_html__( 'Subscribe to get access to the rest of this post and other subscriber-only content.', 'jetpack' );
1222 +
1223 + $login_block = '';
1224 +
1225 + if ( is_user_auth() ) {
1226 + if ( ( new Host() )->is_wpcom_simple() ) {
1227 + // We cannot use wpcom_logmein_redirect_url since it returns redirect URL when user is already logged in.
1228 + $login_link = add_query_arg(
1229 + array(
1230 + 'redirect_to' => rawurlencode( get_current_url() ),
1231 + 'blog_id' => get_current_blog_id(),
1232 + ),
1233 + 'https://wordpress.com/log-in/link'
1234 + );
1235 + $switch_accounts_link = wp_logout_url( $login_link );
1236 + $login_block = '<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"14px"}}} -->
1237 +<p class="has-text-align-center" style="font-size:14px">
1238 + <a href="' . $switch_accounts_link . '">' . __( 'Switch accounts', 'jetpack' ) . '</a>
1239 +</p>
1240 +<!-- /wp:paragraph -->';
1241 + }
1242 + } else {
1243 + $access_question = $is_paid_post ? esc_html__( 'Already a paid subscriber?', 'jetpack' ) : esc_html__( 'Already a subscriber?', 'jetpack' );
1244 + $login_block = '<!-- wp:group {"style":{"typography":{"fontSize":"14px"}},"layout":{"type":"flex","justifyContent":"center"}} -->
1245 +<div class="wp-block-group" style="font-size:14px">
1246 + <!-- wp:jetpack/subscriber-login {"logInLabel":"' . $access_question . '"} /-->
1247 +</div>
1248 +<!-- /wp:group -->';
1249 + }
1250 +
1251 + $lock_svg = plugins_url( 'images/lock-paywall.svg', JETPACK__PLUGIN_FILE );
1252 +
1253 + return '
1254 +<!-- wp:group {"style":{"border":{"width":"1px","radius":"4px"},"spacing":{"padding":{"top":"32px","bottom":"32px","left":"32px","right":"32px"}}},"borderColor":"primary","className":"jetpack-subscribe-paywall","layout":{"type":"constrained","contentSize":"400px"}} -->
1255 +<div class="wp-block-group jetpack-subscribe-paywall has-border-color has-primary-border-color" style="border-width:1px;border-radius:4px;padding-top:32px;padding-right:32px;padding-bottom:32px;padding-left:32px">
1256 +<!-- wp:image {"align":"center","width":24,"height":24,"sizeSlug":"large","linkDestination":"none"} -->
1257 +<figure class="wp-block-image aligncenter size-large is-resized"><img src="' . $lock_svg . '" alt="" width="24" height="24"/></figure>
1258 +<!-- /wp:image -->
1259 +
1260 +<!-- wp:heading {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"600","fontSize":"24px"},"layout":{"selfStretch":"fit"}}} -->
1261 +<h2 class="wp-block-heading has-text-align-center" style="font-size:24px;font-style:normal;font-weight:600">' . $access_heading . '</h2>
1262 +<!-- /wp:heading -->
1263 +
1264 +<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"14px"},"spacing":{"margin":{"top":"10px","bottom":"10px"}}}} -->
1265 +<p class="has-text-align-center" style="margin-top:10px;margin-bottom:10px;font-size:14px">' . $subscribe_text . '</p>
1266 +<!-- /wp:paragraph -->
1267 +
1268 +<!-- wp:jetpack/subscriptions {"borderRadius":50,"borderColor":"primary","className":"is-style-compact","isPaidSubscriber":' . ( $is_paid_subscriber ? 'true' : 'false' ) . '} /-->
1269 +' . $login_block . '
1270 +</div>
1271 +<!-- /wp:group -->
1272 +';
1273 +}
1274 +
1275 +/**
1276 + * Returns true if user is auth for subscriptions check, otherwise returns false.
1277 + *
1278 + * @return bool
1279 + */
1280 +function is_user_auth(): bool {
1281 + if ( ( new Host() )->is_wpcom_simple() && is_user_logged_in() ) {
1282 + return true;
1283 + }
1284 + if ( current_user_can( 'manage_options' ) ) {
1285 + return true;
1286 + }
1287 +
1288 + if ( is_jetpack_token_subscription_service_loaded() ) {
1289 + if ( Jetpack_Token_Subscription_Service::has_token_from_cookie() ) {
1290 + return true;
1291 + }
1292 + }
1293 + return false;
1294 +}
1295 +
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 +/**
1325 + * Returns paywall content blocks when email confirmation is pending
1326 + *
1327 + * @return string
1328 + */
1329 +function get_paywall_blocks_subscribe_pending() {
1330 + $subscribe_email = Jetpack_Memberships::get_current_user_email();
1331 +
1332 + /** This filter is documented in \Automattic\Jetpack\Forms\ContactForm\Contact_Form */
1333 + if ( is_wpcom() || false !== apply_filters( 'jetpack_auto_fill_logged_in_user', false ) ) {
1334 + $current_user = wp_get_current_user();
1335 + if ( ! empty( $current_user->user_email ) ) {
1336 + $subscribe_email = $current_user->user_email;
1337 + }
1338 + }
1339 +
1340 + $access_heading = esc_html__( 'Confirm your subscription to continue reading', 'jetpack' );
1341 +
1342 + /* translators: %s: email address */
1343 + $subscribe_text = sprintf( esc_html__( 'Head to your inbox and confirm your email address %s.', 'jetpack' ), $subscribe_email );
1344 +
1345 + $lock_svg = plugins_url( 'images/lock-paywall.svg', JETPACK__PLUGIN_FILE );
1346 +
1347 + return '
1348 +<!-- wp:group {"style":{"border":{"width":"1px","radius":"4px"},"spacing":{"padding":{"top":"32px","bottom":"32px","left":"32px","right":"32px"}}},"borderColor":"primary","className":"jetpack-subscribe-paywall","layout":{"type":"constrained","contentSize":"400px"}} -->
1349 +<div class="wp-block-group jetpack-subscribe-paywall has-border-color has-primary-border-color" style="border-width:1px;border-radius:4px;padding-top:32px;padding-right:32px;padding-bottom:32px;padding-left:32px">
1350 +<!-- wp:image {"align":"center","width":24,"height":24,"sizeSlug":"large","linkDestination":"none"} -->
1351 +<figure class="wp-block-image aligncenter size-large is-resized"><img src="' . $lock_svg . '" alt="" width="24" height="24"/></figure>
1352 +<!-- /wp:image -->
1353 +
1354 +<!-- wp:heading {"textAlign":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"600","fontSize":"24px", "maxWidth":"initial"},"layout":{"selfStretch":"fit"}}} -->
1355 +<h2 class="wp-block-heading has-text-align-center" style="font-size:24px;font-style:normal;font-weight:600;max-width:initial">' . $access_heading . '</h2>
1356 +<!-- /wp:heading -->
1357 +
1358 +<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"14px"},"spacing":{"margin":{"top":"10px","bottom":"10px"}}}} -->
1359 +<p class="has-text-align-center" style="margin-top:10px;margin-bottom:10px;font-size:14px">' . $subscribe_text . '</p>
1360 +<!-- /wp:paragraph -->
1361 +</div>
1362 +<!-- /wp:group -->
1363 +';
1364 +}
1365 +
1366 +/**
1367 + * Return content for non frontend views like Reader, emails.
1368 + */
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' );
1374 +
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 + }
1387 +
1388 + return '
1389 +<!-- wp:columns -->
1390 +<div class="wp-block-columns jetpack-paywall-simple" style="display: inline-block; width: 90%">
1391 + <!-- wp:column -->
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 -->
1396 + <!-- wp:paragraph -->
1397 + <p class="has-text-align-center"
1398 + style="text-align: center;
1399 + color: #50575E;
1400 + font-weight: 400;
1401 + font-size: 16px;
1402 + font-family: \'SF Pro Text\', sans-serif;
1403 + line-height: 28.8px;">
1404 + ' . $paywall_description . '
1405 + </p>
1406 + <!-- /wp:paragraph -->
1407 + <!-- wp:buttons -->
1408 + <div class="wp-block-buttons" style="text-align: center;">
1409 + <!-- wp:button -->
1410 + <div class="wp-block-button" style="display: inline-block; margin: 10px 0; border-style: none; padding: 0;">
1411 + <a href="' . esc_url( get_post_permalink() ) . '" class="wp-block-button__link wp-element-button"
1412 + data-wpcom-track data-tracks-link-desc="paywall-email-click"
1413 + style="display: inline-block;
1414 + padding: 12px 15px;
1415 + background-color: #3858e9;
1416 + color: #FFFFFF;
1417 + text-decoration: none;
1418 + border-radius: 5px;
1419 + font-family: \'SF Pro Display\', sans-serif;
1420 + font-weight: 500;
1421 + font-size: 16px;
1422 + text-align: center;">' . $paywall_action_btn . '</a>
1423 + </div>
1424 + <!-- /wp:button -->
1425 + </div>
1426 + <!-- /wp:buttons -->
1427 + </div>
1428 + <!-- /wp:column -->
1429 +</div>
1430 +<!-- /wp:columns -->
1431 +';
753 1432 }