/var/www/hkosl.com/aga/wp-content/plugins/contact-form-7/modules/constant-contact.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
<?php

add_action
'wpcf7_init''wpcf7_constant_contact_register_service'10);

function 
wpcf7_constant_contact_register_service() {
    
$integration WPCF7_Integration::get_instance();

    
$integration->add_category'email_marketing',
        
__'Email Marketing''contact-form-7' ) );

    
$service WPCF7_ConstantContact::get_instance();
    
$integration->add_service'constant_contact'$service );
}

add_action'wpcf7_save_contact_form',
    
'wpcf7_constant_contact_save_contact_form'10);

function 
wpcf7_constant_contact_save_contact_form$contact_form ) {
    
$service WPCF7_ConstantContact::get_instance();

    if ( ! 
$service->is_active() ) {
        return;
    }

    
$additional_settings $contact_form->additional_setting(
        
'constant_contact',
        
false
    
);

    
$list_names = array();

    
$pattern '/[\t ]*('
        
"'[^']*'"
        
'|'
        
'"[^"]*"'
        
'|'
        
'[^,]*?'
        
')[\t ]*(?:[,]+|$)/';

    foreach ( 
$additional_settings as $setting ) {
        if ( 
preg_match_all$pattern$setting$matches ) ) {
            foreach ( 
$matches[1] as $match ) {
                
$name trimwpcf7_strip_quote$match ) );

                if ( 
'' !== $name ) {
                    
$list_names[] = $name;
                }
            }
        }
    }

    
$list_names array_unique$list_names );

    
$key sprintf'wpcf7_contact_form:%d'$contact_form->id() );

    
$service->update_contact_lists( array( $key => $list_names ) );
}

add_action'wpcf7_submit''wpcf7_constant_contact_submit'10);

function 
wpcf7_constant_contact_submit$contact_form$result ) {
    
$service WPCF7_ConstantContact::get_instance();

    if ( ! 
$service->is_active() ) {
        return;
    }

    if ( 
$contact_form->in_demo_mode() ) {
        return;
    }

    
$do_submit true;

    if ( empty( 
$result['status'] )
    or ! 
in_array$result['status'], array( 'mail_sent' ) ) ) {
        
$do_submit false;
    }

    
$additional_settings $contact_form->additional_setting(
        
'constant_contact',
        
false
    
);

    foreach ( 
$additional_settings as $setting ) {
        if ( 
in_array$setting, array( 'off''false''0' ), true ) ) {
            
$do_submit false;
            break;
        }
    }

    
$do_submit apply_filters'wpcf7_constant_contact_submit',
        
$do_submit$contact_form$result );

    if ( ! 
$do_submit ) {
        return;
    }

    
$submission WPCF7_Submission::get_instance();

    
$consented true;

    foreach ( 
$contact_form->scan_form_tags'feature=name-attr' ) as $tag ) {
        if ( 
$tag->has_option'consent_for:constant_contact' )
        and 
null == $submission->get_posted_data$tag->name ) ) {
            
$consented false;
            break;
        }
    }

    if ( ! 
$consented ) {
        return;
    }

    
$request_builder_class_name apply_filters(
        
'wpcf7_constant_contact_contact_post_request_builder',
        
'WPCF7_ConstantContact_ContactPostRequest'
    
);

    if ( ! 
class_exists$request_builder_class_name ) ) {
        return;
    }

    
$request_builder = new $request_builder_class_name;
    
$request_builder->build$submission );

    if ( ! 
$request_builder->is_valid() ) {
        return;
    }

    if ( 
$email $request_builder->get_email_address()
    and 
$service->email_exists$email ) ) {
        return;
    }

    
$service->create_contact$request_builder->to_array() );
}

if ( ! 
class_exists'WPCF7_Service_OAuth2' ) ) {
    return;
}

