| @@ -1,105 +1,113 @@ | ||
| 1 | -<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName | |
| 1 | +<?php | |
| 2 | 2 | /** |
| 3 | 3 | * Module Name: Notifications |
| 4 | - * Module Description: Receive real‑time notifications about site activity across your devices. | |
| 4 | + * Module Description: Receive instant notifications of site comments and likes. | |
| 5 | 5 | * Sort Order: 13 |
| 6 | 6 | * First Introduced: 1.9 |
| 7 | 7 | * Requires Connection: Yes |
| 8 | - * Requires User Connection: Yes | |
| 9 | 8 | * Auto Activate: Yes |
| 10 | 9 | * Module Tags: Other |
| 11 | 10 | * Feature: General |
| 12 | 11 | * Additional Search Queries: notification, notifications, toolbar, adminbar, push, comments |
| 13 | - * | |
| 14 | - * @package automattic/jetpack | |
| 15 | 12 | */ |
| 16 | 13 | |
| 17 | -use Automattic\Jetpack\Connection\Manager as Connection_Manager; | |
| 18 | -use Automattic\Jetpack\Status\Host; | |
| 14 | +if ( !defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) ); | |
| 19 | 15 | |
| 20 | -if ( ! defined( 'ABSPATH' ) ) { | |
| 21 | - exit( 0 ); | |
| 22 | -} | |
| 23 | - | |
| 24 | -if ( ! defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) { | |
| 25 | - define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) . '-lite' ); | |
| 26 | -} | |
| 27 | - | |
| 28 | -/** | |
| 29 | - * Notifications class. | |
| 30 | - */ | |
| 31 | 16 | class Jetpack_Notifications { |
| 32 | - /** | |
| 33 | - * Jetpack object. | |
| 34 | - * | |
| 35 | - * @var bool|Jetpack Jetpack object. | |
| 36 | - */ | |
| 37 | 17 | public $jetpack = false; |
| 38 | 18 | |
| 39 | 19 | /** |
| 40 | 20 | * Singleton |
| 41 | - * | |
| 42 | 21 | * @static |
| 43 | 22 | */ |
| 44 | 23 | public static function init() { |
| 45 | 24 | static $instance = array(); |
| 46 | 25 | |
| 47 | - if ( ! $instance ) { | |
| 48 | - $instance[0] = new Jetpack_Notifications(); | |
| 26 | + if ( !$instance ) { | |
| 27 | + $instance[0] = new Jetpack_Notifications; | |
| 49 | 28 | } |
| 50 | 29 | |
| 51 | 30 | return $instance[0]; |
| 52 | 31 | } |
| 53 | 32 | |
| 54 | - /** | |
| 55 | - * Constructor. | |
| 56 | - */ | |
| 57 | - private function __construct() { | |
| 33 | + function __construct() { | |
| 58 | 34 | $this->jetpack = Jetpack::init(); |
| 59 | 35 | |
| 60 | - add_action( 'init', array( $this, 'action_init' ) ); | |
| 36 | + add_action( 'init', array( &$this, 'action_init' ) ); | |
| 61 | 37 | } |
| 62 | 38 | |
| 63 | - /** | |
| 64 | - * Adds s0.wp.com to a file path. | |
| 65 | - * | |
| 66 | - * @param string $file File path. | |
| 67 | - * | |
| 68 | - * @return string | |
| 69 | - */ | |
| 70 | - public function wpcom_static_url( $file ) { | |
| 71 | - return 'https://s0.wp.com' . $file; | |
| 39 | + function wpcom_static_url($file) { | |
| 40 | + $i = hexdec( substr( md5( $file ), -1 ) ) % 2; | |
| 41 | + $url = 'http://s' . $i . '.wp.com' . $file; | |
| 42 | + return set_url_scheme( $url ); | |
| 72 | 43 | } |
| 73 | 44 | |
| 74 | - /** | |
| 75 | - * Init the notifications admin bar. | |
| 76 | - * | |
| 77 | - * @return void | |
| 78 | - */ | |
| 79 | - public function action_init() { | |
| 80 | - if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { | |
| 45 | + // return the major version of Internet Explorer the viewer is using or false if it's not IE | |
| 46 | + public static function get_internet_explorer_version() { | |
| 47 | + static $version; | |
| 48 | + if ( isset( $version ) ) { | |
| 49 | + return $version; | |
| 50 | + } | |
| 51 | + | |
| 52 | + $user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : ''; | |
| 53 | + | |
| 54 | + preg_match( '/MSIE (\d+)/', $user_agent, $matches ); | |
| 55 | + $version = empty( $matches[1] ) ? null : $matches[1]; | |
| 56 | + if ( empty( $version ) || !$version ) { | |
| 57 | + return false; | |
| 58 | + } | |
| 59 | + return $version; | |
| 60 | + } | |
| 61 | + | |
| 62 | + public static function current_browser_is_supported() { | |
| 63 | + static $supported; | |
| 64 | + | |
| 65 | + if ( isset( $supported ) ) { | |
| 66 | + return $supported; | |
| 67 | + } | |
| 68 | + | |
| 69 | + $ie_version = self::get_internet_explorer_version(); | |
| 70 | + if ( false === $ie_version ) { | |
| 71 | + return $supported = true; | |
| 72 | + } | |
| 73 | + | |
| 74 | + if ( $ie_version < 8 ) { | |
| 75 | + return $supported = false; | |
| 76 | + } | |
| 77 | + | |
| 78 | + return $supported = true; | |
| 79 | + } | |
| 80 | + | |
| 81 | + function action_init() { | |
| 82 | + //syncing must wait until after init so | |
| 83 | + //post types that support comments | |
| 84 | + $filt_post_types = array(); | |
| 85 | + $all_post_types = get_post_types(); | |
| 86 | + foreach ( $all_post_types as $post_type ) { | |
| 87 | + if ( post_type_supports( $post_type, 'comments' ) ) { | |
| 88 | + $filt_post_types[] = $post_type; | |
| 89 | + } | |
| 90 | + } | |
| 91 | + | |
| 92 | + if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) | |
| 81 | 93 | return; |
| 82 | - } | |
| 83 | 94 | |
| 84 | - if ( ! has_filter( 'show_admin_bar', '__return_true' ) && ! is_user_logged_in() ) { | |
| 95 | + if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() ) | |
| 85 | 96 | return; |
| 86 | - } | |
| 87 | 97 | |
| 88 | - add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 120 ); | |
| 89 | - add_action( 'wp_head', array( $this, 'styles_and_scripts' ), 120 ); | |
| 90 | - add_action( 'admin_head', array( $this, 'styles_and_scripts' ) ); | |
| 98 | + if ( !self::current_browser_is_supported() ) | |
| 99 | + return; | |
| 100 | + | |
| 101 | + add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu'), 120 ); | |
| 102 | + add_action( 'wp_head', array( &$this, 'styles_and_scripts'), 120 ); | |
| 103 | + add_action( 'admin_head', array( &$this, 'styles_and_scripts') ); | |
| 91 | 104 | } |
| 92 | 105 | |
| 93 | - /** | |
| 94 | - * Enqueues and registers styles/scripts for notifications. | |
| 95 | - * | |
| 96 | - * @return void | |
| 97 | - */ | |
| 98 | - public function styles_and_scripts() { | |
| 106 | + function styles_and_scripts() { | |
| 99 | 107 | $is_rtl = is_rtl(); |
| 100 | 108 | |
| 101 | - if ( ( new Host() )->is_woa_site() ) { | |
| 109 | + if ( Jetpack::is_module_active( 'masterbar' ) ) { | |
| 102 | 110 | /** |
| 103 | 111 | * Can be used to force Notifications to display in RTL style. |
| 104 | 112 | * |
| 105 | 113 | * @module notes |
| @@ -111,56 +119,40 @@ | ||
| 111 | 119 | $is_rtl = apply_filters( 'a8c_wpcom_masterbar_enqueue_rtl_notification_styles', false ); |
| 112 | 120 | } |
| 113 | 121 | |
| 114 | 122 | if ( ! $is_rtl ) { |
| 115 | - wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.css' ), array( 'admin-bar' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 123 | + wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.css' ), array(), JETPACK_NOTES__CACHE_BUSTER ); | |
| 116 | 124 | } else { |
| 117 | - wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/rtl/admin-bar-v2-rtl.css' ), array( 'admin-bar' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 125 | + wp_enqueue_style( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/rtl/admin-bar-v2-rtl.css' ), array(), JETPACK_NOTES__CACHE_BUSTER ); | |
| 118 | 126 | } |
| 127 | + wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array(), JETPACK_NOTES__CACHE_BUSTER ); | |
| 119 | 128 | |
| 120 | - wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array( 'wpcom-notes-admin-bar' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 121 | - | |
| 122 | 129 | $this->print_js(); |
| 123 | 130 | |
| 124 | - $script_handles = array(); | |
| 125 | - wp_register_script( 'wpcom-notes-common', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/notes-common-lite.min.js' ), array(), JETPACK_NOTES__CACHE_BUSTER, true ); | |
| 126 | - $script_handles[] = 'wpcom-notes-common'; | |
| 127 | - wp_enqueue_script( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.js' ), array( 'wpcom-notes-common' ), JETPACK_NOTES__CACHE_BUSTER, true ); | |
| 128 | - $script_handles[] = 'wpcom-notes-admin-bar'; | |
| 131 | + // attempt to use core or plugin libraries if registered | |
| 132 | + if ( !wp_script_is( 'mustache', 'registered' ) ) { | |
| 133 | + wp_register_script( 'mustache', $this->wpcom_static_url( '/wp-content/js/mustache.js' ), null, JETPACK_NOTES__CACHE_BUSTER ); | |
| 134 | + } | |
| 135 | + if ( !wp_script_is( 'underscore', 'registered' ) ) { | |
| 136 | + wp_register_script( 'underscore', $this->wpcom_static_url( '/wp-includes/js/underscore.min.js' ), null, JETPACK_NOTES__CACHE_BUSTER ); | |
| 137 | + } | |
| 138 | + if ( !wp_script_is( 'backbone', 'registered' ) ) { | |
| 139 | + wp_register_script( 'backbone', $this->wpcom_static_url( '/wp-includes/js/backbone.min.js' ), array( 'underscore' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 140 | + } | |
| 129 | 141 | |
| 130 | - $wp_notes_args = 'var wpNotesArgs = ' . wp_json_encode( array( 'cacheBuster' => JETPACK_NOTES__CACHE_BUSTER ), JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ';'; | |
| 131 | - wp_add_inline_script( 'wpcom-notes-admin-bar', $wp_notes_args, 'before' ); | |
| 132 | - | |
| 133 | - if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { | |
| 134 | - add_filter( | |
| 135 | - 'script_loader_tag', | |
| 136 | - function ( $tag, $handle ) use ( $script_handles ) { | |
| 137 | - if ( in_array( $handle, $script_handles, true ) ) { | |
| 138 | - $tag = preg_replace( '/(?<=<script)(?=\s|>)/i', ' data-ampdevmode', $tag ); | |
| 139 | - } | |
| 140 | - return $tag; | |
| 141 | - }, | |
| 142 | - 10, | |
| 143 | - 2 | |
| 144 | - ); | |
| 145 | - } | |
| 142 | + wp_register_script( 'wpcom-notes-common', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/notes-common-v2.js' ), array( 'jquery', 'underscore', 'backbone', 'mustache' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 143 | + wp_enqueue_script( 'wpcom-notes-admin-bar', $this->wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.js' ), array( 'wpcom-notes-common' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 146 | 144 | } |
| 147 | 145 | |
| 148 | - /** | |
| 149 | - * Adds notifications bubble to the admin bar. | |
| 150 | - * | |
| 151 | - * @return void | |
| 152 | - */ | |
| 153 | - public function admin_bar_menu() { | |
| 154 | - global $wp_admin_bar; | |
| 146 | + function admin_bar_menu() { | |
| 147 | + global $wp_admin_bar, $current_blog; | |
| 155 | 148 | |
| 156 | - if ( ! is_object( $wp_admin_bar ) ) { | |
| 149 | + if ( !is_object( $wp_admin_bar ) ) | |
| 157 | 150 | return; |
| 158 | - } | |
| 159 | 151 | |
| 160 | - $user_locale = get_user_locale(); | |
| 152 | + $wpcom_locale = get_locale(); | |
| 161 | 153 | |
| 162 | - if ( ! class_exists( 'GP_Locales' ) ) { | |
| 154 | + if ( !class_exists( 'GP_Locales' ) ) { | |
| 163 | 155 | if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 164 | 156 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 165 | 157 | } |
| 166 | 158 | } |
| @@ -165,83 +157,42 @@ | ||
| 165 | 157 | } |
| 166 | 158 | } |
| 167 | 159 | |
| 168 | 160 | if ( class_exists( 'GP_Locales' ) ) { |
| 169 | - $jetpack_locale_object = GP_Locales::by_field( 'slug', $user_locale ); | |
| 170 | - if ( $jetpack_locale_object instanceof GP_Locale ) { | |
| 171 | - $user_locale = $jetpack_locale_object->slug; | |
| 161 | + $wpcom_locale_object = GP_Locales::by_field( 'wp_locale', $wpcom_locale ); | |
| 162 | + if ( $wpcom_locale_object instanceof GP_Locale ) { | |
| 163 | + $wpcom_locale = $wpcom_locale_object->slug; | |
| 172 | 164 | } |
| 173 | 165 | } |
| 174 | 166 | |
| 175 | - $third_party_cookie_check_iframe = '<span style="display:none;"><iframe class="jetpack-notes-cookie-check" src="https://widgets.wp.com/3rd-party-cookie-check/index.html"></iframe></span>'; | |
| 176 | - | |
| 177 | - // Opt into the v3 notifications panel/iframe via the `notifications=v3` query parameter. | |
| 178 | - $notifications_version = sanitize_key( wp_unslash( $_GET['notifications'] ?? '' ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended | |
| 179 | - $panel_id = 'v3' === $notifications_version ? 'wpnt-notes-panel3' : 'wpnt-notes-panel2'; | |
| 180 | - | |
| 181 | - $title = self::get_notes_markup(); | |
| 182 | - | |
| 183 | - // The default fallback is `en_US`. Remove underscore if present, noting that lang codes can be more than three chars. | |
| 184 | - $user_locale = strtolower( explode( '_', $user_locale, 2 )[0] ); | |
| 185 | - | |
| 186 | - $wp_admin_bar->add_menu( | |
| 187 | - array( | |
| 188 | - 'id' => 'notes', | |
| 189 | - 'title' => $title, | |
| 190 | - 'meta' => array( | |
| 191 | - 'html' => '<div id="' . esc_attr( $panel_id ) . '" class="intrinsic-ignore" style="display:none" lang="' . esc_attr( $user_locale ) . '" dir="' . ( is_rtl() ? 'rtl' : 'ltr' ) . '"><div class="wpnt-notes-panel-header"><span class="wpnt-notes-header">' . __( 'Notifications', 'jetpack' ) . '</span><span class="wpnt-notes-panel-link"></span></div></div>' . $third_party_cookie_check_iframe, | |
| 192 | - 'class' => 'menupop', | |
| 193 | - ), | |
| 194 | - 'parent' => 'top-secondary', | |
| 195 | - 'href' => 'https://wordpress.com/reader/notifications', | |
| 196 | - ) | |
| 197 | - ); | |
| 167 | + $classes = 'wpnt-loading wpn-read'; | |
| 168 | + $wp_admin_bar->add_menu( array( | |
| 169 | + 'id' => 'notes', | |
| 170 | + 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '"> | |
| 171 | + <span class="noticon noticon-notification"></span> | |
| 172 | + </span>', | |
| 173 | + 'meta' => array( | |
| 174 | + 'html' => '<div id="wpnt-notes-panel2" style="display:none" lang="'. esc_attr( $wpcom_locale ) . '" dir="' . ( is_rtl() ? 'rtl' : 'ltr' ) . '"><div class="wpnt-notes-panel-header"><span class="wpnt-notes-header">' . __( 'Notifications', 'jetpack' ) . '</span><span class="wpnt-notes-panel-link"></span></div></div>', | |
| 175 | + 'class' => 'menupop', | |
| 176 | + ), | |
| 177 | + 'parent' => 'top-secondary', | |
| 178 | + ) ); | |
| 198 | 179 | } |
| 199 | 180 | |
| 200 | - /** | |
| 201 | - * Returns the HTML markup for used by notification in top bar | |
| 202 | - * | |
| 203 | - * @return string | |
| 204 | - */ | |
| 205 | - private static function get_notes_markup() { | |
| 206 | - return '<span id="wpnt-notes-unread-count" class="wpnt-loading wpn-read"></span> | |
| 207 | -<span class="noticon noticon-bell ab-icon"></span> | |
| 208 | -<span class="screen-reader-text">' . esc_html__( 'Notifications', 'jetpack' ) . '</span>'; | |
| 181 | + function print_js() { | |
| 182 | + $link_accounts_url = is_user_logged_in() && !Jetpack::is_user_connected() ? Jetpack::admin_url() : false; | |
| 183 | +?> | |
| 184 | +<script type="text/javascript"> | |
| 185 | +/* <![CDATA[ */ | |
| 186 | + var wpNotesIsJetpackClient = true; | |
| 187 | + var wpNotesIsJetpackClientV2 = true; | |
| 188 | +<?php if ( $link_accounts_url ) : ?> | |
| 189 | + var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>'; | |
| 190 | +<?php endif; ?> | |
| 191 | +/* ]]> */ | |
| 192 | +</script> | |
| 193 | +<?php | |
| 209 | 194 | } |
| 210 | 195 | |
| 211 | - /** | |
| 212 | - * Echos the Notes JS. | |
| 213 | - * | |
| 214 | - * @return void | |
| 215 | - */ | |
| 216 | - public function print_js() { | |
| 217 | - $link_accounts_url = is_user_logged_in() && ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected() ? Jetpack::admin_url() : false; | |
| 218 | - $script_contents = <<<'JS' | |
| 219 | -var wpNotesIsJetpackClient = true; | |
| 220 | -var wpNotesIsJetpackClientV2 = true; | |
| 221 | -JS; | |
| 222 | - if ( $link_accounts_url ) { | |
| 223 | - $script_contents .= "\nvar wpNotesLinkAccountsURL = " . wp_json_encode( $link_accounts_url, JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ';'; | |
| 224 | - } | |
| 225 | - wp_print_inline_script_tag( | |
| 226 | - $script_contents, | |
| 227 | - array( | |
| 228 | - 'data-ampdevmode' => true, | |
| 229 | - ) | |
| 230 | - ); | |
| 231 | - } | |
| 232 | - | |
| 233 | - /** | |
| 234 | - * Checks to see if we're in the block editor. | |
| 235 | - */ | |
| 236 | - public static function is_block_editor() { | |
| 237 | - if ( function_exists( 'get_current_screen' ) ) { | |
| 238 | - $current_screen = get_current_screen(); | |
| 239 | - if ( ! empty( $current_screen ) && $current_screen->is_block_editor() ) { | |
| 240 | - return true; | |
| 241 | - } | |
| 242 | - } | |
| 243 | - return false; | |
| 244 | - } | |
| 245 | 196 | } |
| 246 | 197 | |
| 247 | 198 | Jetpack_Notifications::init(); |