C:\xampp\htdocs\landing\wp-content\plugins\contact-form-7\includes\submission.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
<?php

class WPCF7_Submission {

    private static 
$instance;

    private 
$contact_form;
    private 
$status 'init';
    private 
$posted_data = array();
    private 
$posted_data_hash null;
    private 
$skip_spam_check false;
    private 
$uploaded_files = array();
    private 
$skip_mail false;
    private 
$response '';
    private 
$invalid_fields = array();
    private 
$meta = array();
    private 
$consent = array();
    private 
$spam_log = array();

    public static function 
get_instance$contact_form null$args '' ) {
        if ( 
$contact_form instanceof WPCF7_ContactForm ) {
            if ( empty( 
self::$instance ) ) {
                
self::$instance = new self$contact_form$args );
                
self::$instance->proceed();
                return 
self::$instance;
            } else {
                return 
null;
            }
        } else {
            if ( empty( 
self::$instance ) ) {
                return 
null;
            } else {
                return 
self::$instance;
            }
        }
    }

    public static function 
is_restful() {
        return 
defined'REST_REQUEST' ) && REST_REQUEST;
    }

    private function 
__constructWPCF7_ContactForm $contact_form$args '' ) {
        
$args wp_parse_args$args, array(
            
'skip_mail' => false,
        ) );

        
$this->contact_form $contact_form;
        
$this->skip_mail = (bool) $args['skip_mail'];
    }

    private function 
proceed() {
        
$contact_form $this->contact_form;

        
switch_to_locale$contact_form->locale() );

        
$this->setup_meta_data();
        
$this->setup_posted_data();

        if ( 
$this->is'init' ) and ! $this->validate() ) {
            
$this->set_status'validation_failed' );
            
$this->set_response$contact_form->message'validation_error' ) );
        }

        if ( 
$this->is'init' ) and ! $this->accepted() ) {
            
$this->set_status'acceptance_missing' );
            
$this->set_response$contact_form->message'accept_terms' ) );
        }

        if ( 
$this->is'init' ) and $this->spam() ) {
            
$this->set_status'spam' );
            
$this->set_response$contact_form->message'spam' ) );
        }

        if ( 
$this->is'init' ) and ! $this->unship_uploaded_files() ) {
            
$this->set_status'validation_failed' );
            
$this->set_response$contact_form->message'validation_error' ) );
        }

        if ( 
$this->is'init' ) ) {
            
$abort = ! $this->before_send_mail();

            if ( 
$abort ) {
                if ( 
$this->is'init' ) ) {
                    
$this->set_status'aborted' );
                }

                if ( 
'' === $this->get_response() ) {
                    
$this->set_response$contact_form->filter_message(
                        
__"Sending mail has been aborted."'contact-form-7' ) )
                    );
                }
            } elseif ( 
$this->mail() ) {
                
$this->set_status'mail_sent' );
                
$this->set_response$contact_form->message'mail_sent_ok' ) );

                
do_action'wpcf7_mail_sent'$contact_form );
            } else {
                
$this->set_status'mail_failed' );
                
$this->set_response$contact_form->message'mail_sent_ng' ) );

                
do_action'wpcf7_mail_failed'$contact_form );
            }
        }

        
restore_previous_locale();

        
$this->remove_uploaded_files();
    }

    public function 
get_status() {
        return 
$this->status;
    }

    public function 
set_status$status ) {
        if ( 
preg_match'/^[a-z][0-9a-z_]+$/'$status ) ) {
            
$this->status $status;
            return 
true;
        }

        return 
false;
    }

    public function 
is$status ) {
        return 
$this->status == $status;
    }

    public function 
get_response() {
        return 
$this->response;
    }

    public function 
set_response$response ) {
        
$this->response $response;
        return 
true;
    }

    public function 
get_contact_form() {
        return 
$this->contact_form;
    }

    public function 
get_invalid_field$name ) {
        if ( isset( 
$this->invalid_fields[$name] ) ) {
            return 
$this->invalid_fields[$name];
        } else {
            return 
false;
        }
    }

    public function 
