C:\xampp\htdocs\landing\wp-content\plugins\autoptimize\classes\autoptimizeCriticalCSSCore.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
<?php
/**
 * Critical CSS Core logic:
 * gets called by AO core, checks the rules and if a matching rule is found returns the associated CCSS.
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}

class 
autoptimizeCriticalCSSCore {
    public function 
__construct()
    {
        
// fetch all options at once and populate them individually explicitely as globals.
        
$all_options autoptimizeCriticalCSSBase::fetch_options();
        foreach ( 
$all_options as $_option => $_value ) {
            global ${
$_option};
            ${
$_option} = $_value;
        }

        
$this->run();
    }

    public function 
run() {
        global 
$ao_css_defer;
        global 
$ao_ccss_deferjquery;
        global 
$ao_ccss_key;
        global 
$ao_ccss_unloadccss;

        
// add all filters to do CCSS if key present.
        
if ( $ao_css_defer && isset( $ao_ccss_key ) && ! empty( $ao_ccss_key ) ) {
            
// Set AO behavior: disable minification to avoid double minifying and caching.
            
add_filter'autoptimize_filter_css_critcss_minify''__return_false' );
            
add_filter'autoptimize_filter_css_defer_inline', array( $this'ao_ccss_frontend' ), 10);

            
// Add the action to enqueue jobs for CriticalCSS cron.
            
add_action'autoptimize_action_css_hash', array( 'autoptimizeCriticalCSSEnqueue''ao_ccss_enqueue' ), 10);

            
// conditionally add the filter to defer jquery and others.
            
if ( $ao_ccss_deferjquery ) {
                
add_filter'autoptimize_html_after_minify', array( $this'ao_ccss_defer_jquery' ), 11);
            }

            
// conditionally add filter to unload the CCSS.
            
if ( $ao_ccss_unloadccss ) {
                
add_filter'autoptimize_html_after_minify', array( $this'ao_ccss_unloadccss' ), 12);
            }

            
// Order paths by length, as longest ones have greater priority in the rules.
            
if ( ! empty( $ao_ccss_rules['paths'] ) ) {
                
$keys array_map'strlen'array_keys$ao_ccss_rules['paths'] ) );
                
array_multisort$keysSORT_DESC$ao_ccss_rules['paths'] );
            }

            
// Add an array with default WordPress's conditional tags
            // NOTE: these tags are sorted.
            
global $ao_ccss_types;
            
$ao_ccss_types $this->get_ao_ccss_core_types();

            
// Extend conditional tags on plugin initalization.
            
add_actionapply_filters'autoptimize_filter_ccss_extend_types_hook''init' ), array( $this'ao_ccss_extend_types' ) );

            
// When autoptimize cache is cleared, also clear transient cache for page templates.
            
add_action'autoptimize_action_cachepurged', array( 'autoptimizeCriticalCSSCore''ao_ccss_clear_page_tpl_cache' ), 10);
        }
    }

    public function 
ao_ccss_frontend$inlined ) {
        
// Apply CriticalCSS to frontend pages
        // Attach types and settings arrays.
        
global $ao_ccss_types;
        global 
$ao_ccss_rules;
        global 
$ao_ccss_additional;
        global 
$ao_ccss_loggedin;
        global 
$ao_ccss_debug;
        global 
$ao_ccss_keyst;
        
$no_ccss '';

        
// Only if keystatus is OK and option to add CCSS for logged on users is on or user is not logged in.
        
if ( ( $ao_ccss_keyst && == $ao_ccss_keyst ) && ( $ao_ccss_loggedin || ! is_user_logged_in() ) ) {
            
// Check for a valid CriticalCSS based on path to return its contents.
            
$req_path strtok$_SERVER['REQUEST_URI'], '?' );
            if ( ! empty( 
$ao_ccss_rules['paths'] ) ) {
                foreach ( 
$ao_ccss_rules['paths'] as $path => $rule ) {
                    
// explicit match OR partial match if MANUAL rule.
                    
if ( $req_path == $path || urldecode$req_path ) == $path || ( false == $rule['hash'] && false != $rule['file'] && strpos$req_pathstr_replacesite_url(), ''$path ) ) !== false ) ) {
                        if ( 
file_existsAO_CCSS_DIR $rule['file'] ) ) {
                            
$_ccss_contents file_get_contentsAO_CCSS_DIR $rule['file'] );
                            if ( 
'none' != $_ccss_contents ) {
                                if ( 
$ao_ccss_debug ) {
                                    
$_ccss_contents '/* PATH: ' $path ' hash: ' $rule['hash'] . ' file: ' $rule['file'] . ' */ ' $_ccss_contents;
                                }
                                return 
