Completed
Push — add/e2e-mock-plan-data ( 7ff5e0...27e085 )
by Yaroslav
06:46
created

JITM::jitm_woocommerce_services_msg()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
nc 4
nop 1
dl 0
loc 20
rs 9.6
c 0
b 0
f 0
1
<?php
2
/**
3
 * Jetpack's JITM class.
4
 *
5
 * @package automattic/jetpack-jitm
6
 */
7
8
namespace Automattic\Jetpack;
9
10
use Automattic\Jetpack\Assets;
11
use Automattic\Jetpack\Connection\Manager as Jetpack_Connection;
12
use Automattic\Jetpack\Connection\Client;
13
use Automattic\Jetpack\Assets\Logo as Jetpack_Logo;
14
use Automattic\Jetpack\Partner;
15
use Automattic\Jetpack\Tracking;
16
use Automattic\Jetpack\Connection\Manager;
17
18
/**
19
 * Jetpack just in time messaging through out the admin
20
 *
21
 * @since 5.6.0
22
 */
23
class JITM {
24
25
	const PACKAGE_VERSION = '1.0'; // TODO: Keep in sync with version specified in composer.json.
26
27
	/**
28
	 * Tracking object.
29
	 *
30
	 * @var Automattic\Jetpack\Tracking
31
	 *
32
	 * @access private
33
	 */
34
	private $tracking;
35
36
	/**
37
	 * JITM constructor.
38
	 */
39
	public function __construct() {
40
		$this->tracking = new Tracking();
0 ignored issues
show
Documentation Bug introduced by
It seems like new \Automattic\Jetpack\Tracking() of type object<Automattic\Jetpack\Tracking> is incompatible with the declared type object<Automattic\Jetpac...attic\Jetpack\Tracking> of property $tracking.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
41
	}
42
43
	/**
44
	 * Determines if JITMs are enabled.
45
	 *
46
	 * @return bool Enable JITMs.
47
	 */
48
	public function register() {
49
		/**
50
		 * Filter to turn off all just in time messages
51
		 *
52
		 * @since 3.7.0
53
		 * @since 5.4.0 Correct docblock to reflect default arg value
54
		 *
55
		 * @param bool false Whether to show just in time messages.
56
		 */
57
		if ( ! apply_filters( 'jetpack_just_in_time_msgs', false ) ) {
58
			return false;
59
		}
60
		add_action( 'current_screen', array( $this, 'prepare_jitms' ) );
61
		return true;
62
	}
63
64
	/**
65
	 * Prepare actions according to screen and post type.
66
	 *
67
	 * @since 3.8.2
68
	 *
69
	 * @uses Jetpack_Autoupdate::get_possible_failures()
70
	 *
71
	 * @param \WP_Screen $screen WP Core's screen object.
72
	 */
73
	public function prepare_jitms( $screen ) {
74
		if ( ! in_array(
75
			$screen->id,
76
			array(
77
				'jetpack_page_stats',
78
				'jetpack_page_akismet-key-config',
79
				'admin_page_jetpack_modules',
80
			),
81
			true
82
		) ) {
83
			add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
84
			add_action( 'admin_notices', array( $this, 'ajax_message' ) );
85
			add_action( 'edit_form_top', array( $this, 'ajax_message' ) );
86
87
			// Not really a JITM. Don't know where else to put this :) .
88
			add_action( 'admin_notices', array( $this, 'delete_user_update_connection_owner_notice' ) );
89
		}
90
	}
91
92
	/**
93
	 * A special filter for WooCommerce, to set a message based on local state.
94
	 *
95
	 * @param string $content The current message.
96
	 *
97
	 * @return array The new message.
98
	 */
99
	public static function jitm_woocommerce_services_msg( $content ) {
100
		if ( ! function_exists( 'wc_get_base_location' ) ) {
101
			return $content;
102
		}
103
104
		$base_location = wc_get_base_location();
105
106
		switch ( $base_location['country'] ) {
107
			case 'US':
108
				$content->message = esc_html__( 'New free service: Show USPS shipping rates on your store! Added bonus: print shipping labels without leaving WooCommerce.', 'jetpack' );
109
				break;
110
			case 'CA':
111
				$content->message = esc_html__( 'New free service: Show Canada Post shipping rates on your store!', 'jetpack' );
112
				break;
113
			default:
114
				$content->message = '';
115
		}
116
117
		return $content;
118
	}
119
120
	/**
121
	 * A special filter for WooCommerce Call To Action button
122
	 *
123
	 * @return string The new CTA
124
	 */
125
	public static function jitm_jetpack_woo_services_install() {
126
		return wp_nonce_url(
127
			add_query_arg(
128
				array(
129
					'wc-services-action' => 'install',
130
				),
131
				admin_url( 'admin.php?page=wc-settings' )
132
			),
133
			'wc-services-install'
134
		);
135
	}
136
137
	/**
138
	 * A special filter for WooCommerce Call To Action button.
139
	 *
140
	 * @return string The new CTA
141
	 */
142
	public static function jitm_jetpack_woo_services_activate() {
143
		return wp_nonce_url(
144
			add_query_arg(
145
				array(
146
					'wc-services-action' => 'activate',
147
				),
148
				admin_url( 'admin.php?page=wc-settings' )
149
			),
150
			'wc-services-install'
151
		);
152
	}
153
154
	/**
155
	 * This is an entire admin notice dedicated to messaging and handling of the case where a user is trying to delete
156
	 * the connection owner.
157
	 */
158
	public function delete_user_update_connection_owner_notice() {
159
		global $current_screen;
160
161
		/*
162
		 * phpcs:disable WordPress.Security.NonceVerification.Recommended
163
		 *
164
		 * This function is firing within wp-admin and checks (below) if it is in the midst of a deletion on the users
165
		 * page. Nonce will be already checked by WordPress, so we do not need to check ourselves.
166
		 */
167
168
		if ( ! isset( $current_screen->base ) || 'users' !== $current_screen->base ) {
169
			return;
170
		}
171
172
		if ( ! isset( $_REQUEST['action'] ) || 'delete' !== $_REQUEST['action'] ) {
173
			return;
174
		}
175
176
		// Get connection owner or bail.
177
		$connection_manager  = new Manager();
178
		$connection_owner_id = $connection_manager->get_connection_owner_id();
179
		if ( ! $connection_owner_id ) {
180
			return;
181
		}
182
		$connection_owner_userdata = get_userdata( $connection_owner_id );
183
184
		// Bail if we're not trying to delete connection owner.
185
		$user_ids_to_delete = array();
186 View Code Duplication
		if ( isset( $_REQUEST['users'] ) ) {
187
			$user_ids_to_delete = array_map( 'sanitize_text_field', wp_unslash( $_REQUEST['users'] ) );
188
		} elseif ( isset( $_REQUEST['user'] ) ) {
189
			$user_ids_to_delete[] = sanitize_text_field( wp_unslash( $_REQUEST['user'] ) );
190
		}
191
192
		// phpcs:enable
193
		$user_ids_to_delete        = array_map( 'absint', $user_ids_to_delete );
194
		$deleting_connection_owner = in_array( $connection_owner_id, (array) $user_ids_to_delete, true );
195
		if ( ! $deleting_connection_owner ) {
196
			return;
197
		}
198
199
		// Bail if they're trying to delete themselves to avoid confusion.
200
		if ( get_current_user_id() === $connection_owner_id ) {
201
			return;
202
		}
203
204
		// Track it!
205
		if ( method_exists( $this->tracking, 'record_user_event' ) ) {
206
			$this->tracking->record_user_event( 'delete_connection_owner_notice_view' );
207
		}
208
209
		$connection_manager = new Manager();
210
		$connected_admins   = $connection_manager->get_connected_users( 'jetpack_disconnect' );
211
		$user               = is_a( $connection_owner_userdata, 'WP_User' ) ? esc_html( $connection_owner_userdata->data->user_login ) : '';
212
213
		echo "<div class='notice notice-warning' id='jetpack-notice-switch-connection-owner'>";
214
		echo '<h2>' . esc_html__( 'Important notice about your Jetpack connection:', 'jetpack' ) . '</h2>';
215
		echo '<p>' . sprintf(
216
			/* translators: WordPress User, if available. */
217
			esc_html__( 'Warning! You are about to delete the Jetpack connection owner (%s) for this site, which may cause some of your Jetpack features to stop working.', 'jetpack' ),
218
			esc_html( $user )
219
		) . '</p>';
220
221
		if ( ! empty( $connected_admins ) && count( $connected_admins ) > 1 ) {
222
			echo '<form id="jp-switch-connection-owner" action="" method="post">';
223
			echo "<label for='owner'>" . esc_html__( 'You can choose to transfer connection ownership to one of these already-connected admins:', 'jetpack' ) . ' </label>';
224
225
			$connected_admin_ids = array_map(
226
				function( $connected_admin ) {
227
						return $connected_admin->ID;
228
				},
229
				$connected_admins
230
			);
231
232
			wp_dropdown_users(
233
				array(
234
					'name'    => 'owner',
235
					'include' => array_diff( $connected_admin_ids, array( $connection_owner_id ) ),
236
					'show'    => 'display_name_with_login',
237
				)
238
			);
239
240
			echo '<p>';
241
			submit_button( esc_html__( 'Set new connection owner', 'jetpack' ), 'primary', 'jp-switch-connection-owner-submit', false );
242
			echo '</p>';
243
244
			echo "<div id='jp-switch-user-results'></div>";
245
			echo '</form>';
246
			?>
247
			<script type="text/javascript">
248
				jQuery( document ).ready( function( $ ) {
249
					$( '#jp-switch-connection-owner' ).on( 'submit', function( e ) {
250
						var formData = $( this ).serialize();
251
						var submitBtn = document.getElementById( 'jp-switch-connection-owner-submit' );
252
						var results = document.getElementById( 'jp-switch-user-results' );
253
254
						submitBtn.disabled = true;
255
256
						$.ajax( {
257
							type        : "POST",
258
							url         : "<?php echo esc_url( get_rest_url() . 'jetpack/v4/connection/owner' ); ?>",
259
							data        : formData,
260
							headers     : {
261
								'X-WP-Nonce': "<?php echo esc_js( wp_create_nonce( 'wp_rest' ) ); ?>",
262
							},
263
							success: function() {
264
								results.innerHTML = "<?php esc_html_e( 'Success!', 'jetpack' ); ?>";
265
								setTimeout( function() {
266
									$( '#jetpack-notice-switch-connection-owner' ).hide( 'slow' );
267
								}, 1000 );
268
							}
269
						} ).done( function() {
270
							submitBtn.disabled = false;
271
						} );
272
273
						e.preventDefault();
274
						return false;
275
					} );
276
				} );
277
			</script>
278
			<?php
279
		} else {
280
			echo '<p>' . esc_html__( 'Every Jetpack site needs at least one connected admin for the features to work properly. Please connect to your WordPress.com account via the button below. Once you connect, you may refresh this page to see an option to change the connection owner.', 'jetpack' ) . '</p>';
281
			$connect_url = \Jetpack::init()->build_connect_url( false, false, 'delete_connection_owner_notice' );
282
			echo "<a href='" . esc_url( $connect_url ) . "' target='_blank' rel='noopener noreferrer' class='button-primary'>" . esc_html__( 'Connect to WordPress.com', 'jetpack' ) . '</a>';
283
		}
284
285
		echo '<p>';
286
		printf(
287
			wp_kses(
288
				/* translators: URL to Jetpack support doc regarding the primary user. */
289
				__( "<a href='%s' target='_blank' rel='noopener noreferrer'>Learn more</a> about the connection owner and what will break if you do not have one.", 'jetpack' ),
290
				array(
291
					'a' => array(
292
						'href'   => true,
293
						'target' => true,
294
						'rel'    => true,
295
					),
296
				)
297
			),
298
			'https://jetpack.com/support/primary-user/'
299
		);
300
		echo '</p>';
301
		echo '<p>';
302
		printf(
303
			wp_kses(
304
				/* translators: URL to contact Jetpack support. */
305
				__( 'As always, feel free to <a href="%s" target="_blank" rel="noopener noreferrer">contact our support team</a> if you have any questions.', 'jetpack' ),
306
				array(
307
					'a' => array(
308
						'href'   => true,
309
						'target' => true,
310
						'rel'    => true,
311
					),
312
				)
313
			),
314
			'https://jetpack.com/contact-support'
315
		);
316
		echo '</p>';
317
		echo '</div>';
318
	}
319
320
	/**
321
	 * Injects the dom to show a JITM inside of wp-admin.
322
	 */
323
	public function ajax_message() {
324
		if ( ! is_admin() ) {
325
			return;
326
		}
327
328
		// do not display on Gutenberg pages.
329
		if ( $this->is_gutenberg_page() ) {
330
			return;
331
		}
332
333
		$message_path   = $this->get_message_path();
334
		$query_string   = _http_build_query( $_GET, '', ',' ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
335
		$current_screen = wp_unslash( $_SERVER['REQUEST_URI'] );
336
		?>
337
		<div class="jetpack-jitm-message"
338
			data-nonce="<?php echo esc_attr( wp_create_nonce( 'wp_rest' ) ); ?>"
339
			data-message-path="<?php echo esc_attr( $message_path ); ?>"
340
			data-query="<?php echo urlencode_deep( $query_string ); ?>"
341
			data-redirect="<?php echo urlencode_deep( $current_screen ); ?>"
342
		></div>
343
		<?php
344
	}
345
346
	/**
347
	 * Get's the current message path for display of a JITM
348
	 *
349
	 * @return string The message path
350
	 */
351
	public function get_message_path() {
352
		$screen = get_current_screen();
353
354
		return 'wp:' . $screen->id . ':' . current_filter();
355
	}
356
357
	/**
358
	 * Function to enqueue jitm css and js
359
	 */
360
	public function jitm_enqueue_files() {
361
		if ( $this->is_gutenberg_page() ) {
362
			return;
363
		}
364
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
365
		wp_register_style(
366
			'jetpack-jitm-css',
367
			plugins_url( "assets/jetpack-admin-jitm{$min}.css", __DIR__ ),
368
			false,
369
			self::PACKAGE_VERSION .
370
			'-201243242'
371
		);
372
		wp_style_add_data( 'jetpack-jitm-css', 'rtl', 'replace' );
373
		wp_style_add_data( 'jetpack-jitm-css', 'suffix', $min );
374
		wp_enqueue_style( 'jetpack-jitm-css' );
375
376
		wp_enqueue_script(
377
			'jetpack-jitm-new',
378
			Assets::get_file_url_for_environment( '_inc/build/jetpack-jitm.min.js', '_inc/jetpack-jitm.js' ),
379
			array( 'jquery' ),
380
			self::PACKAGE_VERSION,
381
			true
382
		);
383
		wp_localize_script(
384
			'jetpack-jitm-new',
385
			'jitm_config',
386
			array(
387
				'api_root'               => esc_url_raw( rest_url() ),
388
				'activate_module_text'   => esc_html__( 'Activate', 'jetpack' ),
389
				'activated_module_text'  => esc_html__( 'Activated', 'jetpack' ),
390
				'activating_module_text' => esc_html__( 'Activating', 'jetpack' ),
391
			)
392
		);
393
	}
394
395
	/**
396
	 * Dismisses a JITM feature class so that it will no longer be shown.
397
	 *
398
	 * @param string $id The id of the JITM that was dismissed.
399
	 * @param string $feature_class The feature class of the JITM that was dismissed.
400
	 *
401
	 * @return bool Always true.
402
	 */
403
	public function dismiss( $id, $feature_class ) {
404
		$this->tracking->record_user_event(
405
			'jitm_dismiss_client',
406
			array(
407
				'jitm_id'       => $id,
408
				'feature_class' => $feature_class,
409
			)
410
		);
411
412
		$hide_jitm = \Jetpack_Options::get_option( 'hide_jitm' );
413
		if ( ! is_array( $hide_jitm ) ) {
414
			$hide_jitm = array();
415
		}
416
417
		if ( isset( $hide_jitm[ $feature_class ] ) ) {
418
			if ( ! is_array( $hide_jitm[ $feature_class ] ) ) {
419
				$hide_jitm[ $feature_class ] = array(
420
					'last_dismissal' => 0,
421
					'number'         => 0,
422
				);
423
			}
424
		} else {
425
			$hide_jitm[ $feature_class ] = array(
426
				'last_dismissal' => 0,
427
				'number'         => 0,
428
			);
429
		}
430
431
		$number = $hide_jitm[ $feature_class ]['number'];
432
433
		$hide_jitm[ $feature_class ] = array(
434
			'last_dismissal' => time(),
435
			'number'         => $number + 1,
436
		);
437
438
		\Jetpack_Options::update_option( 'hide_jitm', $hide_jitm );
439
440
		return true;
441
	}
442
443
	/**
444
	 * Asks the wpcom API for the current message to display keyed on query string and message path
445
	 *
446
	 * @param string $message_path The message path to ask for.
447
	 * @param string $query The query string originally from the front end.
448
	 *
449
	 * @return array The JITM's to show, or an empty array if there is nothing to show
450
	 */
451
	public function get_messages( $message_path, $query ) {
452
		// Custom filters go here.
453
		add_filter( 'jitm_woocommerce_services_msg', array( $this, 'jitm_woocommerce_services_msg' ) );
454
		add_filter( 'jitm_jetpack_woo_services_install', array( $this, 'jitm_jetpack_woo_services_install' ) );
455
		add_filter( 'jitm_jetpack_woo_services_activate', array( $this, 'jitm_jetpack_woo_services_activate' ) );
456
457
		$user = wp_get_current_user();
458
459
		// Unauthenticated or invalid requests just bail.
460
		if ( ! $user ) {
461
			return array();
462
		}
463
464
		$user_roles = implode( ',', $user->roles );
465
		$site_id    = \Jetpack_Options::get_option( 'id' );
466
467
		// Build our jitm request.
468
		$path = add_query_arg(
469
			array(
470
				'external_user_id' => urlencode_deep( $user->ID ),
471
				'user_roles'       => urlencode_deep( $user_roles ),
472
				'query_string'     => urlencode_deep( $query ),
473
				'mobile_browser'   => jetpack_is_mobile( 'smart' ) ? 1 : 0,
474
				'_locale'          => get_user_locale(),
475
			),
476
			sprintf( '/sites/%d/jitm/%s', $site_id, $message_path )
477
		);
478
479
		// Attempt to get from cache.
480
		$envelopes = get_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ) );
481
482
		// If something is in the cache and it was put in the cache after the last sync we care about, use it.
483
		$use_cache = false;
484
485
		/** This filter is documented in class.jetpack.php */
486
		if ( apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) {
487
			$use_cache = true;
488
		}
489
490
		if ( $use_cache ) {
491
			$last_sync  = (int) get_transient( 'jetpack_last_plugin_sync' );
492
			$from_cache = $envelopes && $last_sync > 0 && $last_sync < $envelopes['last_response_time'];
493
		} else {
494
			$from_cache = false;
495
		}
496
497
		// Otherwise, ask again.
498
		if ( ! $from_cache ) {
499
			$wpcom_response = Client::wpcom_json_api_request_as_blog(
500
				$path,
501
				'2',
502
				array(
503
					'user_id'    => $user->ID,
504
					'user_roles' => implode( ',', $user->roles ),
505
				),
506
				null,
507
				'wpcom'
508
			);
509
510
			// silently fail...might be helpful to track it?
511
			if ( is_wp_error( $wpcom_response ) ) {
512
				return array();
513
			}
514
515
			$envelopes = json_decode( $wpcom_response['body'] );
516
517
			if ( ! is_array( $envelopes ) ) {
518
				return array();
519
			}
520
521
			$expiration = isset( $envelopes[0] ) ? $envelopes[0]->ttl : 300;
522
523
			// Do not cache if expiration is 0 or we're not using the cache.
524
			if ( 0 !== $expiration && $use_cache ) {
525
				$envelopes['last_response_time'] = time();
526
527
				set_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ), $envelopes, $expiration );
528
			}
