Server IP : 192.64.118.117 / Your IP : 3.144.199.9 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/tcrgfinancesuite.com/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php namespace W3TC; /** * Purge using AmazonSNS object */ /** * class Sns */ 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 ( $this->_api_key == '' ) throw new \Exception( 'API Key is not configured' ); if ( $this->_api_secret == '' ) throw new \Exception( 'API Secret is not configured' ); require_once W3TC_LIB_DIR . '/SNS/sdk.class.php'; $this->_api = new \AmazonSNS( $this->_api_key, $this->_api_secret ); if ( $this->_region != '' ) { $this->_api->set_region( $this->_region ); } } 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 ); } }