class 
WPCF7_ConstantContact extends WPCF7_Service_OAuth2 {

    const 
service_name 'constant_contact';
    const 
authorization_endpoint 'https://api.cc.email/v3/idfed';
    const 
token_endpoint 'https://idfed.constantcontact.com/as/token.oauth2';

    private static 
$instance;
    protected 
$contact_lists = array();

    public static function 
get_instance() {
        if ( empty( 
self::$instance ) ) {
            
self::$instance = new self;
        }

        return 
self::$instance;
    }

    private function 
__construct() {
        
$this->authorization_endpoint self::authorization_endpoint;
        
$this->token_endpoint self::token_endpoint;

        
$option = (array) WPCF7::get_optionself::service_name );

        if ( isset( 
$option['client_id'] ) ) {
            
$this->client_id $option['client_id'];
        }

        if ( isset( 
$option['client_secret'] ) ) {
            
$this->client_secret $option['client_secret'];
        }

        if ( isset( 
$option['access_token'] ) ) {
            
$this->access_token $option['access_token'];
        }

        if ( isset( 
$option['refresh_token'] ) ) {
            
$this->refresh_token $option['refresh_token'];
        }

        if ( 
$this->is_active() ) {
            if ( isset( 
$option['contact_lists'] ) ) {
                
$this->contact_lists $option['contact_lists'];
            }
        }

        
add_action'wpcf7_admin_init', array( $this'auth_redirect' ) );
    }

    public function 
auth_redirect() {
        
$auth = isset( $_GET['auth'] ) ? trim$_GET['auth'] ) : '';
        
$code = isset( $_GET['code'] ) ? trim$_GET['code'] ) : '';

        if ( 
self::service_name === $auth and $code
        
and current_user_can'wpcf7_manage_integration' ) ) {
            
$redirect_to add_query_arg(
                array(
                    
'service' => self::service_name,
                    
'action' => 'auth_redirect',
                    
'code' => $code,
                ),
                
menu_page_url'wpcf7-integration'false )
            );

            
wp_safe_redirect$redirect_to );
            exit();
        }
    }

    protected function 
save_data() {
        
$option array_merge(
            (array) 
WPCF7::get_optionself::service_name ),
            array(
                
'client_id' => $this->client_id,
                
'client_secret' => $this->client_secret,
                
'access_token' => $this->access_token,
                
'refresh_token' => $this->refresh_token,
                
'contact_lists' => $this->contact_lists,
            )
        );

        
WPCF7::update_optionself::service_name$option );
    }

    protected function 
reset_data() {
        
$this->client_id '';
        
$this->client_secret '';
        
$this->access_token '';
        
$this->refresh_token '';
        
$this->contact_lists = array();

        
$this->save_data();
    }

    public function 
get_title() {
        return 
__'Constant Contact''contact-form-7' );
    }

    public function 
get_categories() {
        return array( 
'email_marketing' );
    }

    public function 
icon() {
    }

    public function 
link() {
        echo 
sprintf'<a href="%1$s">%2$s</a>',
            
'https://constant-contact.evyy.net/c/1293104/205991/3411',
            
'constantcontact.com'
        
);
    }

    protected function 
get_redirect_uri() {
        return 
admin_url'/?auth=' self::service_name );
    }

    protected function 
menu_page_url$args '' ) {
        
$args wp_parse_args$args, array() );

        
$url menu_page_url'wpcf7-integration'false );
        
$url add_query_arg( array( 'service' => self::service_name ), $url );

        if ( ! empty( 
$args) ) {
            
$url add_query_arg$args$url );
        }

        return 
$url;
    }

    public function 
load$action '' ) {
        
parent::load$action );

        if ( 
'setup' == $action and 'POST' == $_SERVER['REQUEST_METHOD'] ) {
            
check_admin_referer'wpcf7-constant-contact-setup' );

            if ( ! empty( 
$_POST['reset'] ) ) {
                
$this->reset_data();
            } else {
                
$this->client_id = isset( $_POST['client_id'] )
                    ? 
trim$_POST['client_id'] ) : '';

                
$this->client_secret = isset( $_POST['client_secret'] )
                    ? 
trim$_POST['client_secret'] ) : '';

                
$this->save_data();
                
$this->authorize'contact_data' );
            }

            