apply_filters'autoptimize_filter_ccss_core_ccss'$_ccss_contents $ao_ccss_additional );
                            } else {
                                
$no_ccss 'none';
                            }
                        }
                    }
                }
            }

            
// Check for a valid CriticalCSS based on conditional tags to return its contents.
            
if ( ! empty( $ao_ccss_rules['types'] ) && 'none' !== $no_ccss ) {
                
// order types-rules by the order of the original $ao_ccss_types array so as not to depend on the order in which rules were added.
                
$ao_ccss_rules['types'] = array_replacearray_intersect_keyarray_flip$ao_ccss_types ), $ao_ccss_rules['types'] ), $ao_ccss_rules['types'] );
                
$is_front_page          is_front_page();

                foreach ( 
$ao_ccss_rules['types'] as $type => $rule ) {
                    if ( 
in_array$type$ao_ccss_types ) && file_existsAO_CCSS_DIR $rule['file'] ) ) {
                        
$_ccss_contents file_get_contentsAO_CCSS_DIR $rule['file'] );
                        if ( 
$is_front_page && 'is_front_page' == $type ) {
                            if ( 
'none' != $_ccss_contents ) {
                                if ( 
$ao_ccss_debug ) {
                                    
$_ccss_contents '/* TYPES: ' $type ' hash: ' $rule['hash'] . ' file: ' $rule['file'] . ' */ ' $_ccss_contents;
                                }
                                return 
apply_filters'autoptimize_filter_ccss_core_ccss'$_ccss_contents $ao_ccss_additional );
                            } else {
                                
$no_ccss 'none';
                            }
                        } elseif ( 
strpos$type'custom_post_' ) === && ! $is_front_page ) {
                            if ( 
get_post_typeget_the_ID() ) === substr$type12 ) ) {
                                if ( 
'none' != $_ccss_contents ) {
                                    if ( 
$ao_ccss_debug ) {
                                        
$_ccss_contents '/* TYPES: ' $type ' hash: ' $rule['hash'] . ' file: ' $rule['file'] . ' */ ' $_ccss_contents;
                                    }
                                    return 
apply_filters'autoptimize_filter_ccss_core_ccss'$_ccss_contents $ao_ccss_additional );
                                } else {
                                    
$no_ccss 'none';
                                }
                            }
                        } elseif ( 
=== strpos$type'template_' ) && ! $is_front_page ) {
                            if ( 
is_page_templatesubstr$type) ) ) {
                                if ( 
'none' != $_ccss_contents ) {
                                    if ( 
$ao_ccss_debug ) {
                                        
$_ccss_contents '/* TYPES: ' $type ' hash: ' $rule['hash'] . ' file: ' $rule['file'] . ' */ ' $_ccss_contents;
                                    }
                                    return 
apply_filters'autoptimize_filter_ccss_core_ccss'$_ccss_contents $ao_ccss_additional );
                                } else {
                                    
$no_ccss 'none';
                                }
                            }
                        } elseif ( ! 
$is_front_page ) {
                            
// all "normal" conditional tags, core + woo + buddypress + edd + bbpress
                            // but we have to remove the prefix for the non-core ones for them to function.
                            
$type str_replace( array( 'woo_''bp_''bbp_''edd_' ), ''$type );
                            if ( 
function_exists$type ) && call_user_func$type ) ) {
                                if ( 
'none' != $_ccss_contents ) {
                                    if ( 
$ao_ccss_debug ) {
                                        
$_ccss_contents '/* TYPES: ' $type ' hash: ' $rule['hash'] . ' file: ' $rule['file'] . ' */ ' $_ccss_contents;
                                    }
                                    return 
apply_filters'autoptimize_filter_ccss_core_ccss'$_ccss_contents $ao_ccss_additional );
                                } else {
                                    
$no_ccss 'none';
                                }
                            }
                        }
                    }
                }
            }
        }

        
// Finally, inline the default CriticalCSS if any or else the entire CSS for the page
        // This also applies to logged in users if the option to add CCSS for logged in users has been disabled.
        
