C:\xampp\htdocs\landing\wp-content\plugins\wpforms-lite\src\Admin\Challenge.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
<?php

namespace WPForms\Admin;

/**
 * Challenge and guide a user to set up a first form once WPForms is installed.
 *
 * @since 1.5.0
 * @since 1.6.2 Challenge v2
 */
class Challenge {

    
/**
     * Number of minutes to complete the Challenge.
     *
     * @since 1.5.0
     *
     * @var int
     */
    
protected $minutes 5;

    
/**
     * Initialize.
     *
     * @since 1.6.2
     */
    
public function init() {

        if ( 
current_user_canwpforms_get_capability_manage_options() ) ) {
            
$this->hooks();
        }
    }

    
/**
     * Hooks.
     *
     * @since 1.5.0
     */
    
public function hooks() {

        
add_action'admin_enqueue_scripts', [ $this'enqueue_scripts' ] );
        
add_action'wpforms_builder_init', [ $this'init_challenge' ] );
        
add_action'admin_footer', [ $this'challenge_html' ] );
        
add_action'wpforms_welcome_intro_after', [ $this'welcome_html' ] );

        
add_action'wp_ajax_wpforms_challenge_save_option', [ $this'save_challenge_option_ajax' ] );
        
add_action'wp_ajax_wpforms_challenge_send_contact_form', [ $this'send_contact_form_ajax' ] );
    }

    
/**
     * Check if the current page is related to Challenge.
     *
     * @since 1.5.0
     */
    
public function is_challenge_page() {

        return 
wpforms_is_admin_page() ||
               
$this->is_builder_page() ||
               
$this->is_form_embed_page();
    }

    
/**
     * Check if the current page is a forms builder page related to Challenge.
     *
     * @since 1.5.0
     */
    
public function is_builder_page() {

        if ( ! 
wpforms_is_admin_page'builder' ) ) {
            return 
false;
        }

        if ( ! 
$this->challenge_active() && ! $this->challenge_inited() ) {
            return 
false;
        }

        
$step    = (int) $this->get_challenge_option'step' );
        
$form_id = (int) $this->get_challenge_option'form_id' );

        if ( 
$form_id && $step ) {
            return 
false;
        }

        
$current_form_id = isset( $_GET['form_id'] ) ? (int) $_GET['form_id'] : 0// phpcs:ignore WordPress.Security.NonceVerification.Recommended
        
$is_new_form     = isset( $_GET['newform'] ) ? (int) $_GET['newform'] : 0// phpcs:ignore WordPress.Security.NonceVerification.Recommended

        
if ( $is_new_form && !== $step ) {
            return 
false;
        }

        if ( ! 
$is_new_form && $form_id !== $current_form_id && $step >= ) {
            return 
false;
        }

        return 
true;
    }

    
/**
     * Check if the current page is a form embed page edit related to Challenge.
     *
     * @since 1.5.0
     */
    
public function is_form_embed_page() {

        if ( ! 
is_admin() || ! is_user_logged_in() ) {
            return 
false;
        }

        
$screen get_current_screen();

        if ( ! isset( 
$screen->id ) || 'page' !== $screen->id ) {
            return 
false;
        }

        if ( ! 
$this->challenge_active() ) {
            return 
false;
        }

        
$step $this->get_challenge_option'step' );

        if ( ! 
in_array$step, [ 4], true ) ) {
            return 
false;
        }

        
$embed_page $this->get_challenge_option'embed_page' );

        if ( isset( 
$screen->action ) && 'add' === $screen->action && === $embed_page ) {
            return 
true;
        }

        if ( isset( 
$_GET['post'] ) && $embed_page === (int) $_GET['post'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
return true;
        }

        return 
false;
    }

    
/**
     * Load scripts and styles.
     *
     * @since 1.5.0
     */
    