get_invalid_fields() {
        return 
$this->invalid_fields;
    }

    public function 
get_meta$name ) {
        if ( isset( 
$this->meta[$name] ) ) {
            return 
$this->meta[$name];
        }
    }

    private function 
setup_meta_data() {
        
$timestamp time();

        
$remote_ip $this->get_remote_ip_addr();

        
$remote_port = isset( $_SERVER['REMOTE_PORT'] )
            ? (int) 
$_SERVER['REMOTE_PORT'] : '';

        
$user_agent = isset( $_SERVER['HTTP_USER_AGENT'] )
            ? 
substr$_SERVER['HTTP_USER_AGENT'], 0254 ) : '';

        
$url $this->get_request_url();

        
$unit_tag = isset( $_POST['_wpcf7_unit_tag'] )
            ? 
$_POST['_wpcf7_unit_tag'] : '';

        
$container_post_id = isset( $_POST['_wpcf7_container_post'] )
            ? (int) 
$_POST['_wpcf7_container_post'] : 0;

        
$current_user_id get_current_user_id();

        
$do_not_store $this->contact_form->is_true'do_not_store' );

        
$this->meta = array(
            
'timestamp' => $timestamp,
            
'remote_ip' => $remote_ip,
            
'remote_port' => $remote_port,
            
'user_agent' => $user_agent,
            
'url' => $url,
            
'unit_tag' => $unit_tag,
            
'container_post_id' => $container_post_id,
            
'current_user_id' => $current_user_id,
            
'do_not_store' => $do_not_store,
        );

        return 
$this->meta;
    }

    public function 
get_posted_data$name '' ) {
        if ( ! empty( 
$name ) ) {
            if ( isset( 
$this->posted_data[$name] ) ) {
                return 
$this->posted_data[$name];
            } else {
                return 
null;
            }
        }

        return 
$this->posted_data;
    }

    private function 
setup_posted_data() {
        
$posted_data array_filter( (array) $_POST, function( $key ) {
            return 
'_' !== substr$key0);
        }, 
ARRAY_FILTER_USE_KEY );

        
$posted_data wp_unslash$posted_data );
        
$posted_data $this->sanitize_posted_data$posted_data );

        
$tags $this->contact_form->scan_form_tags();

        foreach ( (array) 
$tags as $tag ) {
            if ( empty( 
$tag->name ) ) {
                continue;
            }

            
$type $tag->type;
            
$name $tag->name;
            
$pipes $tag->pipes;

            if ( 
wpcf7_form_tag_supports$type'do-not-store' ) ) {
                unset( 
$posted_data[$name] );
                continue;
            }

            
$value_orig $value '';

            if ( isset( 
$posted_data[$name] ) ) {
                
$value_orig $value $posted_data[$name];
            }

            if ( 
WPCF7_USE_PIPE
            
and $pipes instanceof WPCF7_Pipes
            
and ! $pipes->zero() ) {
                if ( 
is_array$value_orig ) ) {
                    
$value = array();

                    foreach ( 
$value_orig as $v ) {
                        
$value[] = $pipes->do_pipe$v );
                    }
                } else {
                    
$value $pipes->do_pipe$value_orig );
                }
            }

            if ( 
wpcf7_form_tag_supports$type'selectable-values' ) ) {
                
$value = (array) $value;

                if ( 
$tag->has_option'free_text' )
                and isset( 
$posted_data[$name '_free_text'] ) ) {
                    
$last_val array_pop$value );

                    list( 
$tied_item ) = array_slice(
                        
WPCF7_USE_PIPE $tag->pipes->collect_afters() : $tag->values,
                        -
11
                    
);

                    
$tied_item html_entity_decode$tied_itemENT_QUOTES'UTF-8' );

                    if ( 
$last_val === $tied_item ) {
                        
$value[] = sprintf'%s %s',
                            
$last_val,
                            
$posted_data[$name '_free_text']
                        );
                    } else {
                        
$value[] = $last_val;
                    }

                    unset( 
$posted_data[$name '_free_text'] );
                }
            }

            
