class-woothemes-updater-admin.php
37 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
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
<?php
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* WooThemes Updater Admin Class
*
* Admin class for the WooThemes Updater.
*
* @package WordPress
* @subpackage WooThemes Updater
* @category Core
* @author WooThemes
* @since 1.0.0
*
* TABLE OF CONTENTS
*
* private $token
* private $api
* private $name
* private $menu_label
* private $page_slug
* private $plugin_path
* private $screens_path
* private $classes_path
*
* private $installed_products
* private $pending_products
*
* - __construct()
* - register_settings_screen()
* - settings_screen()
* - get_activated_products()
* - get_product_reference_list()
* - get_detected_products()
* - get_pending_products()
* - activate_products()
* - deactivate_product()
* - load_updater_instances()
*/
class WooThemes_Updater_Admin {
private $token;
private $api;
private $name;
private $menu_label;
private $page_slug;
private $plugin_path;
private $plugin_url;
private $screens_path;
private $classes_path;
private $assets_url;
private $hook;
private $installed_products;
private $pending_products;
private $my_account_url;
private $my_subscriptions_url;
/**
* Constructor.
*
* @access public
* @since 1.0.0
* @return void
*/
public function __construct ( $file ) {
$this->token = 'woothemes-updater'; // Don't ever change this, as it will mess with the data stored of which products are activated, etc.
// Load in the class to use for the admin screens.
require_once( 'class-woothemes-updater-screen.php' );
// Load the API.
require_once( 'class-woothemes-updater-api.php' );
$this->api = new WooThemes_Updater_API();
$this->name = __( 'The WooThemes Helper', 'woothemes-updater' );
$this->menu_label = __( 'WooThemes Helper', 'woothemes-updater' );
$this->page_slug = 'woothemes-helper';
$this->plugin_path = trailingslashit( plugin_dir_path( $file ) );
$this->plugin_url = trailingslashit( plugin_dir_url( $file ) );
$this->screens_path = trailingslashit( $this->plugin_path . 'screens' );
$this->classes_path = trailingslashit( $this->plugin_path . 'classes' );
$this->assets_url = trailingslashit( $this->plugin_url . 'assets' );
$this->installed_products = array();
$this->pending_products = array();
// Setup URLs to go to the Woo.com account management screens.
$this->my_account_url = add_query_arg( 'utm_source', 'helper', 'https://woothemes.com/my-account/' );
$this->my_subscriptions_url = add_query_arg( 'utm_source', 'helper', 'https://woothemes.com/my-account/my-subscriptions/' );
// Load the updaters.
add_action( 'admin_init', array( $this, 'load_updater_instances' ) ); //$this->load_updater_instances();
$menu_hook = is_multisite() ? 'network_admin_menu' : 'admin_menu';
add_action( $menu_hook, array( $this, 'register_settings_screen' ) );
// Display an admin notice, if there are Woo products, eligible for licenses, that are not activated.
add_action( 'network_admin_notices', array( $this, 'maybe_display_activation_notice' ) );
add_action( 'admin_notices', array( $this, 'maybe_display_activation_notice' ) );
if( is_multisite() && ! is_network_admin() ) remove_action( 'admin_notices', array( $this, 'maybe_display_activation_notice' ) );
add_action( 'admin_footer', array( $this, 'theme_upgrade_form_adjustments' ) );
add_action( 'woothemes_updater_license_screen_before', array( $this, 'ensure_keys_are_actually_active' ) );
add_action( 'wp_ajax_woothemes_activate_license_keys', array( $this, 'ajax_process_request' ) );
add_action( 'wp_ajax_woothemes_helper_dismiss_renew', array( $this, 'ajax_process_dismiss_renew' ) );
add_action( 'wp_ajax_woothemes_helper_dismiss_activation', array( $this, 'ajax_process_dismiss_activation' ) );
// Be sure to update our local autorenew flag (key 4) when we refresh the transient.
add_action( 'setted_transient', array( $this, 'update_autorenew_status' ), 10, 2 );
} // End __construct()
/**
* Display an admin notice, if there are licenses that are not yet activated.
* @access public
* @since 1.2.1
* @return void
*/
public function maybe_display_activation_notice () {
if ( isset( $_GET['page'] ) && 'woothemes-helper' == $_GET['page'] ) return;
if ( ! current_user_can( 'manage_options' ) ) return; // Don't show the message if the user isn't an administrator.
if ( is_multisite() && ! is_super_admin() ) return; // Don't show the message if on a multisite and the user isn't a super user.
$this->maybe_display_renewal_notice();
if ( true == get_site_option( 'woothemes_helper_dismiss_activation_notice', false ) ) return; // Don't show the message if the user dismissed it.
$products = $this->get_detected_products();
$has_inactive_products = false;
if ( 0 < count( $products ) ) {
foreach ( $products as $k => $v ) {
if ( isset( $v['product_status'] ) && 'inactive' == $v['product_status'] ) {
$has_inactive_products = true; // We know we have inactive product licenses, so break out of the loop.
break;
}
}
if ( $has_inactive_products ) {
$url = add_query_arg( 'page', 'woothemes-helper', network_admin_url( 'index.php' ) );
echo '<div id="woothemes-helper-product-activation-message" class="updated fade notice is-dismissible"><p>' . sprintf( __( '%sYour WooThemes products are almost ready.%s To get started, %sactivate your product subscriptions%s.', 'woothemes-updater' ), '<strong>', '</strong>', '<a href="' . esc_url( $url ) . '">', '</a>' ) . '</p></div>' . "\n";
}
}
} // End maybe_display_activation_notice()
/**
* Update auto-renew statuses every time we reset the updates transient.
* @param string $transient The name of the transient we're working on.
* @param object $value The current transient value.
*/
public function update_autorenew_status( $transient, $value ) {
// Deal only with our own transient.
if ( 'woothemes_helper_updates' != $transient ) {
return;
}
$local_data = get_option( 'woothemes-updater-activated' );
$transient_data = $value;
if ( is_array( $local_data ) && 0 < count( $local_data ) ) {
foreach ( $local_data as $k => $v ) {
$has_autorenew = $this->is_autorenew_enabled( $k );
$local_data[$k][4] = (bool)$has_autorenew;
}
}
update_option( 'woothemes-updater-activated', $local_data );
}
/**
* Check if auto-renew is enabled for a product.
* @param string $file The plugin filename we're looking at.
* @return boolean Whether or not auto-renew is enabled.
*/
public function is_autorenew_enabled( $file ) {
$response = 0;
$local_data = get_option( 'woothemes-updater-activated' );
if ( isset( $local_data[$file][4] ) && 1 == $local_data[$file][4] ) {
$response = 1;
} else {
$data = get_transient( 'woothemes_helper_updates' );
if ( is_object( $data ) ) {
if ( isset( $data->plugins->$file->autorenew ) ) {
$response = (bool)$data->plugins->$file->autorenew;
} else if ( isset( $data->themes->$file->autorenew ) ) {
$response = (bool)$data->themes->$file->autorenew;
}
}
}
return $response;
}
/**
* Display an admin notice if a product subscription is about to expire.
* @return [type] [description]
*/
public function maybe_display_renewal_notice() {
$products = $this->get_detected_products();
$notices = array();
$renew_link = add_query_arg( array( 'utm_source' => 'product', 'utm_medium' => 'upsell', 'utm_campaign' => 'licenserenewal' ), $this->my_subscriptions_url );
// Create dismissal URL for the renew notice.
$dismiss_url = add_query_arg( 'action', 'woothemes-helper-dismiss-renew', add_query_arg( 'nonce', wp_create_nonce( 'woothemes-helper-dismiss-renew' ) ) );
foreach ( $products as $file => $product ) {
$has_autorenew = $this->is_autorenew_enabled( $file );
// Skip this product if autorenew is enabled, and the Helper knows about it.
if ( 1 == $has_autorenew ) {
continue;
}
if ( isset( $product['license_expiry'] ) ) {
try {
$date = new DateTime( $product['license_expiry'] );
} catch ( Exception $e ) {
continue;
}
if ( current_time( 'timestamp' ) > strtotime( '-60 days', $date->format( 'U' ) ) && current_time( 'timestamp' ) < strtotime( '+4 days', $date->format( 'U' ) ) ) {
$notices[] = sprintf( __( 'Your subscription for <strong>%s</strong> expires on %s, %sEnable auto-renew%s.', 'woothemes-updater' ), $product['product_name'], $date->format( get_option( 'date_format' ) ), '<a href="' . esc_url( $renew_link ) . '">', '</a>' );
} elseif ( current_time( 'timestamp' ) > $date->format( 'U' ) ) {
$notices[] = sprintf( __( 'Your subscription for <strong>%s</strong> has expired. Please %senable auto-renew%s to be eligible for future updates and support.', 'woothemes-updater' ), $product['product_name'], '<a href="' . esc_url( $renew_link ) . '">', '</a>' );
}
}
}
if ( is_array( $notices ) && 0 < count( $notices ) && false == get_site_transient( 'woo_hide_renewal_notices' ) ) {
$subscription_text = _n( 'a subscription is about to expire', 'several subscriptions are about to expire', intval( count( $notices ) ) , 'woothemes-updater' );
echo '<div id="woothemes-helper-subscription-message" class="notice is-dismissible error" style="display: block;"><p><strong>' . __( 'Warning:', 'woothemes-updater' ) . ' ' . $subscription_text . '.</strong></p><ul><li>' . implode( '</li><li>', $notices ) . '</li></ul><div class="clear"></div></div>' . "\n";
}
}
/**
* Run a small snippet of JavaScript to highlight the "you will lose all your changes" text on the theme updates screen.
* Be sure to add a confirmation dialog box to the "Update Themes" button as well.
*
* @access public
* @since 1.2.0
* @return void
*/
public function theme_upgrade_form_adjustments () {
global $pagenow;
if ( 'update-core.php' != $pagenow ) return;
?>
<script type="text/javascript">
/* <![CDATA[ */
if ( jQuery( 'form[name="upgrade-themes"]' ).length ) {
jQuery( 'form[name=upgrade-themes]' ).prev( 'p' ).wrap( '<div class="error fade"></div>' );
jQuery( 'form[name=upgrade-themes]' ).find( 'input.button[name=upgrade]' ).click( function ( e ) {
var response = confirm( '<?php _e( 'Any customizations you have made to theme files will be lost. Are you sure you would like to update?', 'woothemes-updater' ); ?>' );
if ( false == response ) return false;
});
}
/*]]>*/
</script>
<?php
} // End theme_upgrade_form_adjustments()
/**
* Register the admin screen.
*
* @access public
* @since 1.0.0
* @return void
*/
public function register_settings_screen () {
$this->hook = add_dashboard_page( $this->name, $this->menu_label, 'manage_options', $this->page_slug, array( $this, 'settings_screen' ) );
add_action( 'load-' . $this->hook, array( $this, 'process_request' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
add_action( 'admin_print_scripts', array( $this, 'enqueue_scripts' ) );
} // End register_settings_screen()
/**
* Load the main management screen.
*
* @access public
* @since 1.0.0
* @return void
*/
public function settings_screen () {
?>
<div id="welcome-panel" class="wrap about-wrap woothemes-updater-wrap">
<h1><?php _e( 'Welcome to WooThemes Helper', 'woothemes-updater' ); ?></h1>
<div class="about-text woothemes-helper-about-text">
<?php
_e( 'This is your one-stop-spot for activating your subscriptions.', 'woothemes-updater' );
?>
</div>
<div class="short-description woothemes-helper-short-description">
<?php echo wpautop( sprintf( __( 'To make sure your subscriptions stay active, %1$sadd a saved card%2$s and %3$senable auto-renew%2$s on the subscriptions you’re continuing to enjoy.', 'woothemes-updater' ), '<a href="' . esc_url( $this->my_account_url ) . '">', '</a>', '<a href="' . esc_url( $this->my_subscriptions_url ) . '">' ) ); ?>
</div><!--/.short-description-->
</div><!--/#welcome-panel .welcome-panel-->
<?php
Woothemes_Updater_Screen::get_header();
$screen = Woothemes_Updater_Screen::get_current_screen();
switch ( $screen ) {
// Help screen.
case 'help':
do_action( 'woothemes_updater_help_screen_before' );
$this->load_help_screen_boxes();
require_once( $this->screens_path . 'screen-help.php' );
do_action( 'woothemes_updater_help_screen_after' );
break;
// Licenses screen.
case 'license':
default:
if ( $this->api->ping() ) {
$this->installed_products = $this->get_detected_products();
$this->pending_products = $this->get_pending_products();
do_action( 'woothemes_updater_license_screen_before' );
require_once( $this->screens_path . 'screen-manage.php' );
do_action( 'woothemes_updater_license_screen_after' );
} else {
do_action( 'woothemes_updater_api_unreachable_screen_before' );
require_once( $this->screens_path . 'woothemes-api-unreachable.php' );
do_action( 'woothemes_updater_api_unreachable_screen_after' );
}
break;
}
Woothemes_Updater_Screen::get_footer();
} // End settings_screen()
/**
* Load the boxes for the "Help" screen.
* @access public
* @since 1.2.0
* @return void
*/
public function load_help_screen_boxes () {
add_action( 'woothemes_helper_column_left', array( $this, 'display_general_links' ) );
add_action( 'woothemes_helper_column_left', array( $this, 'display_sensei_links' ) );
add_action( 'woothemes_helper_column_middle', array( $this, 'display_woocommerce_links' ) );
add_action( 'woothemes_helper_column_middle', array( $this, 'display_themes_links' ) );
// add_action( 'woothemes_helper_column_right', array( $this, 'display_panic_button' ) );
} // End load_help_screen_boxes()
/**
* Display rendered HTML markup containing general support links.
* @access public
* @since 1.2.0
* @return void
*/
public function display_general_links () {
$links = array(
'http://docs.woothemes.com/' => __( 'Documentation Portal', 'woothemes-updater' ),
'http://support.woothemes.com/' => __( 'Knowledgebase', 'woothemes-updater' ),
'http://www.woothemes.com/support-faq/' => __( 'FAQ', 'woothemes-updater' ),
'http://www.woothemes.com/blog/' => __( 'Blog', 'woothemes-updater' )
);
echo '<img src="' . esc_url( $this->assets_url . 'images/getting-started.png' ) . '" alt="' . __( 'Getting Started', 'woothemes-updater' ) . '" />' . "\n";
echo '<h4>' . __( 'Getting Started', 'woothemes-updater' ) . '</h4>' . "\n";
echo '<ul>' . $this->_generate_link_list( $links ) . "\n";
echo '<li><em><a href="' . esc_url( 'https://twitter.com/WooThemes/' ) . '" title="' . esc_attr__( 'Follow WooThemes on Twitter', 'woothemes-updater' ) . '">' . __( 'Follow WooThemes on Twitter', 'woothemes-updater' ) . '</a></em></li>' . "\n";
echo '</ul>' . "\n";
} // End display_general_links()
/**
* Display rendered HTML markup containing WooCommerce support links.
* @access public
* @since 1.2.0
* @return void
*/
public function display_woocommerce_links () {
$links = array(
'http://docs.woothemes.com/documentation/plugins/woocommerce/' => __( 'Getting Started', 'woothemes-updater' ),
'http://docs.woothemes.com/document/third-party-custom-theme-compatibility/' => __( 'Theme Compatibility', 'woothemes-updater' ),
'http://docs.woothemes.com/document/product-variations/' => __( 'Product Variations', 'woothemes-updater' ),
'http://docs.woothemes.com/document/woocommerce-self-service-guide/' => __( 'WooCommerce Self Service Guide', 'woothemes-updater' )
);
echo '<img src="' . esc_url( $this->assets_url . 'images/woocommerce.png' ) . '" alt="' . __( 'WooCommerce', 'woothemes-updater' ) . '" />' . "\n";
echo '<h4>' . __( 'WooCommerce', 'woothemes-updater' ) . '</h4>' . "\n";
echo '<ul>' . $this->_generate_link_list( $links ) . "\n";
echo '<li><em><a href="' . esc_url( 'http://woothemes.com/products/woocommerce/?utm_source=helper' ) . '" title="' . esc_attr__( 'Find out more about WooCommerce', 'woothemes-updater' ) . '">' . __( 'Find out more about WooCommerce', 'woothemes-updater' ) . '</a></em></li>' . "\n";
echo '</ul>' . "\n";
} // End display_woocommerce_links()
/**
* Display rendered HTML markup containing Sensei support links.
* @access public
* @since 1.2.0
* @return void
*/
public function display_sensei_links () {
$links = array(
'http://docs.woothemes.com/document/sensei/' => __( 'Getting Started', 'woothemes-updater' ),
'http://docs.woothemes.com/document/sensei-theming/' => __( 'Theming Sensei', 'woothemes-updater' ),
'http://docs.woothemes.com/document/importing-sensei-dummy-data/' => __( 'Import Sensei Dummy Data', 'woothemes-updater' )
);
echo '<img src="' . esc_url( $this->assets_url . 'images/sensei.png' ) . '" alt="' . __( 'Sensei', 'woothemes-updater' ) . '" />' . "\n";
echo '<h4>' . __( 'Sensei', 'woothemes-updater' ) . '</h4>' . "\n";
echo '<ul>' . $this->_generate_link_list( $links ) . "\n";
echo '<li><em><a href="' . esc_url( 'http://woothemes.com/products/sensei/?utm_source=helper' ) . '" title="' . esc_attr__( 'Find out more about Sensei', 'woothemes-updater' ) . '">' . __( 'Find out more about Sensei', 'woothemes-updater' ) . '</a></em></li>' . "\n";
echo '</ul>' . "\n";
} // End display_sensei_links()
/**
* Display rendered HTML markup containing Themes support links.
* @access public
* @since 1.2.0
* @return void
*/
public function display_themes_links () {
$links = array(
'http://docs.woothemes.com/documentation/themes/' => __( 'Getting Started', 'woothemes-updater' ),
'http://docs.woothemes.com/document/canvas/' => __( 'Setting up Canvas', 'woothemes-updater' ),
'http://docs.woothemes.com/documentation/woocodex/' => __( 'WooCodex', 'woothemes-updater' )
);
echo '<img src="' . esc_url( $this->assets_url . 'images/themes.png' ) . '" alt="' . __( 'Themes', 'woothemes-updater' ) . '" />' . "\n";
echo '<h4>' . __( 'Themes', 'woothemes-updater' ) . '</h4>' . "\n";
echo '<ul>' . $this->_generate_link_list( $links ) . "\n";
echo '<li><em><a href="' . esc_url( 'http://woothemes.com/product-category/themes/?utm_source=helper' ) . '" title="' . esc_attr__( 'Find out more about our Themes', 'woothemes-updater' ) . '">' . __( 'Find out more about our Themes', 'woothemes-updater' ) . '</a></em></li>' . "\n";
echo '</ul>' . "\n";
} // End display_themes_links()
/**
* Display rendered HTML markup containing a panic button.
* @access public
* @since 1.2.0
* @return void
*/
public function display_panic_button () {
echo '<div class="panic-button-wrap"><a href="' . esc_url( 'http://www.woothemes.com/contact-us/?utm_source=helper' ) . '" title="' . esc_attr__( 'Help!', 'woothemes-updater' ) . '" class="panic-button" target="_blank">' . '<strong>' . __( 'Panic Button', 'woothemes-updater' ) . '</strong> <em>' . __( 'For when all else fails', 'woothemes-updater' ) . '</em>' . '</a></div>' . "\n";
} // End display_panic_button()
/**
* Generate the HTML for a given array of links.
* @access private
* @since 1.2.0
* @param array $links Links with the key as the URL and the value as the title.
* @return string Rendered HTML for the links.
*/
private function _generate_link_list ( $links = array() ) {
if ( 0 >= count( $links ) ) return;
$html = '';
foreach ( $links as $k => $v ) {
$html .= '<li><a href="' . esc_url( trailingslashit( $k ) . '?utm_source=helper' ) . '" title="' . esc_attr( $v ) . '">' . esc_html( $v ) . '</a></li>' . "\n";
}
return $html;
} // End _generate_link_list()
/**
* Returns the action value to use.
* @access private
* @since 1.0.0
* @return string|bool Contains the string given in $_POST['action'] or $_GET['action'], or false if none provided
*/
private function get_post_or_get_action( $supported_actions ) {
if ( isset( $_POST['action'] ) && in_array( $_POST['action'], $supported_actions ) )
return $_POST['action'];
if ( isset( $_GET['action'] ) && in_array( $_GET['action'], $supported_actions ) )
return $_GET['action'];
return false;
} // End get_post_or_get_action()
/**
* Enqueue admin styles.
* @access public
* @since 1.2.0
* @return void
*/
public function enqueue_styles( $hook ) {
if ( ! in_array( $hook, array( 'plugins.php', 'update-core.php', $this->hook ) ) ) {
return;
}
wp_enqueue_style( 'woothemes-updater-admin', esc_url( $this->assets_url . 'css/admin.css' ), array(), '1.0.0', 'all' );
} // End enqueue_styles()
/**
* Enqueue admin scripts.
* @access public
* @since 1.2.0
* @return void
*/
public function enqueue_scripts () {
$screen = get_current_screen();
wp_register_script( 'woothemes-updater-admin', $this->assets_url . 'js/admin.js', array( 'jquery', 'post' ) );
wp_register_script( 'woothemes-updater-admin-notice-hider', $this->assets_url . 'js/admin-notice-hider.js?version=1.6.0', array( 'jquery' ) );
// Only load script and localization on helper admin page.
if ( in_array( $screen->id, array( 'dashboard_page_woothemes-helper' ) ) ) {
wp_enqueue_script( 'woothemes-updater-admin' );
$localization = array(
'ajax_url' => admin_url( 'admin-ajax.php' ),
'activate_license_nonce' => wp_create_nonce( 'activate-license-keys' )
);
wp_localize_script( 'woothemes-updater-admin', 'WTHelper', $localization );
}
// Load the admin notice hider script.
wp_enqueue_script( 'woothemes-updater-admin-notice-hider' );
$localization = array(
'dismiss_renew_nonce' => wp_create_nonce( 'woothemes_helper_dismiss_renew_nonce' ),
'dismiss_activation_nonce' => wp_create_nonce( 'woothemes_helper_dismiss_activation_nonce' )
);
wp_localize_script( 'woothemes-updater-admin-notice-hider', 'woothemes_helper', $localization );
} // End enqueue_scripts()
/**
* Process the action for the admin screen.
* @since 1.0.0
* @return void
*/
public function process_request () {
$notices_hook = is_multisite() ? 'network_admin_notices' : 'admin_notices';
add_action( $notices_hook, array( $this, 'admin_notices' ) );
$supported_actions = array( 'activate-products', 'deactivate-product' );
$action = $this->get_post_or_get_action( $supported_actions );
if ( $action && in_array( $action, $supported_actions ) ) {
// should we be here?
if ( $action == 'activate-products' ) {
check_admin_referer( 'wt-helper-activate-license', 'wt-helper-nonce' );
} else {
check_admin_referer( 'bulk-licenses' );
}
$response = false;
$status = 'false';
$type = $action;
switch ( $type ) {
case 'activate-products':
$license_keys = array();
if ( isset( $_POST['license_keys'] ) && 0 < count( $_POST['license_keys'] ) ) {
foreach ( $_POST['license_keys'] as $k => $v ) {
if ( '' != $v ) {
$license_keys[$k] = $v;
}
}
}
if ( 0 < count( $license_keys ) ) {
$response = $this->activate_products( $license_keys );
} else {
$response = false;
$type = 'no-license-keys';
}
break;
case 'deactivate-product':
if ( isset( $_GET['filepath'] ) && ( '' != $_GET['filepath'] ) ) {
$response = $this->deactivate_product( $_GET['filepath'] );
}
break;
default:
break;
}
if ( $response == true ) {
$status = 'true';
}
wp_safe_redirect( add_query_arg( 'type', urlencode( $type ), add_query_arg( 'status', urlencode( $status ), add_query_arg( 'page', urlencode( $this->page_slug ), network_admin_url( 'index.php' ) ) ) ) );
exit;
}
} // End process_request()
/**
* Process Ajax license activation requests
* @since 1.3.1
* @return void
*/
public function ajax_process_request() {
if ( isset( $_POST['security'] ) && wp_verify_nonce( $_POST['security'], 'activate-license-keys' ) && isset( $_POST['license_data'] ) && ! empty( $_POST['license_data'] ) ) {
$license_keys = array();
foreach ( $_POST['license_data'] as $license_data ) {
if ( '' != $license_data['key'] ) {
$license_keys[ $license_data['name'] ] = $license_data['key'];
}
}
if ( 0 < count( $license_keys ) ) {
$response = $this->activate_products( $license_keys );
}
if ( $response == true ) {
$request_errors = $this->api->get_error_log();
if ( 0 >= count( $request_errors ) ) {
$return = '<div class="updated true fade notice is-dismissible">' . "\n";
$return .= wpautop( __( 'Products activated successfully.', 'woothemes-updater' ) . ' ' . __( 'Refreshing the products list...', 'woothemes-updater' ) );
$return .= '</div>' . "\n";
$return_json = array( 'success' => 'true', 'message' => $return, 'url' => add_query_arg( array( 'page' => 'woothemes-helper', 'status' => 'true', 'type' => 'activate-products' ), admin_url( 'index.php' ) ) );
} else {
$return = '<div class="error fade notice is-dismissible">' . "\n";
$return .= wpautop( __( 'There was an error and not all products were activated.', 'woothemes-updater' ) );
$return .= '</div>' . "\n";
$message = '';
foreach ( $request_errors as $k => $v ) {
$message .= wpautop( $v );
}
$return .= '<div class="error fade notice is-dismissible">' . "\n";
$return .= make_clickable( $message );
$return .= '</div>' . "\n";
$return_json = array( 'success' => 'false', 'message' => $return );
// Clear the error log.
$this->api->clear_error_log();
}
} else {
$return = '<div class="error fade notice is-dismissible">' . "\n";
$return .= wpautop( __( 'No license keys were specified for activation.', 'woothemes-updater' ) );
$return .= '</div>' . "\n";
$return_json = array( 'success' => 'false', 'message' => $return );
}
echo json_encode( $return_json );
}
die();
}
/**
* Process the dismiss link on our renewal admin notice.
* @access public
* @since 1.6.0
*/
public function ajax_process_dismiss_renew () {
if ( isset( $_POST['action'] ) && 'woothemes_helper_dismiss_renew' == $_POST['action'] ) {
// Add nonce security to the request
if ( ! isset( $_POST['woothemes_helper_dismiss_renew_nonce'] ) || ! wp_verify_nonce( $_POST['woothemes_helper_dismiss_renew_nonce'], 'woothemes_helper_dismiss_renew_nonce' ) ) {
die();
}
}
$set_transient = set_site_transient( 'woo_hide_renewal_notices', 'yes', 60 * DAY_IN_SECONDS );
echo json_encode( array( 'status' => (bool)$set_transient ) );
die();
}
/**
* Process the dismiss link on our activation admin notice.
* @access public
* @since 1.6.0
*/
public function ajax_process_dismiss_activation () {
if ( isset( $_POST['action'] ) && 'woothemes_helper_dismiss_activation' == $_POST['action'] ) {
// Add nonce security to the request
if ( ! isset( $_POST['woothemes_helper_dismiss_activation_nonce'] ) || ! wp_verify_nonce( $_POST['woothemes_helper_dismiss_activation_nonce'], 'woothemes_helper_dismiss_activation_nonce' ) ) {
die();
}
}
$set_status = update_site_option( 'woothemes_helper_dismiss_activation_notice', true );
echo json_encode( array( 'status' => (bool)$set_status ) );
die();
}
/**
* Display admin notices.
* @since 1.0.0
* @return void
*/
public function admin_notices () {
$message = '';
$response = '';
if ( isset( $_GET['status'] ) && in_array( $_GET['status'], array( 'true', 'false' ) ) && isset( $_GET['type'] ) ) {
$classes = array( 'true' => 'updated', 'false' => 'error' );
$request_errors = $this->api->get_error_log();
switch ( $_GET['type'] ) {
case 'no-license-keys':
$message = __( 'No license keys were specified for activation.', 'woothemes-updater' );
break;
case 'deactivate-product':
if ( 'true' == $_GET['status'] && ( 0 >= count( $request_errors ) ) ) {
$message = __( 'Product deactivated successfully.', 'woothemes-updater' );
} else {
$message = __( 'There was an error while deactivating the product.', 'woothemes-updater' );
}
break;
default:
if ( 'true' == $_GET['status'] && ( 0 >= count( $request_errors ) ) ) {
$message = __( 'Products activated successfully.', 'woothemes-updater' );
} else {
$message = __( 'There was an error and not all products were activated.', 'woothemes-updater' );
}
break;
}
$response = '<div class="' . esc_attr( $classes[$_GET['status']] ) . ' fade">' . "\n";
$response .= wpautop( $message );
$response .= '</div>' . "\n";
// Cater for API request error logs.
if ( is_array( $request_errors ) && ( 0 < count( $request_errors ) ) ) {
$message = '';
foreach ( $request_errors as $k => $v ) {
$message .= wpautop( $v );
}
$response .= '<div class="error fade">' . "\n";
$response .= make_clickable( $message );
$response .= '</div>' . "\n";
// Clear the error log.
$this->api->clear_error_log();
}
if ( '' != $response ) {
echo $response;
}
}
} // End admin_notices()
/**
* Detect which products have been activated.
*
* @access public
* @since 1.0.0
* @return void
*/
protected function get_activated_products () {
$response = array();
$response = get_option( $this->token . '-activated', array() );
if ( ! is_array( $response ) ) $response = array();
return $response;
} // End get_activated_products()
/**
* Get a list of products from WooThemes.
*
* @access public
* @since 1.0.0
* @return void
*/
protected function get_product_reference_list () {
global $woothemes_updater;
$response = array();
$response = $woothemes_updater->get_products();
return $response;
} // End get_product_reference_list()
/**
* Get a list of WooThemes products found on this installation.
*
* @access public
* @since 1.0.0
* @return void
*/
protected function get_detected_products () {
$response = array();
$products = get_plugins();
$themes = wp_get_themes();
if ( 0 < count( $themes ) ) {
foreach ( $themes as $k => $v ) {
$filepath = basename( $v->__get( 'stylesheet_dir' ) ) . '/style.css';
$products[$filepath] = array( 'Name' => $v->__get( 'name' ), 'Version' => $v->__get( 'version' ) );
}
}
if ( is_array( $products ) && ( 0 < count( $products ) ) ) {
$reference_list = $this->get_product_reference_list();
$activated_products = $this->get_activated_products();
if ( is_array( $reference_list ) && ( 0 < count( $reference_list ) ) ) {
foreach ( $products as $k => $v ) {
if ( in_array( $k, array_keys( $reference_list ) ) ) {
$status = 'inactive';
$license_expiry = __( 'Please activate', 'woothemes-updater' );
if ( in_array( $k, array_keys( $activated_products ) ) ) {
$status = 'active';
if ( isset( $activated_products[$k][3] ) ) {
$license_expiry = $activated_products[$k][3];
} else {
$license_expiry = '-';
}
}
// Retrieve the latest actual version, from the hosted changelog file.
$latest_version = $this->get_version_from_changelog( dirname( $k ) );
$response[$k] = array( 'product_name' => $v['Name'], 'product_version' => $v['Version'], 'file_id' => $reference_list[$k]['file_id'], 'product_id' => $reference_list[$k]['product_id'], 'product_status' => $status, 'product_file_path' => $k, 'license_expiry' => $license_expiry, 'latest_version' => $latest_version );
}
}
}
}
return $response;
} // End get_detected_products()
/**
* Return the latest version number for a given product, based on the hosted changelog.txt file.
*
* @access protected
* @since 1.6.0
* @return string Product version number.
*/
protected function get_version_from_changelog ( $slug ) {
if ( false === $version = get_transient( 'wth_' . esc_attr( $slug ) . '_latest_version' ) ) {
$product_changelog = wp_safe_remote_get( esc_url( 'http://dzv365zjfbd8v.cloudfront.net/changelogs/' . esc_attr( $slug ) . '/changelog.txt' ) );
$cl_lines = explode( "\n", wp_remote_retrieve_body( $product_changelog ) );
if ( ! empty( $cl_lines ) ) {
foreach ( $cl_lines as $line_num => $cl_line ) {
if ( preg_match( '/^[0-9]/', $cl_line ) ) {
$version = preg_replace( '~[^0-9,.]~' , '' ,stristr( $cl_line , "version" ) );
// Cache for 1 hour.
set_transient( 'wth_' . esc_attr( $slug ) . '_latest_version', $version, HOUR_IN_SECONDS );
break;
}
}
}
}
return $version;
} // End get_version_from_changelog()
/**
* Get an array of products that haven't yet been activated.
*
* @access public
* @since 1.0.0
* @return array Products awaiting activation.
*/
protected function get_pending_products () {
$response = array();
$products = $this->installed_products;
if ( is_array( $products ) && ( 0 < count( $products ) ) ) {
$activated_products = $this->get_activated_products();
if ( is_array( $activated_products ) && ( 0 <= count( $activated_products ) ) ) {
foreach ( $products as $k => $v ) {
if ( isset( $v['product_key']) && ! in_array( $v['product_key'], $activated_products ) ) {
$response[$k] = array( 'product_name' => $v['product_name'] );
}
}
}
}
return $response;
} // End get_pending_products()
/**
* Activate a given array of products.
*
* @since 1.0.0
* @param array $products Array of products ( filepath => key )
* @return boolean
*/
protected function activate_products ( $products ) {
$response = false;
if ( ! is_array( $products ) || ( 0 >= count( $products ) ) ) { return false; } // Get out if we have incorrect data.
$key = $this->token . '-activated';
$has_update = false;
$already_active = $this->get_activated_products();
$product_keys = $this->get_product_reference_list();
foreach ( $products as $k => $v ) {
if ( ! in_array( $v, $product_keys ) ) {
// Perform API "activation" request.
$activate = $this->api->activate( $products[$k], $product_keys[$k]['product_id'], $k );
if ( ! ( ! $activate ) ) {
// key: base file, 0: product id, 1: file_id, 2: hashed license, 3: expiry date, 4: autorenew status
$already_active[$k] = array( $product_keys[$k]['product_id'], $product_keys[$k]['file_id'], md5( $products[$k] ), $activate->expiry_date, (bool)$activate->autorenew );
$has_update = true;
}
}
}
// Store the error log.
$this->api->store_error_log();
if ( $has_update ) {
$response = update_option( $key, $already_active );
} else {
$response = true; // We got through successfully, and the supplied keys are already active.
}
// Lets Clear the updates transient
delete_transient( 'woothemes_helper_updates' );
return $response;
} // End activate_products()
/**
* Deactivate a given product key.
* @since 1.0.0
* @param string $filename File name of the to deactivate plugin licence
* @param bool $local_only Deactivate the product locally without pinging WooThemes.com.
* @return boolean Whether or not the deactivation was successful.
*/
public function deactivate_product ( $filename, $local_only = false ) {
$response = false;
$already_active = $this->get_activated_products();
if ( 0 < count( $already_active ) ) {
$deactivated = true;
if ( isset( $already_active[ $filename ][0] ) ) {
$key = $already_active[ $filename ][2];
if ( false == $local_only ) {
$deactivated = $this->api->deactivate( $key );
}
}
if ( $deactivated ) {
unset( $already_active[ $filename ] );
$response = update_option( $this->token . '-activated', $already_active );
} else {
$this->api->store_error_log();
}
}
return $response;
} // End deactivate_product()
/**
* Load an instance of the updater class for each activated WooThemes Product.
* @access public
* @since 1.0.0
* @return void
*/
public function load_updater_instances () {
$products = $this->get_detected_products();
$activated_products = $this->get_activated_products();
$themes = array();
$plugins = array();
if ( 0 < count( $products ) ) {
foreach ( $products as $k => $v ) {
if ( isset( $v['product_id'] ) && isset( $v['file_id'] ) ) {
$license_hash = isset( $activated_products[ $k ][2] ) ? $activated_products[ $k ][2] : '';
// If it's a theme, add it to the themes list, otherwise add it to the plugins list
if ( strpos( $k, 'style.css' ) ) {
$themes[] = array( $k, $v['product_id'], $v['file_id'], $license_hash, $v['product_version'] );
} else {
$plugins[] = array( $k, $v['product_id'], $v['file_id'], $license_hash, $v['product_version'] );
}
}
}
require_once( 'class-woothemes-updater-update-checker.php' );
new WooThemes_Updater_Update_Checker( $plugins, $themes );
}
} // End load_updater_instances()
/**
* Run checks against the API to ensure the product keys are actually active on WooThemes.com. If not, deactivate them locally as well.
* @access public
* @since 1.3.0
* @return void
*/
public function ensure_keys_are_actually_active () {
$products = (array)$this->get_activated_products();
$call_data = array();
if ( 0 < count( $products ) ) {
foreach ( $products as $k => $v ) {
if ( 3 <= count( $v ) ) { // Prevents undefined offset notices
$call_data[$k] = array( $v[0], $v[1], $v[2], esc_url( home_url( '/' ) ) );
}
}
}
if ( empty( $call_data ) ) {
return;
}
$statuses = $this->api->product_active_statuses_check( $call_data );
if ( ! $statuses ) {
return;
}
foreach ( $statuses as $k => $v ) {
if ( isset( $v->deactivate ) ) {
$this->deactivate_product( $k, true );
}
}
} // End ensure_keys_are_actually_active()
} // End Class
?>