class-jetpack-google-font-face.php
198 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack_Google_Font_Face class |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Jetpack Google Font Face disables Font Face hooks in Core that prints **ALL** font faces. |
| 10 | * Instead, it collects fonts that are used in global styles or block-level settings and |
| 11 | * print those fonts in use. |
| 12 | */ |
| 13 | class Jetpack_Google_Font_Face { |
| 14 | /** |
| 15 | * The fonts that are used in global styles or block-level settings. |
| 16 | * |
| 17 | * @var array |
| 18 | */ |
| 19 | private $fonts_in_use = array(); |
| 20 | |
| 21 | /** |
| 22 | * The constructor. |
| 23 | */ |
| 24 | public function __construct() { |
| 25 | // Turns off hooks to print fonts |
| 26 | add_action( 'wp_loaded', array( $this, 'wp_loaded' ) ); |
| 27 | add_action( 'admin_init', array( $this, 'admin_init' ), 10 ); |
| 28 | |
| 29 | // Collect and print fonts in use |
| 30 | add_action( 'wp_head', array( $this, 'print_font_faces' ), 50 ); |
| 31 | add_filter( 'pre_render_block', array( $this, 'collect_block_fonts' ), 10, 2 ); |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Turn off hooks to print fonts on frontend |
| 36 | */ |
| 37 | public function wp_loaded() { |
| 38 | remove_action( 'wp_head', 'wp_print_fonts', 50 ); |
| 39 | remove_action( 'wp_head', 'wp_print_font_faces', 50 ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Turn off hooks to print fonts on wp-admin |
| 44 | */ |
| 45 | public function admin_init() { |
| 46 | remove_action( 'admin_print_styles', 'wp_print_fonts', 50 ); |
| 47 | remove_action( 'admin_print_styles', 'wp_print_font_faces', 50 ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Print fonts that are used in global styles or block-level settings. |
| 52 | */ |
| 53 | public function print_font_faces() { |
| 54 | $fonts = $this->get_fonts(); |
| 55 | $fonts_to_print = array(); |
| 56 | |
| 57 | $this->collect_global_styles_fonts(); |
| 58 | $this->fonts_in_use = array_values( array_unique( $this->fonts_in_use, SORT_STRING ) ); |
| 59 | foreach ( $fonts as $font_family => $font_faces ) { |
| 60 | if ( in_array( _wp_to_kebab_case( $font_family ), $this->fonts_in_use, true ) ) { |
| 61 | $fonts_to_print[ $font_family ] = $font_faces; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | if ( ! empty( $fonts_to_print ) ) { |
| 66 | wp_print_font_faces( $fonts_to_print ); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Collect fonts used for global styles settings. |
| 72 | */ |
| 73 | public function collect_global_styles_fonts() { |
| 74 | $global_styles = wp_get_global_styles(); |
| 75 | |
| 76 | $global_styles_font_slug = $this->get_font_slug_from_setting( $global_styles ); |
| 77 | if ( $global_styles_font_slug ) { |
| 78 | $this->add_font( $global_styles_font_slug ); |
| 79 | } |
| 80 | |
| 81 | if ( isset( $global_styles['blocks'] ) ) { |
| 82 | foreach ( $global_styles['blocks'] as $setting ) { |
| 83 | $font_slug = $this->get_font_slug_from_setting( $setting ); |
| 84 | |
| 85 | if ( $font_slug ) { |
| 86 | $this->add_font( $font_slug ); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | if ( isset( $global_styles['elements'] ) ) { |
| 92 | foreach ( $global_styles['elements'] as $setting ) { |
| 93 | $font_slug = $this->get_font_slug_from_setting( $setting ); |
| 94 | |
| 95 | if ( $font_slug ) { |
| 96 | $this->add_font( $font_slug ); |
| 97 | } |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Collect fonts used for block-level settings. |
| 104 | * |
| 105 | * @filter pre_render_block |
| 106 | * |
| 107 | * @param string|null $content The pre-rendered content. Default null. |
| 108 | * @param array $parsed_block The block being rendered. |
| 109 | */ |
| 110 | public function collect_block_fonts( $content, $parsed_block ) { |
| 111 | if ( ! is_admin() && isset( $parsed_block['attrs']['fontFamily'] ) ) { |
| 112 | $block_font_family = $parsed_block['attrs']['fontFamily']; |
| 113 | $this->add_font( $block_font_family ); |
| 114 | } |
| 115 | |
| 116 | return $content; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Add the specify font to the fonts_in_use list. |
| 121 | * |
| 122 | * @param string $font_slug The font slug. |
| 123 | */ |
| 124 | public function add_font( $font_slug ) { |
| 125 | $this->fonts_in_use[] = _wp_to_kebab_case( $font_slug ); |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Get all font definitions from theme json. |
| 130 | */ |
| 131 | public function get_fonts() { |
| 132 | $fonts = WP_Font_Face_Resolver::get_fonts_from_theme_json(); |
| 133 | |
| 134 | // The font definition might define an alias slug name, so we have to add the map from the slug name to font faces. |
| 135 | // See https://github.com/WordPress/twentytwentyfour/blob/df92472089ede6fae5924c124a93c843b84e8cbd/theme.json#L215. |
| 136 | $theme_json = WP_Theme_JSON_Resolver::get_theme_data(); |
| 137 | $raw_data = $theme_json->get_data(); |
| 138 | if ( ! empty( $raw_data['settings']['typography']['fontFamilies'] ) ) { |
| 139 | foreach ( $raw_data['settings']['typography']['fontFamilies'] as $font ) { |
| 140 | $font_family_name = $this->get_font_family_name( $font ); |
| 141 | $font_slug = isset( $font['slug'] ) ? $font['slug'] : ''; |
| 142 | if ( $font_slug && ! array_key_exists( $font_slug, $fonts ) && array_key_exists( $font_family_name, $fonts ) ) { |
| 143 | $fonts[ $font_slug ] = $fonts[ $font_family_name ]; |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | return $fonts; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Get the font family name from a font. |
| 153 | * |
| 154 | * @param array $font The font definition object. |
| 155 | */ |
| 156 | public function get_font_family_name( $font ) { |
| 157 | $font_family = $font['fontFamily']; |
| 158 | if ( str_contains( $font_family, ',' ) ) { |
| 159 | $font_family = explode( ',', $font_family )[0]; |
| 160 | } |
| 161 | |
| 162 | return trim( $font_family, "\"'" ); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Get the font family slug from a settings array. |
| 167 | * |
| 168 | * @param array $setting The settings object. |
| 169 | * |
| 170 | * @return string|null |
| 171 | */ |
| 172 | public function get_font_slug_from_setting( $setting ) { |
| 173 | if ( ! isset( $setting['typography']['fontFamily'] ) ) { |
| 174 | return null; |
| 175 | } |
| 176 | |
| 177 | $font_family = $setting['typography']['fontFamily']; |
| 178 | |
| 179 | // Full string: var(--wp--preset--font-family--slug). |
| 180 | // We do not care about the origin of the font, only its slug. |
| 181 | preg_match( '/font-family--(?P<slug>.+)\)$/', $font_family, $matches ); |
| 182 | |
| 183 | if ( isset( $matches['slug'] ) ) { |
| 184 | return $matches['slug']; |
| 185 | } |
| 186 | |
| 187 | // Full string: var:preset|font-family|slug |
| 188 | // We do not care about the origin of the font, only its slug. |
| 189 | preg_match( '/font-family\|(?P<slug>.+)$/', $font_family, $matches ); |
| 190 | |
| 191 | if ( isset( $matches['slug'] ) ) { |
| 192 | return $matches['slug']; |
| 193 | } |
| 194 | |
| 195 | return $font_family; |
| 196 | } |
| 197 | } |
| 198 |