Completed
Push — update/package-tracks-move-mor... ( 53d6cf...948bfb )
by Marin
86:56 queued 76:35
created

JITM   B

Complexity

Total Complexity 45

Size/Duplication

Total Lines 436
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 7

Importance

Changes 0
Metric Value
dl 0
loc 436
rs 8.8
c 0
b 0
f 0
wmc 45
lcom 1
cbo 7

12 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A register() 0 15 2
A get_emblem() 0 4 1
A prepare_jitms() 0 14 2
A jitm_woocommerce_services_msg() 0 20 4
A jitm_jetpack_woo_services_install() 0 11 1
A jitm_jetpack_woo_services_activate() 0 11 1
A ajax_message() 0 13 1
A get_message_path() 0 5 1
A jitm_enqueue_files() 0 32 1
A dismiss() 0 39 4
F get_messages() 0 179 26

How to fix   Complexity   

Complex Class

Complex classes like JITM often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use JITM, and based on these observations, apply Extract Interface, too.

1
<?php
2
3
namespace Automattic\Jetpack;
4
5
use Automattic\Jetpack\Asset_Tools;
6
use Automattic\Jetpack\Connection\Manager as Jetpack_Connection;
7
use Automattic\Jetpack\Assets\Logo as Jetpack_Logo;
8
use Automattic\Jetpack\Tracking;
9
10
/**
11
 * Jetpack just in time messaging through out the admin
12
 *
13
 * @since 5.6.0
14
 */