wp_safe_redirect$this->menu_page_url'action=setup' ) );
            exit();
        }

        if ( 
'edit' == $action and 'POST' == $_SERVER['REQUEST_METHOD'] ) {
            
check_admin_referer'wpcf7-constant-contact-edit' );

            
$list_ids = isset( $_POST['contact_lists'] )
                ? (array) 
$_POST['contact_lists']
                : array();

            
$this->update_contact_lists( array( 'default' => $list_ids ) );

            
wp_safe_redirect$this->menu_page_url(
                array(
                    
'action' => 'setup',
                    
'message' => 'updated',
                )
            ) );

            exit();
        }

        if ( 
$this->is_active() ) {
            
$this->update_contact_lists();
        }
    }

    public function 
email_exists$email ) {
        
$endpoint add_query_arg(
            array( 
'email' => $email ),
            
'https://api.cc.email/v3/contacts'
        
);

        
$request = array(
            
'method' => 'GET',
            
'headers' => array(
                
'Accept' => 'application/json',
                
'Content-Type' => 'application/json; charset=utf-8',
            ),
        );

        
$response $this->remote_request$endpoint$request );

        if ( 
400 <= (int) wp_remote_retrieve_response_code$response ) ) {
            if ( 
WP_DEBUG ) {
                
$this->log$endpoint$request$response );
            }

            return 
false;
        }

        
$response_body wp_remote_retrieve_body$response );

        if ( empty( 
$response_body ) ) {
            return 
false;
        }

        
$response_body json_decode$response_bodytrue );

        return ! empty( 
$response_body['contacts'] );
    }

    public function 
create_contact$properties ) {
        
$endpoint 'https://api.cc.email/v3/contacts';

        
$request = array(
            
'method' => 'POST',
            
'headers' => array(
                
'Accept' => 'application/json',
                
'Content-Type' => 'application/json; charset=utf-8',
            ),
            
'body' => json_encode$properties ),
        );

        
$response $this->remote_request$endpoint$request );

        if ( 
400 <= (int) wp_remote_retrieve_response_code$response ) ) {
            if ( 
WP_DEBUG ) {
                
$this->log$endpoint$request$response );
            }

            return 
false;
        }
    }

    public function 
get_contact_lists() {
        
$endpoint 'https://api.cc.email/v3/contact_lists';

        
$request = array(
            
'method' => 'GET',
            
'headers' => array(
                
'Accept' => 'application/json',
                
'Content-Type' => 'application/json; charset=utf-8',
            ),
        );

        
$response $this->remote_request$endpoint$request );

        if ( 
400 <= (int) wp_remote_retrieve_response_code$response ) ) {
            if ( 
WP_DEBUG ) {
                
$this->log$endpoint$request$response );
            }

            return 
false;
        }

        
$response_body wp_remote_retrieve_body$response );

        if ( empty( 
$response_body ) ) {
            return 
false;
        }

        
$response_body json_decode$response_bodytrue );

        if ( ! empty( 
$response_body['lists'] ) ) {
            return (array) 
$response_body['lists'];
        } else {
            return array();
        }
    }

    public function 
update_contact_lists$selection = array() ) {
        
$contact_lists = array();
        
$contact_lists_on_api $this->get_contact_lists();

        if ( 
false !== $contact_lists_on_api ) {
            foreach ( (array) 
$contact_lists_on_api as $list ) {
                if ( isset( 
$list['list_id'] ) ) {
                    
$list_id trim$list['list_id'] );
                } else {
                    continue;
                }

                if ( isset( 
$this->contact_lists[$list_id]['selected'] ) ) {
                    
$list['selected'] = $this->contact_lists[$list_id]['selected'];
                } else {
                    
$list['selected'] = array();
                }

                
$contact_lists[$list_id] = $list;
            }
        } else {
            
$contact_lists $this->contact_lists;
        }

        foreach ( (array) 
$selection as $key => $ids_or_names ) {
            foreach( 
$contact_lists as $list_id => $list ) {
                if ( 
in_array$list['list_id'], (array) $ids_or_namestrue )
                or 
in_array$list['name'], (array) $ids_or_namestrue ) ) {
                    
$contact_lists[$list_id]['selected'][$key] = true;
                } else {
                    unset( 
$contact_lists[$list_id]['selected'][$key] );
                }
            }
        }

        
