Sindbad~EG File Manager

Current Path : /home/escuelai/www/wp-content/plugins/w3-total-cache/
Upload File :
Current File : /home/escuelai/www/wp-content/plugins/w3-total-cache/BrowserCache_Environment_Apache.php

<?php
/**
 * File: BrowserCache_Environment_Apache.php
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class BrowserCache_Environment_Apache
 *
 * phpcs:disable Squiz.Strings.DoubleQuoteUsage.NotRequired
 *
 * Environment (rules) generation for apache
 * TODO: move all apache-specific code here from BrowserCache_Environment
 */
class BrowserCache_Environment_Apache {
	/**
	 * Config
	 *
	 * @var Config
	 */
	private $c;

	/**
	 * Constructor
	 *
	 * @param Config $config Config.
	 *
	 * @return void
	 */
	public function __construct( $config ) {
		$this->c = $config;
	}

	/**
	 * Rules rewrite
	 *
	 * @return string
	 */
	public function rules_rewrite() {
		if ( ! $this->c->get_boolean( 'browsercache.rewrite' ) ) {
			return '';
		}

		$core       = Dispatcher::component( 'BrowserCache_Core' );
		$extensions = $core->get_replace_extensions( $this->c );

		$rules   = array();
		$rules[] = '<IfModule mod_rewrite.c>';
		$rules[] = '    RewriteCond %{REQUEST_FILENAME} !-f';
		$rules[] = '    RewriteRule ^(.+)\.(x[0-9]{5})\.(' . implode( '|', $extensions ) . ')$ $1.$3 [L]';
		$rules[] = '</IfModule>';
		$rules[] = '';

		return implode( "\n", $rules );
	}

	/**
	 * Generate rules related to prevent for media 404 error by WP
	 *
	 * @param array $mime_types Mime types.
	 *
	 * @return string
	 */
	public function rules_no404wp( $mime_types ) {
		if ( ! $this->c->get_boolean( 'browsercache.no404wp' ) ) {
			return '';
		}

		$cssjs_types = $mime_types['cssjs'];
		$html_types  = $mime_types['html'];
		$other_types = $mime_types['other'];

		$extensions = array_merge( array_keys( $cssjs_types ), array_keys( $html_types ), array_keys( $other_types ) );

		$permalink_structure     = get_option( 'permalink_structure' );
		$permalink_structure_ext = ltrim( strrchr( $permalink_structure, '.' ), '.' );

		if ( '' !== $permalink_structure_ext ) {
			foreach ( $extensions as $index => $extension ) {
				if ( strstr( $extension, $permalink_structure_ext ) !== false ) {
					$extensions[ $index ] = preg_replace( '~\|?' . Util_Environment::preg_quote( $permalink_structure_ext ) . '\|?~', '', $extension );
				}
			}
		}

		$exceptions = $this->c->get_array( 'browsercache.no404wp.exceptions' );

		$wp_uri = network_home_url( '', 'relative' );
		$wp_uri = rtrim( $wp_uri, '/' );

		$rules  = '';
		$rules .= "<IfModule mod_rewrite.c>\n";
		$rules .= "    RewriteEngine On\n";

		// in subdir - rewrite theme files and similar to upper folder if file exists.
		if ( Util_Environment::is_wpmu() && ! Util_Environment::is_wpmu_subdomain() ) {
			$document_root = Util_Rule::apache_docroot_variable();

			$rules .= "    RewriteCond %{REQUEST_FILENAME} !-f\n";
			$rules .= "    RewriteCond %{REQUEST_FILENAME} !-d\n";
			$rules .= "    RewriteCond %{REQUEST_URI} ^$wp_uri/([_0-9a-zA-Z-]+/)(.*\.)(" . implode( '|', $extensions ) . ")$ [NC]\n";
			$rules .= '    RewriteCond "' . $document_root . $wp_uri . '/%2%3" -f' . "\n";
			$rules .= "    RewriteRule .* $wp_uri/%2%3 [L]\n\n";
		}

		$rules .= "    RewriteCond %{REQUEST_FILENAME} !-f\n";
		$rules .= "    RewriteCond %{REQUEST_FILENAME} !-d\n";

		$imploded = implode( '|', $exceptions );

		if ( ! empty( $imploded ) ) {
			$rules .= "    RewriteCond %{REQUEST_URI} !(" . $imploded . ")\n";
		}

		$rules .= "    RewriteCond %{REQUEST_URI} \\.(" . implode( '|', $extensions ) . ")$ [NC]\n";
		$rules .= "    RewriteRule .* - [L]\n";
		$rules .= "</IfModule>\n";

		return $rules;
	}
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists