settings = $this->get_settings();
// check if the official plugin is active and use that instead if so.
if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
if ( $this->settings['type'] == 'CSS' ) {
if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
}
if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
add_filter( 'block_editor_settings_all', array( $this, 'enqueue_editor_styles' ), 10, 2 );
}
} else {
if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
}
if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
add_filter( 'block_editor_settings_all', array( $this, 'enqueue_editor_scripts' ), 10, 2 );
}
}
// remove font awesome if set to do so
if ( $this->settings['dequeue'] == '1' ) {
add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 );
}
}
}
/**
* Add FA to the FSE.
*
* @param $editor_settings
* @param $block_editor_context
*
* @return array
*/
public function enqueue_editor_styles( $editor_settings, $block_editor_context ){
if ( ! empty( $editor_settings['__unstableResolvedAssets']['styles'] ) ) {
$url = $this->get_url();
$editor_settings['__unstableResolvedAssets']['styles'] .= "";
}
return $editor_settings;
}
/**
* Add FA to the FSE.
*
* @param $editor_settings
* @param $block_editor_context
*
* @return array
*/
public function enqueue_editor_scripts( $editor_settings, $block_editor_context ){
$url = $this->get_url();
$editor_settings['__unstableResolvedAssets']['scripts'] .= "";
return $editor_settings;
}
/**
* Adds the Font Awesome styles.
*/
public function enqueue_style() {
// build url
$url = $this->get_url();
$version = ! empty( $this->settings['local'] ) && empty( $this->settings['pro'] ) ? strip_tags( $this->settings['local_version'] ) : null;
wp_deregister_style( 'font-awesome' ); // deregister in case its already there
wp_register_style( 'font-awesome', $url, array(), $version );
wp_enqueue_style( 'font-awesome' );
// RTL language support CSS.
if ( is_rtl() ) {
wp_add_inline_style( 'font-awesome', $this->rtl_inline_css() );
}
if ( $this->settings['shims'] ) {
$url = $this->get_url( true );
wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there
wp_register_style( 'font-awesome-shims', $url, array(), $version );
wp_enqueue_style( 'font-awesome-shims' );
}
}
/**
* Adds the Font Awesome JS.
*/
public function enqueue_scripts() {
// build url
$url = $this->get_url();
$deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script';
call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there
wp_register_script( 'font-awesome', $url, array(), null );
wp_enqueue_script( 'font-awesome' );
if ( $this->settings['shims'] ) {
$url = $this->get_url( true );
call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there
wp_register_script( 'font-awesome-shims', $url, array(), null );
wp_enqueue_script( 'font-awesome-shims' );
}
}
/**
* Get the url of the Font Awesome files.
*
* @param bool $shims If this is a shim file or not.
* @param bool $local Load locally if allowed.
*
* @return string The url to the file.
*/
public function get_url( $shims = false, $local = true ) {
$script = $shims ? 'v4-shims' : 'all';
$sub = $this->settings['pro'] ? 'pro' : 'use';
$type = $this->settings['type'];
$version = $this->settings['version'];
$kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : '';
$url = '';
if ( $type == 'KIT' && $kit_url ) {
if ( $shims ) {
// if its a kit then we don't add shims here
return '';
}
$url .= $kit_url; // CDN
$url .= "?wpfas=true"; // set our var so our version is not removed
} else {
$v = '';
// Check and load locally.
if ( $local && $this->has_local() ) {
$script .= ".min";
$v .= '&ver=' . strip_tags( $this->settings['local_version'] );
$url .= $this->get_fonts_url(); // Local fonts url.
} else {
$url .= "https://$sub.fontawesome.com/releases/"; // CDN
$url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version
}
$url .= $type == 'CSS' ? 'css/' : 'js/'; // type
$url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type
$url .= "?wpfas=true" . $v; // set our var so our version is not removed
}
return $url;
}
/**
* Try and remove any other versions of Font Awesome added by other plugins/themes.
*
* Uses the clean_url filter to try and remove any other Font Awesome files added, it can also add pseudo-elements flag for the JS version.
*
* @param $url
* @param $original_url
* @param $_context
*
* @return string The filtered url.
*/
public function remove_font_awesome( $url, $original_url, $_context ) {
if ( $_context == 'display'
&& ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false )
&& ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false )
) {// it's a font-awesome-url (probably)
if ( strstr( $url, "wpfas=true" ) !== false ) {
if ( $this->settings['type'] == 'JS' ) {
if ( $this->settings['js-pseudo'] ) {
$url .= "' data-search-pseudo-elements defer='defer";
} else {
$url .= "' defer='defer";
}
}
} else {
$url = ''; // removing the url removes the file
}
}
return $url;
}
/**
* Register the database settings with WordPress.
*/
public function register_settings() {
register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' );
}
/**
* Add the WordPress settings menu item.
* @since 1.0.10 Calling function name direct will fail theme check so we don't.
*/
public function menu_item() {
$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array(
$this,
'settings_page'
) );
}
/**
* Get the current Font Awesome output settings.
*
* @return array The array of settings.
*/
public function get_settings() {
$db_settings = get_option( 'wp-font-awesome-settings' );
$defaults = array(
'type' => 'CSS', // type to use, CSS or JS or KIT
'version' => '', // latest
'enqueue' => '', // front and backend
'shims' => '0', // default OFF now in 2020
'js-pseudo' => '0', // if the pseudo elements flag should be set (CPU intensive)
'dequeue' => '0', // if we should try to remove other versions added by other plugins/themes
'pro' => '0', // if pro CDN url should be used
'local' => '0', // Store fonts locally.
'local_version' => '', // Local fonts version.
'kit-url' => '', // the kit url
);
$settings = wp_parse_args( $db_settings, $defaults );
/**
* Filter the Font Awesome settings.
*
* @todo if we add this filer people might use it and then it defeates the purpose of this class :/
*/
return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults );
}
/**
* The settings page html output.
*/
public function settings_page() {
if ( ! current_user_can( 'manage_options' ) ) {
wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) );
}
// a hidden way to force the update of the version number via api instead of waiting the 48 hours
if ( isset( $_REQUEST['force-version-check'] ) ) {
$this->get_latest_version( $force_api = true );
}
if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
?>
=' ) >= 0 ) {
// valid
} else {
$version = '';// not validated
}
return $version;
}
/**
* Get the latest version of Font Awesome.
*
* We check for a cached version and if none we will check for a live version via API and then cache it for 48 hours.
*
* @since 1.0.7
* @return mixed|string The latest version number found.
*/
public function get_latest_version( $force_api = false ) {
$latest_version = $this->latest;
$cache = get_transient( 'wp-font-awesome-settings-version' );
if ( $cache === false || $force_api ) { // its not set
$api_ver = $this->get_latest_version_from_api();
if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) {
$latest_version = $api_ver;
set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS );
}
} elseif ( $this->validate_version_number( $cache ) ) {
if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) {
$latest_version = $cache;
}
}
// Check and auto download fonts locally.
if ( empty( $this->settings['pro'] ) && empty( $this->settings['version'] ) && $this->settings['type'] != 'KIT' && ! empty( $this->settings['local'] ) && ! empty( $this->settings['local_version'] ) && ! empty( $latest_version ) ) {
if ( version_compare( $latest_version, $this->settings['local_version'], '>' ) && is_admin() && ! wp_doing_ajax() ) {
$this->download_package( $latest_version );
}
}
return $latest_version;
}
/**
* Get the latest Font Awesome version from the github API.
*
* @since 1.0.7
* @return string The latest version number or `0` on API fail.
*/
public function get_latest_version_from_api() {
$version = "0";
$response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" );
if ( ! is_wp_error( $response ) && is_array( $response ) ) {
$api_response = json_decode( wp_remote_retrieve_body( $response ), true );
if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) {
$version = $api_response['tag_name'];
}
}
return $version;
}
/**
* Inline CSS for RTL language support.
*
* @since 1.0.13
* @return string Inline CSS.
*/
public function rtl_inline_css() {
$inline_css = '[dir=rtl] .fa-address,[dir=rtl] .fa-address-card,[dir=rtl] .fa-adjust,[dir=rtl] .fa-alarm-clock,[dir=rtl] .fa-align-left,[dir=rtl] .fa-align-right,[dir=rtl] .fa-analytics,[dir=rtl] .fa-angle-double-left,[dir=rtl] .fa-angle-double-right,[dir=rtl] .fa-angle-left,[dir=rtl] .fa-angle-right,[dir=rtl] .fa-arrow-alt-circle-left,[dir=rtl] .fa-arrow-alt-circle-right,[dir=rtl] .fa-arrow-alt-from-left,[dir=rtl] .fa-arrow-alt-from-right,[dir=rtl] .fa-arrow-alt-left,[dir=rtl] .fa-arrow-alt-right,[dir=rtl] .fa-arrow-alt-square-left,[dir=rtl] .fa-arrow-alt-square-right,[dir=rtl] .fa-arrow-alt-to-left,[dir=rtl] .fa-arrow-alt-to-right,[dir=rtl] .fa-arrow-circle-left,[dir=rtl] .fa-arrow-circle-right,[dir=rtl] .fa-arrow-from-left,[dir=rtl] .fa-arrow-from-right,[dir=rtl] .fa-arrow-left,[dir=rtl] .fa-arrow-right,[dir=rtl] .fa-arrow-square-left,[dir=rtl] .fa-arrow-square-right,[dir=rtl] .fa-arrow-to-left,[dir=rtl] .fa-arrow-to-right,[dir=rtl] .fa-balance-scale-left,[dir=rtl] .fa-balance-scale-right,[dir=rtl] .fa-bed,[dir=rtl] .fa-bed-bunk,[dir=rtl] .fa-bed-empty,[dir=rtl] .fa-border-left,[dir=rtl] .fa-border-right,[dir=rtl] .fa-calendar-check,[dir=rtl] .fa-caret-circle-left,[dir=rtl] .fa-caret-circle-right,[dir=rtl] .fa-caret-left,[dir=rtl] .fa-caret-right,[dir=rtl] .fa-caret-square-left,[dir=rtl] .fa-caret-square-right,[dir=rtl] .fa-cart-arrow-down,[dir=rtl] .fa-cart-plus,[dir=rtl] .fa-chart-area,[dir=rtl] .fa-chart-bar,[dir=rtl] .fa-chart-line,[dir=rtl] .fa-chart-line-down,[dir=rtl] .fa-chart-network,[dir=rtl] .fa-chart-pie,[dir=rtl] .fa-chart-pie-alt,[dir=rtl] .fa-chart-scatter,[dir=rtl] .fa-check-circle,[dir=rtl] .fa-check-square,[dir=rtl] .fa-chevron-circle-left,[dir=rtl] .fa-chevron-circle-right,[dir=rtl] .fa-chevron-double-left,[dir=rtl] .fa-chevron-double-right,[dir=rtl] .fa-chevron-left,[dir=rtl] .fa-chevron-right,[dir=rtl] .fa-chevron-square-left,[dir=rtl] .fa-chevron-square-right,[dir=rtl] .fa-clock,[dir=rtl] .fa-file,[dir=rtl] .fa-file-alt,[dir=rtl] .fa-file-archive,[dir=rtl] .fa-file-audio,[dir=rtl] .fa-file-chart-line,[dir=rtl] .fa-file-chart-pie,[dir=rtl] .fa-file-code,[dir=rtl] .fa-file-excel,[dir=rtl] .fa-file-image,[dir=rtl] .fa-file-pdf,[dir=rtl] .fa-file-powerpoint,[dir=rtl] .fa-file-video,[dir=rtl] .fa-file-word,[dir=rtl] .fa-flag,[dir=rtl] .fa-folder,[dir=rtl] .fa-folder-open,[dir=rtl] .fa-hand-lizard,[dir=rtl] .fa-hand-point-down,[dir=rtl] .fa-hand-point-left,[dir=rtl] .fa-hand-point-right,[dir=rtl] .fa-hand-point-up,[dir=rtl] .fa-hand-scissors,[dir=rtl] .fa-image,[dir=rtl] .fa-long-arrow-alt-left,[dir=rtl] .fa-long-arrow-alt-right,[dir=rtl] .fa-long-arrow-left,[dir=rtl] .fa-long-arrow-right,[dir=rtl] .fa-luggage-cart,[dir=rtl] .fa-moon,[dir=rtl] .fa-pencil,[dir=rtl] .fa-pencil-alt,[dir=rtl] .fa-play-circle,[dir=rtl] .fa-project-diagram,[dir=rtl] .fa-quote-left,[dir=rtl] .fa-quote-right,[dir=rtl] .fa-shopping-cart,[dir=rtl] .fa-thumbs-down,[dir=rtl] .fa-thumbs-up,[dir=rtl] .fa-user-chart{filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);transform:scale(-1,1)}[dir=rtl] .fa-spin{animation-direction:reverse}';
return $inline_css;
}
/**
* Show any warnings as an admin notice.
*
* @return void
*/
public function admin_notices() {
$settings = $this->settings;
if ( defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
if ( ! empty( $_REQUEST['page'] ) && $_REQUEST['page'] == 'wp-font-awesome-settings' ) {
?>
=' ) ) ) {
$link = admin_url('options-general.php?page=wp-font-awesome-settings');
?>
get_latest_version();
if ( empty( $old_local ) || $old_version !== $new_version ) {
$response = $this->download_package( $new_version, $new_value );
if ( is_wp_error( $response ) ) {
add_settings_error( 'general', 'fontawesome_download', __( 'ERROR:', 'font-awesome-settings' ) . ' ' . $response->get_error_message(), 'error' );
}
}
}
}
/**
* Get the fonts directory local path.
*
* @since 1.1.0
*
* @param string Fonts directory local path.
*/
public function get_fonts_dir() {
$upload_dir = wp_upload_dir( null, false );
return $upload_dir['basedir'] . DIRECTORY_SEPARATOR . 'ayefonts' . DIRECTORY_SEPARATOR . 'fa' . DIRECTORY_SEPARATOR;
}
/**
* Get the fonts directory local url.
*
* @since 1.1.0
*
* @param string Fonts directory local url.
*/
public function get_fonts_url() {
$upload_dir = wp_upload_dir( null, false );
return $upload_dir['baseurl'] . '/ayefonts/fa/';
}
/**
* Check whether load locally active.
*
* @since 1.1.0
*
* @return bool True if active else false.
*/
public function has_local() {
if ( ! empty( $this->settings['local'] ) && empty( $this->settings['pro'] ) && file_exists( $this->get_fonts_dir() . 'css' . DIRECTORY_SEPARATOR . 'all.css' ) ) {
return true;
}
return false;
}
/**
* Get the WP Filesystem access.
*
* @since 1.1.0
*
* @return object The WP Filesystem.
*/
public function get_wp_filesystem() {
if ( ! function_exists( 'get_filesystem_method' ) ) {
require_once( ABSPATH . "/wp-admin/includes/file.php" );
}
$access_type = get_filesystem_method();
if ( $access_type === 'direct' ) {
/* You can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
$creds = request_filesystem_credentials( trailingslashit( site_url() ) . 'wp-admin/', '', false, false, array() );
/* Initialize the API */
if ( ! WP_Filesystem( $creds ) ) {
/* Any problems and we exit */
return false;
}
global $wp_filesystem;
return $wp_filesystem;
/* Do our file manipulations below */
} else if ( defined( 'FTP_USER' ) ) {
$creds = request_filesystem_credentials( trailingslashit( site_url() ) . 'wp-admin/', '', false, false, array() );
/* Initialize the API */
if ( ! WP_Filesystem( $creds ) ) {
/* Any problems and we exit */
return false;
}
global $wp_filesystem;
return $wp_filesystem;
} else {
/* Don't have direct write access. Prompt user with our notice */
return false;
}
}
/**
* Download the fontawesome package file.
*
* @since 1.1.0
*
* @param mixed $version The font awesome.
* @param array $option Fontawesome settings.
* @return WP_ERROR|bool Error on fail and true on success.
*/
public function download_package( $version, $option = array() ) {
$filename = 'fontawesome-free-' . $version . '-web';
$url = 'https://use.fontawesome.com/releases/v' . $version . '/' . $filename . '.zip';
if ( ! function_exists( 'wp_handle_upload' ) ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
}
$download_file = download_url( esc_url_raw( $url ) );
if ( is_wp_error( $download_file ) ) {
return new WP_Error( 'fontawesome_download_failed', __( $download_file->get_error_message(), 'font-awesome-settings' ) );
} else if ( empty( $download_file ) ) {
return new WP_Error( 'fontawesome_download_failed', __( 'Something went wrong in downloading the font awesome to store locally.', 'font-awesome-settings' ) );
}
$response = $this->extract_package( $download_file, $filename, true );
// Update local version.
if ( is_wp_error( $response ) ) {
return $response;
} else if ( $response ) {
if ( empty( $option ) ) {
$option = get_option( 'wp-font-awesome-settings' );
}
$option['local_version'] = $version;
// Remove action to prevent looping.
remove_action( 'update_option_wp-font-awesome-settings', array( $this, 'update_option_wp_font_awesome_settings' ), 10, 2 );
update_option( 'wp-font-awesome-settings', $option );
return true;
}
return false;
}
/**
* Extract the fontawesome package file.
*
* @since 1.1.0
*
* @param string $package The package file path.
* @param string $dirname Package file name.
* @param bool $delete_package Delete temp file or not.
* @return WP_Error|bool True on success WP_Error on fail.
*/
public function extract_package( $package, $dirname = '', $delete_package = false ) {
global $wp_filesystem;
$wp_filesystem = $this->get_wp_filesystem();
if ( empty( $wp_filesystem ) && isset( $wp_filesystem->errors ) && is_wp_error( $wp_filesystem->errors ) && $wp_filesystem->errors->get_error_code() ) {
return new WP_Error( 'fontawesome_filesystem_error', __( $wp_filesystem->errors->get_error_message(), 'font-awesome-settings' ) );
} else if ( empty( $wp_filesystem ) ) {
return new WP_Error( 'fontawesome_filesystem_error', __( 'Failed to initialise WP_Filesystem while trying to download the Font Awesome package.', 'font-awesome-settings' ) );
}
$fonts_dir = $this->get_fonts_dir();
$fonts_tmp_dir = dirname( $fonts_dir ) . DIRECTORY_SEPARATOR . 'fa-tmp' . DIRECTORY_SEPARATOR;
if ( $wp_filesystem->is_dir( $fonts_tmp_dir ) ) {
$wp_filesystem->delete( $fonts_tmp_dir, true );
}
// Unzip package to working directory.
$result = unzip_file( $package, $fonts_tmp_dir );
if ( is_wp_error( $result ) ) {
$wp_filesystem->delete( $fonts_tmp_dir, true );
if ( 'incompatible_archive' === $result->get_error_code() ) {
return new WP_Error( 'fontawesome_incompatible_archive', __( $result->get_error_message(), 'font-awesome-settings' ) );
}
return $result;
}
if ( $wp_filesystem->is_dir( $fonts_dir ) ) {
$wp_filesystem->delete( $fonts_dir, true );
}
$extract_dir = $fonts_tmp_dir;
if ( $dirname && $wp_filesystem->is_dir( $extract_dir . $dirname . DIRECTORY_SEPARATOR ) ) {
$extract_dir .= $dirname . DIRECTORY_SEPARATOR;
}
try {
$return = $wp_filesystem->move( $extract_dir, $fonts_dir, true );
} catch ( Exception $e ) {
$return = new WP_Error( 'fontawesome_move_package', __( 'Fail to move font awesome package!', 'font-awesome-settings' ) );
}
if ( $wp_filesystem->is_dir( $fonts_tmp_dir ) ) {
$wp_filesystem->delete( $fonts_tmp_dir, true );
}
// Once extracted, delete the package if required.
if ( $delete_package ) {
unlink( $package );
}
return $return;
}
}
/**
* Run the class if found.
*/
WP_Font_Awesome_Settings::instance();
}