if ( ! empty( $inlined ) && 'none' !== $no_ccss ) {
            return 
apply_filters'autoptimize_filter_ccss_core_ccss'$inlined $ao_ccss_additional );
        } else {
            
add_filter'autoptimize_filter_css_inline''__return_true' );
            return;
        }
    }

    public function 
ao_ccss_defer_jquery$in ) {
        global 
$ao_ccss_loggedin;
        
// defer all linked and inline JS.
        
if ( ( ! is_user_logged_in() || $ao_ccss_loggedin ) && preg_match_all'#<script.*>(.*)</script>#Usmi'$in$matchesPREG_SET_ORDER ) ) {
            foreach ( 
$matches as $match ) {
                if ( 
str_replaceapply_filters'autoptimize_filter_ccss_core_defer_exclude', array( 'data-noptimize="1"''data-cfasync="false"''data-pagespeed-no-defer' ) ), ''$match[0] ) !== $match[0] ) {
                    
// do not touch JS with noptimize/ cfasync/ pagespeed-no-defer flags.
                    
continue;
                } elseif ( 
'' !== $match[1] && ( ! preg_match'/<script.* type\s?=.*>/'$match[0] ) || preg_match'/type\s*=\s*[\'"]?(?:text|application)\/(?:javascript|ecmascript)[\'"]?/i'$match[0] ) ) ) {
                    
// base64-encode and defer all inline JS.
                    
$base64_js '<script defer src="data:text/javascript;base64,' base64_encode$match[1] ) . '"></script>';
                    
$in        str_replace$match[0], $base64_js$in );
                } elseif ( 
str_replace( array( ' defer'' async' ), ''$match[0] ) === $match[0] ) {
                    
// and defer linked JS unless already deferred or asynced.
                    
$new_match str_replace'<script ''<script defer '$match[0] );
                    
$in        str_replace$match[0], $new_match$in );
                }
            }
        }
        return 
$in;
    }

    public function 
ao_ccss_unloadccss$html_in ) {
        
// set media attrib of inline CCSS to none at onLoad to avoid it impacting full CSS (rarely needed).
        
$_unloadccss_js apply_filters'autoptimize_filter_ccss_core_unloadccss_js''<script>window.addEventListener("load", function(event) {document.getElementById("aoatfcss").media="none";})</script>' );

        if ( 
false !== strpos$html_in$_unloadccss_js '</body>' ) ) {
            return 
$html_in;
        }

        return 
str_replace'</body>'$_unloadccss_js '</body>'$html_in );
    }

    public function 
ao_ccss_extend_types() {
        
// Extend contidional tags
        // Attach the conditional tags array.
        
global $ao_ccss_types;

        
// in some cases $ao_ccss_types is empty and/or not an array, this should work around that problem.
        
if ( empty( $ao_ccss_types ) || ! is_array$ao_ccss_types ) ) {
            
$ao_ccss_types get_ao_ccss_core_types();
            
autoptimizeCriticalCSSCore::ao_ccss_log'Empty types array in extend, refetching array with core conditionals.');
        }

        
// Custom Post Types.
        
$cpts get_post_types(
            array(
                
'public'   => true,
                
'_builtin' => false,
            ),
            
'names',
            
'and'
        
);
        foreach ( 
$cpts as $cpt ) {
            
array_unshift$ao_ccss_types'custom_post_' $cpt );
        }

        
// Templates.
        // Transient cache to avoid frequent disk reads.
        
$templates get_transient'autoptimize_ccss_page_templates' );
        if ( ! 
$templates ) {
            
$templates wp_get_theme()->get_page_templates();
            
set_transient'autoptimize_ccss_page_templates'$templatesHOUR_IN_SECONDS );
        }
        foreach ( 
$templates as $tplfile => $tplname ) {
            
array_unshift$ao_ccss_types'template_' $tplfile );
        }

        
// bbPress tags.
        
if ( function_exists'is_bbpress' ) ) {
            
$ao_ccss_types array_merge(
                array(
                    
'bbp_is_bbpress',
                    
'bbp_is_favorites',
                    
'bbp_is_forum_archive',
                    
'bbp_is_replies_created',
                    
'bbp_is_reply_edit',
                    
'bbp_is_reply_move',
                    
'bbp_is_search',
                    
'bbp_is_search_results',
                    
'bbp_is_single_forum',
                    
'bbp_is_single_reply',
                    
'bbp_is_single_topic',
                    
'bbp_is_single_user',
                    
'bbp_is_single_user_edit',
                    
'bbp_is_single_view',
                    
'bbp_is_subscriptions',
                    
'bbp_is_topic_archive',
                    
'bbp_is_topic_edit',
                    
'bbp_is_topic_merge',
                    
'bbp_is_topic_split',
                    
'bbp_is_topic_tag',
                    
'bbp_is_topic_tag_edit',
                    
'bbp_is_topics_created',
                    
'bbp_is_user_home',
                    
'bbp_is_user_home_edit',
                ), 
$ao_ccss_types
            
);
        }

        
