HEX
Server: LiteSpeed
System: Linux shams.tasjeel.ae 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User: infowars (1469)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/infowars/www/wp-content/plugins/backup/src/JetBackup/Archive/Gzip.php
<?php

namespace JetBackup\Archive;

use JetBackup\DirIterator\DirIteratorFile;
use JetBackup\Exception\GzipException;

if (!defined( '__JETBACKUP__')) die('Direct access is not allowed');

/**
 * Class for compressing files using gzip.
 */
class Gzip {

	const MAX_RETRIES = 3;
	const RETRY_DELAY_MS = 100;
	const DEFAULT_COMPRESS_CHUNK_SIZE = 10485760; // 10MB
	const DEFAULT_DECOMPRESS_CHUNK_SIZE = 1048576; // 1MB
	const DEFAULT_COMPRESSION_LEVEL = -1;

	private function __construct() {}

	/**
	 * @throws GzipException
	 */
	private static function _getInfo($file) {
		$info = new \stdClass();
		if(file_exists($file)) {
			$info = json_decode(file_get_contents($file));
			if($info === false) throw new GzipException("Failed fetching compress information");
		}
		return $info;
	}

	/**
	 * @param $file
	 * @param $data
	 *
	 * @return void
	 * @throws GzipException
	 */
	private static function _putInfo($file, $data)
	{
		$tempFile = $file . '.tmp';

		$jsonData = json_encode($data);
		if ($jsonData === false) throw new GzipException("Failed to encode compress information: " . json_last_error_msg());

		$maxRetries     = self::MAX_RETRIES;
		$retryDelayMs   = self::RETRY_DELAY_MS;
		$lastErrorWrite = null;
		$bytesWritten = false;

		for ($i = 0; $i < $maxRetries; $i++) {

			$lastErrorWrite = null;

			set_error_handler(function ($severity, $message, $errFile, $errLine) use (&$lastErrorWrite) {
				$lastErrorWrite = $message . " in {$errFile}:{$errLine}";
				return true;
			});

			$bytesWritten = @file_put_contents($tempFile, $jsonData);
			restore_error_handler();

			if ($bytesWritten !== false) break;
			usleep($retryDelayMs * 1000); // retry
		}

		if ($bytesWritten === false) {
			$extra = $lastErrorWrite ? " ({$lastErrorWrite})" : '';
			throw new GzipException("Failed to write compress information to temporary file '{$tempFile}' after {$maxRetries} attempts{$extra}");
		}

		$lastErrorRename = null;

		for ($i = 0; $i < $maxRetries; $i++) {

			$lastErrorRename = null;

			set_error_handler(function ($severity, $message, $errFile, $errLine) use (&$lastErrorRename) {
				$lastErrorRename = $message . " in {$errFile}:{$errLine}";
				return true;
			});

			$renamed = @rename($tempFile, $file);
			restore_error_handler();

			if ($renamed === true) return;
			usleep($retryDelayMs * 1000);
		}

		$extra = $lastErrorRename ? " ({$lastErrorRename})" : '';
		throw new GzipException("Failed to atomically write compress information to '{$file}' after {$maxRetries} attempts{$extra}");
	}



	/**
	 * @throws GzipException
	 */
	public static function compress($file, $chunkSize=self::DEFAULT_COMPRESS_CHUNK_SIZE, $compressionLevel=self::DEFAULT_COMPRESSION_LEVEL, ?callable $callback=null) {
		if(!file_exists($file) || !is_file($file)) throw new GzipException("Source file not found");

		$target = $file . '.gz';

		$info_file = $target . '.compress.info';
		$info = self::_getInfo($info_file);

		$fd = fopen($file, 'r');
		$gzfd = fopen($target, 'ab');

		$read = $write = 0;
		if(isset($info->fdpos) && $info->fdpos) {
			$read = $info->fdpos;
			fseek($fd, $info->fdpos);
		}
		if(isset($info->fdgzpos) && $info->fdgzpos) {
			$write = $info->fdgzpos;
			fseek($gzfd, $info->fdgzpos);
		}

		while(!feof($fd)) {
			$write += fwrite($gzfd, gzencode(fread($fd, $chunkSize), $compressionLevel));
			$read += $chunkSize;

			self::_putInfo($info_file, [
				'fdpos'         => $read,
				'fdgzpos'       => $write,
			]);

			if($callback) $callback($read, DirIteratorFile::safe_filesize($file));
		}

		if(feof($fd)) {
			@unlink($file);
			@unlink($info_file);
		}

		fclose($fd);
		fclose($gzfd);
	}

	/**
	 * @throws GzipException
	 */
	public static function decompress($file, ?callable $callback=null, $chunkSize=self::DEFAULT_DECOMPRESS_CHUNK_SIZE) {
		if(!file_exists($file) || !is_file($file)) throw new GzipException("Source file not found");

		$info_file = $file . '.decompress.info';
		$info = self::_getInfo($info_file);

		// remove .gz suffix
		$target = substr($file, 0, -3);

		$fd = fopen($target, 'a');
		$gzfd = gzopen($file, 'rb');

		$read = $write = 0;
		if(isset($info->fdpos) && $info->fdpos) {
			$write = $info->fdpos;
			fseek($fd, $info->fdpos);
		}

		if(isset($info->fdgzpos) && $info->fdgzpos) {
			$read = $info->fdgzpos;
			gzseek($gzfd, $info->fdgzpos);
		}

		while(!feof($gzfd)) {
			$write += fwrite($fd, gzread($gzfd, $chunkSize));
			$read += $chunkSize;

			self::_putInfo($info_file, [
				'fdpos'         => $write,
				'fdgzpos'       => $read,
			]);

			if($callback) $callback(
				'Gzip',
				'Decompressing',
				(int) (DirIteratorFile::safe_filesize($file) * 3),  // estimating X3 compression ratio, just for percentage calc
				$read)
			;
		}

		if(feof($gzfd)) {
			@unlink($file);
			@unlink($info_file);
		}

		fclose($fd);
		gzclose($gzfd);
	}
}