summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php')
-rw-r--r--plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php b/plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php
new file mode 100644
index 00000000..80a68dab
--- /dev/null
+++ b/plugins/jetpack/extensions/blocks/premium-content/logged-out-view/logged-out-view.php
@@ -0,0 +1,73 @@
+<?php
+/**
+ * Premium Content Logged Out View Child Block.
+ *
+ * @package automattic/jetpack
+ */
+
+namespace Automattic\Jetpack\Extensions\Premium_Content;
+
+use Automattic\Jetpack\Blocks;
+use Automattic\Jetpack\Status\Host;
+use Jetpack_Gutenberg;
+
+const LOGGEDOUT_VIEW_NAME = 'premium-content/logged-out-view';
+
+require_once dirname( __DIR__ ) . '/_inc/access-check.php';
+
+/**
+ * Registers the block for use in Gutenberg
+ * This is done via an action so that we can disable
+ * registration if we need to.
+ */
+function register_loggedout_view_block() {
+ // Only load this block on WordPress.com.
+ if ( ( defined( 'IS_WPCOM' ) && IS_WPCOM ) || ( new Host() )->is_woa_site() ) {
+ // Determine required `context` key based on Gutenberg version.
+ $deprecated = function_exists( 'gutenberg_get_post_from_context' );
+ $uses = $deprecated ? 'context' : 'uses_context';
+
+ Blocks::jetpack_register_block(
+ LOGGEDOUT_VIEW_NAME,
+ array(
+ 'render_callback' => __NAMESPACE__ . '\render_loggedout_view_block',
+ $uses => array( 'premium-content/planId' ),
+ )
+ );
+ }
+}
+add_action( 'init', __NAMESPACE__ . '\register_loggedout_view_block' );
+
+/**
+ * Render callback.
+ *
+ * @param array $attributes Array containing the block attributes.
+ * @param string $content String containing the block content.
+ * @param object $block Object containing block details.
+ *
+ * @return string
+ */
+function render_loggedout_view_block( $attributes, $content, $block = null ) {
+ if ( ! pre_render_checks() ) {
+ return '';
+ }
+
+ $visitor_has_access = current_visitor_can_access( $attributes, $block );
+
+ if ( $visitor_has_access ) {
+ // The viewer has access to premium content, so the viewer shouldn't see the logged out view.
+ return '';
+ }
+
+ Jetpack_Gutenberg::load_styles_as_required( LOGGEDOUT_VIEW_NAME );
+
+ // Old versions of the block were rendering the subscribe/login button server-side, so we need to still support them.
+ if ( ! empty( $attributes['buttonClasses'] ) ) {
+ require_once __DIR__ . '/../_inc/legacy-buttons.php';
+
+ $buttons = create_legacy_buttons_markup( $attributes, $content, $block );
+ return $content . $buttons;
+ }
+
+ return $content;
+}