// BuddyPress tags.
        
if ( function_exists'is_buddypress' ) ) {
            
$ao_ccss_types array_merge(
                array(
                    
'bp_is_activation_page',
                    
'bp_is_activity',
                    
'bp_is_blogs',
                    
'bp_is_buddypress',
                    
'bp_is_change_avatar',
                    
'bp_is_create_blog',
                    
'bp_is_friend_requests',
                    
'bp_is_friends',
                    
'bp_is_friends_activity',
                    
'bp_is_friends_screen',
                    
'bp_is_group_admin_page',
                    
'bp_is_group_create',
                    
'bp_is_group_forum',
                    
'bp_is_group_forum_topic',
                    
'bp_is_group_home',
                    
'bp_is_group_invites',
                    
'bp_is_group_leave',
                    
'bp_is_group_members',
                    
'bp_is_group_single',
                    
'bp_is_groups',
                    
'bp_is_messages',
                    
'bp_is_messages_compose_screen',
                    
'bp_is_messages_conversation',
                    
'bp_is_messages_inbox',
                    
'bp_is_messages_sentbox',
                    
'bp_is_my_activity',
                    
'bp_is_my_blogs',
                    
'bp_is_notices',
                    
'bp_is_profile_edit',
                    
'bp_is_register_page',
                    
'bp_is_settings_component',
                    
'bp_is_user',
                    
'bp_is_user_profile',
                    
'bp_is_wire',
                ), 
$ao_ccss_types
            
);
        }

        
// Easy Digital Downloads (EDD) tags.
        
if ( function_exists'edd_is_checkout' ) ) {
            
$ao_ccss_types array_merge(
                array(
                    
'edd_is_checkout',
                    
'edd_is_failed_transaction_page',
                    
'edd_is_purchase_history_page',
                    
'edd_is_success_page',
                ), 
$ao_ccss_types
            
);
        }

        
// WooCommerce tags.
        
if ( class_exists'WooCommerce' ) ) {
            
$ao_ccss_types array_merge(
                array(
                    
'woo_is_account_page',
                    
'woo_is_cart',
                    
'woo_is_checkout',
                    
'woo_is_product',
                    
'woo_is_product_category',
                    
'woo_is_product_tag',
                    
'woo_is_shop',
                    
'woo_is_wc_endpoint_url',
                    
'woo_is_woocommerce',
                ), 
$ao_ccss_types
            
);
        }
    }

    public function 
get_ao_ccss_core_types() {
        global 
$ao_ccss_types;
        if ( empty( 
$ao_ccss_types ) || ! is_array$ao_ccss_types ) ) {
            return array(
                
'is_404',
                
'is_archive',
                
'is_author',
                
'is_category',
                
'is_front_page',
                
'is_home',
                
'is_page',
                
'is_post',
                
'is_search',
                
'is_attachment',
                
'is_single',
                
'is_sticky',
                
'is_paged',
            );
        } else {
            return 
$ao_ccss_types;
        }
    }

    public static function 
ao_ccss_key_status$render ) {
        
// Provide key status
        // Get key and key status.
        
global $ao_ccss_key;
        global 
$ao_ccss_keyst;
        
$self       = new self();
        
$key        $ao_ccss_key;
        
$key_status $ao_ccss_keyst;

        
// Prepare returned variables.
        
$key_return = array();
        
$status     false;

        if ( 
$key && == $key_status ) {
            
// Key exists and its status is valid.
            // Set valid key status.
            
$status     'valid';
            
$status_msg __'Valid' );
            
$color      '#46b450'// Green.
            
$message    null;
        } elseif ( 
$key && == $key_status ) {
            
// Key exists but its validation has failed.
            // Set invalid key status.
            
$status     'invalid';
            
$status_msg __'Invalid' );
            
$color      '#dc3232'// Red.
            
