google_fonts = $this->get_google_fonts(); // Enqueue link. add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ), 105 ); add_filter( 'fusion_dynamic_css_final', array( $this, 'add_inline_css' ) ); } /** * Init. * * @access protected * @since 5.2.0 */ protected function init() { // Go through our fields and populate $this->fonts. $this->loop_fields(); // Goes through $this->fonts and adds or removes things as needed. $this->process_fonts(); // Go through $this->fonts and populate $this->remote_link and $this->local_link. $this->create_remote_link(); $this->create_local_link(); // Since 5.5.2. } /** * Calls all the other necessary methods to populate and create the link. * * @access public */ public function enqueue() { $this->init(); if ( 'local' === Avada()->settings->get( 'gfonts_load_method' ) ) { return; } // If $this->remote_link is not empty then enqueue it. if ( '' !== $this->remote_link && false === $this->get_fonts_inline_styles() ) { wp_enqueue_style( 'avada_google_fonts', $this->remote_link, array(), null ); } } /** * Adds googlefont styles inline in dynamic-css. * * @access public * @since 5.1.5 * @param string $original_styles The dynamic-css styles. * @return string The dynamic-css styles with any additional stylesheets appended. */ public function add_inline_css( $original_styles ) { $this->init(); $font_styles = $this->get_fonts_inline_styles(); if ( false === $font_styles ) { return $original_styles; } return $font_styles . $original_styles; } /** * Goes through all our fields and then populates the $this->fonts property. * * @access private */ private function loop_fields() { $fields = array( 'footer_headings_typography', 'nav_typography', 'mobile_menu_typography', 'button_typography', 'body_typography', 'h1_typography', 'h2_typography', 'h3_typography', 'h4_typography', 'h5_typography', 'h6_typography', 'post_title_typography', 'post_titles_extras_typography', ); foreach ( $fields as $field ) { $this->generate_google_font( $field ); } } /** * Processes the field. * * @access private * @param array $field The field arguments. */ private function generate_google_font( $field ) { // Get the value. $value = Avada()->settings->get( $field ); // If we don't have a font-family then we can skip this. if ( ! isset( $value['font-family'] ) ) { return; } // Convert font-weight to variant. if ( isset( $value['font-weight'] ) && ( ! isset( $value['variant'] ) || empty( $value['variant'] ) ) ) { $value['variant'] = $value['font-weight']; } // Set a default value for variants. if ( ! isset( $value['variant'] ) ) { $value['variant'] = '400'; } // Make italics properly load. if ( is_numeric( $value['variant'] ) ) { if ( isset( $value['font-style'] ) && 'italic' === $value['font-style'] ) { $value['variant'] .= 'italic'; } if ( '400italic' === $value['variant'] ) { $value['variant'] = 'italic'; } } if ( isset( $value['subsets'] ) ) { // Add the subset directly to the array of subsets in the Kirki_GoogleFonts_Manager object. // Subsets must be applied to ALL fonts if possible. if ( ! is_array( $value['subsets'] ) ) { $this->subsets[] = $value['subsets']; } else { foreach ( $value['subsets'] as $subset ) { $this->subsets[] = $subset; } } } // Add the requested google-font. if ( ! isset( $this->fonts[ $value['font-family'] ] ) ) { $this->fonts[ $value['font-family'] ] = array(); } if ( ! in_array( $value['variant'], $this->fonts[ $value['font-family'] ], true ) ) { $this->fonts[ $value['font-family'] ][] = $value['variant']; } // Tweak for 400. if ( 400 === $value['variant'] || '400' === $value['variant'] ) { $this->fonts[ $value['font-family'] ][] = 'regular'; } // Make italic, regular and bold available for body_typography. if ( 'body_typography' === $field ) { $this->fonts[ $value['font-family'] ][] = 'regular'; $this->fonts[ $value['font-family'] ][] = 'italic'; $this->fonts[ $value['font-family'] ][] = '700'; $this->fonts[ $value['font-family'] ][] = '700italic'; } // Make sure there are no duplicate entries. $this->fonts[ $value['font-family'] ] = array_unique( $this->fonts[ $value['font-family'] ] ); } /** * Determines the validity of the selected font as well as its properties. * This is vital to make sure that the google-font script that we'll generate later * does not contain any invalid options. * * @access private */ private function process_fonts() { // Early exit if font-family is empty. if ( empty( $this->fonts ) ) { return; } $valid_subsets = array(); foreach ( $this->fonts as $font => $variants ) { // Determine if this is indeed a google font or not. // If it's not, then just remove it from the array. if ( ! array_key_exists( $font, $this->google_fonts ) ) { unset( $this->fonts[ $font ] ); continue; } // Get all valid font variants for this font. $font_variants = array(); if ( isset( $this->google_fonts[ $font ]['variants'] ) ) { $font_variants = $this->google_fonts[ $font ]['variants']; } // Only use valid variants. $this->fonts[ $font ] = array_intersect( $variants, $font_variants ); // Check if the selected subsets exist, even in one of the selected fonts. // If they don't, then they have to be removed otherwise the link will fail. if ( isset( $this->google_fonts[ $font ]['subsets'] ) ) { foreach ( $this->subsets as $subset ) { if ( in_array( $subset, $this->google_fonts[ $font ]['subsets'], true ) ) { $valid_subsets[] = $subset; } } } } $this->subsets = $valid_subsets; } /** * Creates the google-fonts link. * * @access private */ private function create_remote_link() { // If we don't have any fonts then we can exit. if ( empty( $this->fonts ) ) { return; } // Get font-family + subsets. $link_fonts = array(); foreach ( $this->fonts as $font => $variants ) { $variants = implode( ',', $variants ); $link_font = str_replace( ' ', '+', $font ); if ( ! empty( $variants ) ) { $link_font .= ':' . $variants; } $link_fonts[] = $link_font; } if ( ! empty( $this->subsets ) ) { $this->subsets = array_unique( $this->subsets ); } $this->remote_link = add_query_arg( array( 'family' => str_replace( '%2B', '+', urlencode( implode( '|', $link_fonts ) ) ), 'subset' => urlencode( implode( ',', $this->subsets ) ), ), 'https://fonts.googleapis.com/css' ); } /** * Creates the google-fonts link. * * @access private * @since 5.5.2 * @return void */ private function create_local_link() { // If we don't have any fonts then we can exit. if ( empty( $this->fonts ) ) { return; } // Get font-family + subsets. $link_fonts = array(); foreach ( $this->fonts as $font => $variants ) { $variants = implode( ',', $variants ); $link_font = str_replace( ' ', '+', $font ); if ( ! empty( $variants ) ) { $link_font .= ':' . $variants; } $link_fonts[] = $link_font; } $this->local_link = add_query_arg( array( 'action' => 'get-gfonts', 'family' => str_replace( '%2B', '+', urlencode( implode( '|', $link_fonts ) ) ), ), site_url() ); } /** * Echo the CSS for local fonts and then exit. * * @access public * @since 1.0 * @return void */ public function the_local_fonts_css() { $css = ''; if ( isset( $_GET['action'] ) && 'get-gfonts' === $_GET['action'] && isset( $_GET['family'] ) ) { header( 'Content-type: text/css; charset: UTF-8' ); // Split font-families. $families = explode( '|', sanitize_text_field( wp_unslash( $_GET['family'] ) ) ); foreach ( $families as $family ) { // Split font-family and variants. $family = explode( ':', $family ); // Get the variants as an array. $variants = array(); if ( isset( $family[1] ) ) { $variants = explode( ',', $family[1] ); } // Generate the CSS for the font-family. $font = new Fusion_GFonts_Downloader( $family[0] ); $css .= $font->get_fontface_css( $variants ); } echo $css; // WPCS: XSS ok. exit(); } } /** * Get the CSS for local fonts. * * @access public * @since 1.0 * @return string */ public function get_local_fonts_css() { $css = ''; // If we don't have any fonts then we can exit. if ( empty( $this->fonts ) ) { return; } // Get font-family + subsets. foreach ( $this->fonts as $font => $variants ) { $family = new Fusion_GFonts_Downloader( $font ); $css .= $family->get_fontface_css( $variants ); } return $css; } /** * Return an array of all available Google Fonts. * * @access private * @return array All Google Fonts. */ private function get_google_fonts() { if ( null === $this->google_fonts || empty( $this->google_fonts ) ) { $fonts = include_once wp_normalize_path( FUSION_LIBRARY_PATH . '/inc/redux/custom-fields/typography/googlefonts-array.php' ); $google_fonts = array(); if ( is_array( $fonts ) ) { foreach ( $fonts['items'] as $font ) { $google_fonts[ $font['family'] ] = array( 'label' => $font['family'], 'variants' => $font['variants'], 'subsets' => $font['subsets'], 'category' => $font['category'], ); } } $this->google_fonts = $google_fonts; } return $this->google_fonts; } /** * Get the contents of googlefonts so that they can be added inline. * * @access protected * @since 5.1.5 * @return string|false */ protected function get_fonts_inline_styles() { $contents = get_transient( 'avada_googlefonts_contents' ); if ( false === $contents ) { // If we're using local, early exit after getting the styles. if ( 'local' === Avada()->settings->get( 'gfonts_load_method' ) ) { return $this->get_local_fonts_css(); } // Create the link. if ( '' === $this->remote_link ) { $this->create_remote_link(); } // If link is empty, early exit. if ( '' === $this->remote_link || ! $this->remote_link ) { set_transient( 'avada_googlefonts_contents', 'failed', DAY_IN_SECONDS ); return false; } // Get remote HTML file. $response = wp_remote_get( $this->remote_link ); // Check for errors. if ( is_wp_error( $response ) ) { set_transient( 'avada_googlefonts_contents', 'failed', DAY_IN_SECONDS ); return false; } // Parse remote HTML file. $contents = wp_remote_retrieve_body( $response ); // Check for error. if ( is_wp_error( $contents ) || ! $contents ) { set_transient( 'avada_googlefonts_contents', 'failed', DAY_IN_SECONDS ); return false; } // Store remote HTML file in transient, expire after 24 hours. set_transient( 'avada_googlefonts_contents', $contents, DAY_IN_SECONDS ); } // Return false if we were unable to get the contents of the googlefonts from remote. if ( 'failed' === $contents ) { return false; } // If we got this far then we can safely return the contents. return $contents; } }