diff options
author | Yury German <blueknight@gentoo.org> | 2022-01-23 18:37:36 -0500 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-01-23 18:37:36 -0500 |
commit | f18b23a3a9378fb0a98856d436aa9ebf94e47429 (patch) | |
tree | e418433e22854ebd2d77eaa869d5d0470a973317 /plugins/jetpack/3rd-party/class.jetpack-amp-support.php | |
parent | Add classic-editor 1.5 (diff) | |
download | blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.tar.gz blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.tar.bz2 blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.zip |
Updating Classic Editor, Google Authenticatior, Jetpack, Public Post Preview, Table of Contents, Wordpress Importer
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/3rd-party/class.jetpack-amp-support.php')
-rw-r--r-- | plugins/jetpack/3rd-party/class.jetpack-amp-support.php | 166 |
1 files changed, 132 insertions, 34 deletions
diff --git a/plugins/jetpack/3rd-party/class.jetpack-amp-support.php b/plugins/jetpack/3rd-party/class.jetpack-amp-support.php index bf8d19f5..304f4ebd 100644 --- a/plugins/jetpack/3rd-party/class.jetpack-amp-support.php +++ b/plugins/jetpack/3rd-party/class.jetpack-amp-support.php @@ -1,5 +1,6 @@ <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName +use Automattic\Jetpack\Assets; use Automattic\Jetpack\Sync\Functions; /** @@ -31,6 +32,13 @@ class Jetpack_AMP_Support { // Sharing. add_filter( 'jetpack_sharing_display_markup', array( 'Jetpack_AMP_Support', 'render_sharing_html' ), 10, 2 ); add_filter( 'sharing_enqueue_scripts', array( 'Jetpack_AMP_Support', 'amp_disable_sharedaddy_css' ) ); + add_action( 'wp_enqueue_scripts', array( 'Jetpack_AMP_Support', 'amp_enqueue_sharing_css' ) ); + + // Sharing for Reader mode. + if ( function_exists( 'jetpack_social_menu_include_svg_icons' ) ) { + add_action( 'amp_post_template_footer', 'jetpack_social_menu_include_svg_icons' ); + } + add_action( 'amp_post_template_css', array( 'Jetpack_AMP_Support', 'amp_reader_sharing_css' ), 10, 0 ); // enforce freedom mode for videopress. add_filter( 'videopress_shortcode_options', array( 'Jetpack_AMP_Support', 'videopress_enable_freedom_mode' ) ); @@ -41,11 +49,32 @@ class Jetpack_AMP_Support { // Post rendering changes for legacy AMP. add_action( 'pre_amp_render_post', array( 'Jetpack_AMP_Support', 'amp_disable_the_content_filters' ) ); + // Disable Comment Likes. + add_filter( 'jetpack_comment_likes_enabled', array( 'Jetpack_AMP_Support', 'comment_likes_enabled' ) ); + + // Transitional mode AMP should not have comment likes. + add_filter( 'the_content', array( 'Jetpack_AMP_Support', 'disable_comment_likes_before_the_content' ) ); + + // Remove the Likes button from the admin bar. + add_filter( 'jetpack_admin_bar_likes_enabled', array( 'Jetpack_AMP_Support', 'disable_likes_admin_bar' ) ); + // Add post template metadata for legacy AMP. add_filter( 'amp_post_template_metadata', array( 'Jetpack_AMP_Support', 'amp_post_template_metadata' ), 10, 2 ); // Filter photon image args for AMP Stories. add_filter( 'jetpack_photon_post_image_args', array( 'Jetpack_AMP_Support', 'filter_photon_post_image_args_for_stories' ), 10, 2 ); + + // Sync the amp-options. + add_filter( 'jetpack_options_whitelist', array( 'Jetpack_AMP_Support', 'filter_jetpack_options_safelist' ) ); + } + + /** + * Disable the Comment Likes feature on AMP views. + * + * @param bool $enabled Should comment likes be enabled. + */ + public static function comment_likes_enabled( $enabled ) { + return $enabled && ! self::is_amp_request(); } /** @@ -67,6 +96,16 @@ class Jetpack_AMP_Support { } /** + * Is AMP available for this request + * This returns false for admin, CLI requests etc. + * + * @return bool is_amp_available + */ + public static function is_amp_available() { + return ( function_exists( 'amp_is_available' ) && amp_is_available() ); + } + + /** * Does the page return AMP content. * * @return bool $is_amp_request Are we on am AMP view. @@ -99,6 +138,30 @@ class Jetpack_AMP_Support { } /** + * Do not add comment likes on AMP requests. + * + * @param string $content Post content. + */ + public static function disable_comment_likes_before_the_content( $content ) { + if ( self::is_amp_request() ) { + remove_filter( 'comment_text', 'comment_like_button', 12, 2 ); + } + return $content; + } + + /** + * Do not display the Likes' Admin bar on AMP requests. + * + * @param bool $is_admin_bar_button_visible Should the Like button be visible in the Admin bar. Default to true. + */ + public static function disable_likes_admin_bar( $is_admin_bar_button_visible ) { + if ( self::is_amp_request() ) { + return false; + } + return $is_admin_bar_button_visible; + } + + /** * Add Jetpack stats pixel. * * @since 6.2.1 @@ -124,7 +187,7 @@ class Jetpack_AMP_Support { $metadata = self::add_site_icon_to_metadata( $metadata ); } - if ( ! isset( $metadata['image'] ) ) { + if ( ! isset( $metadata['image'] ) && ! empty( $post ) ) { $metadata = self::add_image_to_metadata( $metadata, $post ); } @@ -247,7 +310,7 @@ class Jetpack_AMP_Support { if ( function_exists( 'staticize_subdomain' ) ) { return staticize_subdomain( $domain ); } else { - return Jetpack::staticize_subdomain( $domain ); + return Assets::staticize_subdomain( $domain ); } } @@ -260,10 +323,10 @@ class Jetpack_AMP_Support { * @return array Dimensions. */ private static function extract_image_dimensions_from_getimagesize( $dimensions ) { - if ( ! ( defined( 'IS_WPCOM' ) && IS_WPCOM && function_exists( 'require_lib' ) ) ) { + if ( ! ( defined( 'IS_WPCOM' ) && IS_WPCOM && function_exists( 'jetpack_require_lib' ) ) ) { return $dimensions; } - require_lib( 'wpcom/imagesize' ); + jetpack_require_lib( 'wpcom/imagesize' ); foreach ( $dimensions as $url => $value ) { if ( is_array( $value ) ) { @@ -313,6 +376,12 @@ class Jetpack_AMP_Support { * @param array $sharing_enabled Array of Sharing Services currently enabled. */ public static function render_sharing_html( $markup, $sharing_enabled ) { + global $post; + + if ( empty( $post ) ) { + return ''; + } + if ( ! self::is_amp_request() ) { return $markup; } @@ -321,39 +390,17 @@ class Jetpack_AMP_Support { if ( empty( $sharing_enabled ) ) { return $markup; } - $supported_services = array( - 'facebook' => array( - /** This filter is documented in modules/sharedaddy/sharing-sources.php */ - 'data-param-app_id' => apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' ), - ), - 'twitter' => array(), - 'pinterest' => array(), - 'whatsapp' => array(), - 'tumblr' => array(), - 'linkedin' => array(), - ); - $sharing_links = array(); - foreach ( $sharing_enabled['visible'] as $id => $service ) { - if ( ! isset( $supported_services[ $id ] ) ) { - $sharing_links[] = "<!-- not supported: $id -->"; - continue; - } - $args = array_merge( - array( - 'type' => $id, - ), - $supported_services[ $id ] - ); - $sharing_link = '<amp-social-share'; - foreach ( $args as $key => $value ) { - $sharing_link .= sprintf( ' %s="%s"', sanitize_key( $key ), esc_attr( $value ) ); + + $sharing_links = array(); + foreach ( $sharing_enabled['visible'] as $service ) { + $sharing_link = $service->get_amp_display( $post ); + if ( ! empty( $sharing_link ) ) { + $sharing_links[] = $sharing_link; } - $sharing_link .= '></amp-social-share>'; - $sharing_links[] = $sharing_link; } - // Wrap AMP sharing buttons in container. - $markup = preg_replace( '#(?<=<div class="sd-content">).+?(?=</div>)#s', implode( '', $sharing_links ), $markup ); + // Replace the existing unordered list with AMP sharing buttons. + $markup = preg_replace( '#<ul>(.+)</ul>#', implode( '', $sharing_links ), $markup ); // Remove any lingering share-end list items. $markup = str_replace( '<li class="share-end"></li>', '', $markup ); @@ -376,6 +423,43 @@ class Jetpack_AMP_Support { } /** + * Enqueues the AMP specific sharing styles for the sharing icons. + */ + public static function amp_enqueue_sharing_css() { + if ( self::is_amp_request() ) { + wp_enqueue_style( 'sharedaddy-amp', plugin_dir_url( __DIR__ ) . 'modules/sharedaddy/amp-sharing.css', array( 'social-logos' ), JETPACK__VERSION ); + } + } + + /** + * For the AMP Reader mode template, include styles that we need. + */ + public static function amp_reader_sharing_css() { + // If sharing is not enabled, we should not proceed to render the CSS. + if ( ! defined( 'JETPACK_SOCIAL_LOGOS_DIR' ) | ! defined( 'JETPACK_SOCIAL_LOGOS_URL' ) || ! defined( 'WP_SHARING_PLUGIN_DIR' ) ) { + return; + } + + /* + * We'll need to output the full contents of the 2 files + * in the head on AMP views. We can't rely on regular enqueues here. + * @todo As of AMP plugin v1.5, you can actually rely on regular enqueues thanks to https://github.com/ampproject/amp-wp/pull/4299. Once WPCOM upgrades AMP, then this method can be eliminated. + * + * phpcs:disable WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents + * phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped + */ + $css = file_get_contents( JETPACK_SOCIAL_LOGOS_DIR . 'social-logos.css' ); + $css = preg_replace( '#(?<=url\(")(?=social-logos\.)#', JETPACK_SOCIAL_LOGOS_URL, $css ); // Make sure font files get their absolute paths. + echo $css; + echo file_get_contents( WP_SHARING_PLUGIN_DIR . 'amp-sharing.css' ); + + /* + * phpcs:enable WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents + * phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped + */ + } + + /** * Ensure proper Photon image dimensions for AMP Stories. * * @param array $args Array of Photon Arguments. @@ -442,6 +526,20 @@ class Jetpack_AMP_Support { return $args; } + + /** + * Adds amp-options to the list of options to sync, if AMP is available + * + * @param array $options_safelist Safelist of options to sync. + * + * @return array Updated options safelist + */ + public static function filter_jetpack_options_safelist( $options_safelist ) { + if ( function_exists( 'is_amp_endpoint' ) ) { + $options_safelist[] = 'amp-options'; + } + return $options_safelist; + } } add_action( 'init', array( 'Jetpack_AMP_Support', 'init' ), 1 ); |