$message    __'Your API key is invalid. Please enter a valid <a href="https://criticalcss.com/?aff=1" target="_blank">criticalcss.com</a> key.''autoptimize' );
        } elseif ( 
$key && ! $key_status ) {
            
// Key exists but it has no valid status yet
            // Perform key validation.
            
$key_check $self->ao_ccss_key_validation$key );

            
// Key is valid, set valid status.
            
if ( $key_check ) {
                
$status     'valid';
                
$status_msg __'Valid' );
                
$color      '#46b450'// Green.
                
$message    null;
            } else {
                
// Key is invalid, set invalid status.
                
$status     'invalid';
                
$status_msg __'Invalid' );
                
$color      '#dc3232'// Red.
                
if ( get_option'autoptimize_ccss_keyst' ) == ) {
                    
$message __'Your API key is invalid. Please enter a valid <a href="https://criticalcss.com/?aff=1" target="_blank">criticalcss.com</a> key.''autoptimize' );
                } else {
                    
$message __'Something went wrong when checking your API key, make sure you server can communicate with https://criticalcss.com and/ or try again later.''autoptimize' );
                }
            }
        } else {
            
// No key nor status
            // Set no key status.
            
$status     'nokey';
            
$status_msg __'None' );
            
$color      '#ffb900'// Yellow.
            
$message    __'Please enter a valid <a href="https://criticalcss.com/?aff=1" target="_blank">criticalcss.com</a> API key to start.''autoptimize' );
        }

        
// Fill returned values.
        
$key_return['status'] = $status;
        
// Provide rendering information if required.
        
if ( $render ) {
            
$key_return['stmsg'] = $status_msg;
            
$key_return['color'] = $color;
            
$key_return['msg']   = $message;
        }

        
// Return key status.
        
return $key_return;
    }

    public function 
ao_ccss_key_validation$key ) {
        global 
$ao_ccss_noptimize;

        
// POST a dummy job to criticalcss.com to check for key validation
        // Prepare home URL for the request.
        
$src_url get_home_url();

        
// Avoid AO optimizations if required by config or avoid lazyload if lazyload is active in AO.
        
if ( ! empty( $ao_ccss_noptimize ) ) {
            
$src_url .= '?ao_noptirocket=1';
        } elseif ( 
class_exists'autoptimizeImages'false ) && autoptimizeImages::should_lazyload_wrapper() ) {
            
$src_url .= '?ao_nolazy=1';
        }

        
$src_url apply_filters'autoptimize_filter_ccss_cron_srcurl'$src_url );

        
// Prepare the request.
        
$url  esc_url_rawAO_CCSS_API 'generate' );
        
$args = array(
            
'headers' => array(
                
'User-Agent'    => 'Autoptimize v' AO_CCSS_VER,
                
'Content-type'  => 'application/json; charset=utf-8',
                
'Authorization' => 'JWT ' $key,
                
'Connection'    => 'close',
            ),
            
// Body must be JSON.
            
'body'    => json_encode(
                
apply_filters'autoptimize_ccss_cron_api_generate_body',
                    array(
                        
'url'    => $src_url,
                        
'aff'    => 1,
                        
'aocssv' => AO_CCSS_VER,
                    )
                )
            ),
        );

        
// Dispatch the request and store its response code.
        
$req  wp_safe_remote_post$url$args );
        
$code wp_remote_retrieve_response_code$req );
        
$body json_decodewp_remote_retrieve_body$req ), true );

        if ( 
200 == $code ) {
            
// Response is OK.
            // Set key status as valid and log key check.
            
update_option'autoptimize_ccss_keyst');
            
autoptimizeCriticalCSSCore::ao_ccss_log'criticalcss.com: API key is valid, updating key status');

            
// extract job-id from $body and put it in the queue as a P job
            // but only if no jobs and no rules!
            
global $ao_ccss_queue;
            global 
$ao_ccss_rules;

            if ( 
== count$ao_ccss_queue ) && == count$ao_ccss_rules['types'] ) && == count$ao_ccss_rules['paths'] ) ) {
                if ( 
'JOB_QUEUED' == $body['job']['status'] || 'JOB_ONGOING' == $body['job']['status'] ) {
                    
$jprops['ljid']     = 'firstrun';
                    
$jprops['rtarget']  = 'types|is_front_page';
                    
$jprops['ptype']    = 'is_front_page';
                    
$jprops['hashes'][] = 'dummyhash';
                    
$jprops['hash']     = 'dummyhash';
                    
$jprops['file']     = null;
                    
$jprops['jid']      = $body['job']['id'];
                    
$jprops['jqstat']   = $body['job']['status'];
                    
$jprops['jrstat']   = null;
                    
$jprops['jvstat']   = null;
                    
$jprops['jctime']   = microtimetrue );
                    
$jprops['jftime']   = null;
                    
$ao_ccss_queue['/'] = $jprops;
                    
$ao_ccss_queue_raw  json_encode$ao_ccss_queue );
                    