15
class JITM {
16
17
	const PACKAGE_VERSION = '1.0';
18
19
	/**
20
	 * Tracking object.
21
	 *
22
	 * @var Automattic\Jetpack\Tracking
23
	 *
24
	 * @access private
25
	 */
26
	private $tracking;
27
28
	/**
29
	 * Constructor.
30
	 */
31
	public function __construct() {
32
		$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...
33
	}
34
35
	public function register() {
36
		/**
37
		 * Filter to turn off all just in time messages
38
		 *
39
		 * @since 3.7.0
40
		 * @since 5.4.0 Correct docblock to reflect default arg value
41
		 *
42
		 * @param bool false Whether to show just in time messages.
43
		 */
44
		if ( ! apply_filters( 'jetpack_just_in_time_msgs', false ) ) {
45
			return false;
46
		}
47
		add_action( 'current_screen', array( $this, 'prepare_jitms' ) );
48
		return true;
49
	}
50
51
	/**
52
	 * Get's the Jetpack emblem
53
	 *
54
	 * @return string The Jetpack emblem
55
	 */
56
	function get_emblem() {
57
		$jetpack_logo = new Jetpack_Logo();
58
		return '<div class="jp-emblem">' . $jetpack_logo->get_jp_emblem() . '</div>';
59
	}
60
61
	/**
62
	 * Prepare actions according to screen and post type.
63
	 *
64
	 * @since 3.8.2
65
	 *
66
	 * @uses Jetpack_Autoupdate::get_possible_failures()
67
	 *
68
	 * @param object $screen
69
	 */
70
	function prepare_jitms( $screen ) {
71
		if ( ! in_array(
72
			$screen->id,
73
			array(
74
				'jetpack_page_stats',
75
				'jetpack_page_akismet-key-config',
76
				'admin_page_jetpack_modules',
77
			)
78
		) ) {
79
			add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
80
			add_action( 'admin_notices', array( $this, 'ajax_message' ) );
81
			add_action( 'edit_form_top', array( $this, 'ajax_message' ) );
82
		}
83
	}
84
85
	/**
86
	 * A special filter for WooCommerce, to set a message based on local state.
87
	 *
88
	 * @param $message string The current message
89
	 *
90
	 * @return array The new message
91
	 */
92
	static function jitm_woocommerce_services_msg( $content ) {
93
		if ( ! function_exists( 'wc_get_base_location' ) ) {
94
			return $content;
95
		}
96
97
		$base_location = wc_get_base_location();
98
99
		switch ( $base_location['country'] ) {
100
			case 'US':
101
				$content->message = esc_html__( 'New free service: Show USPS shipping rates on your store! Added bonus: print shipping labels without leaving WooCommerce.', 'jetpack' );
102
				break;
103
			case 'CA':
104
				$content->message = esc_html__( 'New free service: Show Canada Post shipping rates on your store!', 'jetpack' );
105
				break;
106
			default:
107
				$content->message = '';
108
		}
109
110
		return $content;
111
	}
112
113
	/**
114
	 * A special filter for WooCommerce Call To Action button
115
	 *
116
	 * @param $CTA string The existing CTA
117
	 *
118
	 * @return string The new CTA
119
	 */
120
	static function jitm_jetpack_woo_services_install( $CTA ) {
121
		return wp_nonce_url(
122
			add_query_arg(
123
				array(
124
					'wc-services-action' => 'install',
125
				),
126
				admin_url( 'admin.php?page=wc-settings' )
127
			),
128
			'wc-services-install'
129
		);
130
	}
131
132
	/**
133
	 * A special filter for WooCommerce Call To Action button
134
	 *
135
	 * @param $CTA string The existing CTA
136
	 *
137
	 * @return string The new CTA
138
	 */
139
	static function jitm_jetpack_woo_services_activate( $CTA ) {
140
		return wp_nonce_url(
141
			add_query_arg(
142
				array(
143
					'wc-services-action' => 'activate',
144
				),
145
				admin_url( 'admin.php?page=wc-settings' )
146
			),
147
			'wc-services-install'
148
		);
149
	}
150
151
	/**
152
	 * Injects the dom to show a JITM inside of
153
	 */
154
	function ajax_message() {
155
		$message_path   = $this->get_message_path();
156
		$query_string   = _http_build_query( $_GET, '', ',' );
157
		$current_screen = wp_unslash( $_SERVER['REQUEST_URI'] );
158
		?>
159
		<div class="jetpack-jitm-message"
160
			 data-nonce="<?php echo wp_create_nonce( 'wp_rest' ); ?>"
161
			 data-message-path="<?php echo esc_attr( $message_path ); ?>"
162
			 data-query="<?php echo urlencode_deep( $query_string ); ?>"
163
			 data-redirect="<?php echo urlencode_deep( $current_screen ); ?>"
164
		></div>
165
		<?php
166
	}
167
168
	/**
169
	 * Get's the current message path for display of a JITM
170
	 *
171
	 * @return string The message path
172
	 */
173
	function get_message_path() {
174
		$screen = get_current_screen();
175
176
		return 'wp:' . $screen->id . ':' . current_filter();
177
	}
178
179
	/**
180
	 * Function to enqueue jitm css and js
181
	 */
182
	function jitm_enqueue_files() {
183
		$asset_manager = new Asset_Tools();
184
		$min           = ''; // ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
185
		wp_register_style(
186
			'jetpack-jitm-css',
187
			plugins_url( "assets/jetpack-admin-jitm{$min}.css", __DIR__ ),
188
			false,
189
			self::PACKAGE_VERSION .
190
			'-201243242'
191
		);
192
		wp_style_add_data( 'jetpack-jitm-css', 'rtl', 'replace' );
193
		wp_style_add_data( 'jetpack-jitm-css', 'suffix', $min );
194
		wp_enqueue_style( 'jetpack-jitm-css' );
195
196
		wp_enqueue_script(
197
			'jetpack-jitm-new',
198
			$asset_manager->get_file_url_for_environment( '_inc/build/jetpack-jitm.min.js', '_inc/jetpack-jitm.js' ),
199
			array( 'jquery' ),
200
			self::PACKAGE_VERSION, // TODO: Keep in sync with version specified in composer.json
201
			true
202
		);
203
		wp_localize_script(
204
			'jetpack-jitm-new',
205
			'jitm_config',
206
			array(
207
				'api_root'               => esc_url_raw( rest_url() ),
208
				'activate_module_text'   => esc_html__( 'Activate', 'jetpack' ),
209
				'activated_module_text'  => esc_html__( 'Activated', 'jetpack' ),
210
				'activating_module_text' => esc_html__( 'Activating', 'jetpack' ),
211
			)
212
		);
213
	}
214
215
	/**
216
	 * Dismisses a JITM feature class so that it will no longer be shown
217
	 *
218
	 * @param $id string The id of the JITM that was dismissed
219
	 * @param $feature_class string The feature class of the JITM that was dismissed
220
	 *
221
	 * @return bool Always true
222
	 */
223
	function dismiss( $id, $feature_class ) {
224
		$this->tracking->record_user_event(
225
			'jitm_dismiss_client',
226
			array(
227
				'jitm_id'       => $id,
228
				'feature_class' => $feature_class,
229
			)
230
		);
231
232
		$hide_jitm = \Jetpack_Options::get_option( 'hide_jitm' );
233
		if ( ! is_array( $hide_jitm ) ) {
234
			$hide_jitm = array();
235
		}
236
237
		if ( isset( $hide_jitm[ $feature_class ] ) ) {
238
			if ( ! is_array( $hide_jitm[ $feature_class ] ) ) {
239
				$hide_jitm[ $feature_class ] = array(
240
					'last_dismissal' => 0,
241
					'number'         => 0,
242
				);
243
			}
244
		} else {
245
			$hide_jitm[ $feature_class ] = array(
246
				'last_dismissal' => 0,
247
				'number'         => 0,
248
			);
249
		}
250
251
		$number = $hide_jitm[ $feature_class ]['number'];
252
253
		$hide_jitm[ $feature_class ] = array(
254
			'last_dismissal' => time(),
255
			'number'         => $number + 1,
256
		);
257
258
		\Jetpack_Options::update_option( 'hide_jitm', $hide_jitm );
259
260
		return true;
261
	}
262
263
	/**
264
	 * Asks the wpcom API for the current message to display keyed on query string and message path
265
	 *
266
	 * @param $message_path string The message path to ask for
267
	 * @param $query string The query string originally from the front end
268
	 *
269
	 * @return array The JITM's to show, or an empty array if there is nothing to show
270
	 */
271
	function get_messages( $message_path, $query ) {
272
		// custom filters go here
273
		add_filter( 'jitm_woocommerce_services_msg', array( 'Jetpack_JITM', 'jitm_woocommerce_services_msg' ) );
274
		add_filter( 'jitm_jetpack_woo_services_install', array( 'Jetpack_JITM', 'jitm_jetpack_woo_services_install' ) );
275
		add_filter(
276
			'jitm_jetpack_woo_services_activate',
277
			array(
278
				'Jetpack_JITM',
279
				'jitm_jetpack_woo_services_activate',
280
			)
281
		);
282
283
		$user = wp_get_current_user();
284
285
		// unauthenticated or invalid requests just bail
286
		if ( ! $user ) {
287
			return array();
288
		}
289
290
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-client.php';
291
292
		$site_id = \Jetpack_Options::get_option( 'id' );
293
294
		// build our jitm request
295
		$path = add_query_arg(
296
			array(
297
				'external_user_id' => urlencode_deep( $user->ID ),
298
				'query_string'     => urlencode_deep( $query ),
299
				'mobile_browser'   => jetpack_is_mobile( 'smart' ) ? 1 : 0,
300
				'_locale'          => get_user_locale(),
301
			),
302
			sprintf( '/sites/%d/jitm/%s', $site_id, $message_path )
303
		);
304
305
		// attempt to get from cache
306
		$envelopes = get_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ) );
