HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/shortpixel-image-optimiser/class/external/offload/Offloader.php
<?php

namespace ShortPixel\External\Offload;

use ShortPixel\ShortPixelLogger\ShortPixelLogger as Log;

if (! defined('ABSPATH')) {
	exit; // Exit if accessed directly.
}

// Class to check what offloader to use and load it. To offload.
class Offloader
{
	private static $instance;
	private static $offload_instance;
	private $offloadName;

	public static function getInstance()
	{
		if (is_null(self::$instance)) {
			self::$instance = new Offloader();
		}

		return self::$instance;
	}

	public function __construct()
	{
		add_action('plugins_loaded', array($this, 'load'));
		add_action('as3cf_init', array($this, 'initS3Offload'));
	}

	public function load()
	{
		$bool = $this->checkVirtualLoaders();
		if (true === $bool) {
			self::$offload_instance = new VirtualFileSystem($this->offloadName);
		}
	}

	protected function checkVirtualLoaders()
	{
		if (class_exists('\Stack\Config')) // Bitpoke Stack MU
		{
			$this->offloadName = 'stack';
			return true;
		} elseif (defined('STACK_MEDIA_BUCKET')) {
			$this->offloadName = 'stack';
			return true;
		} elseif (class_exists('\S3_Uploads\Plugin')) {
			$this->offloadName = 's3-uploads-human';
			return true;
		}
		elseif(defined('INFINITE_UPLOADS_VERSION'))   // infinite uploads
		{
			$this->offloadName = 'infinite-uploads'; 
			if (function_exists('infinite_uploads_enabled') && true == \infinite_uploads_enabled())
			{
				 self::$offload_instance = new InfiniteUploads();
			}
			return true;
		}	
		/* (Doesn't work)
				elseif (function_exists('ud_check_stateless_media'))
				{
					 $this->offloadName = 'wp-stateless';
					 return true;
				} */
		return false;
	}

	// If As3cfInit is called check WpOffload runtime. This is later in order than plugins_loaded!
	public function initS3Offload($as3cf)
	{
		if (is_null(self::$offload_instance)) {
			$this->offloadName = 'wp-offload';
			self::$offload_instance = new wpOffload($as3cf);
		} else {
			Log::addError('Instance is not null - other virtual component has loaded! (' . $this->offloadName . ')');
		}
	}

	public function isActive($name = 'wp-offload')
	{
		// No offloaders / nothing active. 
		if (is_null($this->offloadName))
		{
			 return false; 
		}

		if ('wp-offload' == $name)
		{
			return self::$offload_instance->isActive();
		}

		// Other offloaders not implemented. Can be added on demand.
		return null;
	}

	public function getOffloadName()
	{
		return $this->offloadName;
	}
}

Offloader::getInstance(); // init