529
		}
530
531
		$hidden_jitms = \Jetpack_Options::get_option( 'hide_jitm' );
532
		unset( $envelopes['last_response_time'] );
533
534
		/**
535
		 * Allow adding your own custom JITMs after a set of JITMs has been received.
536
		 *
537
		 * @since 6.9.0
538
		 *
539
		 * @param array $envelopes array of existing JITMs.
540
		 */
541
		$envelopes = apply_filters( 'jetpack_jitm_received_envelopes', $envelopes );
542
543
		foreach ( $envelopes as $idx => &$envelope ) {
544
545
			$dismissed_feature = isset( $hidden_jitms[ $envelope->feature_class ] ) && is_array( $hidden_jitms[ $envelope->feature_class ] ) ? $hidden_jitms[ $envelope->feature_class ] : null;
546
547
			// If the this feature class has been dismissed and the request has not passed the ttl, skip it as it's been dismissed.
548
			if ( is_array( $dismissed_feature ) && ( time() - $dismissed_feature['last_dismissal'] < $envelope->expires || $dismissed_feature['number'] >= $envelope->max_dismissal ) ) {
549
				unset( $envelopes[ $idx ] );
550
				continue;
551
			}
552
553
			$this->tracking->record_user_event(
554
				'jitm_view_client',
555
				array(
556
					'jitm_id' => $envelope->id,
557
				)
558
			);
559
560
			$normalized_site_url = \Jetpack::build_raw_urls( get_home_url() );
561
562
			$url_params = array(
563
				'source' => "jitm-$envelope->id",
564
				'site'   => $normalized_site_url,
565
				'u'      => $user->ID,
566
			);
567
568
			// Get affiliate code and add it to the array of URL parameters.
569
			$aff = Partner::init()->get_partner_code( Partner::AFFILIATE_CODE );
570
			if ( '' !== $aff ) {
571
				$url_params['aff'] = $aff;
572
			}
573
574
			$envelope->url = add_query_arg( $url_params, 'https://jetpack.com/redirect/' );
575
576
			$envelope->jitm_stats_url = \Jetpack::build_stats_url( array( 'x_jetpack-jitm' => $envelope->id ) );
577
578
			// phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
579
			// $CTA is not valid per PHPCS, but it is part of the return from WordPress.com, so allowing.
580
			if ( $envelope->CTA->hook ) {
581
				$envelope->url = apply_filters( 'jitm_' . $envelope->CTA->hook, $envelope->url );
582
				unset( $envelope->CTA->hook );
583
			}
584
			// phpcs:enable
585
586
			if ( isset( $envelope->content->hook ) ) {
587
				$envelope->content = apply_filters( 'jitm_' . $envelope->content->hook, $envelope->content );
588
				unset( $envelope->content->hook );
589
			}
590
591
			// No point in showing an empty message.
592
			if ( empty( $envelope->content->message ) ) {
593
				unset( $envelopes[ $idx ] );
594
				continue;
595
			}
596
597
			switch ( $envelope->content->icon ) {
598
				case 'jetpack':
599
					$jetpack_logo            = new Jetpack_Logo();
600
					$envelope->content->icon = '<div class="jp-emblem">' . $jetpack_logo->get_jp_emblem() . '</div>';
601
					break;
602
				case 'woocommerce':
603
					$envelope->content->icon = '<div class="jp-emblem"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 168 100" xml:space="preserve" enable-background="new 0 0 168 100" width="50" height="30"><style type="text/css">
604
					.st0{clip-path:url(#SVGID_2_);enable-background:new    ;}
605
					.st1{clip-path:url(#SVGID_4_);}
606
					.st2{clip-path:url(#SVGID_6_);}
607
					.st3{clip-path:url(#SVGID_8_);fill:#8F567F;}
608
					.st4{clip-path:url(#SVGID_10_);fill:#FFFFFE;}
609
					.st5{clip-path:url(#SVGID_12_);fill:#FFFFFE;}
610
					.st6{clip-path:url(#SVGID_14_);fill:#FFFFFE;}
611
				</style><g><defs><polygon id="SVGID_1_" points="83.8 100 0 100 0 0.3 83.8 0.3 167.6 0.3 167.6 100 "/></defs><clipPath id="SVGID_2_"><use xlink:href="#SVGID_1_" overflow="visible"/></clipPath><g class="st0"><g><defs><rect id="SVGID_3_" width="168" height="100"/></defs><clipPath id="SVGID_4_"><use xlink:href="#SVGID_3_" overflow="visible"/></clipPath><g class="st1"><defs><path id="SVGID_5_" d="M15.6 0.3H152c8.6 0 15.6 7 15.6 15.6v52c0 8.6-7 15.6-15.6 15.6h-48.9l6.7 16.4L80.2 83.6H15.6C7 83.6 0 76.6 0 67.9v-52C0 7.3 7 0.3 15.6 0.3"/></defs><clipPath id="SVGID_6_"><use xlink:href="#SVGID_5_" overflow="visible"/></clipPath><g class="st2"><defs><rect id="SVGID_7_" width="168" height="100"/></defs><clipPath id="SVGID_8_"><use xlink:href="#SVGID_7_" overflow="visible"/></clipPath><rect x="-10" y="-9.7" class="st3" width="187.6" height="119.7"/></g></g></g></g></g><g><defs><path id="SVGID_9_" d="M8.4 14.5c1-1.3 2.4-2 4.3-2.1 3.5-0.2 5.5 1.4 6 4.9 2.1 14.3 4.4 26.4 6.9 36.4l15-28.6c1.4-2.6 3.1-3.9 5.2-4.1 3-0.2 4.9 1.7 5.6 5.7 1.7 9.1 3.9 16.9 6.5 23.4 1.8-17.4 4.8-30 9-37.7 1-1.9 2.5-2.9 4.5-3 1.6-0.1 3 0.3 4.3 1.4 1.3 1 2 2.3 2.1 3.9 0.1 1.2-0.1 2.3-0.7 3.3 -2.7 5-4.9 13.2-6.6 24.7 -1.7 11.1-2.3 19.8-1.9 26.1 0.1 1.7-0.1 3.2-0.8 4.5 -0.8 1.5-2 2.4-3.7 2.5 -1.8 0.1-3.6-0.7-5.4-2.5C52.4 66.7 47.4 57 43.7 44.1c-4.4 8.8-7.7 15.3-9.9 19.7 -4 7.7-7.5 11.7-10.3 11.9 -1.9 0.1-3.5-1.4-4.8-4.7 -3.5-9-7.3-26.3-11.3-52C7.1 17.3 7.5 15.8 8.4 14.5"/></defs><clipPath id="SVGID_10_"><use xlink:href="#SVGID_9_" overflow="visible"/></clipPath><rect x="-2.7" y="-0.6" class="st4" width="90.6" height="86.4"/></g><g><defs><path id="SVGID_11_" d="M155.6 25.2c-2.5-4.3-6.1-6.9-11-7.9 -1.3-0.3-2.5-0.4-3.7-0.4 -6.6 0-11.9 3.4-16.1 10.2 -3.6 5.8-5.3 12.3-5.3 19.3 0 5.3 1.1 9.8 3.3 13.6 2.5 4.3 6.1 6.9 11 7.9 1.3 0.3 2.5 0.4 3.7 0.4 6.6 0 12-3.4 16.1-10.2 3.6-5.9 5.3-12.4 5.3-19.4C159 33.4 157.9 28.9 155.6 25.2zM147 44.2c-0.9 4.5-2.7 7.9-5.2 10.1 -2 1.8-3.9 2.5-5.5 2.2 -1.7-0.3-3-1.8-4-4.4 -0.8-2.1-1.2-4.2-1.2-6.2 0-1.7 0.2-3.4 0.5-5 0.6-2.8 1.8-5.5 3.6-8.1 2.3-3.3 4.7-4.8 7.1-4.2 1.7 0.3 3 1.8 4 4.4 0.8 2.1 1.2 4.2 1.2 6.2C147.5 40.9 147.3 42.6 147 44.2z"/></defs><clipPath id="SVGID_12_"><use xlink:href="#SVGID_11_" overflow="visible"/></clipPath><rect x="109.6" y="6.9" class="st5" width="59.4" height="71.4"/></g><g><defs><path id="SVGID_13_" d="M112.7 25.2c-2.5-4.3-6.1-6.9-11-7.9 -1.3-0.3-2.5-0.4-3.7-0.4 -6.6 0-11.9 3.4-16.1 10.2 -3.5 5.8-5.3 12.3-5.3 19.3 0 5.3 1.1 9.8 3.3 13.6 2.5 4.3 6.1 6.9 11 7.9 1.3 0.3 2.5 0.4 3.7 0.4 6.6 0 12-3.4 16.1-10.2 3.5-5.9 5.3-12.4 5.3-19.4C116 33.4 114.9 28.9 112.7 25.2zM104.1 44.2c-0.9 4.5-2.7 7.9-5.2 10.1 -2 1.8-3.9 2.5-5.5 2.2 -1.7-0.3-3-1.8-4-4.4 -0.8-2.1-1.2-4.2-1.2-6.2 0-1.7 0.2-3.4 0.5-5 0.6-2.8 1.8-5.5 3.6-8.1 2.3-3.3 4.7-4.8 7.1-4.2 1.7 0.3 3 1.8 4 4.4 0.8 2.1 1.2 4.2 1.2 6.2C104.6 40.9 104.4 42.6 104.1 44.2z"/></defs><clipPath id="SVGID_14_"><use xlink:href="#SVGID_13_" overflow="visible"/></clipPath><rect x="66.7" y="6.9" class="st6" width="59.4" height="71.4"/></g></svg></div>';
612
					break;
613
				default:
614
					$envelope->content->icon = '';
615
					break;
616
			}
617
618
			$jetpack = \Jetpack::init();
619
			$jetpack->stat( 'jitm', $envelope->id . '-viewed-' . JETPACK__VERSION );
620
			$jetpack->do_stats( 'server_side' );
621
		}
622
623
		return $envelopes;
624
	}
625
626
	/**
627
	 * Is the current page a block editor page?
628
	 *
629
	 * @since 8.0.0
630
	 */
631
	private function is_gutenberg_page() {
632
		$current_screen = get_current_screen();
633
		return ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() );
634
	}
635
}
636