| @@ -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 |
| @@ -4,108 +4,107 @@ | ||
| 4 | 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; | |
| 14 | +if ( !defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) ); | |
| 18 | 15 | |
| 19 | -if ( ! defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) { | |
| 20 | - define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) . '-lite' ); | |
| 21 | -} | |
| 22 | - | |
| 23 | -/** | |
| 24 | - * Notifications class. | |
| 25 | - */ | |
| 26 | 16 | class Jetpack_Notifications { |
| 27 | - /** | |
| 28 | - * Jetpack object. | |
| 29 | - * | |
| 30 | - * @var bool|Jetpack Jetpack object. | |
| 31 | - */ | |
| 32 | 17 | public $jetpack = false; |
| 33 | 18 | |
| 34 | 19 | /** |
| 35 | 20 | * Singleton |
| 36 | - * | |
| 37 | 21 | * @static |
| 38 | 22 | */ |
| 39 | 23 | public static function init() { |
| 40 | 24 | static $instance = array(); |
| 41 | 25 | |
| 42 | - if ( ! $instance ) { | |
| 43 | - $instance[0] = new Jetpack_Notifications(); | |
| 26 | + if ( !$instance ) { | |
| 27 | + $instance[0] = new Jetpack_Notifications; | |
| 44 | 28 | } |
| 45 | 29 | |
| 46 | 30 | return $instance[0]; |
| 47 | 31 | } |
| 48 | 32 | |
| 49 | - /** | |
| 50 | - * Constructor. | |
| 51 | - */ | |
| 52 | - private function __construct() { | |
| 33 | + function __construct() { | |
| 53 | 34 | $this->jetpack = Jetpack::init(); |
| 54 | 35 | |
| 55 | - add_action( 'init', array( $this, 'action_init' ) ); | |
| 36 | + add_action( 'init', array( &$this, 'action_init' ) ); | |
| 56 | 37 | } |
| 57 | 38 | |
| 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; | |
| 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 ); | |
| 67 | 43 | } |
| 68 | 44 | |
| 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; | |
| 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; | |
| 77 | 50 | } |
| 78 | 51 | |
| 79 | - if ( ! has_filter( 'show_admin_bar', '__return_true' ) && ! is_user_logged_in() ) { | |
| 80 | - return; | |
| 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; | |
| 81 | 58 | } |
| 59 | + return $version; | |
| 60 | + } | |
| 82 | 61 | |
| 83 | - // Do not show notifications in the Site Editor, which is always in fullscreen mode. | |
| 84 | - global $pagenow; | |
| 62 | + public static function current_browser_is_supported() { | |
| 63 | + static $supported; | |
| 85 | 64 | |
| 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; | |
| 65 | + if ( isset( $supported ) ) { | |
| 66 | + return $supported; | |
| 67 | + } | |
| 92 | 68 | |
| 93 | - if ( $is_site_editor_page || $is_old_site_editor_page ) { | |
| 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 ) | |
| 94 | 93 | return; |
| 95 | - } | |
| 96 | 94 | |
| 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' ) ); | |
| 95 | + if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() ) | |
| 96 | + return; | |
| 97 | + | |
| 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') ); | |
| 100 | 104 | } |
| 101 | 105 | |
| 102 | - /** | |
| 103 | - * Enqueues and registers styles/scripts for notifications. | |
| 104 | - * | |
| 105 | - * @return void | |
| 106 | - */ | |
| 107 | - public function styles_and_scripts() { | |
| 106 | + function styles_and_scripts() { | |
| 108 | 107 | $is_rtl = is_rtl(); |
| 109 | 108 | |
| 110 | 109 | if ( Jetpack::is_module_active( 'masterbar' ) ) { |
| 111 | 110 | /** |
| @@ -120,53 +119,40 @@ | ||
| 120 | 119 | $is_rtl = apply_filters( 'a8c_wpcom_masterbar_enqueue_rtl_notification_styles', false ); |
| 121 | 120 | } |
| 122 | 121 | |
| 123 | 122 | if ( ! $is_rtl ) { |
| 124 | - 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 ); | |
| 125 | 124 | } else { |
| 126 | - 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 ); | |
| 127 | 126 | } |
| 127 | + wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array(), JETPACK_NOTES__CACHE_BUSTER ); | |
| 128 | 128 | |
| 129 | - wp_enqueue_style( 'noticons', $this->wpcom_static_url( '/i/noticons/noticons.css' ), array( 'wpcom-notes-admin-bar' ), JETPACK_NOTES__CACHE_BUSTER ); | |
| 130 | - | |
| 131 | 129 | $this->print_js(); |
| 132 | 130 | |
| 133 | - $script_handles = array(); | |
| 134 | - 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 ); | |
| 135 | - $script_handles[] = 'wpcom-notes-common'; | |
| 136 | - 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 ); | |
| 137 | - $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 | + } | |
| 138 | 141 | |
| 139 | - if ( class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ) { | |
| 140 | - add_filter( | |
| 141 | - 'script_loader_tag', | |
| 142 | - function ( $tag, $handle ) use ( $script_handles ) { | |
| 143 | - if ( in_array( $handle, $script_handles, true ) ) { | |
| 144 | - $tag = preg_replace( '/(?<=<script)(?=\s|>)/i', ' data-ampdevmode', $tag ); | |
| 145 | - } | |
| 146 | - return $tag; | |
| 147 | - }, | |
| 148 | - 10, | |
| 149 | - 2 | |
| 150 | - ); | |
| 151 | - } | |
| 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 ); | |
| 152 | 144 | } |
| 153 | 145 | |
| 154 | - /** | |
| 155 | - * Adds notifications bubble to the admin bar. | |
| 156 | - * | |
| 157 | - * @return void | |
| 158 | - */ | |
| 159 | - public function admin_bar_menu() { | |
| 160 | - global $wp_admin_bar; | |
| 146 | + function admin_bar_menu() { | |
| 147 | + global $wp_admin_bar, $current_blog; | |
| 161 | 148 | |
| 162 | - if ( ! is_object( $wp_admin_bar ) ) { | |
| 149 | + if ( !is_object( $wp_admin_bar ) ) | |
| 163 | 150 | return; |
| 164 | - } | |
| 165 | 151 | |
| 166 | 152 | $wpcom_locale = get_locale(); |
| 167 | 153 | |
| 168 | - if ( ! class_exists( 'GP_Locales' ) ) { | |
| 154 | + if ( !class_exists( 'GP_Locales' ) ) { | |
| 169 | 155 | if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) { |
| 170 | 156 | require JETPACK__GLOTPRESS_LOCALES_PATH; |
| 171 | 157 | } |
| 172 | 158 | } |
| @@ -177,59 +163,35 @@ | ||
| 177 | 163 | $wpcom_locale = $wpcom_locale_object->slug; |
| 178 | 164 | } |
| 179 | 165 | } |
| 180 | 166 | |
| 181 | - $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>'; | |
| 182 | - | |
| 183 | 167 | $classes = 'wpnt-loading wpn-read'; |
| 184 | - $wp_admin_bar->add_menu( | |
| 185 | - array( | |
| 186 | - 'id' => 'notes', | |
| 187 | - 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '"> | |
| 168 | + $wp_admin_bar->add_menu( array( | |
| 169 | + 'id' => 'notes', | |
| 170 | + 'title' => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '"> | |
| 188 | 171 | <span class="noticon noticon-notification"></span> |
| 189 | 172 | </span>', |
| 190 | - 'meta' => array( | |
| 191 | - '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, | |
| 192 | - 'class' => 'menupop', | |
| 193 | - ), | |
| 194 | - 'parent' => 'top-secondary', | |
| 195 | - ) | |
| 196 | - ); | |
| 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 | + ) ); | |
| 197 | 179 | } |
| 198 | 180 | |
| 199 | - /** | |
| 200 | - * Echos the Notes JS. | |
| 201 | - * | |
| 202 | - * @return void | |
| 203 | - */ | |
| 204 | - public function print_js() { | |
| 205 | - $link_accounts_url = is_user_logged_in() && ! ( new Connection_Manager( 'jetpack' ) )->is_user_connected() ? Jetpack::admin_url() : false; | |
| 206 | - ?> | |
| 207 | -<script data-ampdevmode type="text/javascript"> | |
| 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"> | |
| 208 | 185 | /* <![CDATA[ */ |
| 209 | 186 | var wpNotesIsJetpackClient = true; |
| 210 | 187 | var wpNotesIsJetpackClientV2 = true; |
| 211 | - <?php if ( $link_accounts_url ) : ?> | |
| 212 | - var wpNotesLinkAccountsURL = '<?php echo esc_url( $link_accounts_url ); ?>'; | |
| 188 | +<?php if ( $link_accounts_url ) : ?> | |
| 189 | + var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>'; | |
| 213 | 190 | <?php endif; ?> |
| 214 | 191 | /* ]]> */ |
| 215 | - window.addEventListener('message', function ( event ) { | |
| 216 | - // Confirm that the message is from the right origin. | |
| 217 | - if ('https://widgets.wp.com' !== event.origin) { | |
| 218 | - return; | |
| 219 | - } | |
| 220 | - // Check whether 3rd Party Cookies are blocked | |
| 221 | - var has3PCBlocked = 'WPCOM:3PC:blocked' === event.data; | |
| 222 | - | |
| 223 | - var tagerElement = document.getElementById('wp-admin-bar-notes'); | |
| 224 | - | |
| 225 | - if ( has3PCBlocked && tagerElement ) { | |
| 226 | - // Hide the notification button/icon | |
| 227 | - tagerElement.style.display = 'none'; | |
| 228 | - } | |
| 229 | - }, false ); | |
| 230 | 192 | </script> |
| 231 | - <?php | |
| 193 | +<?php | |
| 232 | 194 | } |
| 233 | 195 | |
| 234 | 196 | } |
| 235 | 197 | |