authors
8 years ago
contact-info
5 years ago
eu-cookie-law
4 years ago
facebook-likebox
11 years ago
flickr
4 years ago
gallery
4 years ago
goodreads
5 years ago
google-translate
4 years ago
image-widget
8 years ago
instagram
6 years ago
migrate-to-core
3 years ago
milestone
3 years ago
my-community
8 years ago
simple-payments
4 years ago
social-icons
4 years ago
social-media-icons
5 years ago
top-posts
8 years ago
wordpress-post-widget
3 years ago
authors.php
3 years ago
blog-stats.php
3 years ago
class-jetpack-eu-cookie-law-widget.php
3 years ago
class-jetpack-instagram-widget.php
3 years ago
contact-info.php
3 years ago
customizer-controls.css
9 years ago
customizer-utils.js
6 years ago
facebook-likebox.php
3 years ago
flickr.php
3 years ago
gallery.php
3 years ago
goodreads.php
3 years ago
google-translate.php
3 years ago
gravatar-profile.css
10 years ago
gravatar-profile.php
3 years ago
image-widget.php
3 years ago
internet-defense-league.php
3 years ago
mailchimp.php
3 years ago
milestone.php
5 years ago
my-community.php
3 years ago
rsslinks-widget.php
3 years ago
simple-payments.php
3 years ago
social-icons.php
3 years ago
social-media-icons.php
3 years ago
top-posts.php
3 years ago
twitter-timeline-admin.js
6 years ago
twitter-timeline.php
3 years ago
upcoming-events.php
3 years ago
wordpress-post-widget.php
4 years ago
class-jetpack-eu-cookie-law-widget.php
340 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Main class file for EU Cookie Law Widget. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | use Automattic\Jetpack\Assets; |
| 9 | |
| 10 | /** |
| 11 | * Disable direct access/execution to/of the widget code. |
| 12 | */ |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; |
| 15 | } |
| 16 | |
| 17 | if ( ! class_exists( 'Jetpack_EU_Cookie_Law_Widget' ) ) { |
| 18 | /** |
| 19 | * EU Cookie Law Widget |
| 20 | * |
| 21 | * Display the EU Cookie Law banner in the bottom part of the screen. |
| 22 | */ |
| 23 | class Jetpack_EU_Cookie_Law_Widget extends WP_Widget { |
| 24 | /** |
| 25 | * EU Cookie Law cookie name. |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | public static $cookie_name = 'eucookielaw'; |
| 30 | |
| 31 | /** |
| 32 | * Default hide options. |
| 33 | * |
| 34 | * @var array |
| 35 | */ |
| 36 | private $hide_options = array( |
| 37 | 'button', |
| 38 | 'scroll', |
| 39 | 'time', |
| 40 | ); |
| 41 | |
| 42 | /** |
| 43 | * Default text options. |
| 44 | * |
| 45 | * @var array |
| 46 | */ |
| 47 | private $text_options = array( |
| 48 | 'default', |
| 49 | 'custom', |
| 50 | ); |
| 51 | |
| 52 | /** |
| 53 | * Default color scheme options. |
| 54 | * |
| 55 | * @var array |
| 56 | */ |
| 57 | private $color_scheme_options = array( |
| 58 | 'default', |
| 59 | 'negative', |
| 60 | ); |
| 61 | |
| 62 | /** |
| 63 | * Default policy URL options. |
| 64 | * |
| 65 | * @var array |
| 66 | */ |
| 67 | private $policy_url_options = array( |
| 68 | 'default', |
| 69 | 'custom', |
| 70 | ); |
| 71 | |
| 72 | /** |
| 73 | * Widget position options. |
| 74 | * |
| 75 | * @var array |
| 76 | */ |
| 77 | private $position_options = array( |
| 78 | 'bottom', |
| 79 | 'top', |
| 80 | ); |
| 81 | |
| 82 | /** |
| 83 | * Constructor. |
| 84 | */ |
| 85 | public function __construct() { |
| 86 | parent::__construct( |
| 87 | 'eu_cookie_law_widget', |
| 88 | /** This filter is documented in modules/widgets/facebook-likebox.php */ |
| 89 | apply_filters( 'jetpack_widget_name', esc_html__( 'Cookies & Consents Banner', 'jetpack' ) ), |
| 90 | array( |
| 91 | 'description' => esc_html__( 'Display a banner for EU Cookie Law and GDPR compliance.', 'jetpack' ), |
| 92 | 'customize_selective_refresh' => true, |
| 93 | ), |
| 94 | array() |
| 95 | ); |
| 96 | |
| 97 | if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) { |
| 98 | add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_frontend_scripts' ) ); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Enqueue scripts and styles. |
| 104 | */ |
| 105 | public function enqueue_frontend_scripts() { |
| 106 | wp_enqueue_style( 'eu-cookie-law-style', plugins_url( 'eu-cookie-law/style.css', __FILE__ ), array(), JETPACK__VERSION ); |
| 107 | |
| 108 | if ( ! class_exists( 'Jetpack_AMP_Support' ) || ! Jetpack_AMP_Support::is_amp_request() ) { |
| 109 | wp_enqueue_script( |
| 110 | 'eu-cookie-law-script', |
| 111 | Assets::get_file_url_for_environment( |
| 112 | '_inc/build/widgets/eu-cookie-law/eu-cookie-law.min.js', |
| 113 | 'modules/widgets/eu-cookie-law/eu-cookie-law.js' |
| 114 | ), |
| 115 | array(), |
| 116 | '20180522', |
| 117 | true |
| 118 | ); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Return an associative array of default values. |
| 124 | * |
| 125 | * These values are used in new widgets. |
| 126 | * |
| 127 | * @return array Default values for the widget options. |
| 128 | */ |
| 129 | public function defaults() { |
| 130 | return array( |
| 131 | 'hide' => $this->hide_options[0], |
| 132 | 'hide-timeout' => 30, |
| 133 | 'consent-expiration' => 180, |
| 134 | 'text' => $this->text_options[0], |
| 135 | 'customtext' => '', |
| 136 | 'color-scheme' => $this->color_scheme_options[0], |
| 137 | 'policy-url' => get_option( 'wp_page_for_privacy_policy' ) ? $this->policy_url_options[1] : $this->policy_url_options[0], |
| 138 | 'default-policy-url' => 'https://automattic.com/cookies/', |
| 139 | 'custom-policy-url' => get_option( 'wp_page_for_privacy_policy' ) ? get_permalink( (int) get_option( 'wp_page_for_privacy_policy' ) ) : '', |
| 140 | 'position' => $this->position_options[0], |
| 141 | 'policy-link-text' => esc_html__( 'Cookie Policy', 'jetpack' ), |
| 142 | 'button' => esc_html__( 'Close and accept', 'jetpack' ), |
| 143 | 'default-text' => esc_html__( "Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. \r\nTo find out more, including how to control cookies, see here:", 'jetpack' ), |
| 144 | ); |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Front-end display of the widget. |
| 149 | * |
| 150 | * @param array $args Widget arguments. |
| 151 | * @param array $instance Saved values from database. |
| 152 | */ |
| 153 | public function widget( $args, $instance ) { |
| 154 | /** |
| 155 | * Filters the display of the EU Cookie Law widget. |
| 156 | * |
| 157 | * @since 6.1.1 |
| 158 | * |
| 159 | * @param bool true Should the EU Cookie Law widget be disabled. Default to false. |
| 160 | */ |
| 161 | if ( apply_filters( 'jetpack_disable_eu_cookie_law_widget', false ) ) { |
| 162 | return; |
| 163 | } |
| 164 | |
| 165 | $instance = wp_parse_args( $instance, $this->defaults() ); |
| 166 | |
| 167 | if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { |
| 168 | require __DIR__ . '/eu-cookie-law/widget-amp.php'; |
| 169 | return; |
| 170 | } |
| 171 | |
| 172 | $classes = array(); |
| 173 | $classes['hide'] = 'hide-on-' . esc_attr( $instance['hide'] ); |
| 174 | if ( 'negative' === $instance['color-scheme'] ) { |
| 175 | $classes['negative'] = 'negative'; |
| 176 | } |
| 177 | |
| 178 | if ( 'top' === $instance['position'] ) { |
| 179 | $classes['top'] = 'top'; |
| 180 | } |
| 181 | |
| 182 | if ( Jetpack::is_module_active( 'wordads' ) ) { |
| 183 | $classes['ads'] = 'ads-active'; |
| 184 | $classes['hide'] = 'hide-on-button'; |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Check if widget is loaded in widgets.php. |
| 189 | * |
| 190 | * @return string widget Static version of the widget for better preview. |
| 191 | */ |
| 192 | global $pagenow; |
| 193 | if ( 'widgets.php' === $pagenow ) { |
| 194 | // To prevent the widget from being added as a pop-up |
| 195 | // we do not echo the before and after $args. Instead we wrap |
| 196 | // it in a dummy `div` and return before the `widget_view` is |
| 197 | // added to stats. |
| 198 | echo '<div id="eu-cookie-law" style="padding: 0;margin: 5px">'; |
| 199 | require_once __DIR__ . '/eu-cookie-law/widget.php'; |
| 200 | echo '</div>'; |
| 201 | return; |
| 202 | } |
| 203 | |
| 204 | echo $args['before_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 205 | require_once __DIR__ . '/eu-cookie-law/widget.php'; |
| 206 | echo $args['after_widget']; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 207 | |
| 208 | /** This action is already documented in modules/widgets/gravatar-profile.php */ |
| 209 | do_action( 'jetpack_stats_extra', 'widget_view', 'eu_cookie_law' ); |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Back-end widget form. |
| 214 | * |
| 215 | * @param array $instance Previously saved values from database. |
| 216 | */ |
| 217 | public function form( $instance ) { |
| 218 | $instance = wp_parse_args( $instance, $this->defaults() ); |
| 219 | if ( Jetpack::is_module_active( 'wordads' ) ) { |
| 220 | $instance['hide'] = 'button'; |
| 221 | } |
| 222 | |
| 223 | wp_enqueue_script( |
| 224 | 'eu-cookie-law-widget-admin', |
| 225 | Assets::get_file_url_for_environment( |
| 226 | '_inc/build/widgets/eu-cookie-law/eu-cookie-law-admin.min.js', |
| 227 | 'modules/widgets/eu-cookie-law/eu-cookie-law-admin.js' |
| 228 | ), |
| 229 | array( 'jquery' ), |
| 230 | 20180417, |
| 231 | false |
| 232 | ); |
| 233 | |
| 234 | require __DIR__ . '/eu-cookie-law/form.php'; |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Sanitize widget form values as they are saved. |
| 239 | * |
| 240 | * @param array $new_instance Values just sent to be saved. |
| 241 | * @param array $old_instance Previously saved values from database. |
| 242 | * @return array Updated safe values to be saved. |
| 243 | */ |
| 244 | public function update( $new_instance, $old_instance ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 245 | $instance = array(); |
| 246 | $defaults = $this->defaults(); |
| 247 | |
| 248 | $instance['hide'] = $this->filter_value( isset( $new_instance['hide'] ) ? $new_instance['hide'] : '', $this->hide_options ); |
| 249 | $instance['text'] = $this->filter_value( isset( $new_instance['text'] ) ? $new_instance['text'] : '', $this->text_options ); |
| 250 | $instance['color-scheme'] = $this->filter_value( isset( $new_instance['color-scheme'] ) ? $new_instance['color-scheme'] : '', $this->color_scheme_options ); |
| 251 | $instance['policy-url'] = $this->filter_value( isset( $new_instance['policy-url'] ) ? $new_instance['policy-url'] : '', $this->policy_url_options ); |
| 252 | $instance['position'] = $this->filter_value( isset( $new_instance['position'] ) ? $new_instance['position'] : '', $this->position_options ); |
| 253 | |
| 254 | if ( isset( $new_instance['hide-timeout'] ) ) { |
| 255 | // Time can be a value between 3 and 1000 seconds. |
| 256 | $instance['hide-timeout'] = min( 1000, max( 3, (int) $new_instance['hide-timeout'] ) ); |
| 257 | } |
| 258 | |
| 259 | if ( isset( $new_instance['consent-expiration'] ) ) { |
| 260 | // Time can be a value between 1 and 365 days. |
| 261 | $instance['consent-expiration'] = min( 365, max( 1, (int) $new_instance['consent-expiration'] ) ); |
| 262 | } |
| 263 | |
| 264 | if ( isset( $new_instance['customtext'] ) ) { |
| 265 | $instance['customtext'] = mb_substr( wp_kses( $new_instance['customtext'], array() ), 0, 4096 ); |
| 266 | } else { |
| 267 | $instance['text'] = $this->text_options[0]; |
| 268 | } |
| 269 | |
| 270 | if ( isset( $new_instance['policy-url'] ) ) { |
| 271 | $instance['policy-url'] = 'custom' === $new_instance['policy-url'] |
| 272 | ? 'custom' |
| 273 | : 'default'; |
| 274 | } else { |
| 275 | $instance['policy-url'] = $this->policy_url_options[0]; |
| 276 | } |
| 277 | |
| 278 | if ( 'custom' === $instance['policy-url'] && isset( $new_instance['custom-policy-url'] ) ) { |
| 279 | $instance['custom-policy-url'] = esc_url( $new_instance['custom-policy-url'], array( 'http', 'https' ) ); |
| 280 | |
| 281 | if ( strlen( $instance['custom-policy-url'] ) < 10 ) { |
| 282 | unset( $instance['custom-policy-url'] ); |
| 283 | global $wp_customize; |
| 284 | if ( ! isset( $wp_customize ) ) { |
| 285 | $instance['policy-url'] = $this->policy_url_options[0]; |
| 286 | } |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | if ( isset( $new_instance['policy-link-text'] ) ) { |
| 291 | $instance['policy-link-text'] = trim( mb_substr( wp_kses( $new_instance['policy-link-text'], array() ), 0, 100 ) ); |
| 292 | } |
| 293 | |
| 294 | if ( empty( $instance['policy-link-text'] ) || $instance['policy-link-text'] === $defaults['policy-link-text'] ) { |
| 295 | unset( $instance['policy-link-text'] ); |
| 296 | } |
| 297 | |
| 298 | if ( isset( $new_instance['button'] ) ) { |
| 299 | $instance['button'] = trim( mb_substr( wp_kses( $new_instance['button'], array() ), 0, 100 ) ); |
| 300 | } |
| 301 | |
| 302 | if ( empty( $instance['button'] ) || $instance['button'] === $defaults['button'] ) { |
| 303 | unset( $instance['button'] ); |
| 304 | } |
| 305 | |
| 306 | // Show the banner again if a setting has been changed. |
| 307 | setcookie( self::$cookie_name, '', time() - 86400, '/', COOKIE_DOMAIN, is_ssl(), false ); // phpcs:ignore Jetpack.Functions.SetCookie -- Fine to have accessible. |
| 308 | |
| 309 | return $instance; |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * Check if the value is allowed and not empty. |
| 314 | * |
| 315 | * @param string $value Value to check. |
| 316 | * @param array $allowed Array of allowed values. |
| 317 | * |
| 318 | * @return string $value if pass the check or first value from allowed values. |
| 319 | */ |
| 320 | public function filter_value( $value, $allowed = array() ) { |
| 321 | $allowed = (array) $allowed; |
| 322 | if ( empty( $value ) || ( ! empty( $allowed ) && ! in_array( $value, $allowed, true ) ) ) { |
| 323 | $value = $allowed[0]; |
| 324 | } |
| 325 | return $value; |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move these functions to some other file. |
| 330 | |
| 331 | /** |
| 332 | * Register Jetpack_EU_Cookie_Law_Widget widget. |
| 333 | */ |
| 334 | function jetpack_register_eu_cookie_law_widget() { |
| 335 | register_widget( 'Jetpack_EU_Cookie_Law_Widget' ); |
| 336 | } |
| 337 | |
| 338 | add_action( 'widgets_init', 'jetpack_register_eu_cookie_law_widget' ); |
| 339 | } |
| 340 |