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