$value apply_filters"wpcf7_posted_data_{$type}"$value,
                
$value_orig$tag );

            
$posted_data[$name] = $value;

            if ( 
$tag->has_option'consent_for:storage' )
            and empty( 
$posted_data[$name] ) ) {
                
$this->meta['do_not_store'] = true;
            }
        }

        
$this->posted_data apply_filters'wpcf7_posted_data'$posted_data );

        
$this->posted_data_hash wp_hash(
            
wpcf7_flat_joinarray_merge(
                array(
                    
$this->get_meta'remote_ip' ),
                    
$this->get_meta'remote_port' ),
                    
$this->get_meta'unit_tag' ),
                ),
                
$this->posted_data
            
) ),
            
'wpcf7_submission'
        
);

        return 
$this->posted_data;
    }

    private function 
sanitize_posted_data$value ) {
        if ( 
is_array$value ) ) {
            
$value array_map( array( $this'sanitize_posted_data' ), $value );
        } elseif ( 
is_string$value ) ) {
            
$value wp_check_invalid_utf8$value );
            
$value wp_kses_no_null$value );
        }

        return 
$value;
    }

    public function 
get_posted_data_hash() {
        return 
$this->posted_data_hash;
    }

    private function 
get_remote_ip_addr() {
        
$ip_addr '';

        if ( isset( 
$_SERVER['REMOTE_ADDR'] )
        and 
WP_Http::is_ip_address$_SERVER['REMOTE_ADDR'] ) ) {
            
$ip_addr $_SERVER['REMOTE_ADDR'];
        }

        return 
apply_filters'wpcf7_remote_ip_addr'$ip_addr );
    }

    private function 
get_request_url() {
        
$home_url untrailingslashithome_url() );

        if ( 
self::is_restful() ) {
            
$referer = isset( $_SERVER['HTTP_REFERER'] )
                ? 
trim$_SERVER['HTTP_REFERER'] ) : '';

            if ( 
$referer
            
and === strpos$referer$home_url ) ) {
                return 
esc_url_raw$referer );
            }
        }

        
$url preg_replace'%(?<!:|/)/.*$%'''$home_url )
            . 
wpcf7_get_request_uri();

        return 
$url;
    }

    private function 
validate() {
        if ( 
$this->invalid_fields ) {
            return 
false;
        }

        
$result = new WPCF7_Validation();

        
$tags $this->contact_form->scan_form_tags( array(
          
'feature' => '! file-uploading',
        ) );

        foreach ( 
$tags as $tag ) {
            
$type $tag->type;
            
$result apply_filters"wpcf7_validate_{$type}"$result$tag );
        }

        
$result apply_filters'wpcf7_validate'$result$tags );

        
$this->invalid_fields $result->get_invalid_fields();

        return 
$result->is_valid();
    }

    private function 
accepted() {
        return 
apply_filters'wpcf7_acceptance'true$this );
    }

    public function 
add_consent$name$conditions ) {
        
$this->consent[$name] = $conditions;
        return 
true;
    }

    public function 
collect_consent() {
        return (array) 
$this->consent;
    }

    private function 
spam() {
        
$spam false;

        
$skip_spam_check apply_filters'wpcf7_skip_spam_check',
            
$this->skip_spam_check,
            
$this
        
);

        if ( 
$skip_spam_check ) {
            return 
$spam;
        }

        if ( 
$this->contact_form->is_true'subscribers_only' )
        and 
current_user_can'wpcf7_submit'$this->contact_form->id() ) ) {
            return 
$spam;
        }

        
$user_agent = (string) $this->get_meta'user_agent' );

        if ( 
strlen$user_agent ) < ) {
            
$spam true;

            
$this->add_spam_log( array(
                
'agent' => 'wpcf7',
                
'reason' => __"User-Agent string is unnaturally short."'contact-form-7' ),
            ) );
        }

        if ( ! 
$this->verify_nonce() ) {
            
$spam true;

            
$this->add_spam_log( array(
                
'agent' => 'wpcf7',
                
'reason' => __"Submitted nonce is invalid."'contact-form-7' ),
            ) );
        }

        return 