$this->contact_lists $contact_lists;

        if ( 
$selection ) {
            
$this->save_data();
        }

        return 
$this->contact_lists;
    }

    public function 
admin_notice$message '' ) {
        switch ( 
$message ) {
            case 
'success':
                echo 
sprintf(
                    
'<div class="updated notice notice-success is-dismissible"><p>%s</p></div>',
                    
esc_html__"Connection established."'contact-form-7' ) )
                );
                break;
            case 
'failed':
                echo 
sprintf(
                    
'<div class="error notice notice-error is-dismissible"><p><strong>%1$s</strong>: %2$s</p></div>',
                    
esc_html__"ERROR"'contact-form-7' ) ),
                    
esc_html__"Failed to establish connection. Please double-check your configuration."'contact-form-7' ) )
                );
                break;
            case 
'updated':
                echo 
sprintf(
                    
'<div class="updated notice notice-success is-dismissible"><p>%s</p></div>',
                    
esc_html__"Configuration updated."'contact-form-7' ) )
                );
                break;
        }
    }

    public function 
display$action '' ) {
        echo 
'<p>' sprintf(
            
esc_html__'The Constant Contact integration module allows you to send contact data collected through your contact forms to the Constant Contact API. You can create reliable email subscription services in a few easy steps. For details, see %s.''contact-form-7' ) ),
            
wpcf7_link(
                
__(
                    
'https://contactform7.com/constant-contact-integration/',
                    
'contact-form-7'
                
),
                
__'Constant Contact Integration''contact-form-7' )
            )
        ) . 
'</p>';

        if ( 
$this->is_active() ) {
            echo 
sprintf(
                
'<p class="dashicons-before dashicons-yes">%s</p>',
                
esc_html__"This site is connected to the Constant Contact API."'contact-form-7' ) )
            );
        }

        if ( 
'setup' == $action ) {
            
$this->display_setup();
        } else {
            echo 
sprintf(
                
'<p><a href="%1$s" class="button">%2$s</a></p>',
                
esc_url$this->menu_page_url'action=setup' ) ),
                
esc_html__'Setup Integration''contact-form-7' ) )
            );
        }
    }

    private function 
display_setup() {
?>
<form method="post" action="<?php echo esc_url$this->menu_page_url'action=setup' ) ); ?>">
<?php wp_nonce_field'wpcf7-constant-contact-setup' ); ?>
<table class="form-table">
<tbody>
<tr>
    <th scope="row"><label for="client_id"><?php echo esc_html__'API Key''contact-form-7' ) ); ?></label></th>
    <td><?php
        
if ( $this->is_active() ) {
            echo 
esc_html$this->client_id );
            echo 
sprintf(
                
'<input type="hidden" value="%1$s" id="client_id" name="client_id" />',
                
esc_attr$this->client_id )
            );
        } else {
            echo 
sprintf(
                
'<input type="text" aria-required="true" value="%1$s" id="client_id" name="client_id" class="regular-text code" />',
                
esc_attr$this->client_id )
            );
        }
    
?></td>
</tr>
<tr>
    <th scope="row"><label for="client_secret"><?php echo esc_html__'App Secret''contact-form-7' ) ); ?></label></th>
    <td><?php
        
if ( $this->is_active() ) {
            echo 
esc_htmlwpcf7_mask_password$this->client_secret ) );
            echo 
sprintf(
                
'<input type="hidden" value="%1$s" id="client_secret" name="client_secret" />',
                
esc_attr$this->client_secret )
            );
        } else {
            echo 
sprintf(
                
'<input type="text" aria-required="true" value="%1$s" id="client_secret" name="client_secret" class="regular-text code" />',
                
esc_attr$this->client_secret )
            );
        }
    
?></td>
</tr>
<tr>
    <th scope="row"><label for="redirect_uri"><?php echo esc_html__'Redirect URI''contact-form-7' ) ); ?></label></th>
    <td><?php
        