307
308
		// if something is in the cache and it was put in the cache after the last sync we care about, use it
309
		$use_cache = false;
310
311
		/** This filter is documented in class.jetpack.php */
312
		if ( apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) {
313
			$use_cache = true;
314
		}
315
316
		if ( $use_cache ) {
317
			$last_sync  = (int) get_transient( 'jetpack_last_plugin_sync' );
318
			$from_cache = $envelopes && $last_sync > 0 && $last_sync < $envelopes['last_response_time'];
319
		} else {
320
			$from_cache = false;
321
		}
322
323
		// otherwise, ask again
324
		if ( ! $from_cache ) {
325
			$wpcom_response = \Jetpack_Client::wpcom_json_api_request_as_blog(
326
				$path,
327
				'2',
328
				array(
329
					'user_id'    => $user->ID,
330
					'user_roles' => implode( ',', $user->roles ),
331
				),
332
				null,
333
				'wpcom'
334
			);
335
336
			// silently fail...might be helpful to track it?
337
			if ( is_wp_error( $wpcom_response ) ) {
338
				return array();
339
			}
340
341
			$envelopes = json_decode( $wpcom_response['body'] );
342
343
			if ( ! is_array( $envelopes ) ) {
344
				return array();
345
			}
346
347
			$expiration = isset( $envelopes[0] ) ? $envelopes[0]->ttl : 300;
348
349
			// do not cache if expiration is 0 or we're not using the cache
350
			if ( 0 != $expiration && $use_cache ) {
351
				$envelopes['last_response_time'] = time();
352
353
				set_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ), $envelopes, $expiration );
