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
|
<?php
/** * Configuration validator. * * @link https://contactform7.com/configuration-errors/ */ class WPCF7_ConfigValidator {
/** * The plugin version in which important updates happened last time. */ const last_important_update = '5.6.1';
const error = 100; const error_maybe_empty = 101; const error_invalid_mailbox_syntax = 102; const error_email_not_in_site_domain = 103; const error_html_in_message = 104; const error_multiple_controls_in_label = 105; const error_file_not_found = 106; const error_unavailable_names = 107; const error_invalid_mail_header = 108; const error_deprecated_settings = 109; const error_file_not_in_content_dir = 110; const error_unavailable_html_elements = 111; const error_attachments_overweight = 112; const error_dots_in_names = 113; const error_colons_in_names = 114; const error_upload_filesize_overlimit = 115;
/** * Returns a URL linking to the documentation page for the error type. */ public static function get_doc_link( $error_code = '' ) { $url = __( 'https://contactform7.com/configuration-errors/', 'contact-form-7' );
if ( '' !== $error_code ) { $error_code = strtr( $error_code, '_', '-' );
$url = sprintf( '%s/%s', untrailingslashit( $url ), $error_code ); }
return esc_url( $url ); }
private $contact_form; private $errors = array();
public function __construct( WPCF7_ContactForm $contact_form ) { $this->contact_form = $contact_form; }
/** * Returns the contact form object that is tied to this validator. */ public function contact_form() { return $this->contact_form; }
/** * Returns true if no error has been detected. */ public function is_valid() { return ! $this->count_errors(); }
/** * Counts detected errors. */ public function count_errors( $args = '' ) { $args = wp_parse_args( $args, array( 'section' => '', 'code' => '', ) );
$count = 0;
foreach ( $this->errors as $key => $errors ) { if ( preg_match( '/^mail_[0-9]+\.(.*)$/', $key, $matches ) ) { $key = sprintf( 'mail.%s', $matches[1] ); }
if ( $args['section'] and $key != $args['section'] and preg_replace( '/\..*$/', '', $key, 1 ) != $args['section'] ) { continue; }
foreach ( $errors as $error ) { if ( empty( $error ) ) { continue; }
if ( $args['code'] and $error['code'] != $args['code'] ) { continue; }
$count += 1; } }
return $count; }
/** * Collects messages for detected errors. */ public function collect_error_messages() { $error_messages = array();
foreach ( $this->errors as $section => $errors ) { $error_messages[$section] = array();
foreach ( $errors as $error ) { if ( empty( $error['args']['message'] ) ) { $message = $this->get_default_message( $error['code'] ); } elseif ( empty( $error['args']['params'] ) ) { $message = $error['args']['message']; } else { $message = $this->build_message( $error['args']['message'], $error['args']['params'] ); }
$link = '';
if ( ! empty( $error['args']['link'] ) ) { $link = $error['args']['link']; }
$error_messages[$section][] = array( 'message' => $message, 'link' => esc_url( $link ), ); } }
return $error_messages; }
/** * Builds an error message by replacing placeholders. */ public function build_message( $message, $params = '' ) { $params = wp_parse_args( $params, array() );
foreach ( $params as $key => $val ) { if ( ! preg_match( '/^[0-9A-Za-z_]+$/', $key ) ) { // invalid key continue; }
$placeholder = '%' . $key . '%';
if ( false !== stripos( $message, $placeholder ) ) { $message = str_ireplace( $placeholder, $val, $message ); } }
return $message; }
/** * Returns a default message that is used when the message for the error * is not specified. */ public function get_default_message( $code ) { switch ( $code ) { case self::error_maybe_empty: return __( "There is a possible empty field.", 'contact-form-7' ); case self::error_invalid_mailbox_syntax: return __( "Invalid mailbox syntax is used.", 'contact-form-7' ); case self::error_email_not_in_site_domain: return __( "Sender email address does not belong to the site domain.", 'contact-form-7' ); case self::error_html_in_message: return __( "HTML tags are used in a message.", 'contact-form-7' ); case self::error_multiple_controls_in_label: return __( "Multiple form controls are in a single label element.", 'contact-form-7' ); case self::error_invalid_mail_header: return __( "There are invalid mail header fields.", 'contact-form-7' ); case self::error_deprecated_settings: return __( "Deprecated settings are used.", 'contact-form-7' ); default: return ''; } }
/** * Adds a validation error. * * @param string $section The section where the error detected. * @param int $code The unique code of the error. * This must be one of the class constants. * @param string|array $args Optional options for the error. */ public function add_error( $section, $code, $args = '' ) { $args = wp_parse_args( $args, array( 'message' => '', 'params' => array(), ) );
if ( ! isset( $this->errors[$section] ) ) { $this->errors[$section] = array(); }
$this->errors[$section][] = array( 'code' => $code, 'args' => $args );
return true; }
/** * Removes an error. */ public function remove_error( $section, $code ) { if ( empty( $this->errors[$section] ) ) { return; }
foreach ( (array) $this->errors[$section] as $key => $error ) { if ( isset( $error['code'] ) and $error['code'] == $code ) { unset( $this->errors[$section][$key] ); } }
if ( empty( $this->errors[$section] ) ) { unset( $this->errors[$section] ); } }
/** * The main validation runner. * * @return bool True if there is no error detected. */ public function validate() { $this->errors = array();
$this->validate_form(); $this->validate_mail( 'mail' ); $this->validate_mail( 'mail_2' ); $this->validate_messages(); $this->validate_additional_settings();
do_action( 'wpcf7_config_validator_validate', $this );
return $this->is_valid(); }
/** * Saves detected errors as a post meta data. */ public function save() { if ( $this->contact_form->initial() ) { return; }
delete_post_meta( $this->contact_form->id(), '_config_errors' );
if ( $this->errors ) { update_post_meta( $this->contact_form->id(), '_config_errors', $this->errors ); } }
/** * Restore errors from the database. */ public function restore() { $config_errors = get_post_meta( $this->contact_form->id(), '_config_errors', true );
foreach ( (array) $config_errors as $section => $errors ) { if ( empty( $errors ) ) { continue; }
if ( ! is_array( $errors ) ) { // for back-compat $code = $errors; $this->add_error( $section, $code ); } else { foreach ( (array) $errors as $error ) { if ( ! empty( $error['code'] ) ) { $code = $error['code']; $args = isset( $error['args'] ) ? $error['args'] : ''; $this->add_error( $section, $code, $args ); } } } } }
/** * Callback function for WPCF7_MailTaggedText. Replaces mail-tags with * the most conservative inputs. */ public function replace_mail_tags_with_minimum_input( $matches ) { // allow [[foo]] syntax for escaping a tag if ( $matches[1] == '[' && $matches[4] == ']' ) { return substr( $matches[0], 1, -1 ); }
$tag = $matches[0]; $tagname = $matches[2]; $values = $matches[3];
$mail_tag = new WPCF7_MailTag( $tag, $tagname, $values ); $field_name = $mail_tag->field_name();
$example_email = '[email protected]'; $example_text = 'example'; $example_blank = '';
$form_tags = $this->contact_form->scan_form_tags( array( 'name' => $field_name ) );
if ( $form_tags ) { $form_tag = new WPCF7_FormTag( $form_tags[0] );
$is_required = ( $form_tag->is_required() || 'radio' == $form_tag->type );
if ( ! $is_required ) { return $example_blank; }
if ( wpcf7_form_tag_supports( $form_tag->type, 'selectable-values' ) ) { if ( $form_tag->pipes instanceof WPCF7_Pipes ) { if ( $mail_tag->get_option( 'do_not_heat' ) ) { $before_pipes = $form_tag->pipes->collect_befores(); $last_item = array_pop( $before_pipes ); } else { $after_pipes = $form_tag->pipes->collect_afters(); $last_item = array_pop( $after_pipes ); } } else { $last_item = array_pop( $form_tag->values ); }
if ( $last_item and wpcf7_is_mailbox_list( $last_item ) ) { return $example_email; } else { return $example_text; } }
if ( 'email' == $form_tag->basetype ) { return $example_email; } else { return $example_text; }
} else { // maybe special mail tag // for back-compat $field_name = preg_replace( '/^wpcf7\./', '_', $field_name );
if ( '_site_admin_email' == $field_name ) { return get_bloginfo( 'admin_email', 'raw' );
} elseif ( '_user_agent' == $field_name ) { return $example_text;
} elseif ( '_user_email' == $field_name ) { return $this->contact_form->is_true( 'subscribers_only' ) ? $example_email : $example_blank;
} elseif ( '_user_' == substr( $field_name, 0, 6 ) ) { return $this->contact_form->is_true( 'subscribers_only' ) ? $example_text : $example_blank;
} elseif ( '_' == substr( $field_name, 0, 1 ) ) { return '_email' == substr( $field_name, -6 ) ? $example_email : $example_text;
} }
return $tag; }
/** * Runs error detection for the form section. */ public function validate_form() { $section = 'form.body'; $form = $this->contact_form->prop( 'form' ); $this->detect_multiple_controls_in_label( $section, $form ); $this->detect_unavailable_names( $section, $form ); $this->detect_unavailable_html_elements( $section, $form ); $this->detect_dots_in_names( $section, $form ); $this->detect_colons_in_names( $section, $form ); $this->detect_upload_filesize_overlimit( $section, $form ); }
/** * Detects errors of multiple form controls in a single label. * * @link https://contactform7.com/configuration-errors/multiple-controls-in-label/ */ public function detect_multiple_controls_in_label( $section, $content ) { $pattern = '%<label(?:[ \t\n]+.*?)?>(.+?)</label>%s';
if ( preg_match_all( $pattern, $content, $matches ) ) { $form_tags_manager = WPCF7_FormTagsManager::get_instance();
foreach ( $matches[1] as $insidelabel ) { $tags = $form_tags_manager->scan( $insidelabel ); $fields_count = 0;
foreach ( $tags as $tag ) { $is_multiple_controls_container = wpcf7_form_tag_supports( $tag->type, 'multiple-controls-container' );
$is_zero_controls_container = wpcf7_form_tag_supports( $tag->type, 'zero-controls-container' );
if ( $is_multiple_controls_container ) { $fields_count += count( $tag->values );
if ( $tag->has_option( 'free_text' ) ) { $fields_count += 1; } } elseif ( $is_zero_controls_container ) { $fields_count += 0; } elseif ( ! empty( $tag->name ) ) { $fields_count += 1; }
if ( 1 < $fields_count ) { return $this->add_error( $section, self::error_multiple_controls_in_label, array( 'link' => self::get_doc_link( 'multiple_controls_in_label' ), ) ); } } } }
return false; }
/** * Detects errors of unavailable form-tag names. * * @link https://contactform7.com/configuration-errors/unavailable-names/ */ public function detect_unavailable_names( $section, $content ) { $public_query_vars = array( 'm', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type', 'embed', );
$form_tags_manager = WPCF7_FormTagsManager::get_instance();
$ng_named_tags = $form_tags_manager->filter( $content, array( 'name' => $public_query_vars, ) );
$ng_names = array();
foreach ( $ng_named_tags as $tag ) { $ng_names[] = sprintf( '"%s"', $tag->name ); }
if ( $ng_names ) { $ng_names = array_unique( $ng_names );
return $this->add_error( $section, self::error_unavailable_names, array( 'message' => /* translators: %names%: a list of form control names */ __( "Unavailable names (%names%) are used for form controls.", 'contact-form-7' ), 'params' => array( 'names' => implode( ', ', $ng_names ) ), 'link' => self::get_doc_link( 'unavailable_names' ), ) ); }
return false; }
/** * Detects errors of unavailable HTML elements. * * @link https://contactform7.com/configuration-errors/unavailable-html-elements/ */ public function detect_unavailable_html_elements( $section, $content ) { $pattern = '%(?:<form[\s\t>]|</form>)%i';
if ( preg_match( $pattern, $content ) ) { return $this->add_error( $section, self::error_unavailable_html_elements, array( 'message' => __( "Unavailable HTML elements are used in the form template.", 'contact-form-7' ), 'link' => self::get_doc_link( 'unavailable_html_elements' ), ) ); }
return false; }
/** * Detects errors of dots in form-tag names. * * @link https://contactform7.com/configuration-errors/dots-in-names/ */ public function detect_dots_in_names( $section, $content ) { $form_tags_manager = WPCF7_FormTagsManager::get_instance();
$tags = $form_tags_manager->filter( $content, array( 'feature' => 'name-attr', ) );
foreach ( $tags as $tag ) { if ( false !== strpos( $tag->raw_name, '.' ) ) { return $this->add_error( $section, self::error_dots_in_names, array( 'message' => __( "Dots are used in form-tag names.", 'contact-form-7' ), 'link' => self::get_doc_link( 'dots_in_names' ), ) ); } }
return false; }
/** * Detects errors of colons in form-tag names. * * @link https://contactform7.com/configuration-errors/colons-in-names/ */ public function detect_colons_in_names( $section, $content ) { $form_tags_manager = WPCF7_FormTagsManager::get_instance();
$tags = $form_tags_manager->filter( $content, array( 'feature' => 'name-attr', ) );
foreach ( $tags as $tag ) { if ( false !== strpos( $tag->raw_name, ':' ) ) { return $this->add_error( $section, self::error_colons_in_names, array( 'message' => __( "Colons are used in form-tag names.", 'contact-form-7' ), 'link' => self::get_doc_link( 'colons_in_names' ), ) ); } }
return false; }
/** * Detects errors of uploadable file size overlimit. * * @link https://contactform7.com/configuration-errors/upload-filesize-overlimit */ public function detect_upload_filesize_overlimit( $section, $content ) { $upload_max_filesize = ini_get( 'upload_max_filesize' );
if ( ! $upload_max_filesize ) { return false; }
$upload_max_filesize = strtolower( $upload_max_filesize ); $upload_max_filesize = trim( $upload_max_filesize );
if ( ! preg_match( '/^(\d+)([kmg]?)$/', $upload_max_filesize, $matches ) ) { return false; }
if ( 'k' === $matches[2] ) { $upload_max_filesize = (int) $matches[1] * KB_IN_BYTES; } elseif ( 'm' === $matches[2] ) { $upload_max_filesize = (int) $matches[1] * MB_IN_BYTES; } elseif ( 'g' === $matches[2] ) { $upload_max_filesize = (int) $matches[1] * GB_IN_BYTES; } else { $upload_max_filesize = (int) $matches[1]; }
$form_tags_manager = WPCF7_FormTagsManager::get_instance();
$tags = $form_tags_manager->filter( $content, array( 'basetype' => 'file', ) );
foreach ( $tags as $tag ) { if ( $upload_max_filesize < $tag->get_limit_option() ) { return $this->add_error( $section, self::error_upload_filesize_overlimit, array( 'message' => __( "Uploadable file size exceeds PHP’s maximum acceptable size.", 'contact-form-7' ), 'link' => self::get_doc_link( 'upload_filesize_overlimit' ), ) ); } }
return false; }
/** * Runs error detection for the mail sections. */ public function validate_mail( $template = 'mail' ) { $components = (array) $this->contact_form->prop( $template );
if ( ! $components ) { return; }
if ( 'mail' !== $template and empty( $components['active'] ) ) { return; }
$components = wp_parse_args( $components, array( 'subject' => '', 'sender' => '', 'recipient' => '', 'additional_headers' => '', 'body' => '', 'attachments' => '', ) );
$callback = array( $this, 'replace_mail_tags_with_minimum_input' );
$subject = new WPCF7_MailTaggedText( $components['subject'], array( 'callback' => $callback ) );
$subject = $subject->replace_tags(); $subject = wpcf7_strip_newline( $subject );
$this->detect_maybe_empty( sprintf( '%s.subject', $template ), $subject );
$sender = new WPCF7_MailTaggedText( $components['sender'], array( 'callback' => $callback ) );
$sender = $sender->replace_tags(); $sender = wpcf7_strip_newline( $sender );
$invalid_mailbox = $this->detect_invalid_mailbox_syntax( sprintf( '%s.sender', $template ), $sender );
if ( ! $invalid_mailbox and ! wpcf7_is_email_in_site_domain( $sender ) ) { $this->add_error( sprintf( '%s.sender', $template ), self::error_email_not_in_site_domain, array( 'link' => self::get_doc_link( 'email_not_in_site_domain' ), ) ); }
$recipient = new WPCF7_MailTaggedText( $components['recipient'], array( 'callback' => $callback ) );
$recipient = $recipient->replace_tags(); $recipient = wpcf7_strip_newline( $recipient );
$this->detect_invalid_mailbox_syntax( sprintf( '%s.recipient', $template ), $recipient );
$additional_headers = new WPCF7_MailTaggedText( $components['additional_headers'], array( 'callback' => $callback ) );
$additional_headers = $additional_headers->replace_tags(); $additional_headers = explode( "\n", $additional_headers ); $mailbox_header_types = array( 'reply-to', 'cc', 'bcc' ); $invalid_mail_header_exists = false;
foreach ( $additional_headers as $header ) { $header = trim( $header );
if ( '' === $header ) { continue; }
if ( ! preg_match( '/^([0-9A-Za-z-]+):(.*)$/', $header, $matches ) ) { $invalid_mail_header_exists = true; } else { $header_name = $matches[1]; $header_value = trim( $matches[2] );
if ( in_array( strtolower( $header_name ), $mailbox_header_types ) and '' !== $header_value ) { $this->detect_invalid_mailbox_syntax( sprintf( '%s.additional_headers', $template ), $header_value, array( 'message' => __( "Invalid mailbox syntax is used in the %name% field.", 'contact-form-7' ), 'params' => array( 'name' => $header_name ) ) ); } } }
if ( $invalid_mail_header_exists ) { $this->add_error( sprintf( '%s.additional_headers', $template ), self::error_invalid_mail_header, array( 'link' => self::get_doc_link( 'invalid_mail_header' ), ) ); }
$body = new WPCF7_MailTaggedText( $components['body'], array( 'callback' => $callback ) );
$body = $body->replace_tags();
$this->detect_maybe_empty( sprintf( '%s.body', $template ), $body );
if ( '' !== $components['attachments'] ) { $attachables = array();
$tags = $this->contact_form->scan_form_tags( array( 'type' => array( 'file', 'file*' ) ) );
foreach ( $tags as $tag ) { $name = $tag->name;
if ( false === strpos( $components['attachments'], "[{$name}]" ) ) { continue; }
$limit = (int) $tag->get_limit_option();
if ( empty( $attachables[$name] ) or $attachables[$name] < $limit ) { $attachables[$name] = $limit; } }
$total_size = array_sum( $attachables );
$has_file_not_found = false; $has_file_not_in_content_dir = false;
foreach ( explode( "\n", $components['attachments'] ) as $line ) { $line = trim( $line );
if ( '' === $line or '[' == substr( $line, 0, 1 ) ) { continue; }
$has_file_not_found = $this->detect_file_not_found( sprintf( '%s.attachments', $template ), $line );
if ( ! $has_file_not_found and ! $has_file_not_in_content_dir ) { $has_file_not_in_content_dir = $this->detect_file_not_in_content_dir( sprintf( '%s.attachments', $template ), $line ); }
if ( ! $has_file_not_found ) { $path = path_join( WP_CONTENT_DIR, $line ); $total_size += (int) @filesize( $path ); } }
$max = 25 * MB_IN_BYTES; // 25 MB
if ( $max < $total_size ) { $this->add_error( sprintf( '%s.attachments', $template ), self::error_attachments_overweight, array( 'message' => __( "The total size of attachment files is too large.", 'contact-form-7' ), 'link' => self::get_doc_link( 'attachments_overweight' ), ) ); } } }
/** * Detects errors of invalid mailbox syntax. * * @link https://contactform7.com/configuration-errors/invalid-mailbox-syntax/ */ public function detect_invalid_mailbox_syntax( $section, $content, $args = '' ) { $args = wp_parse_args( $args, array( 'link' => self::get_doc_link( 'invalid_mailbox_syntax' ), 'message' => '', 'params' => array(), ) );
if ( ! wpcf7_is_mailbox_list( $content ) ) { return $this->add_error( $section, self::error_invalid_mailbox_syntax, $args ); }
return false; }
/** * Detects errors of empty message fields. * * @link https://contactform7.com/configuration-errors/maybe-empty/ */ public function detect_maybe_empty( $section, $content ) { if ( '' === $content ) { return $this->add_error( $section, self::error_maybe_empty, array( 'link' => self::get_doc_link( 'maybe_empty' ), ) ); }
return false; }
/** * Detects errors of nonexistent attachment files. * * @link https://contactform7.com/configuration-errors/file-not-found/ */ public function detect_file_not_found( $section, $content ) { $path = path_join( WP_CONTENT_DIR, $content );
if ( ! is_readable( $path ) or ! is_file( $path ) ) { return $this->add_error( $section, self::error_file_not_found, array( 'message' => __( "Attachment file does not exist at %path%.", 'contact-form-7' ), 'params' => array( 'path' => $content ), 'link' => self::get_doc_link( 'file_not_found' ), ) ); }
return false; }
/** * Detects errors of attachment files out of the content directory. * * @link https://contactform7.com/configuration-errors/file-not-in-content-dir/ */ public function detect_file_not_in_content_dir( $section, $content ) { $path = path_join( WP_CONTENT_DIR, $content );
if ( ! wpcf7_is_file_path_in_content_dir( $path ) ) { return $this->add_error( $section, self::error_file_not_in_content_dir, array( 'message' => __( "It is not allowed to use files outside the wp-content directory.", 'contact-form-7' ), 'link' => self::get_doc_link( 'file_not_in_content_dir' ), ) ); }
return false; }
/** * Runs error detection for the messages section. */ public function validate_messages() { $messages = (array) $this->contact_form->prop( 'messages' );
if ( ! $messages ) { return; }
if ( isset( $messages['captcha_not_match'] ) and ! wpcf7_use_really_simple_captcha() ) { unset( $messages['captcha_not_match'] ); }
foreach ( $messages as $key => $message ) { $section = sprintf( 'messages.%s', $key ); $this->detect_html_in_message( $section, $message ); } }
/** * Detects errors of HTML uses in a message. * * @link https://contactform7.com/configuration-errors/html-in-message/ */ public function detect_html_in_message( $section, $content ) { $stripped = wp_strip_all_tags( $content );
if ( $stripped != $content ) { return $this->add_error( $section, self::error_html_in_message, array( 'link' => self::get_doc_link( 'html_in_message' ), ) ); }
return false; }
/** * Runs error detection for the additional settings section. */ public function validate_additional_settings() { $deprecated_settings_used = $this->contact_form->additional_setting( 'on_sent_ok' ) || $this->contact_form->additional_setting( 'on_submit' );
if ( $deprecated_settings_used ) { return $this->add_error( 'additional_settings.body', self::error_deprecated_settings, array( 'link' => self::get_doc_link( 'deprecated_settings' ), ) ); } }
}
|