Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/wp-rocket / classes / subscriber / Optimization / class-ie-conditionals-subscriber.php
Size: Mime:
<?php
namespace WP_Rocket\Subscriber\Optimization;

use WP_Rocket\Event_Management\Subscriber_Interface;

/**
 * Handles IE conditionals comments in the HTML to prevent their content from being processed during optimization
 *
 * @since 3.1
 * @author Remy Perona
 */
class IE_Conditionals_Subscriber implements Subscriber_Interface {
	/**
	 * Stores IE conditionals
	 *
	 * @since 3.1
	 * @author Remy Perona
	 *
	 * @var array
	 */
	private $conditionals = [];

	/**
	 * Return an array of events that this subscriber wants to listen to.
	 *
	 * @since  3.1
	 * @author Remy Perona
	 *
	 * @return array
	 */
	public static function get_subscribed_events() {
		return [
			'rocket_buffer' => [
				[ 'extract_ie_conditionals', 1 ],
				[ 'inject_ie_conditionals', 34 ],
			],
		];
	}

	/**
	 * Extracts IE conditionals tags and replace them with placeholders
	 *
	 * @since 3.1
	 * @author Remy Perona
	 *
	 * @param string $html HTML content.
	 * @return string
	 */
	public function extract_ie_conditionals( $html ) {
		preg_match_all( '/<!--\[if[^\]]*?\]>.*?<!\[endif\]-->/is', $html, $conditionals_match );

		if ( ! $conditionals_match ) {
			return $html;
		}

		$html = preg_replace( '/<!--\[if[^\]]*?\]>.*?<!\[endif\]-->/is', '{{WP_ROCKET_CONDITIONAL}}', $html );

		foreach ( $conditionals_match[0] as $conditional ) {
			$this->conditionals[] = $conditional;
		}

		return $html;
	}

	/**
	 * Replaces WP Rocket placeholders with IE conditional tags
	 *
	 * @since 3.1
	 * @author Remy Perona
	 *
	 * @param string $html HTML content.
	 * @return string
	 */
	public function inject_ie_conditionals( $html ) {
		foreach ( $this->conditionals as $conditional ) {
			if ( false === strpos( $html, '{{WP_ROCKET_CONDITIONAL}}' ) ) {
				break;
			}

			// Prevent scripts containing things like "\\s" to be striped of a backslash when put back in content.
			if ( preg_match( '@^(?<opening><!--\[if[^\]]*?\]>\s*?(?:<!-->)?\s*<script(?:\s[^>]*?>))\s*(?<content>.*?)\s*(?<closing></script>\s*(?:<!--)?\s*?<!\[endif\]-->)$@is', $conditional, $matches ) ) {
				$conditional = $matches['opening'] . preg_replace( '#(?<!\\\\)(\\$|\\\\)#', '\\\\$1', $matches['content'] ) . $matches['closing'];
			}

			$html = preg_replace( '/\{\{WP_ROCKET_CONDITIONAL\}\}/', $conditional, $html, 1 );
		}

		return $html;
	}
}