PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 10.3
Jetpack – WP Security, Backup, Speed, & Growth v10.3
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 14.4.2 All 500 releases
← All changes | modules/notes.php +103 -127 12.9.510.3 View file →
@@ -1,5 +1,5 @@
1 -<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
1 +<?php
2 2 /**
3 3 * Module Name: Notifications
4 4 * Module Description: Receive instant notifications of site comments and likes.
5 5 * Sort Order: 13
@@ -9,106 +9,111 @@
9 9 * Auto Activate: Yes
10 10 * Module Tags: Other
11 11 * Feature: General
12 12 * Additional Search Queries: notification, notifications, toolbar, adminbar, push, comments
13 - *
14 - * @package automattic/jetpack
15 13 */
16 14
17 15 use Automattic\Jetpack\Connection\Manager as Connection_Manager;
18 16
19 -if ( ! defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) {
20 - define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) . '-lite' );
21 -}
17 +if ( !defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) );
22 18
23 -/**
24 - * Notifications class.
25 - */
26 19 class Jetpack_Notifications {
27 - /**
28 - * Jetpack object.
29 - *
30 - * @var bool|Jetpack Jetpack object.
31 - */
32 20 public $jetpack = false;
33 21
34 22 /**
35 23 * Singleton
36 - *
37 24 * @static
38 25 */
39 26 public static function init() {
40 27 static $instance = array();
41 28
42 - if ( ! $instance ) {
43 - $instance[0] = new Jetpack_Notifications();
29 + if ( !$instance ) {
30 + $instance[0] = new Jetpack_Notifications;
44 31 }
45 32
46 33 return $instance[0];
47 34 }
48 35
49 - /**
50 - * Constructor.
51 - */
52 - private function __construct() {
36 + function __construct() {
53 37 $this->jetpack = Jetpack::init();
54 38
55 - add_action( 'init', array( $this, 'action_init' ) );
39 + add_action( 'init', array( &$this, 'action_init' ) );
56 40 }
57 41
58 - /**
59 - * Adds s0.wp.com to a file path.
60 - *
61 - * @param string $file File path.
62 - *
63 - * @return string
64 - */
65 - public function wpcom_static_url( $file ) {
66 - return 'https://s0.wp.com' . $file;
42 + function wpcom_static_url($file) {
43 + $i = hexdec( substr( md5( $file ), -1 ) ) % 2;
44 + return 'https://s' . $i . '.wp.com' . $file;
67 45 }
68 46
69 - /**
70 - * Init the notifications admin bar.
71 - *
72 - * @return void
73 - */
74 - public function action_init() {
75 - if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
76 - return;
47 + // return the major version of Internet Explorer the viewer is using or false if it's not IE
48 + public static function get_internet_explorer_version() {
49 + static $version;
50 + if ( isset( $version ) ) {
51 + return $version;
77 52 }
78 53
79 - if ( ! has_filter( 'show_admin_bar', '__return_true' ) && ! is_user_logged_in() ) {
80 - return;
54 + $user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : '';
55 +
56 + preg_match( '/MSIE (\d+)/', $user_agent, $matches );
57 + $version = empty( $matches[1] ) ? null : $matches[1];
58 + if ( empty( $version ) || !$version ) {
59 + return false;
81 60 }
61 + return $version;
62 + }
82 63
83 - // Do not show notifications in the Site Editor, which is always in fullscreen mode.
84 - global $pagenow;
64 + public static function current_browser_is_supported() {
65 + static $supported;
85 66
86 - // Pre 13.7 pages that still need to be supported if < 13.7 is
87 - // still installed.
88 - $allowed_old_pages = array( 'admin.php', 'themes.php' );
89 - $is_old_site_editor_page = in_array( $pagenow, $allowed_old_pages, true ) && isset( $_GET['page'] ) && 'gutenberg-edit-site' === $_GET['page']; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
90 - // For Gutenberg > 13.7, the core `site-editor.php` route is used instead
91 - $is_site_editor_page = 'site-editor.php' === $pagenow;
67 + if ( isset( $supported ) ) {
68 + return $supported;
69 + }
92 70
93 - if ( $is_site_editor_page || $is_old_site_editor_page ) {
94 - return;
71 + $ie_version = self::get_internet_explorer_version();
72 + if ( false === $ie_version ) {
73 + return $supported = true;
95 74 }
96 75
97 - add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 120 );
98 - add_action( 'wp_head', array( $this, 'styles_and_scripts' ), 120 );
99 - add_action( 'admin_head', array( $this, 'styles_and_scripts' ) );
76 + if ( $ie_version < 8 ) {
77 + return $supported = false;
78 + }
79 +
80 + return $supported = true;
100 81 }
101 82
102 - /**
103 - * Enqueues and registers styles/scripts for notifications.
104 - *
105 - * @return void
106 - */
107 - public function styles_and_scripts() {
108 - if ( self::is_block_editor() ) {
83 + function action_init() {
84 + //syncing must wait until after init so
85 + //post types that support comments
86 + $filt_post_types = array();
87 + $all_post_types = get_post_types();
88 + foreach ( $all_post_types as $post_type ) {
89 + if ( post_type_supports( $post_type, 'comments' ) ) {
90 + $filt_post_types[] = $post_type;
91 + }
92 + }
93 +
94 + if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
109 95 return;
96 +
97 + if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() )
98 + return;
99 +
100 + if ( !self::current_browser_is_supported() )
101 + return;
102 +
103 + // Do not show notifications in the Site Editor, which is always in fullscreen mode.
104 + global $pagenow;
105 + // phpcs:ignore WordPress.Security.NonceVerification
106 + if ( 'admin.php' === $pagenow && isset( $_GET['page'] ) && 'gutenberg-edit-site' === $_GET['page'] ) {
107 + return;
110 108 }
109 +
110 + add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu'), 120 );
111 + add_action( 'wp_head', array( &$this, 'styles_and_scripts'), 120 );
112 + add_action( 'admin_head', array( &$this, 'styles_and_scripts') );
113 + }
114 +
115 + function styles_and_scripts() {
111 116 $is_rtl = is_rtl();
112 117
113 118 if ( Jetpack::is_module_active( 'masterbar' ) ) {
114 119 /**
@@ -132,12 +137,29 @@
132 137 wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array( 'wpcom-notes-admin-bar' ), JETPACK_NOTES__CACHE_BUSTER );
133 138
134 139 $this->print_js();
135 140
141 + // attempt to use core or plugin libraries if registered
136 142 $script_handles = array();
137 - 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 );
143 + if ( !wp_script_is( 'mustache', 'registered' ) ) {
144 + wp_register_script( 'mustache', $this->wpcom_static_url( '/wp-content/js/mustache.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
145 + }
146 + $script_handles[] = 'mustache';
147 + if ( !wp_script_is( 'underscore', 'registered' ) ) {
148 + wp_register_script( 'underscore', $this->wpcom_static_url( '/wp-includes/js/underscore.min.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
149 + }
150 + $script_handles[] = 'underscore';
151 + if ( !wp_script_is( 'backbone', 'registered' ) ) {
152 + wp_register_script( 'backbone', $this->wpcom_static_url( '/wp-includes/js/backbone.min.js' ), array( 'underscore' ), JETPACK_NOTES__CACHE_BUSTER );
153 + }
154 + $script_handles[] = 'backbone';
155 +
156 + 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 );
138 157 $script_handles[] = 'wpcom-notes-common';
139 - 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 );
158 + $script_handles[] = 'jquery';
159 + $script_handles[] = 'jquery-migrate';
160 + $script_handles[] = 'jquery-core';
161 + 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 );
140 162 $script_handles[] = 'wpcom-notes-admin-bar';
141 163
142 164 if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) {
143 165 add_filter(
@@ -153,27 +175,17 @@
153 175 );
154 176 }
155 177 }
156 178
157 - /**
158 - * Adds notifications bubble to the admin bar.
159 - *
160 - * @return void
161 - */
162 - public function admin_bar_menu() {
163 - global $wp_admin_bar;
179 + function admin_bar_menu() {
180 + global $wp_admin_bar, $current_blog;
164 181
165 - if ( ! is_object( $wp_admin_bar ) ) {
182 + if ( !is_object( $wp_admin_bar ) )
166 183 return;
167 - }
168 184
169 - if ( self::is_block_editor() ) {
170 - return;
171 - }
172 -
173 185 $wpcom_locale = get_locale();
174 186
175 - if ( ! class_exists( 'GP_Locales' ) ) {
187 + if ( !class_exists( 'GP_Locales' ) ) {
176 188 if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
177 189 require JETPACK__GLOTPRESS_LOCALES_PATH;
178 190 }
179 191 }
@@ -184,72 +196,36 @@
184 196 $wpcom_locale = $wpcom_locale_object->slug;
185 197 }
186 198 }
187 199
188 - $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>';
189 -
190 200 $classes = 'wpnt-loading wpn-read';
191 - $wp_admin_bar->add_menu(
192 - array(
193 - 'id' => 'notes',
194 - 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '">
201 + $wp_admin_bar->add_menu( array(
202 + 'id' => 'notes',
203 + 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '">
195 204 <span class="noticon noticon-notification"></span>
196 205 </span>',
197 - 'meta' => array(
198 - '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>' . $third_party_cookie_check_iframe,
199 - 'class' => 'menupop',
200 - ),
201 - 'parent' => 'top-secondary',
202 - )
203 - );
206 + 'meta' => array(
207 + '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>',
208 + 'class' => 'menupop',
209 + ),
210 + 'parent' => 'top-secondary',
211 + ) );
204 212 }
205 213
206 - /**
207 - * Echos the Notes JS.
208 - *
209 - * @return void
210 - */
211 - public function print_js() {
214 + function print_js() {
212 215 $link_accounts_url = is_user_logged_in() && ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected() ? Jetpack::admin_url() : false;
213 - ?>
216 +?>
214 217 <script data-ampdevmode type="text/javascript">
215 218 /* <![CDATA[ */
216 219 var wpNotesIsJetpackClient = true;
217 220 var wpNotesIsJetpackClientV2 = true;
218 - <?php if ( $link_accounts_url ) : ?>
219 - var wpNotesLinkAccountsURL = '<?php echo esc_url( $link_accounts_url ); ?>';
221 +<?php if ( $link_accounts_url ) : ?>
222 + var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>';
220 223 <?php endif; ?>
221 224 /* ]]> */
222 - window.addEventListener('message', function ( event ) {
223 - // Confirm that the message is from the right origin.
224 - if ('https://widgets.wp.com' !== event.origin) {
225 - return;
226 - }
227 - // Check whether 3rd Party Cookies are blocked
228 - var has3PCBlocked = 'WPCOM:3PC:blocked' === event.data;
229 -
230 - var tagerElement = document.getElementById('wp-admin-bar-notes');
231 -
232 - if ( has3PCBlocked && tagerElement ) {
233 - // Hide the notification button/icon
234 - tagerElement.style.display = 'none';
235 - }
236 - }, false );
237 225 </script>
238 - <?php
226 +<?php
239 227 }
240 228
241 - /**
242 - * Checks to see if we're in the block editor.
243 - */
244 - public static function is_block_editor() {
245 - if ( function_exists( 'get_current_screen' ) ) {
246 - $current_screen = get_current_screen();
247 - if ( ! empty( $current_screen ) && $current_screen->is_block_editor() ) {
248 - return true;
249 - }
250 - }
251 - return false;
252 - }
253 229 }
254 230
255 231 Jetpack_Notifications::init();