public function enqueue_scripts() {

        if ( ! 
$this->challenge_can_start() && ! $this->challenge_active() ) {
            return;
        }

        
$min wpforms_get_min_suffix();

        if ( 
$this->is_challenge_page() ) {

            
wp_enqueue_style(
                
'wpforms-challenge',
                
WPFORMS_PLUGIN_URL "assets/css/challenge{$min}.css",
                [],
                
WPFORMS_VERSION
            
);

            
wp_enqueue_script(
                
'wpforms-challenge-admin',
                
WPFORMS_PLUGIN_URL "assets/js/components/admin/challenge/challenge-admin{$min}.js",
                [ 
'jquery' ],
                
WPFORMS_VERSION,
                
true
            
);

            
wp_localize_script(
                
'wpforms-challenge-admin',
                
'wpforms_challenge_admin',
                [
                    
'nonce'        => wp_create_nonce'wpforms_challenge_ajax_nonce' ),
                    
'minutes_left' => absint$this->minutes ),
                    
'option'       => $this->get_challenge_option(),
                ]
            );
        }

        if ( 
$this->is_builder_page() || $this->is_form_embed_page() ) {

            
wp_enqueue_style(
                
'tooltipster',
                
WPFORMS_PLUGIN_URL 'assets/css/tooltipster.css',
                
null,
                
'4.2.6'
            
);

            
wp_enqueue_script(
                
'tooltipster',
                
WPFORMS_PLUGIN_URL 'assets/js/jquery.tooltipster.min.js',
                [ 
'jquery' ],
                
'4.2.6',
                
true
            
);

            
wp_enqueue_script(
                
'wpforms-challenge-core',
                
WPFORMS_PLUGIN_URL "assets/js/components/admin/challenge/challenge-core{$min}.js",
                [ 
'jquery''tooltipster''wpforms-challenge-admin' ],
                
WPFORMS_VERSION,
                
true
            
);
        }

        if ( 
$this->is_builder_page() ) {

            
wp_enqueue_script(
                
'wpforms-challenge-builder',
                
WPFORMS_PLUGIN_URL "assets/js/components/admin/challenge/challenge-builder{$min}.js",
                [ 
'jquery''tooltipster''wpforms-challenge-core''wpforms-builder' ],
                
WPFORMS_VERSION,
                
true
            
);
        }

        if ( 
$this->is_form_embed_page() ) {

            
wp_enqueue_style(
                
'wpforms-font-awesome',
                
WPFORMS_PLUGIN_URL 'assets/css/font-awesome.min.css',
                
null,
                
'4.7.0'
            
);

            
wp_enqueue_script(
                
'wpforms-challenge-embed',
                
WPFORMS_PLUGIN_URL "assets/js/components/admin/challenge/challenge-embed{$min}.js",
                [ 
'jquery''tooltipster''wpforms-challenge-core' ],
                
WPFORMS_VERSION,
                
true
            
);
        }
    }

    
/**
     * Get 'wpforms_challenge' option schema.
     *
     * @since 1.5.0
     */
    
public function get_challenge_option_schema() {

        return [
            
'status'              => '',
            
'step'                => 0,
            
'user_id'             => get_current_user_id(),
            
'form_id'             => 0,
            
'embed_page'          => 0,
            
'embed_page_title'    => '',
            
'started_date_gmt'    => '',
            
'finished_date_gmt'   => '',
            
'seconds_spent'       => 0,
            
'seconds_left'        => 0,
            
'feedback_sent'       => false,
            
'feedback_contact_me' => false,
            
'window_closed'       => '',
        ];
    }

    
/**
     * Get Challenge parameter(s) from Challenge option.
     *
     * @since 1.5.0
     *
     * @param array|string|null $query Query using 'wpforms_challenge' schema keys.
     *
     * @return array|mixed
     */
    
public function get_challenge_option$query null ) {

        if ( ! 
$query ) {
            return 
get_option'wpforms_challenge' );
        }

        
$return_single false;

        if ( ! 
is_array$query ) ) {
            
$return_single true;
            
$query         = [ $query ];
        }

        
$query array_flip$query );

        
$option get_option'wpforms_challenge' );

        if ( ! 
$option || ! is_array$option ) ) {
            return 
array_intersect_key$this->get_challenge_option_schema(), $query );
        }

        
$result array_intersect_key$option$query );

        if ( 
$return_single ) {
            
$result reset$result );
        }

        return 
$result;
    }

    
/**
     * Set Challenge parameter(s) to Challenge option.
     *
     * @since 1.5.0
     *
     * @param array $query Query using 'wpforms_challenge' schema keys.
     */
    
public function set_challenge_option$query ) {

        if ( empty( 
$query ) || ! is_array$query ) ) {
            return;
        }

        
$schema  $this->get_challenge_option_schema();
        
