uawdijnntqw1x1x1
IP : 216.73.217.174
Hostname : mailtech.lifestyleretreats.com
Kernel : Linux mailtech.lifestyleretreats.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Disable Function : exec,passthru,shell_exec,system
OS : Linux
PATH:
/
home
/
lrindo5
/
radhia.lrindo.com
/
wp-content
/
plugins
/
w3-total-cache
/
Cdnfsd_CloudFront_Engine.php
/
/
<?php namespace W3TC; if ( !defined( 'W3TC_SKIPLIB_AWS' ) ) { require_once W3TC_LIB_DIR . '/Aws/aws-autoloader.php'; } class Cdnfsd_CloudFront_Engine { private $access_key; private $secret_key; private $distribution_id; public function __construct( $config = array() ) { $this->access_key = $config['access_key']; $this->secret_key = $config['secret_key']; $this->distribution_id = $config['distribution_id']; } public function flush_urls( $urls ) { $api = $this->_api(); $uris = array(); foreach ( $urls as $url ) { $parsed = parse_url( $url ); $relative_url = ( isset( $parsed['path'] ) ? $parsed['path'] : '/' ) . ( isset( $parsed['query'] ) ? '?' . $parsed['query'] : '' ); $uris[] = $relative_url; } $api->createInvalidation( array( 'DistributionId' => $this->distribution_id, 'InvalidationBatch' => array( 'CallerReference' => 'w3tc-' . microtime(), 'Paths' => array( 'Items' => $uris, 'Quantity' => count( $uris ), ), ) ) ); } /** * Flushes CDN completely */ public function flush_all() { $api = $this->_api(); $uris = array( '/*' ); $api->createInvalidation( array( 'DistributionId' => $this->distribution_id, 'InvalidationBatch' => array( 'CallerReference' => 'w3tc-' . microtime(), 'Paths' => array( 'Items' => $uris, 'Quantity' => count( $uris ), ), ) ) ); } private function _api() { if ( empty( $this->access_key ) || empty( $this->secret_key ) || empty( $this->distribution_id ) ) throw new \Exception( __( 'Access key not specified.', 'w3-total-cache' ) ); $credentials = new \Aws\Credentials\Credentials( $this->access_key, $this->secret_key ); return new \Aws\CloudFront\CloudFrontClient( array( 'credentials' => $credentials, 'region' => 'us-east-1', 'version' => '2018-11-05' ) ); } }
/home/lrindo5/radhia.lrindo.com/wp-content/plugins/w3-total-cache/Cdnfsd_CloudFront_Engine.php