354
			}
355
		}
356
357
		$hidden_jitms = \Jetpack_Options::get_option( 'hide_jitm' );
358
		unset( $envelopes['last_response_time'] );
359
360
		/**
361
		 * Allow adding your own custom JITMs after a set of JITMs has been received.
362
		 *
363
		 * @since 6.9.0
364
		 *
365
		 * @param array $envelopes array of existing JITMs.
366
		 */
367
		$envelopes = apply_filters( 'jetpack_jitm_received_envelopes', $envelopes );
368
369
		foreach ( $envelopes as $idx => &$envelope ) {
370
371
			$dismissed_feature = isset( $hidden_jitms[ $envelope->feature_class ] ) && is_array( $hidden_jitms[ $envelope->feature_class ] ) ? $hidden_jitms[ $envelope->feature_class ] : null;
372
373
			// if the this feature class has been dismissed and the request has not passed the ttl, skip it as it's been dismissed
374
			if ( is_array( $dismissed_feature ) && ( time() - $dismissed_feature['last_dismissal'] < $envelope->expires || $dismissed_feature['number'] >= $envelope->max_dismissal ) ) {
375
				unset( $envelopes[ $idx ] );
376
				continue;
377
			}
378
379
			$this->tracking->record_user_event(
380
				'jitm_view_client',
381
				array(
382
					'jitm_id' => $envelope->id,
383
				)
384
			);
385
386
			$normalized_site_url = \Jetpack::build_raw_urls( get_home_url() );
387
388
			$url_params = array(
389
				'source' => "jitm-$envelope->id",
390
				'site'   => $normalized_site_url,
391
				'u'      => $user->ID,
392
			);
393
394
			if ( ! class_exists( 'Jetpack_Affiliate' ) ) {
395
				require_once JETPACK__PLUGIN_DIR . 'class.jetpack-affiliate.php';
396
			}
397
			// Get affiliate code and add it to the array of URL parameters
398
			if ( '' !== ( $aff = \Jetpack_Affiliate::init()->get_affiliate_code() ) ) {
399
				$url_params['aff'] = $aff;
400
			}
401
402
			$envelope->url = add_query_arg( $url_params, 'https://jetpack.com/redirect/' );
403
404
			$envelope->jitm_stats_url = \Jetpack::build_stats_url( array( 'x_jetpack-jitm' => $envelope->id ) );
405
406
			if ( $envelope->CTA->hook ) {
407
				$envelope->url = apply_filters( 'jitm_' . $envelope->CTA->hook, $envelope->url );
408
				unset( $envelope->CTA->hook );
409
			}
410
411
			if ( isset( $envelope->content->hook ) ) {
412
				$envelope->content = apply_filters( 'jitm_' . $envelope->content->hook, $envelope->content );
413
				unset( $envelope->content->hook );
414
			}
415
416
			// no point in showing an empty message
417
			if ( empty( $envelope->content->message ) ) {
418
				unset( $envelopes[ $idx ] );
419
				continue;
420
			}
421
422
			switch ( $envelope->content->icon ) {
423
				case 'jetpack':
424
					$jetpack_logo            = new Jetpack_Logo();
425
					$envelope->content->icon = '<div class="jp-emblem">' . $jetpack_logo->get_jp_emblem() . '</div>';
426
					break;
427
				case 'woocommerce':
428
					$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">
429
					.st0{clip-path:url(#SVGID_2_);enable-background:new    ;}
430
					.st1{clip-path:url(#SVGID_4_);}
431
					.st2{clip-path:url(#SVGID_6_);}
432
					.st3{clip-path:url(#SVGID_8_);fill:#8F567F;}
433
					.st4{clip-path:url(#SVGID_10_);fill:#FFFFFE;}
434
					.st5{clip-path:url(#SVGID_12_);fill:#FFFFFE;}
435
					.st6{clip-path:url(#SVGID_14_);fill:#FFFFFE;}
436
				</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>';
437
					break;
438
				default:
439
					$envelope->content->icon = '';
440
					break;
441
			}
442
443
			$jetpack = \Jetpack::init();
444
			$jetpack->stat( 'jitm', $envelope->id . '-viewed-' . JETPACK__VERSION );
445
			$jetpack->do_stats( 'server_side' );
446
		}
447
448
		return $envelopes;
449
	}
450
}
451