update_option'autoptimize_ccss_queue'$ao_ccss_queue_rawfalse );
                    
autoptimizeCriticalCSSCore::ao_ccss_log'Created P job for is_front_page based on API key check response.');
                }
            }
            return 
true;
        } elseif ( 
401 == $code ) {
            
// Response is unauthorized
            // Set key status as invalid and log key check.
            
update_option'autoptimize_ccss_keyst');
            
autoptimizeCriticalCSSCore::ao_ccss_log'criticalcss.com: API key is invalid, updating key status');
            return 
false;
        } else {
            
// Response unkown
            // Log key check attempt.
            
autoptimizeCriticalCSSCore::ao_ccss_log'criticalcss.com: could not check API key status, this is a service error, body follows if any...');
            if ( ! empty( 
$body ) ) {
                
autoptimizeCriticalCSSCore::ao_ccss_logprint_r$bodytrue ), );
            }
            if ( 
is_wp_error$req ) ) {
                
autoptimizeCriticalCSSCore::ao_ccss_log$req->get_error_message(), );
            }
            return 
false;
        }
    }

    public static function 
ao_ccss_viewport() {
        
// Get viewport size
        // Attach viewport option.
        
global $ao_ccss_viewport;

        
// Prepare viewport array.
        
$viewport = array();

        
// Viewport Width.
        
if ( ! empty( $ao_ccss_viewport['w'] ) ) {
            
$viewport['w'] = $ao_ccss_viewport['w'];
        } else {
            
$viewport['w'] = '';
        }

        
// Viewport Height.
        
if ( ! empty( $ao_ccss_viewport['h'] ) ) {
            
$viewport['h'] = $ao_ccss_viewport['h'];
        } else {
            
$viewport['h'] = '';
        }

        return 
$viewport;
    }

    public static function 
ao_ccss_check_contents$ccss ) {
        
// Perform basic exploit avoidance and CSS validation.
        
if ( ! empty( $ccss ) ) {
            
// Try to avoid code injection.
            
$blocklist = array( '#!/''function(''<script''<?php' );
            foreach ( 
$blocklist as $blocklisted ) {
                if ( 
strpos$ccss$blocklisted ) !== false ) {
                    
autoptimizeCriticalCSSCore::ao_ccss_log'Critical CSS received contained blocklisted content.');
                    return 
false;
                }
            }

            
// Check for most basics CSS structures.
            
$needlist = array( '{''}'':' );
            foreach ( 
$needlist as $needed ) {
                if ( 
false === strpos$ccss$needed ) && 'none' !== $ccss ) {
                    
autoptimizeCriticalCSSCore::ao_ccss_log'Critical CSS received did not seem to contain real CSS.');
                    return 
false;
                }
            }
        }

        
// Return true if file critical CSS is sane.
        
return true;
    }

    public static function 
ao_ccss_log$msg$lvl ) {
        
// Commom logging facility
        // Attach debug option.
        
global $ao_ccss_debug;

        
// Prepare log levels, where accepted $lvl are:
        // 1: II (for info)
        // 2: EE (for error)
        // 3: DD (for debug)
        // Default: UU (for unkown).
        
$level false;
        switch ( 
$lvl ) {
            case 
1:
                
$level 'II';
                break;
            case 
2:
                
$level 'EE';
                break;
            case 
3:
                
// Output debug messages only if debug mode is enabled.
                
if ( $ao_ccss_debug ) {
                    
$level 'DD';
                }
                break;
            default:
                
$level 'UU';
        }

        
// Prepare and write a log message if there's a valid level.
        
if ( $level ) {

            
// Prepare message.
            
$message date'c' ) . ' - [' $level '] ' htmlentities$msg ) . '<br>';

            
// Write message to log file.
            
error_log$message3AO_CCSS_LOG );
        }
    }

    public static function 
ao_ccss_clear_page_tpl_cache() {
        
// Clears transient cache for page templates.
        
delete_transient'autoptimize_ccss_page_templates' );
    }

}
x

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