Completed
Push — fix/admin-notices-missing-icon... ( 48de4c )
by
unknown
50:00 queued 39:45
created

Jetpack_Notifications::wpcom_static_url()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 1
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 * Module Name: Notifications
4
 * Module Description: Receive instant notifications of site comments and likes.
5
 * Sort Order: 13
6
 * First Introduced: 1.9
7
 * Requires Connection: Yes
8
 * Auto Activate: Yes
9
 * Module Tags: Other
10
 * Feature: Engagement
11
 * Additional Search Queries: notification, notifications, toolbar, adminbar, push, comments
12
 */
13
14
if ( !defined( 'JETPACK_NOTES__CACHE_BUSTER' ) ) define( 'JETPACK_NOTES__CACHE_BUSTER', JETPACK__VERSION . '-' . gmdate( 'oW' ) );
15
16
class Jetpack_Notifications {
17
	public $jetpack = false;
18
19
	/**
20
	 * Singleton
21
	 * @static
22
	 */
23
	public static function init() {
24
		static $instance = array();
25
26
		if ( !$instance ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $instance of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
27
			$instance[0] = new Jetpack_Notifications;
28
		}
29
30
		return $instance[0];
31
	}
32
33
	function __construct() {
34
		$this->jetpack = Jetpack::init();
0 ignored issues
show
Documentation Bug introduced by
It seems like \Jetpack::init() of type object<Jetpack> is incompatible with the declared type boolean of property $jetpack.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
35
36
		add_action( 'init', array( &$this, 'action_init' ) );
37
	}
38
39
	// return the major version of Internet Explorer the viewer is using or false if it's not IE
40
	public static function get_internet_explorer_version() {
41
		static $version;
42
		if ( isset( $version ) ) {
43
			return $version;
44
		}
45
46
		$user_agent = isset( $_SERVER['HTTP_USER_AGENT']  ) ? $_SERVER['HTTP_USER_AGENT'] : '';
47
48
		preg_match( '/MSIE (\d+)/', $user_agent, $matches );
49
		$version = empty( $matches[1] ) ? null : $matches[1];
50
		if ( empty( $version ) || !$version ) {
51
			return false;
52
		}
53
		return $version;
54
	}
55
56
	public static function current_browser_is_supported() {
57
		static $supported;
58
59
		if ( isset( $supported ) ) {
60
			return $supported;
61
		}
62
63
		$ie_version = self::get_internet_explorer_version();
64
		if ( false === $ie_version ) {
65
			return $supported = true;
66
		}
67
68
		if ( $ie_version < 8 ) {
69
			return $supported = false;
70
		}
71
72
		return $supported = true;
73
	}
74
75
	function action_init() {
76
		//syncing must wait until after init so
77
		//post types that support comments
78
		$filt_post_types = array();
79
		$all_post_types = get_post_types();
80
		foreach ( $all_post_types as $post_type ) {
81
			if ( post_type_supports( $post_type, 'comments' ) ) {
82
				$filt_post_types[] = $post_type;
83
			}
84
		}
85
86
		if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
87
			return;
88
89
		if ( !has_filter( 'show_admin_bar', '__return_true' ) && !is_user_logged_in() )
90
			return;
91
92
		if ( !self::current_browser_is_supported() )
93
			return;
94
95
		add_action( 'admin_bar_menu', array( &$this, 'admin_bar_menu'), 120 );
96
		add_action( 'wp_head', array( &$this, 'styles_and_scripts'), 120 );
97
		add_action( 'admin_head', array( &$this, 'styles_and_scripts') );
98
	}
99
100
	function styles_and_scripts() {
101
		if ( !is_rtl() ) {
102
			wp_enqueue_style( 'wpcom-notes-admin-bar', Jetpack::wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );
103
		} else {
104
			wp_enqueue_style( 'wpcom-notes-admin-bar', Jetpack::wpcom_static_url( '/wp-content/mu-plugins/notes/rtl/admin-bar-v2-rtl.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );
105
		}
106
		wp_enqueue_style( 'noticons', Jetpack::wpcom_static_url( '/i/noticons/noticons.css' ), array(), JETPACK_NOTES__CACHE_BUSTER );
107
108
		$this->print_js();
109
110
		// attempt to use core or plugin libraries if registered
111 View Code Duplication
		if ( !wp_script_is( 'mustache', 'registered' ) ) {
112
			wp_register_script( 'mustache', Jetpack::wpcom_static_url( '/wp-content/js/mustache.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
113
		}
114 View Code Duplication
		if ( !wp_script_is( 'underscore', 'registered' ) ) {
115
			wp_register_script( 'underscore', Jetpack::wpcom_static_url( '/wp-includes/js/underscore.min.js' ), null, JETPACK_NOTES__CACHE_BUSTER );
116
		}
117 View Code Duplication
		if ( !wp_script_is( 'backbone', 'registered' ) ) {
118
			wp_register_script( 'backbone', Jetpack::wpcom_static_url( '/wp-includes/js/backbone.min.js' ), array( 'underscore' ), JETPACK_NOTES__CACHE_BUSTER );
119
		}
120
121
		wp_register_script( 'wpcom-notes-common', Jetpack::wpcom_static_url( '/wp-content/mu-plugins/notes/notes-common-v2.js' ), array( 'jquery', 'underscore', 'backbone', 'mustache' ), JETPACK_NOTES__CACHE_BUSTER );
122
		wp_enqueue_script( 'wpcom-notes-admin-bar', Jetpack::wpcom_static_url( '/wp-content/mu-plugins/notes/admin-bar-v2.js' ), array( 'wpcom-notes-common' ), JETPACK_NOTES__CACHE_BUSTER );
123
	}
124
125
	function admin_bar_menu() {
126
		global $wp_admin_bar, $current_blog;
127
128
		if ( !is_object( $wp_admin_bar ) )
129
			return;
130
131
		$wpcom_locale = get_locale();
132
133
		if ( !class_exists( 'GP_Locales' ) ) {
134
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
135
				require JETPACK__GLOTPRESS_LOCALES_PATH;
136
			}
137
		}
138
139
		if ( class_exists( 'GP_Locales' ) ) {
140
			$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', get_locale() );
141
			if ( $wpcom_locale_object instanceof GP_Locale ) {
142
				$wpcom_locale = $wpcom_locale_object->slug;
143
			}
144
		}
145
146
		$classes = 'wpnt-loading wpn-read';
147
		$wp_admin_bar->add_menu( array(
148
			'id'     => 'notes',
149
			'title'  => '<span id="wpnt-notes-unread-count" class="' . esc_attr( $classes ) . '">
150
					<span class="noticon noticon-notification"></span>
151
					</span>',
152
			'meta'   => array(
153
				'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>',
154
				'class' => 'menupop',
155
			),
156
			'parent' => 'top-secondary',
157
		) );
158
	}
159
160
	function print_js() {
161
		$link_accounts_url = is_user_logged_in() && !Jetpack::is_user_connected() ? Jetpack::admin_url() : false;
162
?>
163
<script type="text/javascript">
164
/* <![CDATA[ */
165
	var wpNotesIsJetpackClient = true;
166
	var wpNotesIsJetpackClientV2 = true;
167
<?php if ( $link_accounts_url ) : ?>
168
	var wpNotesLinkAccountsURL = '<?php print $link_accounts_url; ?>';
169
<?php endif; ?>
170
/* ]]> */
171
</script>
172
<?php
173
	}
174
175
}
176
177
Jetpack_Notifications::init();
178