load-google-fonts.php
216 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Load the google fonts by the new Font Library. See pNEWy-hhx-p2. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Gets the Google Fonts data |
| 10 | * |
| 11 | * @return object[] The collection data of the Google Fonts. |
| 12 | */ |
| 13 | function jetpack_get_google_fonts_data() { |
| 14 | $default_google_fonts_api_url = 'https://fonts.gstatic.com'; |
| 15 | $jetpack_google_fonts_collection_url = 'https://s0.wp.com/i/font-collections/jetpack-google-fonts.json'; |
| 16 | $cache_key = 'jetpack_google_fonts_' . md5( $jetpack_google_fonts_collection_url ); |
| 17 | $data = get_transient( $cache_key ); |
| 18 | if ( $data === false ) { |
| 19 | $response = wp_remote_get( $jetpack_google_fonts_collection_url ); |
| 20 | if ( is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) !== 200 ) { |
| 21 | return null; |
| 22 | } |
| 23 | |
| 24 | $data = json_decode( wp_remote_retrieve_body( $response ), true ); |
| 25 | if ( $data === null ) { |
| 26 | return null; |
| 27 | } |
| 28 | |
| 29 | set_transient( $cache_key, $data, DAY_IN_SECONDS ); |
| 30 | } |
| 31 | |
| 32 | // Replace the google fonts api url if the custom one is provided. |
| 33 | $custom_google_fonts_api_url = \esc_url( |
| 34 | /** This filter is documented in projects/packages/google-fonts-provider/src/class-google-fonts-provider.php */ |
| 35 | apply_filters( 'jetpack_google_fonts_api_url', $default_google_fonts_api_url ) |
| 36 | ); |
| 37 | if ( $custom_google_fonts_api_url !== $default_google_fonts_api_url ) { |
| 38 | foreach ( $data['fontFamilies'] as &$font_family ) { |
| 39 | foreach ( $font_family['fontFace'] as &$font_face ) { |
| 40 | $font_face['src'] = str_replace( |
| 41 | $default_google_fonts_api_url, |
| 42 | $custom_google_fonts_api_url, |
| 43 | $font_face['src'] |
| 44 | ); |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | if ( is_array( $data ) && is_array( $data['fontFamilies'] ) ) { |
| 50 | return $data; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Gets the map of the available Google Fonts |
| 56 | * |
| 57 | * @param object[] $google_fonts_data The collection data of the Google Fonts. |
| 58 | * @return object[] The map of the the available Google Fonts. |
| 59 | */ |
| 60 | function jetpack_get_available_google_fonts_map( $google_fonts_data ) { |
| 61 | $jetpack_google_fonts_list = array_map( |
| 62 | function ( $font_family ) { |
| 63 | return $font_family['name']; |
| 64 | }, |
| 65 | $google_fonts_data['fontFamilies'] |
| 66 | ); |
| 67 | |
| 68 | /** This filter is documented in modules/google-fonts/wordpress-6.3/load-google-fonts.php */ |
| 69 | $google_font_list = apply_filters( 'jetpack_google_fonts_list', $jetpack_google_fonts_list ); |
| 70 | $available_google_fonts_map = array(); |
| 71 | |
| 72 | foreach ( $google_font_list as $google_font ) { |
| 73 | $available_google_fonts_map[ $google_font ] = true; |
| 74 | } |
| 75 | |
| 76 | return $available_google_fonts_map; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Gets the font families of the active theme |
| 81 | * |
| 82 | * @return object[] The font families of the active theme. |
| 83 | */ |
| 84 | function jetpack_get_theme_fonts_map() { |
| 85 | if ( ! class_exists( 'WP_Theme_JSON_Resolver' ) ) { |
| 86 | return array(); |
| 87 | } |
| 88 | |
| 89 | $theme_json = WP_Theme_JSON_Resolver::get_theme_data(); |
| 90 | $raw_data = $theme_json->get_data(); |
| 91 | if ( empty( $raw_data['settings']['typography']['fontFamilies'] ) ) { |
| 92 | return array(); |
| 93 | } |
| 94 | |
| 95 | $theme_fonts_map = array(); |
| 96 | foreach ( $raw_data['settings']['typography']['fontFamilies'] as $font_family ) { |
| 97 | if ( isset( $font_family['name'] ) ) { |
| 98 | $theme_fonts_map[ $font_family['name'] ] = true; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | return $theme_fonts_map; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Register google fonts to the theme json data |
| 107 | * |
| 108 | * @param WP_Theme_JSON_Data $theme_json The theme json data of core. |
| 109 | * @return WP_Theme_JSON_Data The theme json data with registered google fonts. |
| 110 | */ |
| 111 | function jetpack_register_google_fonts_to_theme_json( $theme_json ) { |
| 112 | $google_fonts_data = jetpack_get_google_fonts_data(); |
| 113 | if ( ! $google_fonts_data ) { |
| 114 | return $theme_json; |
| 115 | } |
| 116 | |
| 117 | $available_google_fonts_map = jetpack_get_available_google_fonts_map( $google_fonts_data ); |
| 118 | $theme_fonts_map = jetpack_get_theme_fonts_map(); |
| 119 | $google_fonts_families = array_values( |
| 120 | array_filter( |
| 121 | $google_fonts_data['fontFamilies'], |
| 122 | function ( $google_fonts_family ) use ( $available_google_fonts_map, $theme_fonts_map ) { |
| 123 | $name = $google_fonts_family['name']; |
| 124 | |
| 125 | // Filter out the fonts that are provided by the active theme. |
| 126 | if ( isset( $theme_fonts_map[ $name ] ) && $theme_fonts_map[ $name ] ) { |
| 127 | return false; |
| 128 | } |
| 129 | |
| 130 | return isset( $available_google_fonts_map[ $name ] ) |
| 131 | ? $available_google_fonts_map[ $name ] |
| 132 | : false; |
| 133 | } |
| 134 | ) |
| 135 | ); |
| 136 | |
| 137 | $raw_data = $theme_json->get_data(); |
| 138 | $origin = 'default'; |
| 139 | if ( empty( $raw_data['settings']['typography']['fontFamilies'][ $origin ] ) ) { |
| 140 | $raw_data['settings']['typography']['fontFamilies'][ $origin ] = array(); |
| 141 | } |
| 142 | |
| 143 | foreach ( $google_fonts_families as $font_family ) { |
| 144 | $raw_data['settings']['typography']['fontFamilies'][ $origin ][] = $font_family; |
| 145 | } |
| 146 | |
| 147 | $theme_json_class = get_class( $theme_json ); |
| 148 | return new $theme_json_class( $raw_data, $origin ); |
| 149 | } |
| 150 | |
| 151 | add_filter( 'wp_theme_json_data_default', 'jetpack_register_google_fonts_to_theme_json' ); |
| 152 | |
| 153 | /** |
| 154 | * Filter out the deprecated font families that are from the jetpack-google-fonts provider. |
| 155 | * |
| 156 | * @param object[] $font_families The font families. |
| 157 | * @return object[] The filtered font families. |
| 158 | */ |
| 159 | function jetpack_google_fonts_filter_out_deprecated_font_data( $font_families ) { |
| 160 | return array_values( |
| 161 | array_filter( |
| 162 | $font_families, |
| 163 | function ( $font_family ) { |
| 164 | $has_deprecated_google_fonts_data = false; |
| 165 | |
| 166 | if ( isset( $font_family['fontFace'] ) ) { |
| 167 | foreach ( $font_family['fontFace'] as $font_face ) { |
| 168 | $provider = isset( $font_face['provider'] ) ? $font_face['provider'] : ''; |
| 169 | if ( $provider === 'jetpack-google-fonts' ) { |
| 170 | $has_deprecated_google_fonts_data = true; |
| 171 | break; |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | return ! $has_deprecated_google_fonts_data; |
| 177 | } |
| 178 | ) |
| 179 | ); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Unregister the google fonts data from user's theme json data that were stored by accident. |
| 184 | * |
| 185 | * @param WP_Theme_JSON_Data $theme_json The theme json data of user. |
| 186 | * @return WP_Theme_JSON_Data The filtered theme json data. |
| 187 | */ |
| 188 | function jetpack_unregister_deprecated_google_fonts_from_theme_json_data_user( $theme_json ) { |
| 189 | $raw_data = $theme_json->get_data(); |
| 190 | $origin = 'theme'; |
| 191 | if ( empty( $raw_data['settings']['typography']['fontFamilies'][ $origin ] ) ) { |
| 192 | return $theme_json; |
| 193 | } |
| 194 | |
| 195 | // Filter out the font definitions that are from the jetpack-google-fonts provider. |
| 196 | $raw_data['settings']['typography']['fontFamilies'][ $origin ] = jetpack_google_fonts_filter_out_deprecated_font_data( |
| 197 | $raw_data['settings']['typography']['fontFamilies'][ $origin ] |
| 198 | ); |
| 199 | |
| 200 | $theme_json_class = get_class( $theme_json ); |
| 201 | return new $theme_json_class( $raw_data, 'custom' ); |
| 202 | } |
| 203 | |
| 204 | add_filter( 'wp_theme_json_data_user', 'jetpack_unregister_deprecated_google_fonts_from_theme_json_data_user' ); |
| 205 | |
| 206 | if ( ! class_exists( 'Jetpack_Google_Font_Face' ) ) { |
| 207 | /** |
| 208 | * Load Jetpack Google Font Face |
| 209 | */ |
| 210 | require_once __DIR__ . '/class-jetpack-google-font-face.php'; |
| 211 | |
| 212 | // Initialize Jetpack Google Font Face to avoid printing **ALL** google fonts provided by this module. |
| 213 | // See p1700040028362329-slack-C4GAQ900P and p7DVsv-jib-p2 |
| 214 | new Jetpack_Google_Font_Face(); |
| 215 | } |
| 216 |