$replace array_intersect_key$query$schema );

        if ( ! 
$replace ) {
            return;
        }

        
// Validate and sanitize the data.
        
foreach ( $replace as $key => $value ) {
            if ( 
in_array$key, [ 'step''user_id''form_id''embed_page''seconds_spent''seconds_left' ], true ) ) {
                
$replace$key ] = absint$value );
                continue;
            }
            if ( 
in_array$key, [ 'feedback_sent''feedback_contact_me' ], true ) ) {
                
$replace$key ] = wp_validate_boolean$value );
                continue;
            }
            
$replace$key ] = sanitize_text_field$value );
        }

        
$option get_option'wpforms_challenge' );
        
$option = ! $option || ! is_array$option ) ? $schema $option;

        
update_option'wpforms_challenge'array_merge$option$replace ) );
    }

    
/**
     * Check if any forms are present on a site.
     *
     * @since 1.5.0
     */
    
public function website_has_forms() {

        return (bool) 
wpforms()->form->get(
            
'',
            [
                
'numberposts'            => 1,
                
'nopaging'               => false,
                
'fields'                 => 'id',
                
'no_found_rows'          => true,
                
'update_post_meta_cache' => false,
                
'update_post_term_cache' => false,
            ]
        );
    }

    
/**
     * Check if Challenge was started.
     *
     * @since 1.5.0
     */
    
public function challenge_started() {

        return 
'started' === $this->get_challenge_option'status' );
    }

    
/**
     * Check if Challenge was inited.
     *
     * @since 1.6.2
     */
    
public function challenge_inited() {

        return 
'inited' === $this->get_challenge_option'status' );
    }

    
/**
     * Check if Challenge was paused.
     *
     * @since 1.6.2
     */
    
public function challenge_paused() {

        return 
'paused' === $this->get_challenge_option'status' );
    }

    
/**
     * Check if Challenge was finished.
     *
     * @since 1.5.0
     */
    
public function challenge_finished() {

        
$status $this->get_challenge_option'status' );

        return 
in_array$status, [ 'completed''canceled''skipped' ], true );
    }

    
/**
     * Check if Challenge is in progress.
     *
     * @since 1.5.0
     */
    
public function challenge_active() {

        return ( 
$this->challenge_inited() || $this->challenge_started() || $this->challenge_paused() ) && ! $this->challenge_finished();
    }

    
/**
     * Force Challenge to start.
     *
     * @since 1.6.2
     */
    
public function challenge_force_start() {

        return 
apply_filters'wpforms_admin_challenge_force_start'false );
    }

    
/**
     * Check if Challenge can be started.
     *
     * @since 1.5.0
     */
    
public function challenge_can_start() {

        static 
$can_start null;

        if ( ! 
is_null$can_start ) ) {
            return 
$can_start;
        }

        if ( 
$this->challenge_force_start() ) {
            
$can_start true;
        }

        if ( 
$this->challenge_finished() ) {
            
$can_start false;
        }

        if ( 
$this->website_has_forms() ) {
            
$can_start false;
        }

        if ( 
is_null$can_start ) ) {
            
$can_start true;
        }

        return 
$can_start;
    }

    
/**
     * Start the Challenge in Form Builder.
     *
     * @since 1.5.0
     */
    
public function init_challenge() {

        if ( ! isset( 
$_GET['challenge'] ) || 'init' !== $_GET['challenge'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
            
return;
        }

        if ( ! 
$this->challenge_can_start() ) {
            return;
        }

        
$this->set_challenge_option(
            
wp_parse_args(
                [ 
'status' => 'inited' ],
                
$this->get_challenge_option_schema()
            )
        );

        
wp_safe_redirectremove_query_arg'challenge' ) );
    }

    
/**
     * Include Challenge HTML.
     *
     * @since 1.5.0
     */
    
public function challenge_html() {

        if ( 
$this->challenge_finished() && ! $this->challenge_force_start() ) {
            return;
        }

        if ( 
wpforms_is_admin_page() && ! wpforms_is_admin_page'getting-started' ) && $this->challenge_can_start() ) {
            
$this->challenge_modal_html'start' );
        }

        if ( 
$this->is_builder_page() ) {
            
$this->challenge_modal_html'progress' );
            