echo sprintf(
            
'<input type="text" value="%1$s" id="redirect_uri" name="redirect_uri" class="large-text code" readonly="readonly" onfocus="this.select();" style="font-size: 11px;" />',
            
$this->get_redirect_uri()
        );
    
?>
    <p class="description"><?php echo esc_html__"Set this URL as the redirect URI."'contact-form-7' ) ); ?></p>
    </td>
</tr>
</tbody>
</table>
<?php
        
if ( $this->is_active() ) {
            
submit_button(
                
_x'Reset Keys''API keys''contact-form-7' ),
                
'small''reset'
            
);
        } else {
            
submit_button(
                
__'Connect to the Constant Contact API''contact-form-7' )
            );
        }
?>
</form>

<?php
        
if ( $this->is_active() and ! empty( $this->contact_lists ) ) {
?>
<form method="post" action="<?php echo esc_url$this->menu_page_url'action=edit' ) ); ?>">
<?php wp_nonce_field'wpcf7-constant-contact-edit' ); ?>
<table class="form-table">
<tbody>
<tr>
    <th scope="row"><?php echo esc_html_x'Contact Lists''Constant Contact''contact-form-7' ) ); ?></th>
    <td>
        <fieldset>
        <legend class="screen-reader-text"><span><?php echo esc_html_x"Contact Lists: Select lists to which newly added contacts are to belong."'Constant Contact''contact-form-7' ) ); ?></span></legend>
        <p class="description"><?php echo esc_html__"Select lists to which newly added contacts are to belong."'contact-form-7' ) ); ?></p>
        <ul class="checkboxes"><?php
            
foreach ( $this->contact_lists as $list ) {
                echo 
sprintf(
                    
'<li><input %1$s /> <label for="%2$s">%3$s</label></li>',
                    
wpcf7_format_atts( array(
                        
'type' => 'checkbox',
                        
'name' => 'contact_lists[]',
                        
'value' => $list['list_id'],
                        
'id' => 'contact_list_' $list['list_id'],
                        
'checked' => empty( $list['selected']['default'] )
                            ? 
''
                            
'checked',
                    ) ),
                    
esc_attr'contact_list_' $list['list_id'] ),
                    
esc_html$list['name'] )
                );
            }
        
?></ul>
        </fieldset>
    </td>
</tr>
</tbody>
</table>
<?php
            submit_button
();
        }
?>
</form>
<?php
    
}

}

class 
WPCF7_ConstantContact_ContactPostRequest {

    private 
$email_address;
    private 
$first_name;
    private 
$last_name;
    private 
$job_title;
    private 
$company_name;
    private 
$create_source;
    private 
$birthday_month;
    private 
$birthday_day;
    private 
$anniversary;
    private 
$custom_fields = array();
    private 
$phone_numbers = array();
    private 
$street_addresses = array();
    private 
$list_memberships = array();

    public function 
__construct() {
    }

    public function 
buildWPCF7_Submission $submission ) {
        
$this->set_create_source'Contact' );

        
$posted_data = (array) $submission->get_posted_data();

        if ( isset( 
$posted_data['your-first-name'] ) ) {
            
$this->set_first_name$posted_data['your-first-name'] );
        }

        if ( isset( 
$posted_data['your-last-name'] ) ) {
            
$this->set_last_name$posted_data['your-last-name'] );
        }

        if ( ! ( 
$this->first_name || $this->last_name )
        and isset( 
$posted_data['your-name'] ) ) {
            
$your_name preg_split'/[\s]+/'$posted_data['your-name'], );
            
$this->set_first_namearray_shift$your_name ) );
            