apply_filters'wpcf7_spam'$spam$this );
    }

    public function 
add_spam_log$args '' ) {
        
$args wp_parse_args$args, array(
            
'agent' => '',
            
'reason' => '',
        ) );

        
$this->spam_log[] = $args;
    }

    public function 
get_spam_log() {
        return 
$this->spam_log;
    }

    private function 
verify_nonce() {
        if ( ! 
$this->contact_form->nonce_is_active() ) {
            return 
true;
        }

        return 
wpcf7_verify_nonce$_POST['_wpnonce'] );
    }

    
/* Mail */

    
private function before_send_mail() {
        
$abort false;

        
do_action_ref_array'wpcf7_before_send_mail', array(
            
$this->contact_form,
            &
$abort,
            
$this,
        ) );

        return ! 
$abort;
    }

    private function 
mail() {
        
$contact_form $this->contact_form;

        
$skip_mail apply_filters'wpcf7_skip_mail',
            
$this->skip_mail$contact_form
        
);

        if ( 
$skip_mail ) {
            return 
true;
        }

        
$result WPCF7_Mail::send$contact_form->prop'mail' ), 'mail' );

        if ( 
$result ) {
            
$additional_mail = array();

            if ( 
$mail_2 $contact_form->prop'mail_2' )
            and 
$mail_2['active'] ) {
                
$additional_mail['mail_2'] = $mail_2;
            }

            
$additional_mail apply_filters'wpcf7_additional_mail',
                
$additional_mail$contact_form
            
);

            foreach ( 
$additional_mail as $name => $template ) {
                
WPCF7_Mail::send$template$name );
            }

            return 
true;
        }

        return 
false;
    }

    public function 
uploaded_files() {
        return 
$this->uploaded_files;
    }

    private function 
add_uploaded_file$name$file_path ) {
        if ( ! 
wpcf7_is_name$name ) ) {
            return 
false;
        }

        
$paths = (array) $file_path;
        
$uploaded_files = array();
        
$hash_strings = array();

        foreach ( 
$paths as $path ) {
            if ( @
is_file$path ) and @is_readable$path ) ) {
                
$uploaded_files[] = $path;
                
$hash_strings[] = md5_file$path );
            }
        }

        
$this->uploaded_files[$name] = $uploaded_files;

        if ( empty( 
$this->posted_data[$name] ) ) {
            
$this->posted_data[$name] = implode' '$hash_strings );
        }
    }

    private function 
remove_uploaded_files() {
        foreach ( (array) 
$this->uploaded_files as $file_path ) {
            
$paths = (array) $file_path;

            foreach ( 
$paths as $path ) {
                
wpcf7_rmdir_p$path );

                if ( 
$dir dirname$path )
                and 
false !== ( $files scandir$dir ) )
                and ! 
array_diff$files, array( '.''..' ) ) ) {
                    
// remove parent dir if it's empty.
                    
rmdir$dir );
                }
            }
        }
    }

    private function 
unship_uploaded_files() {
        
$result = new WPCF7_Validation();

        
$tags $this->contact_form->scan_form_tags( array(
            
'feature' => 'file-uploading',
        ) );

        foreach ( 
$tags as $tag ) {
            if ( empty( 
$_FILES[$tag->name] ) ) {
                continue;
            }

            
$file $_FILES[$tag->name];

            
$args = array(
                
'tag' => $tag,
                
'name' => $tag->name,
                
'required' => $tag->is_required(),
                
'filetypes' => $tag->get_option'filetypes' ),
                
'limit' => $tag->get_limit_option(),
            );

            
$new_files wpcf7_unship_uploaded_file$file$args );

            if ( ! 
is_wp_error$new_files ) ) {
                
$this->add_uploaded_file$tag->name$new_files );
            }

            
$result apply_filters(
                
"wpcf7_validate_{$tag->type}",
                
$result$tag,
                array(
                    
'uploaded_files' => $new_files,
                )
            );
        }

        
$this->invalid_fields $result->get_invalid_fields();

        return 
$result->is_valid();
    }

}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586