PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 8.6
Jetpack – WP Security, Backup, Speed, & Growth v8.6
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
← All changes | modules/notes.php +119 -145 16.2-beta8.6 View file →
@@ -1,105 +1,112 @@
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 + return 'https://s' . $i . '.wp.com' . $file;
72 42 }
73 43
74 - /**
75 - * Init the notifications admin bar.
76 - *
77 - * @return void
78 - */
79 - public function action_init() {
80 - if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
44 + // return the major version of Internet Explorer the viewer is using or false if it's not IE
45 + public static function get_internet_explorer_version() {
46 + static $version;
47 + if ( isset( $version ) ) {
48 + return $version;
49 + }
50 +
51 + $user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : '';
52 +
53 + preg_match( '/MSIE (\d+)/', $user_agent, $matches );
54 + $version = empty( $matches[1] ) ? null : $matches[1];
55 + if ( empty( $version ) || !$version ) {
56 + return false;
57 + }
58 + return $version;
59 + }
60 +
61 + public static function current_browser_is_supported() {
62 + static $supported;
63 +
64 + if ( isset( $supported ) ) {
65 + return $supported;
66 + }
67 +
68 + $ie_version = self::get_internet_explorer_version();
69 + if ( false === $ie_version ) {
70 + return $supported = true;
71 + }
72 +
73 + if ( $ie_version < 8 ) {
74 + return $supported = false;
75 + }
76 +
77 + return $supported = true;
78 + }
79 +
80 + function action_init() {
81 + //syncing must wait until after init so
82 + //post types that support comments
83 + $filt_post_types = array();
84 + $all_post_types = get_post_types();
85 + foreach ( $all_post_types as $post_type ) {
86 + if ( post_type_supports( $post_type, 'comments' ) ) {
87 + $filt_post_types[] = $post_type;
88 + }
89 + }
90 +
91 + if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
81 92 return;
82 - }
83 93
84 - if ( ! has_filter( 'show_admin_bar', '__return_true' ) && ! is_user_logged_in() ) {
94 + if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() )
85 95 return;
86 - }
87 96
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' ) );
97 + if ( !self::current_browser_is_supported() )
98 + return;
99 +
100 + add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu'), 120 );
101 + add_action( 'wp_head', array( &$this, 'styles_and_scripts'), 120 );
102 + add_action( 'admin_head', array( &$this, 'styles_and_scripts') );
91 103 }
92 104
93 - /**
94 - * Enqueues and registers styles/scripts for notifications.
95 - *
96 - * @return void
97 - */
98 - public function styles_and_scripts() {
105 + function styles_and_scripts() {
99 106 $is_rtl = is_rtl();
100 107
101 - if ( ( new Host() )->is_woa_site() ) {
108 + if ( Jetpack::is_module_active( 'masterbar' ) ) {
102 109 /**
103 110 * Can be used to force Notifications to display in RTL style.
104 111 *
105 112 * @module notes
@@ -120,17 +127,31 @@
120 127 wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array( 'wpcom-notes-admin-bar' ), JETPACK_NOTES__CACHE_BUSTER );
121 128
122 129 $this->print_js();
123 130
131 + // attempt to use core or plugin libraries if registered
124 132 $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 );
133 + if ( !wp_script_is( 'mustache', 'registered' ) ) {
134 + wp_register_script( 'mustache', $this->wpcom_static_url( '/wp-content/js/mustache.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
135 + }
136 + $script_handles[] = 'mustache';
137 + if ( !wp_script_is( 'underscore', 'registered' ) ) {
138 + wp_register_script( 'underscore', $this->wpcom_static_url( '/wp-includes/js/underscore.min.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
139 + }
140 + $script_handles[] = 'underscore';
141 + if ( !wp_script_is( 'backbone', 'registered' ) ) {
142 + wp_register_script( 'backbone', $this->wpcom_static_url( '/wp-includes/js/backbone.min.js' ), array( 'underscore' ), JETPACK_NOTES__CACHE_BUSTER );
143 + }
144 + $script_handles[] = 'backbone';
145 +
146 + 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 );
126 147 $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 );
148 + $script_handles[] = 'jquery';
149 + $script_handles[] = 'jquery-migrate';
150 + $script_handles[] = 'jquery-core';
151 + 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 );
128 152 $script_handles[] = 'wpcom-notes-admin-bar';
129 153
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 154 if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
134 155 add_filter(
135 156 'script_loader_tag',
136 157 function ( $tag, $handle ) use ( $script_handles ) {
@@ -144,23 +165,17 @@
144 165 );
145 166 }
146 167 }
147 168
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;
169 + function admin_bar_menu() {
170 + global $wp_admin_bar, $current_blog;
155 171
156 - if ( ! is_object( $wp_admin_bar ) ) {
172 + if ( !is_object( $wp_admin_bar ) )
157 173 return;
158 - }
159 174
160 - $user_locale = get_user_locale();
175 + $wpcom_locale = get_locale();
161 176
162 - if ( ! class_exists( 'GP_Locales' ) ) {
177 + if ( !class_exists( 'GP_Locales' ) ) {
163 178 if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
164 179 require JETPACK__GLOTPRESS_LOCALES_PATH;
165 180 }
166 181 }
@@ -165,83 +180,42 @@
165 180 }
166 181 }
167 182
168 183 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;
184 + $wpcom_locale_object = GP_Locales::by_field( 'wp_locale', $wpcom_locale );
185 + if ( $wpcom_locale_object instanceof GP_Locale ) {
186 + $wpcom_locale = $wpcom_locale_object->slug;
172 187 }
173 188 }
174 189
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 - );
190 + $classes = 'wpnt-loading wpn-read';
191 + $wp_admin_bar->add_menu( array(
192 + 'id' => 'notes',
193 + 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '">
194 + <span class="noticon noticon-notification"></span>
195 + </span>',
196 + 'meta' => array(
197 + 'html' => '<div id="wpnt-notes-panel2" class="intrinsic-ignore" 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>',
198 + 'class' => 'menupop',
199 + ),
200 + 'parent' => 'top-secondary',
201 + ) );
198 202 }
199 203
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>';
204 + function print_js() {
205 + $link_accounts_url = is_user_logged_in() && !Jetpack::is_user_connected() ? Jetpack::admin_url() : false;
206 +?>
207 +<script data-ampdevmode type="text/javascript">
208 +/* <![CDATA[ */
209 + var wpNotesIsJetpackClient = true;
210 + var wpNotesIsJetpackClientV2 = true;
211 +<?php if ( $link_accounts_url ) : ?>
212 + var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>';
213 +<?php endif; ?>
214 +/* ]]> */
215 +</script>
216 +<?php
209 217 }
210 218
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 219 }
246 220
247 221 Jetpack_Notifications::init();