| 1 |
<?php |
| 2 |
/** |
| 3 |
* Critical CSS job enqueue logic. |
| 4 |
*/ |
| 5 |
|
| 6 |
if ( ! defined( 'ABSPATH' ) ) { |
| 7 |
exit; |
| 8 |
} |
| 9 |
|
| 10 |
class autoptimizeCriticalCSSEnqueue { |
| 11 |
public function __construct() { |
| 12 |
$this->criticalcss = autoptimize()->criticalcss(); |
| 13 |
} |
| 14 |
|
| 15 |
public function ao_ccss_enqueue( $hash = '', $path = '', $type = 'is_page' ) { |
| 16 |
// Get key status. |
| 17 |
$key = $this->criticalcss->key_status( false ); |
| 18 |
|
| 19 |
// Queue is available to anyone... |
| 20 |
$enqueue = true; |
| 21 |
|
| 22 |
// ... which are not the ones below. |
| 23 |
if ( true === autoptimizeUtils::is_local_server() ) { |
| 24 |
$enqueue = false; |
| 25 |
$this->criticalcss->log('cant enqueue as local/ private', 3 ); |
| 26 |
} elseif ( 'nokey' == $key['status'] || 'invalid' == $key['status'] ) { |
| 27 |
$enqueue = false; |
| 28 |
$this->criticalcss->log( 'Job queuing is not available: no valid API key found.', 3 ); |
| 29 |
} elseif ( ! empty( $hash ) && ( is_user_logged_in() || is_feed() || is_404() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || $this->ao_ccss_ua() || false === apply_filters( 'autoptimize_filter_ccss_enqueue_should_enqueue', true ) ) ) { |
| 30 |
$enqueue = false; |
| 31 |
$this->criticalcss->log( 'Job queuing is not available for WordPress\'s logged in users, feeds, error pages, ajax calls or calls from criticalcss.com itself.', 3 ); |
| 32 |
} elseif ( empty( $hash ) && empty( $path ) || ( ( 'is_single' !== $type ) && ( 'is_page' !== $type ) ) ) { |
| 33 |
$enqueue = false; |
| 34 |
$this->criticalcss->log( 'Forced job queuing failed, no path or not right type', 3 ); |
| 35 |
} |
| 36 |
|
| 37 |
if ( ! $enqueue ) { |
| 38 |
return; |
| 39 |
} |
| 40 |
|
| 41 |
// Continue if queue is available |
| 42 |
// Attach required arrays/ vars. |
| 43 |
$rules = $this->criticalcss->get_option( 'rules' ); |
| 44 |
$queue_raw = $this->criticalcss->get_option( 'queue_raw' ); |
| 45 |
$queue = $this->criticalcss->get_option( 'queue' ); |
| 46 |
$forcepath = $this->criticalcss->get_option( 'forcepath' ); |
| 47 |
|
| 48 |
// Get request path and page type, and initialize the queue update flag. |
| 49 |
if ( ! empty( $hash ) ) { |
| 50 |
$req_orig = $_SERVER['REQUEST_URI']; |
| 51 |
$req_type = $this->ao_ccss_get_type(); |
| 52 |
} elseif ( ! empty( $path ) ) { |
| 53 |
$req_orig = $path; |
| 54 |
if ( '/' === $path ) { |
| 55 |
$req_type = 'is_front_page'; |
| 56 |
} else { |
| 57 |
$req_type = $type; |
| 58 |
} |
| 59 |
} |
| 60 |
$req_path = strtok( $req_orig, '?' ); |
| 61 |
|
| 62 |
// Check if we have a lang param. we need to keep as WPML can switch languages based on that |
| 63 |
// and that includes RTL -> LTR so diff. structure, so rules would be RTL vs LTR |
| 64 |
// but this needs changes in the structur of the rule object so off by default for now |
| 65 |
// as now this will simply result in conditional rules being overwritten. |
| 66 |
if ( apply_filters( 'autoptimize_filter_ccss_coreenqueue_honor_lang', false ) && strpos( $req_orig, 'lang=' ) !== false ) { |
| 67 |
$req_params = strtok( '?' ); |
| 68 |
parse_str( $req_params, $req_params_arr ); |
| 69 |
if ( array_key_exists( 'lang', $req_params_arr ) && ! empty( $req_params_arr['lang'] ) ) { |
| 70 |
$req_path .= '?lang=' . $req_params_arr['lang']; |
| 71 |
} |
| 72 |
} |
| 73 |
|
| 74 |
$job_qualify = false; |
| 75 |
$target_rule = false; |
| 76 |
$rule_properties = false; |
| 77 |
$queue_update = false; |
| 78 |
|
| 79 |
// Match for paths in rules. |
| 80 |
foreach ( $rules['paths'] as $path => $props ) { |
| 81 |
|
| 82 |
// Prepare rule target and log. |
| 83 |
$target_rule = 'paths|' . $path; |
| 84 |
$this->criticalcss->log( 'Qualifying path <' . $req_path . '> for job submission by rule <' . $target_rule . '>', 3 ); |
| 85 |
|
| 86 |
// Path match |
| 87 |
// -> exact match needed for AUTO rules |
| 88 |
// -> partial match OK for MANUAL rules (which have empty hash and a file with CCSS). |
| 89 |
if ( $path === $req_path || ( false == $props['hash'] && false != $props['file'] && preg_match( '|' . $path . '|', $req_path ) ) ) { |
| 90 |
|
| 91 |
// There's a path match in the rule, so job QUALIFIES with a path rule match. |
| 92 |
$job_qualify = true; |
| 93 |
$rule_properties = $props; |
| 94 |
$this->criticalcss->log( 'Path <' . $req_path . '> QUALIFIED for job submission by rule <' . $target_rule . '>', 3 ); |
| 95 |
|
| 96 |
// Stop processing other path rules. |
| 97 |
break; |
| 98 |
} |
| 99 |
} |
| 100 |
|
| 101 |
// Match for types in rules if no path rule matches and if we're not enforcing paths. |
| 102 |
if ( '' !== $hash && ! $job_qualify && ( ! $forcepath || ! in_array( $req_type, apply_filters( 'autoptimize_filter_ccss_coreenqueue_forcepathfortype', array( 'is_page' ) ) ) || ! apply_filters( 'autoptimize_filter_ccss_coreenqueue_ignorealltypes', false ) ) ) { |
| 103 |
foreach ( $rules['types'] as $type => $props ) { |
| 104 |
|
| 105 |
// Prepare rule target and log. |
| 106 |
$target_rule = 'types|' . $type; |
| 107 |
$this->criticalcss->log( 'Qualifying page type <' . $req_type . '> on path <' . $req_path . '> for job submission by rule <' . $target_rule . '>', 3 ); |
| 108 |
|
| 109 |
if ( $req_type == $type ) { |
| 110 |
// Type match. |
| 111 |
// There's a type match in the rule, so job QUALIFIES with a type rule match. |
| 112 |
$job_qualify = true; |
| 113 |
$rule_properties = $props; |
| 114 |
$this->criticalcss->log( 'Page type <' . $req_type . '> on path <' . $req_path . '> QUALIFIED for job submission by rule <' . $target_rule . '>', 3 ); |
| 115 |
|
| 116 |
// Stop processing other type rules. |
| 117 |
break; |
| 118 |
} |
| 119 |
} |
| 120 |
} |
| 121 |
|
| 122 |
if ( $job_qualify && ( ( false == $rule_properties['hash'] && false != $rule_properties['file'] ) || strpos( $req_type, 'template_' ) !== false ) ) { |
| 123 |
// If job qualifies but rule hash is false and file isn't false (MANUAL rule) or if template, job does not qualify despite what previous evaluations says. |
| 124 |
$job_qualify = false; |
| 125 |
$this->criticalcss->log( 'Job submission DISQUALIFIED by MANUAL rule <' . $target_rule . '> with hash <' . $rule_properties['hash'] . '> and file <' . $rule_properties['file'] . '>', 3 ); |
| 126 |
} elseif ( ! $job_qualify && empty( $rule_properties ) ) { |
| 127 |
// But if job does not qualify and rule properties are set, job qualifies as there is no matching rule for it yet |
| 128 |
// Fill-in the new target rule. |
| 129 |
$job_qualify = true; |
| 130 |
|
| 131 |
// Should we switch to path-base AUTO-rules? Conditions: |
| 132 |
// 1. forcepath option has to be enabled (off by default) |
| 133 |
// 2. request type should be (by default, but filterable) one of is_page (removed for now: woo_is_product or woo_is_product_category). |
| 134 |
if ( ( $forcepath && in_array( $req_type, apply_filters( 'autoptimize_filter_ccss_coreenqueue_forcepathfortype', array( 'is_page' ) ) ) ) || apply_filters( 'autoptimize_filter_ccss_coreenqueue_ignorealltypes', false ) || empty( $hash ) ) { |
| 135 |
if ( '/' !== $req_path ) { |
| 136 |
$target_rule = 'paths|' . $req_path; |
| 137 |
} else { |
| 138 |
// Exception; we don't want a path-based rule for "/" as that messes things up, hard-switch this to a type-based is_front_page rule. |
| 139 |
$target_rule = 'types|' . 'is_front_page'; |
| 140 |
} |
| 141 |
} else { |
| 142 |
$target_rule = 'types|' . $req_type; |
| 143 |
} |
| 144 |
$this->criticalcss->log( 'Job submission QUALIFIED by MISSING rule for page type <' . $req_type . '> on path <' . $req_path . '>, new rule target is <' . $target_rule . '>', 3 ); |
| 145 |
} else { |
| 146 |
// Or just log a job qualified by a matching rule. |
| 147 |
$this->criticalcss->log( 'Job submission QUALIFIED by AUTO rule <' . $target_rule . '> with hash <' . $rule_properties['hash'] . '> and file <' . $rule_properties['file'] . '>', 3 ); |
| 148 |
} |
| 149 |
|
| 150 |
// Submit job. |
| 151 |
if ( $job_qualify ) { |
| 152 |
if ( ! array_key_exists( $req_path, $queue ) ) { |
| 153 |
// This is a NEW job |
| 154 |
// Merge job into the queue. |
| 155 |
$queue[ $req_path ] = $this->ao_ccss_define_job( |
| 156 |
$req_path, |
| 157 |
$target_rule, |
| 158 |
$req_type, |
| 159 |
$hash, |
| 160 |
null, |
| 161 |
null, |
| 162 |
null, |
| 163 |
null, |
| 164 |
true |
| 165 |
); |
| 166 |
// Set update flag. |
| 167 |
$queue_update = true; |
| 168 |
} else { |
| 169 |
// This is an existing job |
| 170 |
// The job is still NEW, most likely this is extra CSS file for the same page that needs a hash. |
| 171 |
if ( 'NEW' == $queue[ $req_path ]['jqstat'] ) { |
| 172 |
// Add hash if it's not already in the job. |
| 173 |
if ( ! in_array( $hash, $queue[ $req_path ]['hashes'] ) ) { |
| 174 |
// Push new hash to its array and update flag. |
| 175 |
$queue_update = array_push( $queue[ $req_path ]['hashes'], $hash ); |
| 176 |
|
| 177 |
// Log job update. |
| 178 |
$this->criticalcss->log( 'Hashes UPDATED on local job id <' . $queue[ $req_path ]['ljid'] . '>, job status NEW, target rule <' . $queue[ $req_path ]['rtarget'] . '>, hash added: ' . $hash, 3 ); |
| 179 |
|
| 180 |
// Return from here as the hash array is already updated. |
| 181 |
return true; |
| 182 |
} |
| 183 |
} elseif ( 'NEW' != $queue[ $req_path ]['jqstat'] && 'JOB_QUEUED' != $queue[ $req_path ]['jqstat'] && 'JOB_ONGOING' != $queue[ $req_path ]['jqstat'] ) { |
| 184 |
// Allow requeuing jobs that are not NEW, JOB_QUEUED or JOB_ONGOING |
| 185 |
// Merge new job keeping some previous job values. |
| 186 |
$queue[ $req_path ] = $this->ao_ccss_define_job( |
| 187 |
$req_path, |
| 188 |
$target_rule, |
| 189 |
$req_type, |
| 190 |
$hash, |
| 191 |
$queue[ $req_path ]['file'], |
| 192 |
$queue[ $req_path ]['jid'], |
| 193 |
$queue[ $req_path ]['jrstat'], |
| 194 |
$queue[ $req_path ]['jvstat'], |
| 195 |
false |
| 196 |
); |
| 197 |
// Set update flag. |
| 198 |
$queue_update = true; |
| 199 |
} |
| 200 |
} |
| 201 |
|
| 202 |
if ( $queue_update ) { |
| 203 |
// Persist the job to the queue and return. |
| 204 |
$queue_raw = json_encode( $queue ); |
| 205 |
update_option( 'autoptimize_ccss_queue', $queue_raw, false ); |
| 206 |
$this->criticalcss->flush_options(); |
| 207 |
return true; |
| 208 |
} else { |
| 209 |
// Or just return false if no job was added. |
| 210 |
$this->criticalcss->log( 'A job for path <' . $req_path . '> already exist with NEW or PENDING status, skipping job creation', 3 ); |
| 211 |
return false; |
| 212 |
} |
| 213 |
} |
| 214 |
} |
| 215 |
|
| 216 |
public function ao_ccss_get_type() { |
| 217 |
// Get the type of a page |
| 218 |
// Attach the conditional tags array. |
| 219 |
$types = $this->criticalcss->get_types(); |
| 220 |
$forcepath = $this->criticalcss->get_option( 'forcepath' ); |
| 221 |
|
| 222 |
// By default, a page type is false. |
| 223 |
$page_type = false; |
| 224 |
|
| 225 |
// Iterates over the array to match a type. |
| 226 |
foreach ( $types as $type ) { |
| 227 |
if ( is_404() ) { |
| 228 |
$page_type = 'is_404'; |
| 229 |
break; |
| 230 |
} elseif ( is_front_page() ) { |
| 231 |
// identify frontpage immediately to avoid it also matching a CPT or template. |
| 232 |
$page_type = 'is_front_page'; |
| 233 |
break; |
| 234 |
} elseif ( strpos( $type, 'custom_post_' ) !== false && ( ! $forcepath || ! is_page() ) ) { |
| 235 |
// Match custom post types and not page or page not forced to path-based. |
| 236 |
if ( get_post_type( get_the_ID() ) === substr( $type, 12 ) ) { |
| 237 |
$page_type = $type; |
| 238 |
break; |
| 239 |
} |
| 240 |
} elseif ( strpos( $type, 'template_' ) !== false && ( ! $forcepath || ! is_page() ) ) { |
| 241 |
// Match templates if not page or if page is not forced to path-based. |
| 242 |
if ( is_page_template( substr( $type, 9 ) ) ) { |
| 243 |
$page_type = $type; |
| 244 |
break; |
| 245 |
} |
| 246 |
} else { |
| 247 |
// Match all other existing types |
| 248 |
// but remove prefix to be able to check if the function exists & returns true. |
| 249 |
$_type = str_replace( array( 'woo_', 'bp_', 'bbp_', 'edd_' ), '', $type ); |
| 250 |
if ( function_exists( $_type ) && call_user_func( $_type ) ) { |
| 251 |
// Make sure we only return for one page, not for the "paged pages" (/page/2 ..). |
| 252 |
if ( ! is_page() || ! is_paged() ) { |
| 253 |
$page_type = $type; |
| 254 |
break; |
| 255 |
} |
| 256 |
} |
| 257 |
} |
| 258 |
} |
| 259 |
|
| 260 |
// Return the page type. |
| 261 |
return $page_type; |
| 262 |
} |
| 263 |
|
| 264 |
public function ao_ccss_define_job( $path, $target, $type, $hash, $file, $jid, $jrstat, $jvstat, $create ) { |
| 265 |
// Define a job entry to be created or updated |
| 266 |
// Define commom job properties. |
| 267 |
$path = array(); |
| 268 |
$path['ljid'] = $this->ao_ccss_job_id(); |
| 269 |
$path['rtarget'] = $target; |
| 270 |
$path['ptype'] = $type; |
| 271 |
$path['hashes'] = array( $hash ); |
| 272 |
$path['hash'] = $hash; |
| 273 |
$path['file'] = $file; |
| 274 |
$path['jid'] = $jid; |
| 275 |
$path['jqstat'] = 'NEW'; |
| 276 |
$path['jrstat'] = $jrstat; |
| 277 |
$path['jvstat'] = $jvstat; |
| 278 |
$path['jctime'] = microtime( true ); |
| 279 |
$path['jftime'] = null; |
| 280 |
|
| 281 |
// Set operation requested. |
| 282 |
if ( $create ) { |
| 283 |
$operation = 'CREATED'; |
| 284 |
} else { |
| 285 |
$operation = 'UPDATED'; |
| 286 |
} |
| 287 |
|
| 288 |
// Log job creation. |
| 289 |
$this->criticalcss->log( 'Job ' . $operation . ' with local job id <' . $path['ljid'] . '> for target rule <' . $target . '>', 3 ); |
| 290 |
|
| 291 |
return $path; |
| 292 |
} |
| 293 |
|
| 294 |
public function ao_ccss_job_id( $length = 6 ) { |
| 295 |
// Generate random strings for the local job ID |
| 296 |
// Based on https://stackoverflow.com/a/4356295 . |
| 297 |
$characters = '0123456789abcdefghijklmnopqrstuvwxyz'; |
| 298 |
$characters_length = strlen( $characters ); |
| 299 |
$random_string = 'j-'; |
| 300 |
for ( $i = 0; $i < $length; $i++ ) { |
| 301 |
$random_string .= $characters[ rand( 0, $characters_length - 1 ) ]; |
| 302 |
} |
| 303 |
return $random_string; |
| 304 |
} |
| 305 |
|
| 306 |
public function ao_ccss_ua() { |
| 307 |
// Check for criticalcss.com user agent. |
| 308 |
$agent = ''; |
| 309 |
if ( isset( $_SERVER['HTTP_USER_AGENT'] ) ) { |
| 310 |
$agent = $_SERVER['HTTP_USER_AGENT']; |
| 311 |
} |
| 312 |
|
| 313 |
// Check for UA and return TRUE when criticalcss.com is the detected UA, false when not. |
| 314 |
$rtn = strpos( $agent, AO_CCSS_URL ); |
| 315 |
if ( 0 === $rtn ) { |
| 316 |
$rtn = true; |
| 317 |
} else { |
| 318 |
$rtn = false; |
| 319 |
} |
| 320 |
return ( $rtn ); |
| 321 |
} |
| 322 |
} |
| 323 |
|