PluginProbe
Search Atlas SEO – OTTO AI SEO Automation for WordPress / trunk
Search Atlas SEO – OTTO AI SEO Automation for WordPress vtrunk
2.6.26 2.6.25 2.6.24 2.6.23 2.6.22 2.6.21 2.6.20 2.6.19 2.6.18 2.6.17 2.6.16 2.6.15 2.6.14 2.6.13 2.6.12 2.6.11 2.6.10 2.6.9 2.6.8 2.6.7 2.6.6 2.6.5 2.6.4 2.6.3 2.5.23 All 138 releases
metasync / otto / Otto_pixel_class.php

Otto_pixel_class.php in Search Atlas SEO – OTTO AI SEO Automation for WordPress trunk, at otto/Otto_pixel_class.php

838 lines 37.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // If this file is called directly, abort.
3 if (!defined('ABSPATH')) {
4 exit;
5 }
6
7 /**
8 * This class handles the Otto Pixel Functions
9 */
10 Class Metasync_otto_pixel{
11
12 #otto html class
13 public $o_html;
14
15 # crawl data option
16 public $option_name = 'metasync_otto_crawldata';
17
18 # no cache wp pages
19 public $no_cache_pages = ['wp-login.php'];
20
21 # OTTO UUID
22 private $otto_uuid;
23
24 #
25 function __construct($otto_uuid){
26
27 # store the UUID
28 $this->otto_uuid = $otto_uuid;
29
30 # load the html class
31 $this->o_html = new Metasync_otto_html($otto_uuid);
32
33 }
34
35 # method to handle cache refresh
36 # NOTE: Cache system removed - always process in real-time
37 function refresh_cache($route){
38 # No-op: Cache system has been removed
39 # All pages are processed in real-time from OTTO API
40 return true;
41 }
42
43
44 # method to save crawl data into
45 function save_crawl_data($data){
46
47 # get the option name
48 $option_name = $this->option_name;
49
50 # handle data
51 $saved = get_option($option_name);
52
53 # log saved
54
55 # if saved false save
56 if(empty($saved['urls'])){
57
58 # save the option
59 update_option($option_name, $data);
60
61 return;
62 }
63
64 # get new unique list of urls
65 $new_list = array_unique(array_merge($data['urls'], $saved['urls']));
66
67 # set data
68 $data['urls'] = $new_list;
69
70 # log saved
71
72 # save the option
73 update_option($option_name, $data);
74 }
75
76 /**
77 * Check if a URL has been crawled by Otto
78 * - Validates domain against saved domain
79 * - Ignores query strings
80 * - Does exact path matching as Otto stores paths exactly as they appear
81 * @param string $url - Full URL to check
82 * @return bool - True if URL was crawled, false otherwise
83 */
84 function is_url_crawled($url) {
85 # Ensure valid input
86 if (empty($url) || !is_string($url)) {
87 return false;
88 }
89
90 # Get saved crawl data
91 $saved = get_option($this->option_name);
92
93 if (
94 empty($saved) ||
95 !is_array($saved) ||
96 empty($saved['domain']) ||
97 empty($saved['urls']) ||
98 !is_array($saved['urls'])
99 ) {
100 return false;
101 }
102
103 # Parse saved domain + incoming URL
104 $saved_domain = parse_url($saved['domain'], PHP_URL_HOST);
105 $incoming_domain = parse_url($url, PHP_URL_HOST);
106
107 # Domain mismatch - not crawled
108 if (empty($saved_domain) || empty($incoming_domain) || strcasecmp($saved_domain, $incoming_domain) !== 0) {
109 return false;
110 }
111
112 # Parse incoming path (ignore query string)
113 $parsed_url = parse_url($url);
114 $url_path = $parsed_url['path'] ?? '/';
115
116 # Ensure path starts with / but don't modify trailing slashes
117 # Otto stores paths exactly as they appear in URLs
118 if (substr($url_path, 0, 1) !== '/') {
119 $url_path = '/' . $url_path;
120 }
121
122 # Compare against crawled URLs - exact match
123 foreach ($saved['urls'] as $crawled_url) {
124 if (!is_string($crawled_url)) {
125 continue;
126 }
127
128 # Direct comparison - Otto stores paths exactly as they are
129 if (strcasecmp($crawled_url, $url_path) === 0) {
130 return true;
131 }
132 }
133
134 return false;
135 }
136
137 # get the current route
138 function get_route(){
139
140 # check if we're in an HTTP context
141 if(empty($_SERVER['HTTP_HOST']) || empty($_SERVER['REQUEST_URI'])){
142 # not in HTTP context (CLI, cron, etc.), return false
143 return false;
144 }
145
146 # get req scheme
147 $scheme = ( is_ssl() ? 'https' : 'http' );
148
149 # get req host
150 $host = $_SERVER['HTTP_HOST'];
151
152 # get the uri — strip query string before building the route.
153 # OTTO suggestions are canonical-URL-based; query parameters (Kinsta cache-bypass
154 # tokens, UTM params, tracking params, etc.) never produce different OTTO content.
155 # Stripping them ensures that:
156 # - The transient populated via a Kinsta BYPASS request (always has ?params) is
157 # shared with the clean-URL MISS request (no params).
158 # - The OTTO API is called with the canonical URL, not a noisy variant.
159 $request_uri = strtok($_SERVER['REQUEST_URI'], '?') ?: $_SERVER['REQUEST_URI'];
160
161 # return the formatted url
162 return $scheme . '://' . $host . $request_uri;
163 }
164
165 # get the html for a route
166 # OPTION 1 IMPLEMENTATION: Use transient cache for suggestions
167 function get_route_html($route, $cache_track_key = null, $suggestions = null){
168 # If suggestions already provided (from render_route_html), use them directly
169 if ($suggestions !== null && is_array($suggestions)) {
170 # Process route with provided suggestions data
171 return $this->o_html->process_route_with_data($route, $suggestions, '');
172 }
173
174 # Get OTTO UUID from options
175 global $metasync_options;
176 $otto_uuid = $metasync_options['general']['otto_pixel_uuid'] ?? '';
177
178 if (empty($otto_uuid)) {
179 return false;
180 }
181
182 # Get suggestions from transient cache (with API fallback)
183 $transient_cache = new Metasync_Otto_Transient_Cache($otto_uuid);
184 $track_key = $cache_track_key ?: md5($route);
185 $suggestions = $transient_cache->get_suggestions($route, $track_key);
186
187 if (!$suggestions || !$transient_cache->has_payload($suggestions)) {
188 # No suggestions available
189 return false;
190 }
191
192 # Process route with cached suggestions data
193 return $this->o_html->process_route_with_data($route, $suggestions, '');
194 }
195
196
197 # render route html
198 function render_route_html(){
199
200 # Clear per-request statics before any path runs. Harmless under PHP-FPM
201 # (the process ends with the request) but required under persistent-worker
202 # SAPIs, where a latched flag would silently disable cache capping and
203 # failure reporting for every later request in that worker.
204 #
205 # method_exists() is redundant to static analysis — this MR adds the method,
206 # so PHPStan proves the call always true. It is kept for the upgrade window:
207 # during a plugin update an opcache can still hold the previous
208 # Metasync_Otto_Render_Strategy, where class_exists() passes but the method
209 # is absent, and an unguarded static call would fatal the page.
210 # @phpstan-ignore-next-line function.alreadyNarrowedType
211 if (class_exists('Metasync_Otto_Render_Strategy') && method_exists('Metasync_Otto_Render_Strategy', 'reset_request_state')) {
212 Metasync_Otto_Render_Strategy::reset_request_state();
213 }
214
215 # Disable SG Cache for Brizy pages FIRST - before any other processing
216 # Using global function defined in otto_pixel.php
217 if (function_exists('metasync_otto_disable_sg_cache_for_brizy')) {
218 metasync_otto_disable_sg_cache_for_brizy();
219 }
220
221 # get the route
222 $route = $this->get_route();
223
224 # get the current page from globas
225 # this is to help us exclude the login page
226
227 $page_now = $GLOBALS['pagenow'] ?? false;
228
229 # check whether page now in excluded pages
230 if(in_array($page_now , $this->no_cache_pages)){
231
232 # stop otto
233 return;
234 }
235
236 /*
237 #uncomment to test on local hosts
238 if(!empty($_GET['otto_test'])){
239
240 # @dev
241 $route = 'https://staging-perm.wp65.qa.internal.searchatlas.com/';
242 }
243 */
244
245 # OPTION 1 IMPLEMENTATION: Check transient cache instead of notification data
246 # This makes the system self-healing - works even if notifications fail
247
248 # Get OTTO UUID from options
249 global $metasync_options;
250 $otto_uuid = $metasync_options['general']['otto_pixel_uuid'] ?? '';
251
252 if (empty($otto_uuid)) {
253 return;
254 }
255
256 $transient_cache = new Metasync_Otto_Transient_Cache($otto_uuid);
257
258 # Create tracking key for cache status
259 $cache_track_key = 'otto_' . md5($route);
260
261 # Check if URL has OTTO suggestions (checks transient, calls API if needed)
262 # Use get_suggestions directly to track cache status
263 $suggestions = $transient_cache->get_suggestions($route, $cache_track_key);
264
265 if (!$suggestions || !$transient_cache->has_payload($suggestions)) {
266 # No suggestions available for this URL.
267 $cache_status = Metasync_Otto_Transient_Cache::get_cache_status($cache_track_key);
268
269 # Two very different situations reach this point, and they must be
270 # treated differently.
271 #
272 # A transient failure means the suggestions exist upstream but could
273 # not be retrieved on this request — the API errored or timed out, the
274 # per-minute budget was spent, or another worker held the lock. The
275 # next request will probably succeed. Serving the un-optimized page
276 # with normal cache headers lets a caching layer store it and hand it
277 # to everyone until its TTL expires, so cap how long it may be kept.
278 #
279 # Everything else here is a legitimate answer: OTTO simply has nothing
280 # for this URL (NO_SUGGESTIONS, including the 404 case). Most URLs on
281 # most sites are in that state permanently, so capping those would
282 # strip caching from the bulk of the site and move that load onto the
283 # origin. Those stay fully cacheable.
284 $transient_failures = ['RATE_LIMITED', 'LOCKED', 'API_ERROR'];
285
286 if (in_array($cache_status, $transient_failures, true)
287 && function_exists('metasync_otto_limit_response_cache')) {
288 metasync_otto_limit_response_cache($cache_status);
289 }
290
291 # Set diagnostic headers only while Debug Mode is enabled.
292 if (!headers_sent() && Metasync_Otto_Render_Strategy::diagnostics_enabled()) {
293 header('X-MetaSync-OTTO-Cache: ' . Metasync_Otto_Render_Strategy::display_cache_status($cache_status ?: 'NO_SUGGESTIONS'));
294 header('X-MetaSync-OTTO-Method: NONE');
295 }
296 return;
297 }
298
299 # comment out for fixing pagination issues
300 # $route = rtrim($route, '/');
301
302 # SiteGround's page cache is no longer disabled up-front for every OTTO page.
303 # The cacheability decision now happens on the HTTP path in render_via_http(),
304 # AFTER the internal fetch — only session/form pages and incomplete renders are
305 # blocked, so plain content pages are finally cacheable. (SiteGround always uses
306 # the HTTP path; the disable is a no-op off SiteGround, so nothing else loses it.)
307
308 # Analyze what OTTO is providing for SEO plugin blocking
309 $blocking_flags = $this->analyze_otto_blocking($suggestions);
310
311 # Get cache status for headers
312 $cache_status = Metasync_Otto_Transient_Cache::get_cache_status($cache_track_key);
313
314 # RENDER PRIORITY:
315 # 1. WP Rocket rocket_buffer filter — WP Rocket caches OTTO-modified HTML,
316 # so Kinsta also caches the correct version. No exit(), no cache bypass.
317 # 2. Output Buffer (fast) — for environments without WP Rocket.
318 # 3. HTTP Request (last resort) — exits early, bypasses all caching.
319 try {
320 # Safety check: ensure render strategy class exists
321 if (!class_exists('Metasync_Otto_Render_Strategy')) {
322 # Class not loaded - use HTTP method as fallback
323 $this->render_via_http($route, $suggestions, $cache_track_key, $cache_status);
324 return;
325 }
326
327 # WP ROCKET PATH: highest priority when WP Rocket is active.
328 # rocket_buffer fires inside WP Rocket's own cache pipeline, so the
329 # cache file WP Rocket writes (and that Kinsta stores) is already
330 # OTTO-modified. Eliminates the race where WP Rocket saved pre-OTTO HTML.
331 if (class_exists('WP_Rocket')) {
332 $wp_rocket_compat_mode = Metasync_Otto_Config::get_wp_rocket_compat_mode();
333 if ($wp_rocket_compat_mode !== 'http') {
334 # disable_otto exits in metasync_start_otto() before we get here, so
335 # only 'http' compat mode needs to skip the rocket_buffer path.
336 $this->render_via_rocket_buffer($suggestions, $blocking_flags, $cache_status);
337 return;
338 }
339 }
340
341 $render_method = Metasync_Otto_Render_Strategy::determine_method();
342
343 if ($render_method === Metasync_Otto_Render_Strategy::METHOD_BUFFER) {
344 # FAST PATH: Use output buffer approach
345 $result = $this->render_via_buffer($route, $suggestions, $blocking_flags, $cache_status);
346
347 if ($result === true) {
348 # Buffer is now active, WordPress will continue rendering
349 # OTTO modifications will be applied when buffer flushes
350 return;
351 }
352
353 # Buffer approach failed, fall back to HTTP method
354 $render_method = Metasync_Otto_Render_Strategy::METHOD_HTTP;
355 }
356
357 if ($render_method === Metasync_Otto_Render_Strategy::METHOD_HTTP) {
358 # FALLBACK PATH: Use traditional HTTP request approach
359 $this->render_via_http($route, $suggestions, $cache_track_key, $cache_status);
360 }
361 } catch (Exception $e) {
362 # Any exception in the render strategy - fall back to HTTP method
363 $this->render_via_http($route, $suggestions, $cache_track_key, $cache_status);
364 } catch (Error $e) {
365 # PHP 7+ Error (like TypeError) - fall back to HTTP method
366 $this->render_via_http($route, $suggestions, $cache_track_key, $cache_status);
367 }
368 }
369
370 /**
371 * Stop WP Rocket writing the current response to its disk cache.
372 *
373 * DONOTCACHEPAGE is not sufficient from inside the rocket_buffer filter: WP
374 * Rocket reads that constant when it decides whether to buffer the request,
375 * which has already happened by the time the filter runs. It evaluates
376 * do_rocket_generate_caching_files immediately before writing the file, so
377 * that is the only lever still effective at this point.
378 *
379 * This matters more than the response headers do. A page served from WP
380 * Rocket's disk cache is delivered by rewrite rules without invoking PHP, so
381 * once a bad file is on disk no header can override it — only deleting the
382 * file or waiting out Rocket's own expiry will clear it.
383 *
384 * PHP_INT_MAX priority so a site's own filters cannot re-enable the write.
385 */
386 private static function block_rocket_cache_write() {
387 if (!defined('DONOTCACHEPAGE')) {
388 define('DONOTCACHEPAGE', true);
389 }
390
391 add_filter('do_rocket_generate_caching_files', '__return_false', PHP_INT_MAX);
392 }
393
394 /**
395 * Render page using WP Rocket's rocket_buffer filter (PREFERRED for WP Rocket sites)
396 *
397 * When WP Rocket is active, hooking into rocket_buffer ensures WP Rocket
398 * caches the OTTO-modified HTML. This means:
399 * - WP Rocket's cache file = OTTO-modified HTML ✓
400 * - Kinsta FastCGI cache = WP Rocket output = OTTO-modified HTML ✓
401 * - No exit() = proper cache lifecycle ✓
402 *
403 * The filter fires on every uncached PHP request. Once WP Rocket has cached
404 * the result, subsequent requests are served directly from cache with zero PHP.
405 *
406 * @param array $suggestions OTTO suggestions data
407 * @param array $blocking_flags SEO plugin blocking flags
408 * @param string $cache_status Cache status for X-MetaSync-* headers
409 */
410 private function render_via_rocket_buffer($suggestions, $blocking_flags, $cache_status) {
411 $o_html = $this->o_html;
412
413 # Hook into WP Rocket's HTML buffer at priority 1 so other rocket_buffer
414 # filters (minifiers, CDN rewriters, etc.) run on already-OTTO-modified HTML.
415 add_filter('rocket_buffer', function($html) use ($o_html, $suggestions, $blocking_flags) {
416 if (empty($html) || strlen($html) < 100) {
417 // Tell WP Rocket not to cache this empty/broken response. The
418 // constant alone is too late here (see block_rocket_cache_write),
419 // so the write-time filter is applied as well.
420 self::block_rocket_cache_write();
421 return $html;
422 }
423
424 # Only process full HTML documents — skip partials, JSON, error responses
425 if (stripos($html, '<html') === false && stripos($html, '<!DOCTYPE') === false) {
426 return $html;
427 }
428
429 # Pass blocking context to the HTML processor (suppresses Yoast/Rank Math tags
430 # that OTTO is replacing, preventing duplicates in the final HTML)
431 $data = $suggestions;
432 if (!empty($blocking_flags)) {
433 $data['_otto_blocking'] = $blocking_flags;
434 }
435
436 # From here on we hold usable suggestions, so any exit that returns
437 # $html unmodified is a genuine failure: WP Rocket would write the
438 # un-optimized markup to its cache file, and whatever sits in front of
439 # it would then serve that copy. This is worse than the plain buffer
440 # path, because the bad page is persisted on disk as well as at the
441 # edge — and this route exists specifically to make the cached copy the
442 # optimized one.
443 #
444 # Note that DONOTCACHEPAGE alone does NOT prevent that write. WP Rocket
445 # evaluates the constant when it decides whether to buffer the page,
446 # which has already happened by the time this filter runs. The
447 # do_rocket_generate_caching_files filter is evaluated immediately
448 # before the file is written, so it is the only lever still available
449 # from here. A disk-cached page is served by rewrite rules without
450 # invoking PHP, so no response header can undo it afterwards.
451 try {
452 $modified = $o_html->process_html_directly($html, $data);
453 # Sanity check: modified HTML must be at least 50% the size of original
454 if ($modified && strlen($modified) > strlen($html) * 0.5) {
455 return $modified;
456 }
457
458 # An unprocessable document (oversized / over the memory budget) is
459 # a permanent property of the page, not a failure to retry. Leave it
460 # fully cacheable — capping it would make the most expensive page on
461 # the site uncacheable forever for no gain.
462 if (class_exists('Metasync_Otto_Render_Strategy')
463 && Metasync_Otto_Render_Strategy::document_was_unprocessable()) {
464 return $html;
465 }
466
467 # Either the rewrite returned nothing usable, or the result was so
468 # much smaller than the input that it is assumed to be mangled.
469 self::block_rocket_cache_write();
470 if (function_exists('metasync_otto_limit_response_cache')) {
471 metasync_otto_limit_response_cache('RENDER_DISCARDED_ROCKET');
472 }
473 if (function_exists('metasync_otto_report_render_failure')) {
474 metasync_otto_report_render_failure(
475 'RENDER_DISCARDED_ROCKET',
476 'OTTO rewrite produced no usable output on the WP Rocket path',
477 [
478 'original_bytes' => strlen($html),
479 'result_bytes' => is_string($modified) ? strlen($modified) : 0,
480 'render_method' => 'wp_rocket',
481 ],
482 'warning'
483 );
484 }
485 } catch (Exception $e) {
486 // Fall through — return original HTML on any failure
487 self::block_rocket_cache_write();
488 if (function_exists('metasync_otto_limit_response_cache')) {
489 metasync_otto_limit_response_cache('RENDER_EXCEPTION_ROCKET');
490 }
491 if (function_exists('metasync_otto_report_render_failure')) {
492 metasync_otto_report_render_failure(
493 'RENDER_EXCEPTION_ROCKET',
494 'OTTO rewrite threw on the WP Rocket path: ' . $e->getMessage(),
495 ['render_method' => 'wp_rocket', 'exception' => get_class($e)],
496 'error'
497 );
498 }
499 } catch (Error $e) {
500 // Fall through — return original HTML on any failure
501 self::block_rocket_cache_write();
502 if (function_exists('metasync_otto_limit_response_cache')) {
503 metasync_otto_limit_response_cache('RENDER_EXCEPTION_ROCKET');
504 }
505 if (function_exists('metasync_otto_report_render_failure')) {
506 metasync_otto_report_render_failure(
507 'RENDER_EXCEPTION_ROCKET',
508 'OTTO rewrite errored on the WP Rocket path: ' . $e->getMessage(),
509 ['render_method' => 'wp_rocket', 'error' => get_class($e)],
510 'error'
511 );
512 }
513 }
514
515 return $html;
516 }, 1);
517
518 # Block SEO plugins before wp_head fires so duplicate tags aren't output
519 $description_tags = $blocking_flags['block_description_tags'] ?? [];
520 $has_description_tags = !empty($description_tags);
521 if ($blocking_flags['block_title'] || $has_description_tags) {
522 if (function_exists('metasync_otto_block_seo_plugins')) {
523 metasync_otto_block_seo_plugins(
524 $blocking_flags['block_title'],
525 $has_description_tags,
526 $description_tags
527 );
528 }
529 }
530
531 # Send X-MetaSync-* diagnostic headers before WordPress outputs anything
532 if (!headers_sent()) {
533 Metasync_Otto_Render_Strategy::set_current_method(Metasync_Otto_Render_Strategy::METHOD_WP_ROCKET);
534 Metasync_Otto_Render_Strategy::send_headers($cache_status);
535 }
536
537 # Return — WordPress continues its normal render lifecycle.
538 # WP Rocket's buffer captures the full HTML, fires rocket_buffer,
539 # our callback modifies it, and WP Rocket caches the OTTO version.
540 }
541
542 /**
543 * Analyze OTTO suggestions to determine what to block from SEO plugins
544 *
545 * @param array $suggestions OTTO suggestions data
546 * @return array Blocking flags
547 */
548 private function analyze_otto_blocking($suggestions) {
549 $has_otto_title = false;
550 $otto_description_tags = []; // Track specific description tags Otto provides
551
552 if (!empty($suggestions['header_replacements']) && is_array($suggestions['header_replacements'])) {
553 foreach ($suggestions['header_replacements'] as $item) {
554 if (!empty($item['type'])) {
555 # Check if OTTO has title
556 if ($item['type'] == 'title' && !empty($item['recommended_value'])) {
557 $has_otto_title = true;
558 }
559 # Check if OTTO has description - track specific tag types
560 if ($item['type'] == 'meta') {
561 # Check for meta[name=description]
562 if (!empty($item['name']) && $item['name'] == 'description' && !empty($item['recommended_value'])) {
563 $otto_description_tags[] = 'meta[name=description]';
564 }
565 # Check for meta[property=og:description]
566 if (!empty($item['property']) && $item['property'] == 'og:description' && !empty($item['recommended_value'])) {
567 $otto_description_tags[] = 'meta[property=og:description]';
568 }
569 # Check for meta[name=twitter:description]
570 if (!empty($item['name']) && $item['name'] == 'twitter:description' && !empty($item['recommended_value'])) {
571 $otto_description_tags[] = 'meta[name=twitter:description]';
572 }
573 }
574 }
575 }
576 }
577
578 # Check header_html_insertion for description
579 # Must have a non-empty content value, otherwise Yoast would be blocked with nothing to replace it
580 if (!empty($suggestions['header_html_insertion'])) {
581 if (preg_match('/<meta[^>]*name=["\']description["\'][^>]*content=["\']([^"\']+)["\'][^>]*>/i', $suggestions['header_html_insertion'])) {
582 $otto_description_tags[] = 'meta[name=description]';
583 }
584 }
585
586 # Remove duplicates
587 $otto_description_tags = array_unique($otto_description_tags);
588
589 return [
590 'block_title' => $has_otto_title,
591 'block_description_tags' => $otto_description_tags, // Pass array of specific tags
592 ];
593 }
594
595 /**
596 * Render page using output buffer approach (FAST)
597 * Eliminates the internal HTTP request by capturing WordPress output directly
598 *
599 * @param string $route Current page route
600 * @param array $suggestions OTTO suggestions data
601 * @param array $blocking_flags SEO plugin blocking flags
602 * @param string $cache_status Cache status for headers
603 * @return bool True if buffer started successfully, false to fall back to HTTP
604 */
605 private function render_via_buffer($route, $suggestions, $blocking_flags, $cache_status) {
606 # Try to start output buffer
607 $buffer_started = Metasync_Otto_Render_Strategy::start_buffer(
608 $suggestions,
609 $route,
610 $this->o_html,
611 $blocking_flags
612 );
613
614 if (!$buffer_started) {
615 # Buffer failed to start
616 return false;
617 }
618
619 # Buffer is active - send headers now (before any output)
620 if (!headers_sent()) {
621 Metasync_Otto_Render_Strategy::send_headers($cache_status);
622 }
623
624 # Block SEO plugins if needed (for the buffered output)
625 $description_tags = $blocking_flags['block_description_tags'] ?? [];
626 $has_description_tags = !empty($description_tags);
627 if ($blocking_flags['block_title'] || $has_description_tags) {
628 if (function_exists('metasync_otto_block_seo_plugins')) {
629 metasync_otto_block_seo_plugins(
630 $blocking_flags['block_title'],
631 $has_description_tags,
632 $description_tags
633 );
634 }
635 }
636
637 # Return true - WordPress will continue rendering, buffer will capture and process
638 return true;
639 }
640
641 /**
642 * Render page using HTTP request approach (FALLBACK)
643 * Makes internal wp_remote_get request to fetch page HTML
644 *
645 * @param string $route Current page route
646 * @param array $suggestions OTTO suggestions data
647 * @param string $cache_track_key Cache tracking key
648 * @param string $cache_status Cache status for headers
649 */
650 private function render_via_http($route, $suggestions, $cache_track_key, $cache_status) {
651 # Set method indicator
652 Metasync_Otto_Render_Strategy::set_current_method(Metasync_Otto_Render_Strategy::METHOD_HTTP);
653
654 # On Divi sites, skip OTTO for the first HTTP render per page
655 # per 24h. OTTO's internal wp_remote_get creates corrupted CSS cache
656 # files in et-cache/{post_id}/ (wrong server context). By returning
657 # false once, WordPress renders the page normally — building correct
658 # Divi CSS caches. Subsequent OTTO renders within 24h use those caches.
659 # The transient stores the activation timestamp so it auto-invalidates
660 # when the plugin is deactivated/reactivated.
661 if (defined('ET_CORE_VERSION')) {
662 $cache_key = 'otto_divi_css_fix_' . md5($route);
663 $activated = get_option('metasync_activated_at', '');
664 $cached = get_transient($cache_key);
665 if ($cached === false || $cached !== $activated) {
666 set_transient($cache_key, $activated, DAY_IN_SECONDS);
667 # Deliberate one-off skip, and the next request renders correctly —
668 # so cap how long this un-optimized copy may be cached rather than
669 # letting a caching layer pin it for its full TTL.
670 if (function_exists('metasync_otto_limit_response_cache')) {
671 metasync_otto_limit_response_cache('DIVI_FIRST_RENDER_SKIP');
672 }
673 return false;
674 }
675 }
676
677 # check if we have the route html (pass suggestions to avoid duplicate API call)
678 $route_html = $this->get_route_html($route, $cache_track_key, $suggestions);
679
680 # check that route html is valid
681 if(empty($route_html)){
682 # Fetch failed / empty (e.g. SG Optimizer truncated the internal response) —
683 # WordPress will serve the un-optimized page. Cap how long that copy may be
684 # cached, using the same mechanism as the deliberate skips above rather than a
685 # second, competing one: it reconciles existing directives, keeps logged-in
686 # responses fully no-store, and never grants caching nothing had granted.
687 if (function_exists('metasync_otto_limit_response_cache')) {
688 metasync_otto_limit_response_cache('HTTP_FETCH_FAILED');
689 }
690 return false;
691 }
692
693 $route_html_string = is_string($route_html) ? $route_html : $route_html->__toString();
694
695 # Detect incomplete Divi rendering in OTTO's HTTP render output.
696 # OTTO's internal wp_remote_get runs in a different server context than the
697 # normal page load. This can cause Divi to produce incomplete output:
698 #
699 # 1. Cold CSS cache: Divi outputs inline <style> blocks instead of external
700 # <link> tags (TB CSS files not yet generated)
701 # 2. Missing Google Fonts: Divi's font enqueue depends on request context
702 # (cookies, headers) that differ in the internal fetch
703 #
704 # If OTTO serves this incomplete HTML via exit(), SG Optimizer caches it —
705 # breaking CSS for all visitors until manual cache purge.
706 #
707 # Fix: skip OTTO for this request (return false), letting WordPress render
708 # normally. This builds Divi's caches so the next OTTO request works correctly.
709 #
710 # Both checks below are self-resolving — the next render finds warm caches —
711 # so the un-optimized copy served now gets a capped cache lifetime rather
712 # than being pinned for a caching layer's full TTL.
713 #
714 # The remaining fail-open exits on this path are deliberately NOT capped.
715 # They mean the site could not fetch its own page (blocked loopback request,
716 # HTTP Basic Auth, a firewall rejecting the internal user-agent) or that the
717 # document cannot be processed at all. Those are whole-site, permanent
718 # conditions: OTTO cannot work on any page, so capping cache lifetime would
719 # rescue nothing while moving the entire site's traffic to the origin.
720 if (defined('ET_CORE_VERSION')) {
721 # Check 1: Cold TB CSS cache (inline styles instead of external link)
722 if (preg_match('/<style\s[^>]*id=["\']et-core-unified-tb-[^"\']*-cached-inline-styles["\']/', $route_html_string)) {
723 if (function_exists('metasync_otto_limit_response_cache')) {
724 metasync_otto_limit_response_cache('DIVI_COLD_CSS_CACHE');
725 }
726 return false;
727 }
728 # Check 2: Missing Google Fonts CSS (Divi enqueues this on every page)
729 # Normal render has: <link ... id='et-builder-googlefonts-cached-css' ...>
730 # or <link ... id='et-builder-googlefonts-css' ...>
731 # If neither is present, the internal fetch didn't load fonts properly.
732 if (strpos($route_html_string, 'et-builder-googlefonts') === false
733 && strpos($route_html_string, 'fonts.googleapis.com') === false
734 ) {
735 if (function_exists('metasync_otto_limit_response_cache')) {
736 metasync_otto_limit_response_cache('DIVI_MISSING_FONTS');
737 }
738 return false;
739 }
740 }
741
742 if (strpos($route_html_string, 'pix-sliding-headline-2') !== false || strpos($route_html_string, 'pix-intro-sliding-text') !== false) {
743 # Only apply fix within sliding text contexts to avoid breaking other layouts
744 $route_html_string = preg_replace('#(</span></span>)(<span\s+class=["\'][^"\']*slide-in-container[^"\']*["\'][^>]*>)#i', '$1 $2', $route_html_string);
745 }
746
747 # Fix for Elementor widgets - preserve whitespace between inline spans
748 # This prevents text/elements from appearing merged when HTML is minified
749
750 # Fix for Elementor social icons (elementor-grid-item)
751 if (strpos($route_html_string, 'elementor-social-icons-wrapper') !== false) {
752 # Add whitespace between closing and opening span tags within elementor-grid-item
753 $route_html_string = preg_replace(
754 '#(</span>)(<span\s+class=["\'][^"\']*elementor-grid-item[^"\']*["\'][^>]*>)#i',
755 '$1 $2',
756 $route_html_string
757 );
758 }
759
760 # Fix for Elementor animated headline (elementor-headline-text-wrapper)
761 if (strpos($route_html_string, 'elementor-headline') !== false) {
762 # Add whitespace between closing and opening span tags with elementor-headline-text-wrapper
763 $route_html_string = preg_replace(
764 '#(</span>)(<span\s+class=["\'][^"\']*elementor-headline-text-wrapper[^"\']*["\'][^>]*>)#i',
765 '$1 $2',
766 $route_html_string
767 );
768 }
769
770 # Check for Revolution Slider to determine if special handling is needed
771 # Check for both Revolution Slider 6 (<rs-module-wrap>) and Revolution Slider 7 (<sr7-module>)
772 $has_revslider = (strpos($route_html_string, '<rs-module-wrap') !== false || strpos($route_html_string, '<sr7-module') !== false);
773
774 if($has_revslider){
775 # Revolution Slider detected - fire WordPress hooks to ensure proper initialization
776 # Use output buffering to prevent hooks from corrupting Otto's processed HTML
777 ob_start();
778 do_action('wp_enqueue_scripts');
779 $discarded_output = ob_get_clean();
780
781 }
782
783 # If Divi's module-design CSS is missing from OTTO output,
784 # fetch it directly and inject it. This handles the case where the
785 # internal wp_remote_get response was truncated by SG Optimizer's parser.
786 if (strpos($route_html_string, 'et-builder-module-design') === false
787 && function_exists('et_theme_builder_decorate_page_resource_slug')
788 && function_exists('et_core_page_resource_get')
789 ) {
790 # Try to get Divi's inline CSS from its page resource manager
791 $post_id = get_the_ID();
792 if ($post_id) {
793 $resource_slug = et_theme_builder_decorate_page_resource_slug($post_id, 'module-design');
794 $manager = et_core_page_resource_get('builder', $resource_slug, $post_id, 40);
795 if ($manager && method_exists($manager, 'get_data')) {
796 $css_data = $manager->get_data('inline');
797 if (!empty($css_data)) {
798 $style_tag = '<style id="et-builder-' . esc_attr($resource_slug) . '-cached-inline-styles">'
799 . wp_strip_all_tags($css_data) . '</style>';
800 $route_html_string = str_replace('</body>', $style_tag . "\n" . '</body>', $route_html_string);
801 }
802 }
803 }
804 }
805
806 # Decide cacheability from the internal fetch + the final output, then serve.
807 # 1) Hand the visitor the session their page was built around (fixes forms that
808 # were silently failing on the HTTP path because the fetch cookie was dropped).
809 # 2) Block shared caching when the fetched page set a cookie, when its own render
810 # declared itself uncacheable (PHP's session cache-limiter — true for resumed
811 # sessions too), when the visitor carries cart/auth cookies that change the
812 # rendered content, or when the render came back incomplete.
813 # 3) A plain, complete page gets no cache header at all → the host finally caches
814 # it (the SiteGround/Oxygen relief this ticket is about).
815 Metasync_Otto_Render_Strategy::passthrough_http_fetch_cookies();
816
817 $must_not_cache =
818 Metasync_Otto_Render_Strategy::http_fetch_had_cookie()
819 || Metasync_Otto_Render_Strategy::http_fetch_no_cache()
820 || Metasync_Otto_Render_Strategy::request_has_visitor_specific_cookie()
821 || !Metasync_Otto_Render_Strategy::http_output_is_complete($route_html_string);
822
823 # Send response headers
824 Metasync_Otto_Render_Strategy::send_headers($cache_status);
825
826 if ($must_not_cache) {
827 Metasync_Otto_Render_Strategy::block_http_cache();
828 }
829
830 # continue to render the html
831 echo $route_html_string;
832
833 # prevent further wp execution
834 exit();
835 }
836
837 }
838