$this->set_last_namearray_shift$your_name ) );
        }

        if ( isset( 
$posted_data['your-email'] ) ) {
            
$this->set_email_address$posted_data['your-email'], 'implicit' );
        }

        if ( isset( 
$posted_data['your-job-title'] ) ) {
            
$this->set_job_title$posted_data['your-job-title'] );
        }

        if ( isset( 
$posted_data['your-company-name'] ) ) {
            
$this->set_company_name$posted_data['your-company-name'] );
        }

        if ( isset( 
$posted_data['your-birthday-month'] )
        and isset( 
$posted_data['your-birthday-day'] ) ) {
            
$this->set_birthday(
                
$posted_data['your-birthday-month'],
                
$posted_data['your-birthday-day']
            );
        } elseif ( isset( 
$posted_data['your-birthday'] ) ) {
            
$date trim$posted_data['your-birthday'] );

            if ( 
preg_match'/^(\d{4})-(\d{2})-(\d{2})$/'$date$matches ) ) {
                
$this->set_birthday$matches[2], $matches[3] );
            }
        }

        if ( isset( 
$posted_data['your-anniversary'] ) ) {
            
$this->set_anniversary$posted_data['your-anniversary'] );
        }

        if ( isset( 
$posted_data['your-phone-number'] ) ) {
            
$this->add_phone_number$posted_data['your-phone-number'] );
        }

        
$this->add_street_address(
            isset( 
$posted_data['your-address-street'] )
                ? 
$posted_data['your-address-street'] : '',
            isset( 
$posted_data['your-address-city'] )
                ? 
$posted_data['your-address-city'] : '',
            isset( 
$posted_data['your-address-state'] )
                ? 
$posted_data['your-address-state'] : '',
            isset( 
$posted_data['your-address-postal-code'] )
                ? 
$posted_data['your-address-postal-code'] : '',
            isset( 
$posted_data['your-address-country'] )
                ? 
$posted_data['your-address-country'] : ''
        
);

        
$service_option = (array) WPCF7::get_option'constant_contact' );

        
$contact_lists = isset( $service_option['contact_lists'] )
            ? 
$service_option['contact_lists'] : array();

        
$contact_form $submission->get_contact_form();

        if ( 
$contact_form->additional_setting'constant_contact' ) ) {
            
$key sprintf'wpcf7_contact_form:%d'$contact_form->id() );
        } else {
            
$key 'default';
        }

        foreach ( (array) 
$contact_lists as $list ) {
            if ( ! empty( 
$list['selected'][$key] ) ) {
                
$this->add_list_membership$list['list_id'] );
            }
        }
    }

    public function 
is_valid() {
        return 
$this->create_source
            
&& ( $this->email_address || $this->first_name || $this->last_name );
    }

    public function 
to_array() {
        
$output = array(
            
'email_address' => $this->email_address,
            
'first_name' => $this->first_name,
            
'last_name' => $this->last_name,
            
'job_title' => $this->job_title,
            
'company_name' => $this->company_name,
            
'create_source' => $this->create_source,
            
'birthday_month' => $this->birthday_month,
            
'birthday_day' => $this->birthday_day,
            
'anniversary' => $this->anniversary,
            
'custom_fields' => $this->custom_fields,
            
'phone_numbers' => $this->phone_numbers,
            
'street_addresses' => $this->street_addresses,
            
'list_memberships' => $this->list_memberships,
        );

        return 
array_filter$output );
    }

    public function 
get_email_address() {
        if ( isset( 
$this->email_address['address'] ) ) {
            return 
$this->email_address['address'];
        }

        return 
'';
    }

    public function 
set_email_address$address$permission_to_send '' ) {
        if ( ! 
wpcf7_is_email$address )
        or 
80 $this->strlen$address ) ) {
            return 
false;
        }

        
$types_of_permission = array(
            
'implicit''explicit''deprecate''pending',
            
'unsubscribe''temp_hold''not_set',
        );

        if ( ! 
in_array$permission_to_send$types_of_permission ) ) {
            
$permission_to_send 'implicit';
        }

        return 
$this->email_address = array(
            
'address' => $address,
            
'permission_to_send' => $permission_to_send,
        );
    }

    public function 
set_first_name$first_name ) {
        
$first_name trim$first_name );

        if ( empty( 
$first_name )
        or 
50 $this->strlen$first_name ) ) {
            return 
false;
        }

        return 
$this->first_name $first_name;
    }

    public function 
