Completed
Push — jitm-fix ( 390262...111e89 )
by
unknown
15:10 queued 07:30
created

Manager::ajax_message()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

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