-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailchimp.php
1407 lines (1231 loc) · 46.5 KB
/
mailchimp.php
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
<?php
/**
* Plugin Name: Mailchimp
* Plugin URI: https://mailchimp.com/help/connect-or-disconnect-list-subscribe-for-wordpress/
* Description: Add a Mailchimp signup form block, widget or shortcode to your WordPress site.
* Text Domain: mailchimp
* Version: 1.6.2
* Requires at least: 6.3
* Requires PHP: 7.0
* PHP tested up to: 8.3
* Author: Mailchimp
* Author URI: https://mailchimp.com/
* License: GPL-2.0-or-later
* License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
*
* @package Mailchimp
**/
/**
* Copyright 2008-2012 Mailchimp.com (email : [email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
// Version constant for easy CSS refreshes
define( 'MCSF_VER', '1.6.2' );
// What's our permission (capability) threshold
define( 'MCSF_CAP_THRESHOLD', 'manage_options' );
// Define our location constants, both MCSF_DIR and MCSF_URL
mailchimp_sf_where_am_i();
// Get our Mailchimp API class in scope
if ( ! class_exists( 'MailChimp_API' ) ) {
$path = plugin_dir_path( __FILE__ );
require_once $path . 'lib/mailchimp/mailchimp.php';
}
// Encryption utility class.
require_once plugin_dir_path( __FILE__ ) . 'includes/class-mailchimp-data-encryption.php';
// includes the widget code so it can be easily called either normally or via ajax
require_once 'mailchimp_widget.php';
// includes the backwards compatibility functions
require_once 'mailchimp_compat.php';
// Upgrade routines.
require_once 'mailchimp_upgrade.php';
// Init Admin functions.
require_once plugin_dir_path( __FILE__ ) . 'includes/class-mailchimp-admin.php';
$admin = new Mailchimp_Admin();
$admin->init();
/**
* Do the following plugin setup steps here
*
* Resource (JS & CSS) enqueuing
*
* @return void
*/
function mailchimp_sf_plugin_init() {
// Remove Sopresto check. If user does not have API key, make them authenticate.
if ( get_option( 'mc_list_id' ) && get_option( 'mc_merge_field_migrate' ) !== '1' && mailchimp_sf_get_api() !== false ) {
mailchimp_sf_update_merge_fields();
}
// Bring in our appropriate JS and CSS resources
mailchimp_sf_load_resources();
}
add_action( 'init', 'mailchimp_sf_plugin_init' );
/**
* Add the settings link to the Mailchimp plugin row
*
* @param array $links - Links for the plugin
* @return array - Links
*/
function mailchimp_sf_plugin_action_links( $links ) {
$settings_page = add_query_arg( array( 'page' => 'mailchimp_sf_options' ), admin_url( 'admin.php' ) );
$settings_link = '<a href="' . esc_url( $settings_page ) . '">' . esc_html__( 'Settings', 'mailchimp' ) . '</a>';
array_unshift( $links, $settings_link );
return $links;
}
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'mailchimp_sf_plugin_action_links', 10, 1 );
/**
* Loads the appropriate JS and CSS resources depending on
* settings and context (admin or not)
*
* @return void
*/
function mailchimp_sf_load_resources() {
// JS
if ( get_option( 'mc_use_javascript' ) === 'on' ) {
if ( ! is_admin() ) {
wp_enqueue_script( 'mailchimp_sf_main_js', MCSF_URL . 'assets/js/mailchimp.js', array( 'jquery', 'jquery-form' ), MCSF_VER, true );
// some javascript to get ajax version submitting to the proper location
global $wp_scripts;
$wp_scripts->localize(
'mailchimp_sf_main_js',
'mailchimpSF',
array(
'ajax_url' => trailingslashit( home_url() ),
)
);
}
}
if ( get_option( 'mc_use_datepicker' ) === 'on' && ! is_admin() ) {
// Datepicker theme
wp_enqueue_style( 'flick', MCSF_URL . 'assets/css/flick/flick.css', array(), MCSF_VER );
// Datepicker JS
wp_enqueue_script( 'jquery-ui-datepicker' );
}
if ( get_option( 'mc_nuke_all_styles' ) !== '1' ) {
wp_enqueue_style( 'mailchimp_sf_main_css', home_url( '?mcsf_action=main_css&ver=' . MCSF_VER, 'relative' ), array(), MCSF_VER );
global $wp_styles;
$wp_styles->add_data( 'mailchimp_sf_ie_css', 'conditional', 'IE' );
}
}
/**
* Loads jQuery Datepicker for the date-pick class
**/
function mc_datepicker_load() {
require_once MCSF_DIR . '/views/datepicker.php';
}
if ( get_option( 'mc_use_datepicker' ) === 'on' && ! is_admin() ) {
add_action( 'wp_head', 'mc_datepicker_load' );
}
/**
* Handles requests that as light-weight a load as possible.
* typically, JS or CSS
*
* @return void
*/
function mailchimp_sf_early_request_handler() {
if ( isset( $_GET['mcsf_action'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- ignoring because this is only adding CSS
switch ( $_GET['mcsf_action'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- ignoring because this is only adding CSS
case 'main_css':
header( 'Content-type: text/css' );
mailchimp_sf_main_css();
exit;
}
}
}
add_action( 'init', 'mailchimp_sf_early_request_handler', 0 );
/**
* Outputs the front-end CSS. This checks several options, so it
* was best to put it in a Request-handled script, as opposed to
* a static file.
*/
function mailchimp_sf_main_css() {
require_once MCSF_DIR . '/views/css/frontend.php';
}
/**
* Add our settings page to the admin menu
*
* @return void
*/
function mailchimp_sf_add_pages() {
// Add settings page for users who can edit plugins
add_menu_page(
esc_html__( 'Mailchimp Setup', 'mailchimp' ),
esc_html__( 'Mailchimp', 'mailchimp' ),
MCSF_CAP_THRESHOLD,
'mailchimp_sf_options',
'mailchimp_sf_setup_page',
'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1Mi4wMyA1NSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5Bc3NldCAxPC90aXRsZT48ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIj48ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTExLjY0LDI4LjU0YTQuNzUsNC43NSwwLDAsMC0xLjE3LjA4Yy0yLjc5LjU2LTQuMzYsMi45NC00LjA1LDZhNi4yNCw2LjI0LDAsMCwwLDUuNzIsNS4yMSw0LjE3LDQuMTcsMCwwLDAsLjgtLjA2YzIuODMtLjQ4LDMuNTctMy41NSwzLjEtNi41N0MxNS41MSwyOS44MywxMy4yMSwyOC42MywxMS42NCwyOC41NFptMi43Nyw4LjA3YTEuMTcsMS4xNywwLDAsMS0xLjEuNTUsMS41MywxLjUzLDAsMCwxLTEuMzctMS41OEE0LDQsMCwwLDEsMTIuMjMsMzRhMS40NCwxLjQ0LDAsMCwwLS41NS0xLjc0LDEuNDgsMS40OCwwLDAsMC0xLjEyLS4yMSwxLjQ0LDEuNDQsMCwwLDAtLjkyLjY0LDMuMzksMy4zOSwwLDAsMC0uMzQuNzlsMCwuMTFjLS4xMy4zNC0uMzMuNDUtLjQ3LjQzcy0uMTYtLjA1LS4yMS0uMjFhMywzLDAsMCwxLC43OC0yLjU1LDIuNDYsMi40NiwwLDAsMSwyLjExLS43NiwyLjUsMi41LDAsMCwxLDEuOTEsMS4zOSwzLjE5LDMuMTksMCwwLDEtLjIzLDIuODJsLS4wOS4yQTEuMTYsMS4xNiwwLDAsMCwxMywzNmEuNzQuNzQsMCwwLDAsLjYzLjMyLDEuMzgsMS4zOCwwLDAsMCwuMzQsMGMuMTUsMCwuMy0uMDcuMzksMEEuMjQuMjQsMCwwLDEsMTQuNDEsMzYuNjFaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNNTEsMzMuODhhMy44NCwzLjg0LDAsMCwwLTEuMTUtMWwtLjExLS4zNy0uMTQtLjQyYTUuNTcsNS41NywwLDAsMCwuNS0zLjMyLDUuNDMsNS40MywwLDAsMC0xLjU0LTMsMTAuMDksMTAuMDksMCwwLDAtNC4yNC0yLjI2YzAtLjY3LDAtMS40My0uMDYtMS45YTEyLjgzLDEyLjgzLDAsMCwwLS40OS0zLjI1LDEwLjQ2LDEwLjQ2LDAsMCwwLTEuMy0yLjkyYzIuMTQtMi41NiwzLjI5LTUuMjEsMy4yOS03LjU3LDAtMy44My0zLTYuMy03LjU5LTYuM2ExOS4zLDE5LjMsMCwwLDAtNy4yMiwxLjZsLS4zNC4xNEwyOC43LDEuNTJBNi4zMSw2LjMxLDAsMCwwLDI0LjQzLDAsMTQuMDcsMTQuMDcsMCwwLDAsMTcuNiwyLjJhMzYuOTMsMzYuOTMsMCwwLDAtNi43OCw1LjIxYy00LjYsNC4zOC04LjMsOS42My05LjkxLDE0QTEyLjUxLDEyLjUxLDAsMCwwLDAsMjYuNTRhNi4xNiw2LjE2LDAsMCwwLDIuMTMsNC40bC43OC42NkExMC40NCwxMC40NCwwLDAsMCwyLjc0LDM1YTkuMzYsOS4zNiwwLDAsMCwzLjIxLDYsMTAsMTAsMCwwLDAsNS4xMywyLjQzLDIwLjE5LDIwLjE5LDAsMCwwLDcuMzEsOEEyMy4zMywyMy4zMywwLDAsMCwzMC4xNyw1NUgzMWEyMy4yNywyMy4yNywwLDAsMCwxMi0zLjE2LDE5LjEsMTkuMSwwLDAsMCw3LjgyLTkuMDZsMCwwQTE2Ljg5LDE2Ljg5LDAsMCwwLDUyLDM3LjIzLDUuMTcsNS4xNywwLDAsMCw1MSwzMy44OFptLTEuNzgsOC4yMWMtMyw3LjI5LTEwLjMsMTEuMzUtMTksMTEuMDktOC4wNi0uMjQtMTQuOTQtNC41LTE4LTExLjQzYTcuOTQsNy45NCwwLDAsMS01LjEyLTIuMDYsNy41Niw3LjU2LDAsMCwxLTIuNjEtNC44NUE4LjMxLDguMzEsMCwwLDEsNSwzMUwzLjMyLDI5LjU2Qy00LjQyLDIzLDE5Ljc3LTMuODYsMjcuNTEsMi44OWwyLjY0LDIuNTgsMS40NC0uNjFjNi43OS0yLjgxLDEyLjMtMS40NSwxMi4zLDMsMCwyLjMzLTEuNDgsNS4wNS0zLjg2LDcuNTJhNy41NCw3LjU0LDAsMCwxLDIsMy40OCwxMSwxMSwwLDAsMSwuNDIsMi44MmMwLDEsLjA5LDMuMTYuMDksMy4ybDEsLjI3QTguNjQsOC42NCwwLDAsMSw0Ny4yLDI3YTMuNjYsMy42NiwwLDAsMSwxLjA2LDIuMDZBNCw0LDAsMCwxLDQ3LjU1LDMyLDEwLjE1LDEwLjE1LDAsMCwxLDQ4LDMzLjA4Yy4yLjY0LjM1LDEuMTguMzcsMS4yNS43NCwwLDEuODkuODUsMS44OSwyLjg5QTE1LjI5LDE1LjI5LDAsMCwxLDQ5LjE4LDQyLjA5WiIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ4LDM2YTEuMzYsMS4zNiwwLDAsMC0uODYtLjE2LDExLjc2LDExLjc2LDAsMCwwLS44Mi0yLjc4QTE3Ljg5LDE3Ljg5LDAsMCwxLDQwLjQ1LDM2YTIzLjY0LDIzLjY0LDAsMCwxLTcuODEuODRjLTEuNjktLjE0LTIuODEtLjYzLTMuMjMuNzRhMTguMywxOC4zLDAsMCwwLDgsLjgxLjE0LjE0LDAsMCwxLC4xNi4xMy4xNS4xNSwwLDAsMS0uMDkuMTVzLTMuMTQsMS40Ni04LjE0LS4wOGEyLjU4LDIuNTgsMCwwLDAsMS44MywxLjkxLDguMjQsOC4yNCwwLDAsMCwxLjQ0LjM5YzYuMTksMS4wNiwxMi0yLjQ3LDEzLjI3LTMuMzYuMS0uMDcuMTYsMCwuMDguMTJsLS4xMy4xOGMtMS41OSwyLjA2LTUuODgsNC40NC0xMS40NSw0LjQ0LTIuNDMsMC00Ljg2LS44Ni01Ljc1LTIuMTctMS4zOC0yLS4wNy01LDIuMjQtNC43MWwxLC4xMWEyMS4xMywyMS4xMywwLDAsMCwxMC41LTEuNjhjMy4xNS0xLjQ2LDQuMzQtMy4wNyw0LjE2LTQuMzdBMS44NywxLjg3LDAsMCwwLDQ2LDI4LjM0YTYuOCw2LjgsMCwwLDAtMy0xLjQxYy0uNS0uMTQtLjg0LS4yMy0xLjItLjM1LS42NS0uMjEtMS0uMzktMS0xLjYxLDAtLjUzLS4xMi0yLjQtLjE2LTMuMTYtLjA2LTEuMzUtLjIyLTMuMTktMS4zNi00YTEuOTIsMS45MiwwLDAsMC0xLS4zMSwxLjg2LDEuODYsMCwwLDAtLjU4LjA2LDMuMDcsMy4wNywwLDAsMC0xLjUyLjg2LDUuMjQsNS4yNCwwLDAsMS00LDEuMzJjLS44LDAtMS42NS0uMTYtMi42Mi0uMjJsLS41NywwYTUuMjIsNS4yMiwwLDAsMC01LDQuNTdjLS41NiwzLjgzLDIuMjIsNS44MSwzLDdhMSwxLDAsMCwxLC4yMi41Mi44My44MywwLDAsMS0uMjguNTVoMGE5LjgsOS44LDAsMCwwLTIuMTYsOS4yLDcuNTksNy41OSwwLDAsMCwuNDEsMS4xMmMyLDQuNzMsOC4zLDYuOTMsMTQuNDMsNC45M2ExNS4wNiwxNS4wNiwwLDAsMCwyLjMzLTEsMTIuMjMsMTIuMjMsMCwwLDAsMy41Ny0yLjY3LDEwLjYxLDEwLjYxLDAsMCwwLDMtNS44MkM0OC42LDM2LjcsNDguMzMsMzYuMjMsNDgsMzZabS04LjI1LTcuODJjMCwuNS0uMzEuOTEtLjY4LjlzLS42Ni0uNDItLjY1LS45Mi4zMS0uOTEuNjgtLjlTMzkuNzIsMjcuNjgsMzkuNzEsMjguMThabS0xLjY4LTZjLjcxLS4xMiwxLjA2LjYyLDEuMzIsMS44NWEzLjY0LDMuNjQsMCwwLDEtLjA1LDIsNC4xNCw0LjE0LDAsMCwwLTEuMDYsMCw0LjEzLDQuMTMsMCwwLDEtLjY4LTEuNjRDMzcuMjksMjMuMjMsMzcuMzEsMjIuMzQsMzgsMjIuMjNabS0yLjQsNi41N2EuODIuODIsMCwwLDEsMS4xMS0uMTljLjQ1LjIyLjY5LjY3LjUzLDFhLjgyLjgyLDAsMCwxLTEuMTEuMTlDMzUuNywyOS41OCwzNS40NywyOS4xMywzNS42MywyOC44Wm0tMi44LS4zN2MtLjA3LjExLS4yMy4wOS0uNTcuMDZhNC4yNCw0LjI0LDAsMCwwLTIuMTQuMjIsMiwyLDAsMCwxLS40OS4xNC4xNi4xNiwwLDAsMS0uMTEsMCwuMTUuMTUsMCwwLDEtLjA1LS4xMi44MS44MSwwLDAsMSwuMzItLjUxLDIuNDEsMi40MSwwLDAsMSwxLjI3LS41MywxLjk0LDEuOTQsMCwwLDEsMS43NS41N0EuMTkuMTksMCwwLDEsMzIuODMsMjguNDNabS01LjExLTEuMjZjLS4xMiwwLS4xNy0uMDctLjE5LS4xNHMuMjgtLjU2LjYyLS44MWEzLjYsMy42LDAsMCwxLDMuNTEtLjQyQTMsMywwLDAsMSwzMywyNi44N2MuMTIuMi4xNS4zNS4wNy40NHMtLjQ0LDAtLjk1LS4yNGE0LjE4LDQuMTgsMCwwLDAtMi0uNDNBMjEuODUsMjEuODUsMCwwLDAsMjcuNzEsMjcuMTdaIi8+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMzUuNSwxMy4yOWMuMSwwLC4xNi0uMTUuMDctLjJhMTEsMTEsMCwwLDAtNC42OS0xLjIzLjA5LjA5LDAsMCwxLS4wNy0uMTQsNC43OCw0Ljc4LDAsMCwxLC44OC0uODkuMDkuMDksMCwwLDAtLjA2LS4xNiwxMi40NiwxMi40NiwwLDAsMC01LjYxLDIsLjA5LjA5LDAsMCwxLS4xMy0uMDksNi4xNiw2LjE2LDAsMCwxLC41OS0xLjQ1LjA4LjA4LDAsMCwwLS4xMS0uMTFBMjIuNzksMjIuNzksMCwwLDAsMjAsMTYuMjRhLjA5LjA5LDAsMCwwLC4xMi4xM0ExOS41MywxOS41MywwLDAsMSwyNywxMy4zMiwxOS4xLDE5LjEsMCwwLDEsMzUuNSwxMy4yOVoiLz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0yOC4zNCw2LjQyUzI2LjIzLDQsMjUuNiwzLjhDMjEuNjksMi43NCwxMy4yNCw4LjU3LDcuODQsMTYuMjcsNS42NiwxOS4zOSwyLjUzLDI0LjksNCwyNy43NGExMS40MywxMS40MywwLDAsMCwxLjc5LDEuNzJBNi42NSw2LjY1LDAsMCwxLDEwLDI2Ljc4LDM0LjIxLDM0LjIxLDAsMCwxLDIwLjgsMTEuNjIsNTUuMDksNTUuMDksMCwwLDEsMjguMzQsNi40MloiLz48L2c+PC9nPjwvc3ZnPg=='
);
}
add_action( 'admin_menu', 'mailchimp_sf_add_pages' );
/**
* Request handler
*
* @return void
*/
function mailchimp_sf_request_handler() {
if ( isset( $_POST['mcsf_action'] ) ) {
switch ( $_POST['mcsf_action'] ) {
case 'logout':
// Check capability & Verify nonce
if (
! current_user_can( MCSF_CAP_THRESHOLD ) ||
! isset( $_POST['_mcsf_nonce_action'] ) ||
! wp_verify_nonce( sanitize_key( $_POST['_mcsf_nonce_action'] ), 'mc_logout' )
) {
wp_die( 'Cheatin’ huh?' );
}
// erase auth information
$options = array( 'mc_api_key', 'mailchimp_sf_access_token', 'mc_datacenter', 'mailchimp_sf_auth_error', 'mailchimp_sf_waiting_for_login', 'mc_sopresto_user', 'mc_sopresto_public_key', 'mc_sopresto_secret_key' );
mailchimp_sf_delete_options( $options );
break;
case 'change_form_settings':
if (
! current_user_can( MCSF_CAP_THRESHOLD ) ||
! isset( $_POST['_mcsf_nonce_action'] ) ||
! wp_verify_nonce( sanitize_key( $_POST['_mcsf_nonce_action'] ), 'update_general_form_settings' )
) {
wp_die( 'Cheatin’ huh?' );
}
// Update the form settings
mailchimp_sf_save_general_form_settings();
break;
case 'mc_submit_signup_form':
// Validate nonce
if (
! isset( $_POST['_mc_submit_signup_form_nonce'] ) ||
! wp_verify_nonce( sanitize_key( $_POST['_mc_submit_signup_form_nonce'] ), 'mc_submit_signup_form' )
) {
wp_die( 'Cheatin’ huh?' );
}
// Attempt the signup
mailchimp_sf_signup_submit();
// Do a different action for html vs. js
switch ( isset( $_POST['mc_submit_type'] ) ? $_POST['mc_submit_type'] : '' ) {
case 'html':
/* This gets set elsewhere! */
break;
case 'js':
if ( ! headers_sent() ) { // just in case...
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT', true, 200 );
}
echo wp_kses_post( mailchimp_sf_global_msg() );
exit;
}
}
}
}
add_action( 'init', 'mailchimp_sf_request_handler' );
/**
* Migrate Sopresto
*
* @return void
*/
function mailchimp_sf_migrate_sopresto() {
$sopresto = get_option( 'mc_sopresto_secret_key' );
if ( ! $sopresto ) {
return;
}
// Talk to Sopresto, make exchange, delete old sopresto things.
$body = array(
'public_key' => get_option( 'mc_sopresto_public_key' ),
'hash' => sha1( get_option( 'mc_sopresto_public_key' ) . get_option( 'mc_sopresto_secret_key' ) ),
);
$url = 'https://sopresto.socialize-this.com/mailchimp/exchange';
$args = array(
'method' => 'POST',
'timeout' => 500,
'redirection' => 5,
'httpversion' => '1.0',
'user-agent' => 'Mailchimp WordPress Plugin/' . get_bloginfo( 'url' ),
'body' => $body,
);
// post to sopresto
$key = wp_remote_post( $url, $args );
if ( ! is_wp_error( $key ) && 200 === $key['response']['code'] ) {
$key = json_decode( $key['body'] );
try {
$api = new MailChimp_API( $key->response );
} catch ( Exception $e ) {
$msg = '<strong class="mc_error_msg">' . $e->getMessage() . '</strong>';
mailchimp_sf_global_msg( $msg );
return;
}
$verify = mailchimp_sf_verify_key( $api );
// something went wrong with the key that we had
if ( is_wp_error( $verify ) ) {
return;
}
delete_option( 'mc_sopresto_public_key' );
delete_option( 'mc_sopresto_secret_key' );
delete_option( 'mc_sopresto_user' );
}
}
/**
* Update merge fields
*
* @return void
*/
function mailchimp_sf_update_merge_fields() {
mailchimp_sf_get_merge_vars( get_option( 'mc_list_id' ), true );
mailchimp_sf_get_interest_categories( get_option( 'mc_list_id' ), true );
update_option( 'mc_merge_field_migrate', true );
}
/**
* Get auth key
*
* @param mixed $salt Salt
* @return string
*/
function mailchimp_sf_auth_nonce_key( $salt = null ) {
if ( is_null( $salt ) ) {
$salt = mailchimp_sf_auth_nonce_salt();
}
return 'social_authentication' . md5( AUTH_KEY . $salt );
}
/**
* Return auth nonce salt
*
* @return string
*/
function mailchimp_sf_auth_nonce_salt() {
return md5( microtime() . isset( $_SERVER['SERVER_ADDR'] ) ? sanitize_text_field( wp_unslash( $_SERVER['SERVER_ADDR'] ) ) : '' );
}
/**
* Creates new Mailchimp API v3 object
*
* @return MailChimp_API | false
*/
function mailchimp_sf_get_api() {
// Check for the access token first.
$access_token = mailchimp_sf_get_access_token();
$data_center = get_option( 'mc_datacenter' );
if ( ! empty( $access_token ) && ! empty( $data_center ) ) {
return new MailChimp_API( $access_token, $data_center );
}
// Check for the API key if the access token is not available.
$key = get_option( 'mc_api_key' );
if ( $key ) {
return new MailChimp_API( $key );
}
return false;
}
/**
* Checks to see if we're storing a password, if so, we need
* to upgrade to the API key
*
* @return bool
**/
function mailchimp_sf_needs_upgrade() {
$igs = get_option( 'mc_interest_groups' );
if ( false !== $igs // we have an option
&& (
empty( $igs ) || // it can be an empty array (no interest groups)
( is_array( $igs ) && isset( $igs[0]['id'] ) ) // OR it should be a populated array that's well-formed
)
) {
return false; // no need to upgrade
} else {
return true; // yeah, let's do it
}
}
/**
* Deletes all Mailchimp options
**/
function mailchimp_sf_delete_setup() {
$options = array(
'mc_user_id',
'mc_sopresto_user',
'mc_sopresto_public_key',
'mc_sopresto_secret_key',
'mc_use_javascript',
'mc_use_datepicker',
'mc_use_unsub_link',
'mc_list_id',
'mc_list_name',
'mc_interest_groups',
'mc_merge_vars',
);
$igs = get_option( 'mc_interest_groups' );
if ( is_array( $igs ) ) {
foreach ( $igs as $ig ) {
$opt = 'mc_show_interest_groups_' . $ig['id'];
$options[] = $opt;
}
}
$mv = get_option( 'mc_merge_vars' );
if ( is_array( $mv ) ) {
foreach ( $mv as $mv_var ) {
$opt = 'mc_mv_' . $mv_var['tag'];
$options[] = $opt;
}
}
mailchimp_sf_delete_options( $options );
}
/**
* Gets or sets a global message based on parameter passed to it
*
* @param mixed $msg Message
* @return string/bool depending on get/set
*/
function mailchimp_sf_global_msg( $msg = null ) {
global $mcsf_msgs;
// Make sure we're formed properly
if ( ! is_array( $mcsf_msgs ) ) {
$mcsf_msgs = array();
}
// See if we're getting
if ( is_null( $msg ) ) {
return implode( '', $mcsf_msgs );
}
// Must be setting
$mcsf_msgs[] = $msg;
return true;
}
/**
* Sets the default options for the option form
*
* @param string $list_name The Mailchimp list name.
* @return void
*/
function mailchimp_sf_set_form_defaults( $list_name = '' ) {
update_option( 'mc_header_content', esc_html__( 'Sign up for', 'mailchimp' ) . ' ' . $list_name );
update_option( 'mc_submit_text', esc_html__( 'Subscribe', 'mailchimp' ) );
update_option( 'mc_use_datepicker', 'on' );
update_option( 'mc_custom_style', 'off' );
update_option( 'mc_use_javascript', 'on' );
update_option( 'mc_double_optin', true );
update_option( 'mc_use_unsub_link', 'off' );
update_option( 'mc_header_border_width', '1' );
update_option( 'mc_header_border_color', 'E3E3E3' );
update_option( 'mc_header_background', 'FFFFFF' );
update_option( 'mc_header_text_color', 'CC6600' );
update_option( 'mc_form_border_width', '1' );
update_option( 'mc_form_border_color', 'E0E0E0' );
update_option( 'mc_form_background', 'FFFFFF' );
update_option( 'mc_form_text_color', '3F3F3f' );
}
/**
* Saves the General Form settings on the options page
*
* @return void
**/
function mailchimp_sf_save_general_form_settings() {
// IF NOT DEV MODE
if ( isset( $_POST['mc_use_javascript'] ) ) {
update_option( 'mc_use_javascript', 'on' );
$msg = '<p class="success_msg">' . esc_html__( 'Fancy Javascript submission turned On!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_javascript' ) !== 'off' ) {
update_option( 'mc_use_javascript', 'off' );
$msg = '<p class="success_msg">' . esc_html__( 'Fancy Javascript submission turned Off!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
if ( isset( $_POST['mc_use_datepicker'] ) ) {
update_option( 'mc_use_datepicker', 'on' );
$msg = '<p class="success_msg">' . esc_html__( 'Datepicker turned On!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_datepicker' ) !== 'off' ) {
update_option( 'mc_use_datepicker', 'off' );
$msg = '<p class="success_msg">' . esc_html__( 'Datepicker turned Off!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
/*Enable double optin toggle*/
if ( isset( $_POST['mc_double_optin'] ) ) {
update_option( 'mc_double_optin', true );
$msg = '<p class="success_msg">' . esc_html__( 'Double opt-in turned On!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_double_optin' ) !== false ) {
update_option( 'mc_double_optin', false );
$msg = '<p class="success_msg">' . esc_html__( 'Double opt-in turned Off!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
/* NUKE the CSS! */
if ( isset( $_POST['mc_nuke_all_styles'] ) ) {
update_option( 'mc_nuke_all_styles', true );
$msg = '<p class="success_msg">' . esc_html__( 'Mailchimp CSS turned Off!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_nuke_all_styles' ) !== false ) {
update_option( 'mc_nuke_all_styles', false );
$msg = '<p class="success_msg">' . esc_html__( 'Mailchimp CSS turned On!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
/* Update existing */
if ( isset( $_POST['mc_update_existing'] ) ) {
update_option( 'mc_update_existing', true );
$msg = '<p class="success_msg">' . esc_html__( 'Update existing subscribers turned On!' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_update_existing' ) !== false ) {
update_option( 'mc_update_existing', false );
$msg = '<p class="success_msg">' . esc_html__( 'Update existing subscribers turned Off!' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
if ( isset( $_POST['mc_use_unsub_link'] ) ) {
update_option( 'mc_use_unsub_link', 'on' );
$msg = '<p class="success_msg">' . esc_html__( 'Unsubscribe link turned On!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
} elseif ( get_option( 'mc_use_unsub_link' ) !== 'off' ) {
update_option( 'mc_use_unsub_link', 'off' );
$msg = '<p class="success_msg">' . esc_html__( 'Unsubscribe link turned Off!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
$content = isset( $_POST['mc_header_content'] ) ? wp_kses_post( wp_unslash( $_POST['mc_header_content'] ) ) : '';
$content = str_replace( "\r\n", '<br/>', $content );
update_option( 'mc_header_content', $content );
$content = isset( $_POST['mc_subheader_content'] ) ? wp_kses_post( wp_unslash( $_POST['mc_subheader_content'] ) ) : '';
$content = str_replace( "\r\n", '<br/>', $content );
update_option( 'mc_subheader_content', $content );
$submit_text = isset( $_POST['mc_submit_text'] ) ? sanitize_text_field( wp_unslash( $_POST['mc_submit_text'] ) ) : '';
$submit_text = str_replace( "\r\n", '', $submit_text );
update_option( 'mc_submit_text', $submit_text );
// Set Custom Style option
update_option( 'mc_custom_style', isset( $_POST['mc_custom_style'] ) ? 'on' : 'off' );
// we told them not to put these things we are replacing in, but let's just make sure they are listening...
if ( isset( $_POST['mc_form_border_width'] ) ) {
update_option( 'mc_form_border_width', str_replace( 'px', '', absint( $_POST['mc_form_border_width'] ) ) );
}
if ( isset( $_POST['mc_form_border_color'] ) ) {
update_option( 'mc_form_border_color', str_replace( '#', '', sanitize_text_field( wp_unslash( $_POST['mc_form_border_color'] ) ) ) );
}
if ( isset( $_POST['mc_form_background'] ) ) {
update_option( 'mc_form_background', str_replace( '#', '', sanitize_text_field( wp_unslash( $_POST['mc_form_background'] ) ) ) );
}
if ( isset( $_POST['mc_form_text_color'] ) ) {
update_option( 'mc_form_text_color', str_replace( '#', '', sanitize_text_field( wp_unslash( $_POST['mc_form_text_color'] ) ) ) );
}
// IF NOT DEV MODE
$igs = get_option( 'mc_interest_groups' );
if ( is_array( $igs ) ) {
foreach ( $igs as $mv_var ) {
$opt = 'mc_show_interest_groups_' . $mv_var['id'];
if ( isset( $_POST[ $opt ] ) ) {
update_option( $opt, 'on' );
} else {
update_option( $opt, 'off' );
}
}
}
$mv = get_option( 'mc_merge_vars' );
if ( is_array( $mv ) ) {
foreach ( $mv as $mv_var ) {
$opt = 'mc_mv_' . $mv_var['tag'];
if ( isset( $_POST[ $opt ] ) || 'Y' === $mv_var['required'] ) {
update_option( $opt, 'on' );
} else {
update_option( $opt, 'off' );
}
}
}
$msg = '<p class="success_msg">' . esc_html__( 'Successfully Updated your List Subscribe Form Settings!', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
/**
* Sees if the user changed the list, and updates options accordingly
**/
function mailchimp_sf_change_list_if_necessary() {
if ( ! isset( $_POST['mc_list_id'] ) ) {
return;
}
if ( empty( $_POST['mc_list_id'] ) ) {
$msg = '<p class="error_msg">' . esc_html__( 'Please choose a valid list', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
return;
}
// Simple permission check before going through all this
if ( ! current_user_can( MCSF_CAP_THRESHOLD ) ) { return; }
$api = mailchimp_sf_get_api();
if ( ! $api ) { return; }
// we *could* support paging, but few users have that many lists (and shouldn't)
$lists = $api->get( 'lists', 100, array( 'fields' => 'lists.id,lists.name,lists.email_type_option' ) );
if ( ! isset( $lists['lists'] ) || is_wp_error( $lists['lists'] ) ) {
return;
}
$lists = $lists['lists'];
if ( is_array( $lists ) && ! empty( $lists ) ) {
/**
* If our incoming list ID (the one chosen in the select dropdown)
* is in our array of lists, the set it to be the active list
*/
foreach ( $lists as $key => $list ) {
if ( isset( $_POST['mc_list_id'] ) && $list['id'] === $_POST['mc_list_id'] ) {
$list_id = sanitize_text_field( wp_unslash( $_POST['mc_list_id'] ) );
$list_name = $list['name'];
$list_key = $key;
}
}
$orig_list = get_option( 'mc_list_id' );
if ( '' !== $list_id ) {
update_option( 'mc_list_id', $list_id );
update_option( 'mc_list_name', $list_name );
update_option( 'mc_email_type_option', $lists[ $list_key ]['email_type_option'] );
// See if the user changed the list
$new_list = false;
if ( $orig_list !== $list_id ) {
// The user changed the list, Reset the Form Defaults
mailchimp_sf_set_form_defaults( $list_name );
$new_list = true;
}
// Grab the merge vars and interest groups
$mv = mailchimp_sf_get_merge_vars( $list_id, $new_list );
$igs = mailchimp_sf_get_interest_categories( $list_id, $new_list );
$igs_text = ' ';
if ( is_array( $igs ) ) {
/* translators: %s: count (number) */
$igs_text .= sprintf( esc_html__( 'and %s Sets of Interest Groups', 'mailchimp' ), count( $igs ) );
}
$msg = '<p class="success_msg">' .
sprintf(
/* translators: %s: count (number) */
__( '<b>Success!</b> Loaded and saved the info for %d Merge Variables', 'mailchimp' ) . $igs_text,
count( $mv )
) . ' ' .
esc_html__( 'from your list' ) . ' "' . $list_name . '"<br/><br/>' .
esc_html__( 'Now you should either Turn On the Mailchimp Widget or change your options below, then turn it on.', 'mailchimp' ) . '</p>';
mailchimp_sf_global_msg( $msg );
}
}
}
/**
* Get merge vars
*
* @param string $list_id List ID
* @param bool $new_list Whether this is a new list
* @return array
*/
function mailchimp_sf_get_merge_vars( $list_id, $new_list ) {
$api = mailchimp_sf_get_api();
$mv = $api->get( 'lists/' . $list_id . '/merge-fields', 80 );
// if we get an error back from the api, exit this process.
if ( is_wp_error( $mv ) ) {
return;
}
$mv['merge_fields'] = mailchimp_sf_add_email_field( $mv['merge_fields'] );
update_option( 'mc_merge_vars', $mv['merge_fields'] );
foreach ( $mv['merge_fields'] as $mv_var ) {
$opt = 'mc_mv_' . $mv_var['tag'];
// turn them all on by default
if ( $new_list ) {
update_option( $opt, 'on' );
}
}
return $mv['merge_fields'];
}
/**
* Add email field
*
* @param array $merge Merge
* @return array
*/
function mailchimp_sf_add_email_field( $merge ) {
$email = array(
'tag' => 'EMAIL',
'name' => esc_html__( 'Email Address', 'mailchimp' ),
'type' => 'email',
'required' => true,
'public' => true,
'display_order' => 1,
'default_value' => null,
);
array_unshift( $merge, $email );
return $merge;
}
/**
* Get interest categories
*
* @param string $list_id List ID
* @param bool $new_list Whether this is a new list
* @return array
*/
function mailchimp_sf_get_interest_categories( $list_id, $new_list ) {
$api = mailchimp_sf_get_api();
$igs = $api->get( 'lists/' . $list_id . '/interest-categories', 60 );
// if we get an error back from the api, exis
if ( is_wp_error( $igs ) ) {
return;
}
if ( is_array( $igs ) ) {
$key = 0;
foreach ( $igs['categories'] as $ig ) {
$groups = $api->get( 'lists/' . $list_id . '/interest-categories/' . $ig['id'] . '/interests', 60 );
$igs['categories'][ $key ]['groups'] = $groups['interests'];
$opt = 'mc_show_interest_groups_' . $ig['id'];
// turn them all on by default
if ( $new_list ) {
update_option( $opt, 'on' );
}
++$key;
}
}
update_option( 'mc_interest_groups', $igs['categories'] );
return $igs['categories'];
}
/**
* Outputs the Settings/Options page
*/
function mailchimp_sf_setup_page() {
$path = plugin_dir_path( __FILE__ );
require_once $path . '/includes/admin/templates/settings.php';
}
/**
* Register the widget.
*
* @return void
*/
function mailchimp_sf_register_widgets() {
if ( mailchimp_sf_get_api() ) {
register_widget( 'Mailchimp_SF_Widget' );
}
}
add_action( 'widgets_init', 'mailchimp_sf_register_widgets' );
/**
* Add shortcode
*
* @return string
*/
function mailchimp_sf_shortcode() {
ob_start();
mailchimp_sf_signup_form();
return ob_get_clean();
}
add_shortcode( 'mailchimpsf_form', 'mailchimp_sf_shortcode' );
/**
* Add block
*
* @return void
*/
function mailchimp_sf_block() {
// In line with conditional register of the widget.
if ( ! mailchimp_sf_get_api() ) {
return;
}
$blocks_dist_path = plugin_dir_path( __FILE__ ) . 'dist/blocks/';
if ( file_exists( $blocks_dist_path ) ) {
$block_json_files = glob( $blocks_dist_path . '*/block.json' );
foreach ( $block_json_files as $filename ) {
$block_folder = dirname( $filename );
register_block_type( $block_folder );
}
}
$data = 'window.MAILCHIMP_ADMIN_SETTINGS_URL = "' . esc_js( esc_url( admin_url( 'admin.php?page=mailchimp_sf_options' ) ) ) . '";';
wp_add_inline_script( 'mailchimp-mailchimp-editor-script', $data, 'before' );
ob_start();
require_once MCSF_DIR . '/views/css/frontend.php';
$data = ob_get_clean();
wp_add_inline_style( 'mailchimp-mailchimp-editor-style', $data );
}
add_action( 'init', 'mailchimp_sf_block' );
/**
* Attempts to signup a user, per the $_POST args.
*
* This sets a global message, that is then used in the widget
* output to retrieve and display that message.
*
* @return bool
*/
function mailchimp_sf_signup_submit() {
$mv = get_option( 'mc_merge_vars', array() );
$mv_tag_keys = array();
$igs = get_option( 'mc_interest_groups', array() );
$list_id = get_option( 'mc_list_id' );
$email = isset( $_POST['mc_mv_EMAIL'] ) ? wp_strip_all_tags( wp_unslash( $_POST['mc_mv_EMAIL'] ) ) : '';
$merge = mailchimp_sf_merge_submit( $mv );
// Catch errors and fail early.
if ( is_wp_error( $merge ) ) {
$msg = '<strong class="mc_error_msg">' . $merge->get_error_message() . '</strong>';
mailchimp_sf_global_msg( $msg );
return false;
}
// Head back to the beginning of the merge vars array
reset( $mv );
// Ensure we have an array
$igs = ! is_array( $igs ) ? array() : $igs;
$igs = mailchimp_sf_groups_submit( $igs );
// Clear out empty merge vars
$merge = mailchimp_sf_merge_remove_empty( $merge );
if ( isset( $_POST['email_type'] ) && in_array( $_POST['email_type'], array( 'text', 'html', 'mobile' ), true ) ) {
$email_type = sanitize_text_field( wp_unslash( $_POST['email_type'] ) );
} else {
$email_type = 'html';
}
$api = mailchimp_sf_get_api();
if ( ! $api ) {
$url = mailchimp_sf_signup_form_url();
$error = sprintf(
'<strong class="mc_error_msg">%s</strong>',
wp_kses(
sprintf(
/* translators: 1: email address 2: url */
__(
'We encountered a problem adding %1$s to the list. Please <a href="%2$s">sign up here.</a>',
'mailchimp'
),
esc_html( $email ),
esc_url( $url )
),
[
'a' => [
'href' => [],
],
]
)
);
mailchimp_sf_global_msg( $error );
return false;
}
$url = 'lists/' . $list_id . '/members/' . md5( strtolower( $email ) );
$status = mailchimp_sf_check_status( $url );
// If update existing is turned off and the subscriber exists, error out.
if ( get_option( 'mc_update_existing' ) === false && 'subscribed' === $status ) {
$msg = esc_html__( 'This email address is already subscribed to the list.', 'mailchimp' );
$error = new WP_Error( 'mailchimp-update-existing', $msg );
mailchimp_sf_global_msg( '<strong class="mc_error_msg">' . $msg . '</strong>' );
return false;
}
$body = mailchimp_sf_subscribe_body( $merge, $igs, $email_type, $email, $status, get_option( 'mc_double_optin' ) );
$retval = $api->post( $url, $body, 'PUT' );
// If we have errors, then show them
if ( is_wp_error( $retval ) ) {
$msg = '<strong class="mc_error_msg">' . $retval->get_error_message() . '</strong>';
mailchimp_sf_global_msg( $msg );
return false;
}
if ( 'subscribed' === $retval['status'] ) {
$esc = esc_html__( 'Success, you\'ve been signed up.', 'mailchimp' );
$msg = "<strong class='mc_success_msg'>{$esc}</strong>";
} else {
$esc = esc_html__( 'Success, you\'ve been signed up! Please look for our confirmation email.', 'mailchimp' );
$msg = "<strong class='mc_success_msg'>{$esc}</strong>";
}
// Set our global message
mailchimp_sf_global_msg( $msg );
return true;
}
/**
* Cleans up merge fields and interests to make them
* API 3.0-friendly.
*
* @param [type] $merge Merge fields
* @param [type] $igs Interest groups
* @param string $email_type Email type
* @param string $email Email
* @param string $status Status
* @param bool $double_optin Whether this is double optin
* @return stdClass
*/
function mailchimp_sf_subscribe_body( $merge, $igs, $email_type, $email, $status, $double_optin ) {
$body = new stdClass();
$body->email_address = $email;
$body->email_type = $email_type;
$body->merge_fields = $merge;
if ( ! empty( $igs ) ) {
$body->interests = $igs;
}
if ( 'subscribed' !== $status ) {
// single opt-in that covers new subscribers
if ( false === ! $status && $double_optin ) {
$body->status = 'subscribed';
} else {
// anyone else
$body->status = 'pending';
}
}
return $body;
}
/**
* Check status.
*
* @param string $endpoint Endpoint.
* @return string
*/
function mailchimp_sf_check_status( $endpoint ) {
$endpoint .= '?fields=status';
$api = mailchimp_sf_get_api();
$subscriber = $api->get( $endpoint, null );
if ( is_wp_error( $subscriber ) ) {
return false;
}
return $subscriber['status'];
}
/**
* Merge submit
*
* @param array $mv Merge Vars
* @return mixed
*/
function mailchimp_sf_merge_submit( $mv ) {
// Loop through our Merge Vars, and if they're empty, but required, then print an error, and mark as failed
$merge = new stdClass();
foreach ( $mv as $mv_var ) {
// We also want to create an array where the keys are the tags for easier validation later
$tag = $mv_var['tag'];
$mv_tag_keys[ $tag ] = $mv_var;