class-wc-connect-nux.php
24.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
<?php
if ( ! class_exists( 'WC_Connect_Nux' ) ) {
class WC_Connect_Nux {
/**
* Jetpack status constants.
*/
const JETPACK_NOT_INSTALLED = 'uninstalled';
const JETPACK_INSTALLED_NOT_ACTIVATED = 'installed';
const JETPACK_ACTIVATED_NOT_CONNECTED = 'activated';
const JETPACK_DEV = 'dev';
const JETPACK_CONNECTED = 'connected';
const IS_NEW_LABEL_USER = 'wcc_is_new_label_user';
/**
* Option name for dismissing success banner
* after the JP connection flow
*/
const SHOULD_SHOW_AFTER_CXN_BANNER = 'should_display_nux_after_jp_cxn_banner';
/**
* @var WC_Connect_Tracks
*/
protected $tracks;
/**
* @var WC_Connect_Shipping_Label
*/
private $shipping_label;
function __construct( WC_Connect_Tracks $tracks, WC_Connect_Shipping_Label $shipping_label ) {
$this->tracks = $tracks;
$this->shipping_label = $shipping_label;
$this->init_pointers();
}
private function get_notice_states() {
$states = get_user_meta( get_current_user_id(), 'wc_connect_nux_notices', true );
if ( ! is_array( $states ) ) {
return array();
}
return $states;
}
public function is_notice_dismissed( $notice ) {
$notices = $this->get_notice_states();
return isset( $notices[ $notice ] ) && $notices[ $notice ];
}
public function dismiss_notice( $notice ) {
$notices = $this->get_notice_states();
$notices[ $notice ] = true;
update_user_meta( get_current_user_id(), 'wc_connect_nux_notices', $notices );
}
public function ajax_dismiss_notice() {
if ( empty( $_POST['dismissible_id'] ) ) {
return;
}
check_ajax_referer( 'wc_connect_dismiss_notice', 'nonce' );
$this->dismiss_notice( sanitize_key( $_POST['dismissible_id'] ) );
wp_die();
}
private function init_pointers() {
add_filter( 'wc_services_pointer_post.php', array( $this, 'register_order_page_labels_pointer' ) );
add_filter( 'wc_services_pointer_post.php', array( $this, 'register_new_carrier_dhl_pointer' ) );
}
public function show_pointers( $hook ) {
/*
Get admin pointers for the current admin page.
*
* @since 0.9.6
*
* @param array $pointers Array of pointers.
*/
$pointers = apply_filters( 'wc_services_pointer_' . $hook, array() );
if ( ! $pointers || ! is_array( $pointers ) ) {
return;
}
$dismissed_pointers = $this->get_dismissed_pointers();
$valid_pointers = array();
foreach ( $pointers as $pointer ) {
if ( ! in_array( $pointer['id'], $dismissed_pointers, true ) ) {
$valid_pointers[] = $pointer;
}
}
if ( empty( $valid_pointers ) ) {
return;
}
wp_enqueue_style( 'wp-pointer' );
wp_localize_script( 'wc_services_admin_pointers', 'wcServicesAdminPointers', $valid_pointers );
wp_enqueue_script( 'wc_services_admin_pointers' );
}
public function get_dismissed_pointers() {
$data = get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true );
if ( is_string( $data ) && 0 < strlen( $data ) ) {
return explode( ',', $data );
}
return array();
}
/**
* Dismiss a WP pointer for the current user.
*
* @param string $pointer_to_dismiss Pointer ID to dismiss for the current user
*/
public function dismiss_pointer( $pointer_to_dismiss ) {
$dismissed_pointers = $this->get_dismissed_pointers();
if ( in_array( $pointer_to_dismiss, $dismissed_pointers, true ) ) {
return;
}
$dismissed_pointers[] = $pointer_to_dismiss;
$dismissed_data = implode( ',', $dismissed_pointers );
update_user_meta( get_current_user_id(), 'dismissed_wp_pointers', $dismissed_data );
}
public function is_new_labels_user() {
$is_new_user = get_transient( self::IS_NEW_LABEL_USER );
if ( false === $is_new_user ) {
global $wpdb;
$query = "SELECT meta_key FROM {$wpdb->postmeta} WHERE meta_key = 'wc_connect_labels' LIMIT 1";
$results = $wpdb->get_results( $query );
$is_new_user = 0 === count( $results ) ? 'yes' : 'no';
set_transient( self::IS_NEW_LABEL_USER, $is_new_user );
}
return 'yes' === $is_new_user;
}
public function register_order_page_labels_pointer( $pointers ) {
// If the user is not new to labels, we should just dismiss this pointer
if ( ! $this->is_new_labels_user() ) {
$this->dismiss_pointer( 'wc_services_labels_metabox' );
return $pointers;
}
global $post;
if ( ! $this->shipping_label->should_show_meta_box( $post ) ) {
return $pointers;
}
$supported_carriers = array( 'USPS' );
if ( $this->shipping_label->is_dhl_express_available() ) {
$supported_carriers[] = 'DHL';
}
$pointers[] = array(
'id' => 'wc_services_labels_metabox',
'target' => '#woocommerce-order-label .button',
'options' => array(
'content' => sprintf(
'<h3>%s</h3><p>%s</p>',
__( 'Discounted Shipping Labels', 'woocommerce-services' ),
sprintf( __( "When you're ready, purchase and print discounted labels from %s right here.", 'woocommerce-services' ), implode( ' or ', $supported_carriers ) )
),
'position' => array(
'edge' => 'top',
'align' => 'left',
),
),
'dim' => true,
);
return $pointers;
}
public function register_new_carrier_dhl_pointer( $pointers ) {
// new user? no need to show this alert, `wc_services_labels_metabox` will take care of communicating about DHL
if ( $this->is_new_labels_user() ) {
$this->dismiss_pointer( 'wc_services_new_carrier_dhl_express' );
return $pointers;
}
// existing user? figure out if the order supports DHL, then let them know DHL is a new carrier!
if ( ! $this->shipping_label->is_order_dhl_express_eligible() ) {
return $pointers;
}
$pointers[] = array(
'id' => 'wc_services_new_carrier_dhl_express',
'target' => '#woocommerce-order-label .button',
'options' => array(
'content' => sprintf(
'<h3>%s</h3><p>%s</p>',
__( 'Discounted DHL Shipping Labels', 'woocommerce-services' ),
__( 'WooCommerce Shipping now supports DHL labels for international shipments. Purchase and print discounted labels from DHL and USPS right here.', 'woocommerce-services' )
),
'position' => array(
'edge' => 'top',
'align' => 'left',
),
),
'dim' => true,
);
return $pointers;
}
/**
* Check that the current user is the owner of the Jetpack connection
* - Only that person can accept the TOS
*
* @uses self::get_jetpack_install_status()
*
* @return bool
*/
public function can_accept_tos() {
$jetpack_status = $this->get_jetpack_install_status();
if (
( self::JETPACK_NOT_INSTALLED === $jetpack_status ) ||
( self::JETPACK_INSTALLED_NOT_ACTIVATED === $jetpack_status )
) {
return false;
}
// Developer case
if ( self::JETPACK_DEV === $jetpack_status ) {
return true;
}
$can_accept = WC_Connect_Jetpack::is_current_user_connected();
return $can_accept;
}
public static function get_banner_type_to_display( $status = array() ) {
if ( ! isset( $status['jetpack_connection_status'] ) ) {
return false;
}
/*
The NUX Flow:
- Case 1: Jetpack not connected (with TOS or no TOS accepted):
1. show_banner_before_connection()
2. connect to JP
3. show_banner_after_connection(), which sets the TOS acceptance in options
- Case 2: Jetpack connected, no TOS
1. show_tos_only_banner(), which accepts TOS on button click
- Case 3: Jetpack connected, and TOS accepted
This is an existing user. Do nothing.
*/
switch ( $status['jetpack_connection_status'] ) {
case self::JETPACK_NOT_INSTALLED:
case self::JETPACK_INSTALLED_NOT_ACTIVATED:
case self::JETPACK_ACTIVATED_NOT_CONNECTED:
return 'before_jetpack_connection';
case self::JETPACK_CONNECTED:
case self::JETPACK_DEV:
// Has the user just gone through our NUX connection flow?
if ( isset( $status['should_display_after_cxn_banner'] ) && $status['should_display_after_cxn_banner'] ) {
return 'after_jetpack_connection';
}
// Has the user already accepted our TOS? Then do nothing.
// Note: TOS is accepted during the after_connection banner
if (
isset( $status['tos_accepted'] )
&& ! $status['tos_accepted']
&& isset( $status['can_accept_tos'] )
&& $status['can_accept_tos']
) {
return 'tos_only_banner';
}
return false;
default:
return false;
}
}
public function get_jetpack_install_status() {
// we need to use validate_plugin to check that Jetpack is installed
include_once ABSPATH . 'wp-admin/includes/plugin.php';
// check if jetpack is installed
if ( 0 !== validate_plugin( 'jetpack/jetpack.php' ) ) {
return self::JETPACK_NOT_INSTALLED;
}
// check if Jetpack is activated
if ( ! is_plugin_active( 'jetpack/jetpack.php' ) ) {
return self::JETPACK_INSTALLED_NOT_ACTIVATED;
}
if ( defined( 'JETPACK_DEV_DEBUG' ) && true === JETPACK_DEV_DEBUG ) {
// installed, activated, and dev mode on
return self::JETPACK_DEV;
}
// installed, activated, dev mode off
// check if connected
if ( ! WC_Connect_Jetpack::is_connected() ) {
return self::JETPACK_ACTIVATED_NOT_CONNECTED;
}
return self::JETPACK_CONNECTED;
}
public function should_display_nux_notice_on_screen( $screen ) {
if ( // Display if on any of these admin pages.
( // Products list.
'product' === $screen->post_type
&& 'edit' === $screen->base
)
|| ( // Orders list.
'shop_order' === $screen->post_type
&& 'edit' === $screen->base
)
|| ( // Edit order page.
'shop_order' === $screen->post_type
&& 'post' === $screen->base
)
|| ( // WooCommerce settings.
'woocommerce_page_wc-settings' === $screen->base
)
|| ( // WooCommerce featured extension page
'woocommerce_page_wc-addons' === $screen->base
&& isset( $_GET['section'] ) && 'featured' === $_GET['section']
)
|| ( // WooCommerce shipping extension page
'woocommerce_page_wc-addons' === $screen->base
&& isset( $_GET['section'] ) && 'shipping_methods' === $_GET['section']
)
|| 'plugins' === $screen->base
) {
return true;
}
return false;
}
/**
* https://developers.taxjar.com/api/reference/#countries
*/
public function is_taxjar_supported_country( $country_code ) {
$taxjar_supported_countries = array_merge(
array(
'US',
'CA',
'AU',
),
WC()->countries->get_european_union_countries()
);
return in_array( $country_code, $taxjar_supported_countries );
}
public function should_display_nux_notice_for_current_store_locale() {
$store_country = WC()->countries->get_base_country();
$supports_taxes = $this->is_taxjar_supported_country( $store_country );
$supports_shipping = in_array( $store_country, array( 'US', 'CA' ) );
return $supports_shipping || $supports_taxes;
}
public function get_feature_list_for_country( $country ) {
$feature_list = false;
$supports_taxes = $this->is_taxjar_supported_country( $country );
$supports_labels = ( 'US' === $country );
$is_ppec_active = is_plugin_active( 'woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php' );
$ppec_settings = get_option( 'woocommerce_ppec_paypal_settings', array() );
$supports_payments = $is_ppec_active && ( ! isset( $ppec_settings['enabled'] ) || 'yes' === $ppec_settings['enabled'] );
if ( $supports_payments && $supports_taxes && $supports_labels ) {
$feature_list = __( 'automated tax calculation, shipping label printing, and smoother payment setup', 'woocommerce-services' );
} elseif ( $supports_payments && $supports_taxes ) {
$feature_list = __( 'automated tax calculation and smoother payment setup', 'woocommerce-services' );
} elseif ( $supports_taxes && $supports_labels ) {
$feature_list = __( 'automated tax calculation and shipping label printing', 'woocommerce-services' );
} elseif ( $supports_payments && $supports_labels ) {
$feature_list = __( 'shipping label printing and smoother payment setup', 'woocommerce-services' );
} elseif ( $supports_payments ) {
$feature_list = __( 'smoother payment setup', 'woocommerce-services' );
} elseif ( $supports_taxes ) {
$feature_list = __( 'automated tax calculation', 'woocommerce-services' );
} elseif ( $supports_labels ) {
$feature_list = __( 'shipping label printing', 'woocommerce-services' );
}
return $feature_list;
}
public function get_jetpack_redirect_url() {
$full_path = add_query_arg( array() );
// Remove [...]/wp-admin so we can use admin_url().
$new_index = strpos( $full_path, '/wp-admin' ) + strlen( '/wp-admin' );
$path = substr( $full_path, $new_index );
return admin_url( $path );
}
public function set_up_nux_notices() {
if ( ! current_user_can( 'manage_woocommerce' ) ) {
return;
}
// Check for plugin install and activate permissions to handle Jetpack on multisites:
// Admins might not be able to install or activate plugins, but Jetpack might already have been installed by a superadmin.
// If this is the case, the admin can connect the site on their own, and should be able to use WCS as ususal
$jetpack_install_status = $this->get_jetpack_install_status();
if ( ( self::JETPACK_NOT_INSTALLED === $jetpack_install_status && ! current_user_can( 'install_plugins' ) )
|| ( self::JETPACK_INSTALLED_NOT_ACTIVATED === $jetpack_install_status && ! current_user_can( 'activate_plugins' ) ) ) {
return;
}
$banner_to_display = self::get_banner_type_to_display(
array(
'jetpack_connection_status' => $jetpack_install_status,
'tos_accepted' => WC_Connect_Options::get_option( 'tos_accepted' ),
'can_accept_tos' => $this->can_accept_tos(),
'should_display_after_cxn_banner' => WC_Connect_Options::get_option( self::SHOULD_SHOW_AFTER_CXN_BANNER ),
)
);
switch ( $banner_to_display ) {
case 'before_jetpack_connection':
$ajax_data = array(
'nonce' => wp_create_nonce( 'wcs_nux_notice' ),
'initial_install_status' => $jetpack_install_status,
'redirect_url' => $this->get_jetpack_redirect_url(),
'translations' => array(
'activating' => __( 'Activating...', 'woocommerce-services' ),
'connecting' => __( 'Connecting...', 'woocommerce-services' ),
'installError' => __( 'There was an error installing Jetpack. Please try installing it manually.', 'woocommerce-services' ),
'defaultError' => __( 'Something went wrong. Please try connecting to Jetpack manually, or contact support on the WordPress.org forums.', 'woocommerce-services' ),
),
);
wp_enqueue_script( 'wc_connect_banner' );
wp_localize_script( 'wc_connect_banner', 'wcs_nux_notice', $ajax_data );
add_action(
'wp_ajax_woocommerce_services_activate_jetpack',
array( $this, 'ajax_activate_jetpack' )
);
add_action(
'wp_ajax_woocommerce_services_get_jetpack_connect_url',
array( $this, 'ajax_get_jetpack_connect_url' )
);
wp_enqueue_style( 'wc_connect_banner' );
add_action( 'admin_notices', array( $this, 'show_banner_before_connection' ), 9 );
break;
case 'tos_only_banner':
wp_enqueue_style( 'wc_connect_banner' );
add_action( 'admin_notices', array( $this, 'show_tos_banner' ) );
break;
case 'after_jetpack_connection':
wp_enqueue_style( 'wc_connect_banner' );
add_action( 'admin_notices', array( $this, 'show_banner_after_connection' ) );
break;
}
add_action( 'wp_ajax_wc_connect_dismiss_notice', array( $this, 'ajax_dismiss_notice' ) );
}
public function show_banner_before_connection() {
if ( ! $this->should_display_nux_notice_for_current_store_locale() ) {
return;
}
if ( ! $this->should_display_nux_notice_on_screen( get_current_screen() ) ) {
return;
}
// Remove Jetpack's connect banners since we're showing our own.
if ( class_exists( 'Jetpack_Connection_Banner' ) ) {
$jetpack_banner = Jetpack_Connection_Banner::init();
remove_action( 'admin_notices', array( $jetpack_banner, 'render_banner' ) );
remove_action( 'admin_notices', array( $jetpack_banner, 'render_connect_prompt_full_screen' ) );
}
// Make sure that we wait until the button is clicked before displaying
// the after_connection banner
// so that we don't accept the TOS pre-maturely
WC_Connect_Options::delete_option( self::SHOULD_SHOW_AFTER_CXN_BANNER );
$jetpack_status = $this->get_jetpack_install_status();
$button_text = __( 'Connect', 'woocommerce-services' );
$banner_title = __( 'Connect Jetpack to activate WooCommerce Shipping & Tax', 'woocommerce-services' );
$image_url = plugins_url( 'images/wcs-notice.png', dirname( __FILE__ ) );
switch ( $jetpack_status ) {
case self::JETPACK_NOT_INSTALLED:
$button_text = __( 'Install Jetpack and connect', 'woocommerce-services' );
break;
case self::JETPACK_INSTALLED_NOT_ACTIVATED:
$button_text = __( 'Activate Jetpack and connect', 'woocommerce-services' );
break;
}
$country = WC()->countries->get_base_country();
/* translators: %s: list of features, potentially comma separated */
$description_base = __( "WooCommerce Shipping & Tax is almost ready to go! Once you connect Jetpack you'll have access to %s.", 'woocommerce-services' );
$feature_list = $this->get_feature_list_for_country( $country );
$banner_content = array(
'title' => $banner_title,
'description' => sprintf( $description_base, $feature_list ),
'button_text' => $button_text,
'image_url' => $image_url,
'should_show_jp' => true,
'should_show_terms' => true,
);
$this->show_nux_banner( $banner_content );
}
public function show_banner_after_connection() {
if ( ! $this->should_display_nux_notice_for_current_store_locale() ) {
return;
}
if ( ! $this->should_display_nux_notice_on_screen( get_current_screen() ) ) {
return;
}
// Did the user just dismiss?
if ( isset( $_GET['wcs-nux-notice'] ) && 'dismiss' === $_GET['wcs-nux-notice'] ) {
// No longer need to keep track of whether the before connection banner was displayed.
WC_Connect_Options::delete_option( self::SHOULD_SHOW_AFTER_CXN_BANNER );
wp_safe_redirect( remove_query_arg( 'wcs-nux-notice' ) );
exit;
}
// By going through the connection process, the user has accepted our TOS
WC_Connect_Options::update_option( 'tos_accepted', true );
$this->tracks->opted_in( 'connection_banner' );
$country = WC()->countries->get_base_country();
/* translators: %s: list of features, potentially comma separated */
$description_base = __( 'You can now enjoy %s.', 'woocommerce-services' );
$feature_list = $this->get_feature_list_for_country( $country );
$this->show_nux_banner(
array(
'title' => __( 'Setup complete.', 'woocommerce-services' ),
'description' => esc_html( sprintf( $description_base, $feature_list ) ),
'button_text' => __( 'Got it, thanks!', 'woocommerce-services' ),
'button_link' => add_query_arg(
array(
'wcs-nux-notice' => 'dismiss',
)
),
'image_url' => plugins_url(
'images/wcs-notice.png',
dirname( __FILE__ )
),
'should_show_jp' => false,
'should_show_terms' => false,
)
);
}
public function show_tos_banner() {
if ( ! $this->should_display_nux_notice_for_current_store_locale() ) {
return;
}
if ( ! $this->should_display_nux_notice_on_screen( get_current_screen() ) ) {
return;
}
if ( isset( $_GET['wcs-nux-tos'] ) && 'accept' === $_GET['wcs-nux-tos'] ) {
WC_Connect_Options::update_option( 'tos_accepted', true );
$this->tracks->opted_in( 'tos_banner' );
wp_safe_redirect( remove_query_arg( 'wcs-nux-tos' ) );
exit;
}
$country = WC()->countries->get_base_country();
/* translators: %s: list of features, potentially comma separated */
$description_base = __( "WooCommerce Shipping & Tax is almost ready to go! Once you connect your store you'll have access to %s.", 'woocommerce-services' );
$feature_list = $this->get_feature_list_for_country( $country );
$this->show_nux_banner(
array(
'title' => __( 'Connect your store to activate WooCommerce Shipping & Tax', 'woocommerce-services' ),
'description' => esc_html( sprintf( $description_base, $feature_list ) ),
'button_text' => __( 'Connect', 'woocommerce-services' ),
'button_link' => add_query_arg(
array(
'wcs-nux-tos' => 'accept',
)
),
'image_url' => plugins_url(
'images/wcs-notice.png',
dirname( __FILE__ )
),
'should_show_jp' => false,
'should_show_terms' => true,
)
);
}
public function show_nux_banner( $content ) {
if ( isset( $content['dismissible_id'] ) && $this->is_notice_dismissed( sanitize_key( $content['dismissible_id'] ) ) ) {
return;
}
?>
<div class="notice wcs-nux__notice <?php echo isset( $content['dismissible_id'] ) ? 'is-dismissible' : ''; ?>">
<div class="wcs-nux__notice-logo <?php echo isset( $content['compact_logo'] ) && $content['compact_logo'] ? 'is-compact' : ''; ?>">
<?php if ( $content['should_show_jp'] ) : ?>
<img
class="wcs-nux__notice-logo-jetpack"
src="<?php echo esc_url( plugins_url( 'images/jetpack-logo.png', dirname( __FILE__ ) ) ); ?>"
>
<?php endif; ?>
<img class="wcs-nux__notice-logo-graphic" src="<?php echo esc_url( $content['image_url'] ); ?>">
</div>
<div class="wcs-nux__notice-content">
<h1 class="wcs-nux__notice-content-title">
<?php echo esc_html( $content['title'] ); ?>
</h1>
<p class="wcs-nux__notice-content-text">
<?php echo $content['description']; ?>
</p>
<?php if ( isset( $content['should_show_terms'] ) && $content['should_show_terms'] ) : ?>
<p class="wcs-nux__notice-content-tos">
<?php
/* translators: %1$s example values include "Install Jetpack and CONNECT >", "Activate Jetpack and CONNECT >", "CONNECT >" */
printf(
wp_kses(
__( 'By clicking "%1$s", you agree to the <a href="%2$s">Terms of Service</a> and to <a href="%3$s">share certain data and settings</a> with WordPress.com and/or third parties.', 'woocommerce-services' ),
array(
'a' => array(
'href' => array(),
),
)
),
esc_html( $content['button_text'] ),
'https://wordpress.com/tos/',
'https://jetpack.com/support/what-data-does-jetpack-sync/'
);
?>
</p>
<?php endif; ?>
<?php if ( isset( $content['button_link'] ) ) : ?>
<a
class="wcs-nux__notice-content-button button button-primary"
href="<?php echo esc_url( $content['button_link'] ); ?>"
>
<?php echo esc_html( $content['button_text'] ); ?>
</a>
<?php else : ?>
<button
class="woocommerce-services__connect-jetpack wcs-nux__notice-content-button button button-primary"
>
<?php echo esc_html( $content['button_text'] ); ?>
</button>
<?php endif; ?>
</div>
</div>
<?php
if ( isset( $content['dismissible_id'] ) ) :
// Add handler for dismissing banner. Only supports a single banner at a time
wp_enqueue_script( 'wp-util' );
?>
<script>
( function( $ ) {
$( '.wcs-nux__notice' ).on( 'click', '.notice-dismiss', function() {
wp.ajax.post( {
action: "wc_connect_dismiss_notice",
dismissible_id: "<?php echo esc_js( $content['dismissible_id'] ); ?>",
nonce: "<?php echo esc_js( wp_create_nonce( 'wc_connect_dismiss_notice' ) ); ?>"
} );
} );
} )( jQuery );
</script>
<?php
endif;
}
/**
* Activates Jetpack after an ajax request
*/
public function ajax_activate_jetpack() {
check_ajax_referer( 'wcs_nux_notice' );
$result = activate_plugin( 'jetpack/jetpack.php' );
if ( is_null( $result ) ) {
// The function activate_plugin() returns NULL on success.
echo 'success';
} else {
if ( is_wp_error( $result ) ) {
echo esc_html( $result->get_error_message() );
} else {
echo 'error';
}
}
wp_die();
}
/**
* Get Jetpack connection URL.
*/
public function ajax_get_jetpack_connect_url() {
check_ajax_referer( 'wcs_nux_notice' );
$redirect_url = '';
if ( isset( $_POST['redirect_url'] ) ) {
$redirect_url = esc_url_raw( wp_unslash( $_POST['redirect_url'] ) );
}
$connect_url = WC_Connect_Jetpack::build_connect_url( $redirect_url );
// Make sure we always display the after-connection banner
// after the before_connection button is clicked
WC_Connect_Options::update_option( self::SHOULD_SHOW_AFTER_CXN_BANNER, true );
echo esc_url_raw( $connect_url );
wp_die();
}
}
}