cookie-consent.php
160 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Cookie-consent Block. |
| 4 | * |
| 5 | * @since 12.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions\CookieConsent; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Jetpack_Gutenberg; |
| 14 | |
| 15 | const FEATURE_NAME = 'cookie-consent'; |
| 16 | const BLOCK_NAME = 'jetpack/' . FEATURE_NAME; |
| 17 | const COOKIE_NAME = 'eucookielaw'; |
| 18 | |
| 19 | /** |
| 20 | * Should the block be registered? |
| 21 | * In wp-admin, we only want to show the block in the site editor. |
| 22 | * |
| 23 | * @since 12.0 |
| 24 | * |
| 25 | * @return bool |
| 26 | */ |
| 27 | function should_register_block() { |
| 28 | global $pagenow; |
| 29 | |
| 30 | // Always register the widget if we're on the front end |
| 31 | if ( ! is_admin() ) { |
| 32 | return true; |
| 33 | } |
| 34 | |
| 35 | if ( is_admin() && $pagenow === 'site-editor.php' ) { |
| 36 | return true; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Registers the block for use in Gutenberg |
| 42 | * This is done via an action so that we can disable |
| 43 | * registration if we need to. |
| 44 | */ |
| 45 | function register_block() { |
| 46 | if ( ! should_register_block() ) { |
| 47 | return; |
| 48 | } |
| 49 | |
| 50 | Blocks::jetpack_register_block( |
| 51 | BLOCK_NAME, |
| 52 | array( 'render_callback' => __NAMESPACE__ . '\load_assets' ), |
| 53 | array( |
| 54 | 'attributes' => array( |
| 55 | 'render_from_template' => array( |
| 56 | 'default' => false, |
| 57 | 'type' => 'boolean', |
| 58 | ), |
| 59 | ), |
| 60 | ) |
| 61 | ); |
| 62 | } |
| 63 | add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 64 | |
| 65 | /** |
| 66 | * Cookie-consent block registration/dependency declaration. |
| 67 | * |
| 68 | * @param array $attr Array containing the Cookie-consent block attributes. |
| 69 | * @param string $content String containing the Cookie-consent block content. |
| 70 | * |
| 71 | * @return string |
| 72 | */ |
| 73 | function load_assets( $attr, $content ) { |
| 74 | // We want to bust the cache even if the cookie isn't set. |
| 75 | // This is needed for when the cookie expires, |
| 76 | // and we should send fresh HTML with the cookie block in it. |
| 77 | notify_batcache_that_content_changed(); |
| 78 | |
| 79 | // If the user has already accepted the cookie consent, don't show the block. |
| 80 | if ( isset( $_COOKIE[ COOKIE_NAME ] ) ) { |
| 81 | return ''; |
| 82 | } |
| 83 | |
| 84 | $option = get_option( 'cookie_consent_template' ); |
| 85 | if ( ! empty( $option ) && empty( $attr['render_from_template'] ) ) { |
| 86 | return ''; |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * Enqueue necessary scripts and styles. |
| 91 | */ |
| 92 | Jetpack_Gutenberg::load_assets_as_required( FEATURE_NAME ); |
| 93 | |
| 94 | return sprintf( |
| 95 | '<div class="%1$s">%2$s</div>', |
| 96 | esc_attr( Blocks::classes( FEATURE_NAME, $attr ) ), |
| 97 | $content |
| 98 | ); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Batcache busting: since the cookie consent is part of the cached response HTML, it can still render even when the cookie is set (when it shouldn't). |
| 103 | * Because, by default, the cache doesn't vary around the cookie's value. This makes the cookie value part of the cache key. |
| 104 | * |
| 105 | * See: https://github.com/Automattic/batcache/blob/d4f617b335e9772a61b6d03ad3498b55c8137592/advanced-cache.php#L29 |
| 106 | */ |
| 107 | function notify_batcache_that_content_changed() { |
| 108 | if ( function_exists( 'vary_cache_on_function' ) ) { |
| 109 | vary_cache_on_function( 'return isset( $_COOKIE[ "' . COOKIE_NAME . '" ] );' ); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Render the cookie consent template. |
| 115 | * |
| 116 | * @since 12.4 |
| 117 | */ |
| 118 | function render_cookie_consent_template() { |
| 119 | |
| 120 | if ( is_admin() ) { |
| 121 | return; |
| 122 | } |
| 123 | |
| 124 | // Check whether block theme functions exist. |
| 125 | if ( ! function_exists( 'parse_blocks' ) ) { |
| 126 | return; |
| 127 | } |
| 128 | |
| 129 | $template = get_option( 'cookie_consent_template' ); |
| 130 | |
| 131 | if ( empty( $template ) ) { |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | $parsed = parse_blocks( $template ); |
| 136 | if ( ! empty( $parsed[0] ) ) { |
| 137 | $parsed[0]['attrs']['render_from_template'] = true; |
| 138 | echo render_block( $parsed[0] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 139 | } |
| 140 | } |
| 141 | add_action( 'wp_footer', __NAMESPACE__ . '\render_cookie_consent_template' ); |
| 142 | |
| 143 | /** |
| 144 | * Register cookie_consent_template setting |
| 145 | * |
| 146 | * @since 12.4 |
| 147 | */ |
| 148 | function cookie_consent_register_settings() { |
| 149 | register_setting( |
| 150 | 'general', |
| 151 | 'cookie_consent_template', |
| 152 | array( |
| 153 | 'type' => 'string', |
| 154 | 'show_in_rest' => true, |
| 155 | ) |
| 156 | ); |
| 157 | } |
| 158 | |
| 159 | add_action( 'rest_api_init', __NAMESPACE__ . '\cookie_consent_register_settings' ); |
| 160 |