403Webshell
Server IP : 89.108.64.180  /  Your IP : 216.73.216.60
Web Server : Apache/2.4.41 (Ubuntu)
System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User : www-root ( 1010)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/otelreskator.ru/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/otelreskator.ru/wp-content/plugins/w3-total-cache/Enterprise_SnsBase.php
<?php
namespace W3TC;

if ( !defined( 'W3TC_SKIPLIB_AWS' ) ) {
	require_once W3TC_DIR . '/vendor/autoload.php';
}



/**
 * Base class for Sns communication
 */
class Enterprise_SnsBase {
	/**
	 * PHP5-style constructor
	 */
	function __construct() {
		$this->_config = Dispatcher::config();

		$this->_region = $this->_config->get_string( 'cluster.messagebus.sns.region' );
		$this->_topic_arn = $this->_config->get_string( 'cluster.messagebus.sns.topic_arn' );
		$this->_api_key = $this->_config->get_string( 'cluster.messagebus.sns.api_key' );
		$this->_api_secret = $this->_config->get_string( 'cluster.messagebus.sns.api_secret' );

		$this->_debug = $this->_config->get_boolean( 'cluster.messagebus.debug' );
		$this->_api = null;
	}

	/**
	 * Returns API object
	 *
	 * @throws Exception
	 * @return AmazonSNS
	 */
	protected function _get_api() {
		if ( is_null( $this->_api ) ) {
			if ( empty( $this->_api_key ) && empty( $this->_api_secret ) ) {
				$credentials = \Aws\Credentials\CredentialProvider::defaultProvider();
			} else {
				if ( empty( $this->_api_key ) ) {
					throw new \Exception( 'API Key is not configured' );
				}

				if ( empty( $this->_api_secret ) ) {
					throw new \Exception( 'API Secret is not configured' );
				}

				$credentials = new \Aws\Credentials\Credentials(
					$this->_api_key, $this->_api_secret );
			}

			$this->_api = new \Aws\Sns\SnsClient( array(
				'credentials' => $credentials,
				'region' => $this->_region,
				'version' => '2010-03-31'
			) );
		}

		return $this->_api;
	}

	/**
	 * Write log entry
	 *
	 * @param string  $message
	 * @param array   $backtrace
	 * @return bool|int
	 */
	protected function _log( $message, $backtrace = null ) {
		if ( !$this->_debug )
			return true;

		$data = sprintf( "[%s] %s\n", date( 'r' ), $message );
		if ( $backtrace ) {
			$debug = print_r( $backtrace, true );
			$data .= $debug . "\n";
		}
		$data = strtr( $data, '<>', '..' );

		$filename = Util_Debug::log_filename( 'sns' );

		return @file_put_contents( $filename, $data, FILE_APPEND );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit