Completed
Push — fix/move_JITM_after_plugins_lo... ( 574295...2b66c4 )
by
unknown
24:53 queued 18:32
created

JITM::get_messages()   F

Complexity

Conditions 25
Paths 5337

Size

Total Lines 174

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 25
nc 5337
nop 2
dl 0
loc 174
rs 0
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

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