set_last_name$last_name ) {
        
$last_name trim$last_name );

        if ( empty( 
$last_name )
        or 
50 $this->strlen$last_name ) ) {
            return 
false;
        }

        return 
$this->last_name $last_name;
    }

    public function 
set_job_title$job_title ) {
        
$job_title trim$job_title );

        if ( empty( 
$job_title )
        or 
50 $this->strlen$job_title ) ) {
            return 
false;
        }

        return 
$this->job_title $job_title;
    }

    public function 
set_company_name$company_name ) {
        
$company_name trim$company_name );

        if ( empty( 
$company_name )
        or 
50 $this->strlen$company_name ) ) {
            return 
false;
        }

        return 
$this->company_name $company_name;
    }

    public function 
set_create_source$create_source ) {
        if ( ! 
in_array$create_source, array( 'Contact''Account' ) ) ) {
            return 
false;
        }

        return 
$this->create_source $create_source;
    }

    public function 
set_birthday$month$day ) {
        
$month = (int) $month;
        
$day = (int) $day;

        if ( 
$month || 12 $month
        
or $day || 31 $day ) {
            return 
false;
        }

        
$this->birthday_month $month;
        
$this->birthday_day $day;

        return array( 
$this->birthday_month$this->birthday_day );
    }

    public function 
set_anniversary$anniversary ) {
        
$pattern sprintf(
            
'#^(%s)$#',
            
implode'|', array(
                
'\d{1,2}/\d{1,2}/\d{4}',
                
'\d{4}/\d{1,2}/\d{1,2}',
                
'\d{4}-\d{1,2}-\d{1,2}',
                
'\d{1,2}-\d{1,2}-\d{4}',
            ) )
        );

        if ( ! 
preg_match$pattern$anniversary ) ) {
            return 
false;
        }

        return 
$this->anniversary $anniversary;
    }

    public function 
add_custom_field$custom_field_id$value ) {
        
$uuid_pattern '/^[0-9a-f-]+$/i';

        
$value trim$value );

        if ( 
25 <= count$this->custom_fields )
        or ! 
preg_match$uuid_pattern$custom_field_id )
        or 
255 $this->strlen$value ) ) {
            return 
false;
        }

        return 
$this->custom_fields[] = array(
            
'custom_field_id' => $custom_field_id,
            
'value' => $value,
        );
    }

    public function 
add_phone_number$phone_number$kind 'home' ) {
        
$phone_number trim$phone_number );

        if ( 
<= count$this->phone_numbers )
        or ! 
wpcf7_is_tel$phone_number )
        or 
25 $this->strlen$phone_number )
        or ! 
in_array$kind, array( 'home''work''other' ) ) ) {
            return 
false;
        }

        return 
$this->phone_numbers[] = array(
            
'phone_number' => $phone_number,
            
'kind' => $kind,
        );
    }

    public function 
add_street_address$street$city$state$postal_code$country$kind 'home' ) {
        
$street trim$street );
        
$city trim$city );
        
$state trim$state );
        
$postal_code trim$postal_code );
        
$country trim$country );

        if ( ! ( 
$street || $city || $state || $postal_code || $country )
        or 
<= count$this->street_addresses )
        or ! 
in_array$kind, array( 'home''work''other' ) )
        or 
255 $this->strlen$street )
        or 
50 $this->strlen$city )
        or 
50 $this->strlen$state )
        or 
50 $this->strlen$postal_code )
        or 
50 $this->strlen$country ) ) {
            return 
false;
        }

        return 
$this->street_addresses[] = array(
            
'kind' => $kind,
            
'street' => $street,
            
'city' => $city,
            
'state' => $state,
            
'postal_code' => $postal_code,
            
'country' => $country,
        );
    }

    public function 
add_list_membership$list_id ) {
        
$uuid_pattern '/^[0-9a-f-]+$/i';

        if ( 
50 <= count$this->list_memberships )
        or ! 
preg_match$uuid_pattern$list_id ) ) {
            return 
false;
        }

        return 
$this->list_memberships[] = $list_id;
    }

    protected function 
strlen$string ) {
        return 
wpcf7_count_code_unitsstripslashes$string ) );
    }

}