oont-contents/plugins/wp-rocket/inc/Engine/Optimization/GoogleFonts/CombineV2.php
2025-02-08 15:10:23 +01:00

155 lines
3.7 KiB
PHP

<?php
declare(strict_types=1);
namespace WP_Rocket\Engine\Optimization\GoogleFonts;
use WP_Rocket\Engine\Optimization\RegexTrait;
use WP_Rocket\Logger\Logger;
/**
* Combine v2 Google Fonts
*
* @since 3.8
*/
class CombineV2 extends AbstractGFOptimization {
use RegexTrait;
/**
* Combines multiple Google Fonts (API v2) links into one
*
* @since 3.8
*
* @param string $html HTML content.
*
* @return string
*/
public function optimize( $html ): string {
Logger::info( 'GOOGLE FONTS COMBINE-V2 PROCESS STARTED.', [ 'GF combine process' ] );
$processed_tags = [];
$html_nocomments = $this->hide_comments( $html );
$font_tags = $this->find( '<link(?:\s+(?:(?!href\s*=\s*)[^>])+)?(?:\s+href\s*=\s*([\'"])(?<url>(?:https?:)?\/\/fonts\.googleapis\.com\/css2(?:(?!\1).)+)\1)(?:\s+[^>]*)?>', $html_nocomments );
if ( ! $font_tags ) {
Logger::debug( 'No v2 Google Fonts found.', [ 'GF combine process' ] );
$this->has_google_fonts = false;
return $html;
}
$this->has_google_fonts = true;
$num_tags = count( $font_tags );
Logger::debug(
"Found {$num_tags} v2 Google Fonts.",
[
'GF combine process',
'tags' => $font_tags,
]
);
$families = [];
foreach ( $font_tags as $tag ) {
$parsed_families = $this->parse( $tag );
if ( ! empty( $parsed_families ) ) {
$processed_tags[] = $tag;
$families = array_merge( $families, $parsed_families );
}
}
if ( empty( $families ) ) {
Logger::debug( 'No v2 Google Fonts left to combine.', [ 'GF combine process' ] );
return $html;
}
$families = array_unique( $families );
$combined_tag = $this->get_optimized_markup( $this->get_combined_url( $families ) );
$html = preg_replace( '@<\/title>@i', '$0' . $combined_tag, $html, 1 );
foreach ( $processed_tags as $font ) {
$html = str_replace( $font[0], '', $html );
}
Logger::info(
'V2 Google Fonts successfully combined.',
[
'GF combine process',
'url' => $combined_tag,
]
);
return $html;
}
/**
* Parses found matches to extract fonts and subsets.
*
* @since 3.8
*
* @param array $tag A Google Font v2 url.
*
* @return array
*/
private function parse( array $tag ): array {
if ( false !== strpos( $tag['url'], 'text=' ) ) {
Logger::debug( 'GOOGLEFONTS V2 COMBINE: ' . $tag['url'] . ' SKIPPED TO PRESERVE "text" ATTRIBUTE.' );
return [];
}
$url_pattern = '#(family=[A-Za-z0-9;:,=%&\+\@\.]+)$#';
$display_pattern = '#&display=(?:swap|auto|block|fallback|optional)#';
$decoded_url = html_entity_decode( $tag['url'] );
$query = wp_parse_url( $decoded_url, PHP_URL_QUERY );
if ( empty( $query ) ) {
return [];
}
if ( ! preg_match_all( $url_pattern, $query, $matches, PREG_PATTERN_ORDER ) ) {
return [];
}
$families = [];
foreach ( $matches[1] as $family ) {
$families[] = preg_replace( $display_pattern, '', $family );
}
return $families;
}
/**
* Returns the combined Google fonts URL
*
* @since 3.9.1
*
* @param array $families Array with all Google V2 families.
*
* @return string
*/
private function get_combined_url( array $families ): string {
$display = $this->get_font_display_value();
return esc_url( "https://fonts.googleapis.com/css2{$this->get_concatenated_families( $families )}&display={$display}" );
}
/**
* Get a string of the concatenated font family queries.
*
* @since 3.8
*
* @param array $families Array with all Google V2 families.
*
* @return string
*/
private function get_concatenated_families( array $families ): string {
$families_string = '?';
foreach ( $families as $family ) {
$families_string .= $family . '&';
}
return rtrim( $families_string, '&?' );
}
}