$this->challenge_builder_templates_html();
        }

        if ( 
$this->is_form_embed_page() ) {
            
$this->challenge_modal_html'progress' );
            
$this->challenge_embed_templates_html();
        }

    }

    
/**
     * Include Challenge main modal window HTML.
     *
     * @since 1.5.0
     *
     * @param string $state State of Challenge ('start' or 'progress').
     */
    
public function challenge_modal_html$state ) {

        echo 
wpforms_render// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            
'admin/challenge/modal',
            [
                
'state'   => $state,
                
'step'    => $this->get_challenge_option'step' ),
                
'minutes' => $this->minutes,
            ],
            
true
        
);
    }

    
/**
     * Include Challenge HTML templates specific to Form Builder.
     *
     * @since 1.5.0
     */
    
public function challenge_builder_templates_html() {

        echo 
wpforms_render'admin/challenge/builder' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    
}

    
/**
     * Include Challenge HTML templates specific to form embed page.
     *
     * @since 1.5.0
     */
    
public function challenge_embed_templates_html() {

        echo 
wpforms_render// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
            
'admin/challenge/embed',
            [
                
'minutes' => $this->minutes,
            ],
            
true
        
);
    }

    
/**
     * Include Challenge CTA on WPForms welcome activation screen.
     *
     * @since 1.5.0
     */
    
public function welcome_html() {

        if ( 
$this->challenge_can_start() ) {
            echo 
wpforms_render'admin/challenge/welcome' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        
}
    }

    
/**
     * Save Challenge data via AJAX.
     *
     * @since 1.5.0
     */
    
public function save_challenge_option_ajax() {

        
check_admin_referer'wpforms_challenge_ajax_nonce' );

        if ( empty( 
$_POST['option_data'] ) ) {
            
wp_send_json_error();
        }

        
$schema $this->get_challenge_option_schema();

        foreach ( 
$schema as $key => $value ) {
            if ( isset( 
$_POST['option_data'][ $key ] ) ) {
                
$query$key ] = sanitize_text_fieldwp_unslash$_POST['option_data'][ $key ] ) );
            }
        }

        if ( empty( 
$query ) ) {
            
wp_send_json_error();
        }

        if ( ! empty( 
$query['status'] ) && 'started' === $query['status'] ) {
            
$query['started_date_gmt'] = current_time'mysql'true );
        }

        if ( ! empty( 
$query['status'] ) && in_array$query['status'], [ 'completed''canceled''skipped' ], true ) ) {
            
$query['finished_date_gmt'] = current_time'mysql'true );
        }

        if ( ! empty( 
$query['status'] ) && 'skipped' === $query['status'] ) {
            
$query['started_date_gmt']  = current_time'mysql'true );
            
$query['finished_date_gmt'] = $query['started_date_gmt'];
        }

        
$this->set_challenge_option$query );

        
wp_send_json_success();
    }

    
/**
     * Send contact form to wpforms.com via AJAX.
     *
     * @since 1.5.0
     */
    
public function send_contact_form_ajax() {

        
check_admin_referer'wpforms_challenge_ajax_nonce' );

        
$url     'https://wpforms.com/wpforms-challenge-feedback/';
        
$message = ! empty( $_POST['contact_data']['message'] ) ? sanitize_textarea_fieldwp_unslash$_POST['contact_data']['message'] ) ) : '';
        
$email   '';

        if ( ! empty( 
$_POST['contact_data']['contact_me'] ) && 'true' === $_POST['contact_data']['contact_me'] ) {
            
$current_user wp_get_current_user();
            
$email        $current_user->user_email;
            
$this->set_challenge_option( [ 'feedback_contact_me' => true ] );
        }

        if ( empty( 
$message ) && empty( $email ) ) {
            
wp_send_json_error();
        }

        
$data = [
            
'body' => [
                
'wpforms' => [
                    
'id'     => 296355,
                    
'submit' => 'wpforms-submit',
                    
'fields' => [
                        
=> $message,
                        
=> $email,
                        
=> ucfirstwpforms_get_license_type() ),
                        
=> wpforms()->version,
                    ],
                ],
            ],
        ];

        
$response wp_remote_post$url$data );

        if ( 
is_wp_error$response ) ) {
            
wp_send_json_error();
        }

        
$this->set_challenge_option( [ 'feedback_sent' => true ] );
        
wp_send_json_success();
    }
}
x

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