golden hour
/home/godaofbq/cellsonic-usa.com/wp-content/plugins/litespeed-cache/src
⬆️ Go Up
Upload
File/Folder
Size
Actions
activation.cls.php
17.62 KB
Del
OK
admin-display.cls.php
48.76 KB
Del
OK
admin-settings.cls.php
12.77 KB
Del
OK
admin.cls.php
6.13 KB
Del
OK
api.cls.php
10.44 KB
Del
OK
avatar.cls.php
9.25 KB
Del
OK
base.cls.php
37.66 KB
Del
OK
cdn
-
Del
OK
cdn.cls.php
17.76 KB
Del
OK
cloud-auth-callback.trait.php
10.43 KB
Del
OK
cloud-auth-ip.trait.php
4.33 KB
Del
OK
cloud-auth.trait.php
9.38 KB
Del
OK
cloud-misc.trait.php
10.32 KB
Del
OK
cloud-node.trait.php
5.95 KB
Del
OK
cloud-queue-svc.cls.php
9.33 KB
Del
OK
cloud-request.trait.php
19.68 KB
Del
OK
cloud.cls.php
7.32 KB
Del
OK
conf.cls.php
19.53 KB
Del
OK
control.cls.php
24.35 KB
Del
OK
core.cls.php
21.53 KB
Del
OK
crawler-map.cls.php
22.3 KB
Del
OK
crawler.cls.php
44 KB
Del
OK
css.cls.php
7.26 KB
Del
OK
data.cls.php
22.2 KB
Del
OK
data.upgrade.func.php
6.41 KB
Del
OK
data_structure
-
Del
OK
db-optm.cls.php
15.35 KB
Del
OK
debug2.cls.php
18.4 KB
Del
OK
doc.cls.php
5.45 KB
Del
OK
error.cls.php
7.35 KB
Del
OK
esi.cls.php
31.37 KB
Del
OK
file.cls.php
13.75 KB
Del
OK
guest.cls.php
2.75 KB
Del
OK
gui.cls.php
35.09 KB
Del
OK
health.cls.php
4.66 KB
Del
OK
htaccess.cls.php
29.81 KB
Del
OK
img-optm-manage.trait.php
31.25 KB
Del
OK
img-optm-pull.trait.php
22.1 KB
Del
OK
img-optm-send.trait.php
20.77 KB
Del
OK
img-optm.cls.php
5.25 KB
Del
OK
import.cls.php
4.29 KB
Del
OK
import.preset.cls.php
5.5 KB
Del
OK
lang.cls.php
17.02 KB
Del
OK
localization.cls.php
4.03 KB
Del
OK
media.cls.php
44.06 KB
Del
OK
metabox.cls.php
5.29 KB
Del
OK
object-cache-wp.cls.php
18.82 KB
Del
OK
object-cache.cls.php
21.82 KB
Del
OK
object.lib.php
13.85 KB
Del
OK
optimax.cls.php
8.94 KB
Del
OK
optimize.cls.php
38.74 KB
Del
OK
optimizer.cls.php
12.71 KB
Del
OK
placeholder.cls.php
17.64 KB
Del
OK
purge.cls.php
35.48 KB
Del
OK
report.cls.php
7.53 KB
Del
OK
rest.cls.php
7.95 KB
Del
OK
root.cls.php
14.29 KB
Del
OK
router.cls.php
20.86 KB
Del
OK
str.cls.php
3.08 KB
Del
OK
tag.cls.php
9.26 KB
Del
OK
task.cls.php
8.98 KB
Del
OK
tool.cls.php
4.58 KB
Del
OK
ucss.cls.php
7.34 KB
Del
OK
utility.cls.php
27.11 KB
Del
OK
vary.cls.php
21.33 KB
Del
OK
vpi.cls.php
4.25 KB
Del
OK
Edit: health.cls.php
<?php /** * The page health * * @since 3.0 * @package LiteSpeed */ namespace LiteSpeed; defined( 'WPINC' ) || exit(); /** * Health check handler. * * @since 3.0 */ class Health extends Base { const LOG_TAG = '[Health]'; const TYPE_SPEED = 'speed'; const TYPE_SCORE = 'score'; /** * Cached summary data. * * @var array */ protected $_summary; /** * Init * * @since 3.0 */ public function __construct() { $this->_summary = self::get_summary(); } /** * Cron entry point — called by WP cron to process pending health request. * * @since 7.9 */ public static function cron() { $_instance = self::cls(); if ( empty( $_instance->_summary['pending'] ) ) { return; } $_instance->_run( $_instance->_summary['pending'] ); } /** * Run health check request for given type. * * @since 7.9 * * @param string $type TYPE_SPEED or TYPE_SCORE. */ private function _run( $type ) { // If try_later cooldown is still active, defer to cron if ( ! empty( $this->_summary['health_next_run_after'] ) && time() < $this->_summary['health_next_run_after'] ) { $this->_summary['pending'] = $type; self::save_summary(); self::debug( 'Deferred to cron (try_later active) [type] ' . $type ); return; } // Clear expired try_later flag unset( $this->_summary['health_next_run_after'] ); self::debug( 'Running [type] ' . $type ); $res = $this->_send_req( $type ); if ( $res ) { unset( $this->_summary['pending'] ); } else { // Failed or got try_later — mark pending for cron retry $this->_summary['pending'] = $type; } self::save_summary(); } /** * Send health check request to cloud service. * * @since 6.0 * * @param string $type TYPE_SPEED or TYPE_SCORE. * @return bool */ private function _send_req( $type ) { $data = [ 'action' => $type ]; $json = Cloud::post( Cloud::SVC_HEALTH, $data, 600 ); if ( ! is_array( $json ) ) { self::debug( 'Invalid response' ); return false; } // Handle try_later from QC if ( ! empty( $json['try_later'] ) ) { $ttl = (int) $json['try_later']; $this->_summary['health_next_run_after'] = time() + $ttl; self::save_summary(); self::debug( 'Server requested try_later: ' . $ttl . 's' ); return false; } if ( empty( $json['data']['before'] ) || empty( $json['data']['after'] ) ) { self::debug( 'No data returned from cloud' ); return false; } $this->_summary[ $type . '.before' ] = $json['data']['before']; $this->_summary[ $type . '.after' ] = $json['data']['after']; self::save_summary(); self::debug( 'Saved result' ); return true; } /** * Generate scores * * @since 3.0 */ public function scores() { $speed_before = 0; $speed_after = 0; $speed_improved = 0; if ( ! empty( $this->_summary['speed.before'] ) && ! empty( $this->_summary['speed.after'] ) ) { // Format loading time $speed_before = $this->_summary['speed.before'] / 1000; if ( $speed_before < 0.01 ) { $speed_before = 0.01; } $speed_before = number_format( $speed_before, 2 ); $speed_after = $this->_summary['speed.after'] / 1000; if ( $speed_after < 0.01 ) { $speed_after = number_format( $speed_after, 3 ); } else { $speed_after = number_format( $speed_after, 2 ); } $speed_improved = ( ( $this->_summary['speed.before'] - $this->_summary['speed.after'] ) * 100 ) / $this->_summary['speed.before']; if ( $speed_improved > 99 ) { $speed_improved = number_format( $speed_improved, 2 ); } else { $speed_improved = number_format( $speed_improved ); } } $score_before = 0; $score_after = 0; $score_improved = 0; if ( ! empty( $this->_summary['score.before'] ) && ! empty( $this->_summary['score.after'] ) ) { $score_before = $this->_summary['score.before']; $score_after = $this->_summary['score.after']; // Format Score $score_improved = ( ( $score_after - $score_before ) * 100 ) / $score_after; if ( $score_improved > 99 ) { $score_improved = number_format( $score_improved, 2 ); } else { $score_improved = number_format( $score_improved ); } } return [ 'speed_before' => $speed_before, 'speed_after' => $speed_after, 'speed_improved' => $speed_improved, 'score_before' => $score_before, 'score_after' => $score_after, 'score_improved' => $score_improved, ]; } /** * Handle all request actions from main cls * * @since 3.0 * @access public */ public function handler() { $type = Router::verify_type(); switch ( $type ) { case self::TYPE_SPEED: case self::TYPE_SCORE: $this->_run( $type ); break; default: break; } Admin::redirect(); } }
Save