Completed
Push — clean/php-inc/lib ( 332cc6...845b0f )
by
unknown
146:38 queued 137:01
created

class.jetpack.php (4 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
Options:
5
jetpack_options (array)
6
	An array of options.
7
	@see Jetpack_Options::get_option_names()
8
9
jetpack_register (string)
10
	Temporary verification secrets.
11
12
jetpack_activated (int)
13
	1: the plugin was activated normally
14
	2: the plugin was activated on this site because of a network-wide activation
15
	3: the plugin was auto-installed
16
	4: the plugin was manually disconnected (but is still installed)
17
18
jetpack_active_modules (array)
19
	Array of active module slugs.
20
21
jetpack_do_activate (bool)
22
	Flag for "activating" the plugin on sites where the activation hook never fired (auto-installs)
23
*/
24
25
class Jetpack {
26
	public $xmlrpc_server = null;
27
28
	private $xmlrpc_verification = null;
29
30
	public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
31
32
	/**
33
	 * @var array The handles of styles that are concatenated into jetpack.css
34
	 */
35
	public $concatenated_style_handles = array(
36
		'jetpack-carousel',
37
		'grunion.css',
38
		'the-neverending-homepage',
39
		'jetpack_likes',
40
		'jetpack_related-posts',
41
		'sharedaddy',
42
		'jetpack-slideshow',
43
		'presentations',
44
		'jetpack-subscriptions',
45
		'tiled-gallery',
46
		'widget-conditions',
47
		'jetpack_display_posts_widget',
48
		'gravatar-profile-widget',
49
		'widget-grid-and-list',
50
		'jetpack-widgets',
51
		'goodreads-widget',
52
		'jetpack_social_media_icons_widget',
53
	);
54
55
	public $plugins_to_deactivate = array(
56
		'stats'               => array( 'stats/stats.php', 'WordPress.com Stats' ),
57
		'shortlinks'          => array( 'stats/stats.php', 'WordPress.com Stats' ),
58
		'sharedaddy'          => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
59
		'twitter-widget'      => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ),
60
		'after-the-deadline'  => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ),
61
		'contact-form'        => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ),
62
		'contact-form'        => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ),
63
		'custom-css'          => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ),
64
		'random-redirect'     => array( 'random-redirect/random-redirect.php', 'Random Redirect' ),
65
		'videopress'          => array( 'video/video.php', 'VideoPress' ),
66
		'widget-visibility'   => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ),
67
		'widget-visibility'   => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ),
68
		'sharedaddy'          => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ),
69
		'omnisearch'          => array( 'jetpack-omnisearch/omnisearch.php', 'Jetpack Omnisearch' ),
70
		'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ),
71
		'latex'               => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
72
	);
73
74
	static $capability_translations = array(
75
		'administrator' => 'manage_options',
76
		'editor'        => 'edit_others_posts',
77
		'author'        => 'publish_posts',
78
		'contributor'   => 'edit_posts',
79
		'subscriber'    => 'read',
80
	);
81
82
	/**
83
	 * Map of modules that have conflicts with plugins and should not be auto-activated
84
	 * if the plugins are active.  Used by filter_default_modules
85
	 *
86
	 * Plugin Authors: If you'd like to prevent a single module from auto-activating,
87
	 * change `module-slug` and add this to your plugin:
88
	 *
89
	 * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' );
90
	 * function my_jetpack_get_default_modules( $modules ) {
91
	 *     return array_diff( $modules, array( 'module-slug' ) );
92
	 * }
93
	 *
94
	 * @var array
95
	 */
96
	private $conflicting_plugins = array(
97
		'comments'          => array(
98
			'Intense Debate'                       => 'intensedebate/intensedebate.php',
99
			'Disqus'                               => 'disqus-comment-system/disqus.php',
100
			'Livefyre'                             => 'livefyre-comments/livefyre.php',
101
			'Comments Evolved for WordPress'       => 'gplus-comments/comments-evolved.php',
102
			'Google+ Comments'                     => 'google-plus-comments/google-plus-comments.php',
103
			'WP-SpamShield Anti-Spam'              => 'wp-spamshield/wp-spamshield.php',
104
		),
105
		'contact-form'      => array(
106
			'Contact Form 7'                       => 'contact-form-7/wp-contact-form-7.php',
107
			'Gravity Forms'                        => 'gravityforms/gravityforms.php',
108
			'Contact Form Plugin'                  => 'contact-form-plugin/contact_form.php',
109
			'Easy Contact Forms'                   => 'easy-contact-forms/easy-contact-forms.php',
110
			'Fast Secure Contact Form'             => 'si-contact-form/si-contact-form.php',
111
		),
112
		'minileven'         => array(
113
			'WPtouch'                              => 'wptouch/wptouch.php',
114
		),
115
		'latex'             => array(
116
			'LaTeX for WordPress'                  => 'latex/latex.php',
117
			'Youngwhans Simple Latex'              => 'youngwhans-simple-latex/yw-latex.php',
118
			'Easy WP LaTeX'                        => 'easy-wp-latex-lite/easy-wp-latex-lite.php',
119
			'MathJax-LaTeX'                        => 'mathjax-latex/mathjax-latex.php',
120
			'Enable Latex'                         => 'enable-latex/enable-latex.php',
121
			'WP QuickLaTeX'                        => 'wp-quicklatex/wp-quicklatex.php',
122
		),
123
		'protect'           => array(
124
			'Limit Login Attempts'                 => 'limit-login-attempts/limit-login-attempts.php',
125
			'Captcha'                              => 'captcha/captcha.php',
126
			'Brute Force Login Protection'         => 'brute-force-login-protection/brute-force-login-protection.php',
127
			'Login Security Solution'              => 'login-security-solution/login-security-solution.php',
128
			'WPSecureOps Brute Force Protect'      => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php',
129
			'BulletProof Security'                 => 'bulletproof-security/bulletproof-security.php',
130
			'SiteGuard WP Plugin'                  => 'siteguard/siteguard.php',
131
			'Security-protection'                  => 'security-protection/security-protection.php',
132
			'Login Security'                       => 'login-security/login-security.php',
133
			'Botnet Attack Blocker'                => 'botnet-attack-blocker/botnet-attack-blocker.php',
134
			'Wordfence Security'                   => 'wordfence/wordfence.php',
135
			'All In One WP Security & Firewall'    => 'all-in-one-wp-security-and-firewall/wp-security.php',
136
			'iThemes Security'                     => 'better-wp-security/better-wp-security.php',
137
		),
138
		'random-redirect'   => array(
139
			'Random Redirect 2'                    => 'random-redirect-2/random-redirect.php',
140
		),
141
		'related-posts'     => array(
142
			'YARPP'                                => 'yet-another-related-posts-plugin/yarpp.php',
143
			'WordPress Related Posts'              => 'wordpress-23-related-posts-plugin/wp_related_posts.php',
144
			'nrelate Related Content'              => 'nrelate-related-content/nrelate-related.php',
145
			'Contextual Related Posts'             => 'contextual-related-posts/contextual-related-posts.php',
146
			'Related Posts for WordPress'          => 'microkids-related-posts/microkids-related-posts.php',
147
			'outbrain'                             => 'outbrain/outbrain.php',
148
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
149
			'Sexybookmarks'                        => 'sexybookmarks/shareaholic.php',
150
		),
151
		'sharedaddy'        => array(
152
			'AddThis'                              => 'addthis/addthis_social_widget.php',
153
			'Add To Any'                           => 'add-to-any/add-to-any.php',
154
			'ShareThis'                            => 'share-this/sharethis.php',
155
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
156
		),
157
		'verification-tools' => array(
158
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
159
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
160
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
161
		),
162
		'widget-visibility' => array(
163
			'Widget Logic'                         => 'widget-logic/widget_logic.php',
164
			'Dynamic Widgets'                      => 'dynamic-widgets/dynamic-widgets.php',
165
		),
166
		'sitemaps' => array(
167
			'Google XML Sitemaps'                  => 'google-sitemap-generator/sitemap.php',
168
			'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php',
169
			'Google XML Sitemaps for qTranslate'   => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php',
170
			'XML Sitemap & Google News feeds'      => 'xml-sitemap-feed/xml-sitemap.php',
171
			'Google Sitemap by BestWebSoft'        => 'google-sitemap-plugin/google-sitemap-plugin.php',
172
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
173
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
174
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
175
			'Sitemap'                              => 'sitemap/sitemap.php',
176
			'Simple Wp Sitemap'                    => 'simple-wp-sitemap/simple-wp-sitemap.php',
177
			'Simple Sitemap'                       => 'simple-sitemap/simple-sitemap.php',
178
			'XML Sitemaps'                         => 'xml-sitemaps/xml-sitemaps.php',
179
			'MSM Sitemaps'                         => 'msm-sitemap/msm-sitemap.php',
180
		),
181
	);
182
183
	/**
184
	 * Plugins for which we turn off our Facebook OG Tags implementation.
185
	 *
186
	 * Note: WordPress SEO by Yoast and WordPress SEO Premium by Yoast automatically deactivate
187
	 * Jetpack's Open Graph tags via filter when their Social Meta modules are active.
188
	 *
189
	 * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter:
190
	 * add_filter( 'jetpack_enable_open_graph', '__return_false' );
191
	 */
192
	private $open_graph_conflicting_plugins = array(
193
		'2-click-socialmedia-buttons/2-click-socialmedia-buttons.php',
194
		                                                         // 2 Click Social Media Buttons
195
		'add-link-to-facebook/add-link-to-facebook.php',         // Add Link to Facebook
196
		'add-meta-tags/add-meta-tags.php',                       // Add Meta Tags
197
		'autodescription/autodescription.php',                   // The SEO Framework
198
		'easy-facebook-share-thumbnails/esft.php',               // Easy Facebook Share Thumbnail
199
		'facebook/facebook.php',                                 // Facebook (official plugin)
200
		'facebook-awd/AWD_facebook.php',                         // Facebook AWD All in one
201
		'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php',
202
		                                                         // Facebook Featured Image & OG Meta Tags
203
		'facebook-meta-tags/facebook-metatags.php',              // Facebook Meta Tags
204
		'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php',
205
		                                                         // Facebook Open Graph Meta Tags for WordPress
206
		'facebook-revised-open-graph-meta-tag/index.php',        // Facebook Revised Open Graph Meta Tag
207
		'facebook-thumb-fixer/_facebook-thumb-fixer.php',        // Facebook Thumb Fixer
208
		'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php',
209
		                                                         // Fedmich's Facebook Open Graph Meta
210
		'header-footer/plugin.php',                              // Header and Footer
211
		'network-publisher/networkpub.php',                      // Network Publisher
212
		'nextgen-facebook/nextgen-facebook.php',                 // NextGEN Facebook OG
213
		'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php',
214
		                                                         // NextScripts SNAP
215
		'opengraph/opengraph.php',                               // Open Graph
216
		'open-graph-protocol-framework/open-graph-protocol-framework.php',
217
		                                                         // Open Graph Protocol Framework
218
		'seo-facebook-comments/seofacebook.php',                 // SEO Facebook Comments
219
		'seo-ultimate/seo-ultimate.php',                         // SEO Ultimate
220
		'sexybookmarks/sexy-bookmarks.php',                      // Shareaholic
221
		'shareaholic/sexy-bookmarks.php',                        // Shareaholic
222
		'sharepress/sharepress.php',                             // SharePress
223
		'simple-facebook-connect/sfc.php',                       // Simple Facebook Connect
224
		'social-discussions/social-discussions.php',             // Social Discussions
225
		'social-sharing-toolkit/social_sharing_toolkit.php',     // Social Sharing Toolkit
226
		'socialize/socialize.php',                               // Socialize
227
		'only-tweet-like-share-and-google-1/tweet-like-plusone.php',
228
		                                                         // Tweet, Like, Google +1 and Share
229
		'wordbooker/wordbooker.php',                             // Wordbooker
230
		'wpsso/wpsso.php',                                       // WordPress Social Sharing Optimization
231
		'wp-caregiver/wp-caregiver.php',                         // WP Caregiver
232
		'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php',
233
		                                                         // WP Facebook Like Send & Open Graph Meta
234
		'wp-facebook-open-graph-protocol/wp-facebook-ogp.php',   // WP Facebook Open Graph protocol
235
		'wp-ogp/wp-ogp.php',                                     // WP-OGP
236
		'zoltonorg-social-plugin/zosp.php',                      // Zolton.org Social Plugin
237
		'wp-fb-share-like-button/wp_fb_share-like_widget.php'    // WP Facebook Like Button
238
	);
239
240
	/**
241
	 * Plugins for which we turn off our Twitter Cards Tags implementation.
242
	 */
243
	private $twitter_cards_conflicting_plugins = array(
244
	//	'twitter/twitter.php',                       // The official one handles this on its own.
245
	//	                                             // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php
246
		'eewee-twitter-card/index.php',              // Eewee Twitter Card
247
		'ig-twitter-cards/ig-twitter-cards.php',     // IG:Twitter Cards
248
		'jm-twitter-cards/jm-twitter-cards.php',     // JM Twitter Cards
249
		'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php',
250
		                                             // Pure Web Brilliant's Social Graph Twitter Cards Extension
251
		'twitter-cards/twitter-cards.php',           // Twitter Cards
252
		'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta
253
		'wp-twitter-cards/twitter_cards.php',        // WP Twitter Cards
254
	);
255
256
	/**
257
	 * Message to display in admin_notice
258
	 * @var string
259
	 */
260
	public $message = '';
261
262
	/**
263
	 * Error to display in admin_notice
264
	 * @var string
265
	 */
266
	public $error = '';
267
268
	/**
269
	 * Modules that need more privacy description.
270
	 * @var string
271
	 */
272
	public $privacy_checks = '';
273
274
	/**
275
	 * Stats to record once the page loads
276
	 *
277
	 * @var array
278
	 */
279
	public $stats = array();
280
281
	/**
282
	 * Jetpack_Sync object
283
	 */
284
	public $sync;
285
286
	/**
287
	 * Verified data for JSON authorization request
288
	 */
289
	public $json_api_authorization_request = array();
290
291
	/**
292
	 * Holds the singleton instance of this class
293
	 * @since 2.3.3
294
	 * @var Jetpack
295
	 */
296
	static $instance = false;
297
298
	/**
299
	 * Singleton
300
	 * @static
301
	 */
302
	public static function init() {
303
		if ( ! self::$instance ) {
304
			self::$instance = new Jetpack;
305
306
			self::$instance->plugin_upgrade();
307
		}
308
309
		return self::$instance;
310
	}
311
312
	/**
313
	 * Must never be called statically
314
	 */
315
	function plugin_upgrade() {
316
		if ( Jetpack::is_active() ) {
317
			list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
318
			if ( JETPACK__VERSION != $version ) {
319
320
				// Check which active modules actually exist and remove others from active_modules list
321
				$unfiltered_modules = Jetpack::get_active_modules();
322
				$modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) );
323
				if ( array_diff( $unfiltered_modules, $modules ) ) {
324
					Jetpack::update_active_modules( $modules );
325
				}
326
327
				add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
328
				Jetpack::maybe_set_version_option();
329
			}
330
		}
331
	}
332
333
	static function activate_manage( ) {
334
		if ( did_action( 'init' ) || current_filter() == 'init' ) {
335
			self::activate_module( 'manage', false, false );
336
		} else if ( !  has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) {
337
			add_action( 'init', array( __CLASS__, 'activate_manage' ) );
338
		}
339
	}
340
341
	static function update_active_modules( $modules ) {
342
		$current_modules = Jetpack_Options::get_option( 'active_modules', array() );
343
344
		$success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) );
345
346
		if ( is_array( $modules ) && is_array( $current_modules ) ) {
347
			$new_active_modules = array_diff( $modules, $current_modules );
348
			foreach( $new_active_modules as $module ) {
349
				/**
350
				 * Fires when a specific module is activated.
351
				 *
352
				 * @since 1.9.0
353
				 *
354
				 * @param string $module Module slug.
355
				 * @param boolean $success whether the module was activated. @since 4.2
356
				 */
357
				do_action( 'jetpack_activate_module', $module, $success );
358
359
				/**
360
				 * Fires when a module is activated.
361
				 * The dynamic part of the filter, $module, is the module slug.
362
				 *
363
				 * @since 1.9.0
364
				 *
365
				 * @param string $module Module slug.
366
				 */
367
				do_action( "jetpack_activate_module_$module", $module );
368
			}
369
370
			$new_deactive_modules = array_diff( $current_modules, $modules );
371
			foreach( $new_deactive_modules as $module ) {
372
				/**
373
				 * Fired after a module has been deactivated.
374
				 *
375
				 * @since 4.2.0
376
				 *
377
				 * @param string $module Module slug.
378
				 * @param boolean $success whether the module was deactivated.
379
				 */
380
				do_action( 'jetpack_deactivate_module', $module, $success );
381
				/**
382
				 * Fires when a module is deactivated.
383
				 * The dynamic part of the filter, $module, is the module slug.
384
				 *
385
				 * @since 1.9.0
386
				 *
387
				 * @param string $module Module slug.
388
				 */
389
				do_action( "jetpack_deactivate_module_$module", $module );
390
			}
391
		}
392
393
		return $success;
394
	}
395
396
	static function delete_active_modules() {
397
		self::update_active_modules( array() );
398
	}
399
400
	/**
401
	 * Constructor.  Initializes WordPress hooks
402
	 */
403
	private function __construct() {
404
		/*
405
		 * Check for and alert any deprecated hooks
406
		 */
407
		add_action( 'init', array( $this, 'deprecated_hooks' ) );
408
409
410
		/*
411
		 * Load things that should only be in Network Admin.
412
		 *
413
		 * For now blow away everything else until a more full
414
		 * understanding of what is needed at the network level is
415
		 * available
416
		 */
417
		if( is_multisite() ) {
418
			Jetpack_Network::init();
419
		}
420
421
		// Unlink user before deleting the user from .com
422
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
423
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
424
425
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
426
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
427
428
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
429
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
430
431
			$this->require_jetpack_authentication();
432
433
			if ( Jetpack::is_active() ) {
434
				// Hack to preserve $HTTP_RAW_POST_DATA
435
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
436
437
				$signed = $this->verify_xml_rpc_signature();
438
				if ( $signed && ! is_wp_error( $signed ) ) {
439
					// The actual API methods.
440
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
441
				} else {
442
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
443
					// active Jetpack connection, so that additional users can link their account.
444
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
445
				}
446
			} else {
447
				// The bootstrap API methods.
448
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
449
			}
450
451
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
452
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
453
		} elseif ( is_admin() && isset( $_POST['action'] ) && 'jetpack_upload_file' == $_POST['action'] ) {
454
			$this->require_jetpack_authentication();
455
			$this->add_remote_request_handlers();
456
		} else {
457
			if ( Jetpack::is_active() ) {
458
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
459
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
460
			}
461
		}
462
463
		if ( Jetpack::is_active() ) {
464
			Jetpack_Heartbeat::init();
465
		}
466
467
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
468
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
469
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
470
		}
471
472
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
473
474
		add_action( 'admin_init', array( $this, 'admin_init' ) );
475
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
476
477
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
478
479
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
480
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
481
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
482
483
		// returns HTTPS support status
484
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
485
486
		// If any module option is updated before Jump Start is dismissed, hide Jump Start.
487
		add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
488
489
		// Identity Crisis AJAX callback function
490
		add_action( 'wp_ajax_jetpack_resolve_identity_crisis', array( $this, 'resolve_identity_crisis_ajax_callback' ) );
491
492
		// JITM AJAX callback function
493
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
494
495
		add_action( 'wp_ajax_jetpack_admin_ajax',          array( $this, 'jetpack_admin_ajax_callback' ) );
496
		add_action( 'wp_ajax_jetpack_admin_ajax_refresh',  array( $this, 'jetpack_admin_ajax_refresh_data' ) );
497
498
		// Universal ajax callback for all tracking events triggered via js
499
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
500
501
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
502
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
503
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
504
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
505
506
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
507
508
		/**
509
		 * These actions run checks to load additional files.
510
		 * They check for external files or plugins, so they need to run as late as possible.
511
		 */
512
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
513
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
514
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
515
516
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
517
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
518
519
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
520
521
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
522
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
523
524
		// A filter to control all just in time messages
525
		add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
526
527
		/**
528
		 * This is the hack to concatinate all css files into one.
529
		 * For description and reasoning see the implode_frontend_css method
530
		 *
531
		 * Super late priority so we catch all the registered styles
532
		 */
533
		if( !is_admin() ) {
534
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
535
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
536
		}
537
538
	}
539
540
	function jetpack_admin_ajax_tracks_callback() {
541
		// Check for nonce
542
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
543
			wp_die( 'Permissions check failed.' );
544
		}
545
546
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
547
			wp_die( 'No valid event name or type.' );
548
		}
549
550
		$tracks_data = array();
551
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
552
			$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
553
		}
554
555
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
556
		wp_send_json_success();
557
		wp_die();
558
	}
559
560
	function jetpack_admin_ajax_callback() {
561
		// Check for nonce
562 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) || ! current_user_can( 'jetpack_manage_modules' ) ) {
563
			wp_die( 'permissions check failed' );
564
		}
565
566
		if ( isset( $_REQUEST['toggleModule'] ) && 'nux-toggle-module' == $_REQUEST['toggleModule'] ) {
567
			$slug = $_REQUEST['thisModuleSlug'];
568
569
			if ( ! in_array( $slug, Jetpack::get_available_modules() ) ) {
570
				wp_die( 'That is not a Jetpack module slug' );
571
			}
572
573
			if ( Jetpack::is_module_active( $slug ) ) {
574
				Jetpack::deactivate_module( $slug );
575
			} else {
576
				Jetpack::activate_module( $slug, false, false );
577
			}
578
579
			$modules = Jetpack_Admin::init()->get_modules();
580
			echo json_encode( $modules[ $slug ] );
581
582
			exit;
583
		}
584
585
		wp_die();
586
	}
587
588
	/*
589
	 * Sometimes we need to refresh the data,
590
	 * especially if the page is visited via a 'history'
591
	 * event like back/forward
592
	 */
593
	function jetpack_admin_ajax_refresh_data() {
594
		// Check for nonce
595 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) ) {
596
			wp_die( 'permissions check failed' );
597
		}
598
599
		if ( isset( $_REQUEST['refreshData'] ) && 'refresh' == $_REQUEST['refreshData'] ) {
600
			$modules = Jetpack_Admin::init()->get_modules();
601
			echo json_encode( $modules );
602
			exit;
603
		}
604
605
		wp_die();
606
	}
607
608
	/**
609
	 * The callback for the JITM ajax requests.
610
	 */
611
	function jetpack_jitm_ajax_callback() {
612
		// Check for nonce
613
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
614
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
615
		}
616
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
617
			$module_slug = $_REQUEST['jitmModule'];
618
			Jetpack::log( 'activate', $module_slug );
619
			Jetpack::activate_module( $module_slug, false, false );
620
			Jetpack::state( 'message', 'no_message' );
621
622
			//A Jetpack module is being activated through a JITM, track it
623
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
624
			$this->do_stats( 'server_side' );
625
626
			wp_send_json_success();
627
		}
628
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
629
			// get the hide_jitm options array
630
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
631
			$module_slug = $_REQUEST['jitmModule'];
632
633
			if( ! $jetpack_hide_jitm ) {
634
				$jetpack_hide_jitm = array(
635
					$module_slug => 'hide'
636
				);
637
			} else {
638
				$jetpack_hide_jitm[$module_slug] = 'hide';
639
			}
640
641
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
642
643
			//jitm is being dismissed forever, track it
644
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
645
			$this->do_stats( 'server_side' );
646
647
			wp_send_json_success();
648
		}
649 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
650
			$module_slug = $_REQUEST['jitmModule'];
651
652
			// User went to WordPress.com, track this
653
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
654
			$this->do_stats( 'server_side' );
655
656
			wp_send_json_success();
657
		}
658 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
659
			$track = $_REQUEST['jitmModule'];
660
661
			// User is viewing JITM, track it.
662
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
663
			$this->do_stats( 'server_side' );
664
665
			wp_send_json_success();
666
		}
667
	}
668
669
	/**
670
	 * If there are any stats that need to be pushed, but haven't been, push them now.
671
	 */
672
	function __destruct() {
673
		if ( ! empty( $this->stats ) ) {
674
			$this->do_stats( 'server_side' );
675
		}
676
	}
677
678
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
679
		switch( $cap ) {
680
			case 'jetpack_connect' :
681
			case 'jetpack_reconnect' :
682
				if ( Jetpack::is_development_mode() ) {
683
					$caps = array( 'do_not_allow' );
684
					break;
685
				}
686
				/**
687
				 * Pass through. If it's not development mode, these should match disconnect.
688
				 * Let users disconnect if it's development mode, just in case things glitch.
689
				 */
690
			case 'jetpack_disconnect' :
691
				/**
692
				 * In multisite, can individual site admins manage their own connection?
693
				 *
694
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
695
				 */
696
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
697
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
698
						/**
699
						 * We need to update the option name -- it's terribly unclear which
700
						 * direction the override goes.
701
						 *
702
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
703
						 */
704
						$caps = array( 'do_not_allow' );
705
						break;
706
					}
707
				}
708
709
				$caps = array( 'manage_options' );
710
				break;
711
			case 'jetpack_manage_modules' :
712
			case 'jetpack_activate_modules' :
713
			case 'jetpack_deactivate_modules' :
714
				$caps = array( 'manage_options' );
715
				break;
716
			case 'jetpack_configure_modules' :
717
				$caps = array( 'manage_options' );
718
				break;
719
			case 'jetpack_network_admin_page':
720
			case 'jetpack_network_settings_page':
721
				$caps = array( 'manage_network_plugins' );
722
				break;
723
			case 'jetpack_network_sites_page':
724
				$caps = array( 'manage_sites' );
725
				break;
726
			case 'jetpack_admin_page' :
727
				if ( Jetpack::is_development_mode() ) {
728
					$caps = array( 'manage_options' );
729
					break;
730
				} else {
731
					$caps = array( 'read' );
732
				}
733
				break;
734
			case 'jetpack_connect_user' :
735
				if ( Jetpack::is_development_mode() ) {
736
					$caps = array( 'do_not_allow' );
737
					break;
738
				}
739
				$caps = array( 'read' );
740
				break;
741
		}
742
		return $caps;
743
	}
744
745
	function require_jetpack_authentication() {
746
		// Don't let anyone authenticate
747
		$_COOKIE = array();
748
		remove_all_filters( 'authenticate' );
749
		remove_all_actions( 'wp_login_failed' );
750
751
		if ( Jetpack::is_active() ) {
752
			// Allow Jetpack authentication
753
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
754
		}
755
	}
756
757
	/**
758
	 * Load language files
759
	 * @action plugins_loaded
760
	 */
761
	public static function plugin_textdomain() {
762
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
763
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
764
	}
765
766
	/**
767
	 * Register assets for use in various modules and the Jetpack admin page.
768
	 *
769
	 * @uses wp_script_is, wp_register_script, plugins_url
770
	 * @action wp_loaded
771
	 * @return null
772
	 */
773
	public function register_assets() {
774
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
775
			wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' );
776
		}
777
778 View Code Duplication
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
779
			wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' );
780
		}
781
782 View Code Duplication
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
783
			wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' );
784
		}
785
786 View Code Duplication
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
787
			wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true );
788
		}
789
790
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
791
			wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true );
792
793
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
794
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
795
			if ( ! is_numeric( $fb_app_id ) ) {
796
				$fb_app_id = '';
797
			}
798
			wp_localize_script(
799
				'jetpack-facebook-embed',
800
				'jpfbembed',
801
				array(
802
					'appid' => $fb_app_id,
803
					'locale' => $this->get_locale(),
804
				)
805
			);
806
		}
807
808
		/**
809
		 * As jetpack_register_genericons is by default fired off a hook,
810
		 * the hook may have already fired by this point.
811
		 * So, let's just trigger it manually.
812
		 */
813
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
814
		jetpack_register_genericons();
815
816
		/**
817
		 * Register the social logos
818
		 */
819
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
820
		jetpack_register_social_logos();
821
822 View Code Duplication
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
823
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
824
	}
825
826
	/**
827
	 * Guess locale from language code.
828
	 *
829
	 * @param string $lang Language code.
830
	 * @return string|bool
831
	 */
832 View Code Duplication
	function guess_locale_from_lang( $lang ) {
833
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
834
			return 'en_US';
835
		}
836
837
		if ( ! class_exists( 'GP_Locales' ) ) {
838
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
839
				return false;
840
			}
841
842
			require JETPACK__GLOTPRESS_LOCALES_PATH;
843
		}
844
845
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
846
			// WP.com: get_locale() returns 'it'
847
			$locale = GP_Locales::by_slug( $lang );
848
		} else {
849
			// Jetpack: get_locale() returns 'it_IT';
850
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
851
		}
852
853
		if ( ! $locale ) {
854
			return false;
855
		}
856
857
		if ( empty( $locale->facebook_locale ) ) {
858
			if ( empty( $locale->wp_locale ) ) {
859
				return false;
860
			} else {
861
				// Facebook SDK is smart enough to fall back to en_US if a
862
				// locale isn't supported. Since supported Facebook locales
863
				// can fall out of sync, we'll attempt to use the known
864
				// wp_locale value and rely on said fallback.
865
				return $locale->wp_locale;
866
			}
867
		}
868
869
		return $locale->facebook_locale;
870
	}
871
872
	/**
873
	 * Get the locale.
874
	 *
875
	 * @return string|bool
876
	 */
877
	function get_locale() {
878
		$locale = $this->guess_locale_from_lang( get_locale() );
879
880
		if ( ! $locale ) {
881
			$locale = 'en_US';
882
		}
883
884
		return $locale;
885
	}
886
887
	/**
888
	 * Device Pixels support
889
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
890
	 */
891
	function devicepx() {
892
		if ( Jetpack::is_active() ) {
893
			wp_enqueue_script( 'devicepx', set_url_scheme( 'http://s0.wp.com/wp-content/js/devicepx-jetpack.js' ), array(), gmdate( 'oW' ), true );
894
		}
895
	}
896
897
	/**
898
	 * Return the network_site_url so that .com knows what network this site is a part of.
899
	 * @param  bool $option
900
	 * @return string
901
	 */
902
	public function jetpack_main_network_site_option( $option ) {
903
		return network_site_url();
904
	}
905
	/**
906
	 * Network Name.
907
	 */
908
	static function network_name( $option = null ) {
909
		global $current_site;
910
		return $current_site->site_name;
911
	}
912
	/**
913
	 * Does the network allow new user and site registrations.
914
	 * @return string
915
	 */
916
	static function network_allow_new_registrations( $option = null ) {
917
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
918
	}
919
	/**
920
	 * Does the network allow admins to add new users.
921
	 * @return boolian
922
	 */
923
	static function network_add_new_users( $option = null ) {
924
		return (bool) get_site_option( 'add_new_users' );
925
	}
926
	/**
927
	 * File upload psace left per site in MB.
928
	 *  -1 means NO LIMIT.
929
	 * @return number
930
	 */
931
	static function network_site_upload_space( $option = null ) {
932
		// value in MB
933
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
934
	}
935
936
	/**
937
	 * Network allowed file types.
938
	 * @return string
939
	 */
940
	static function network_upload_file_types( $option = null ) {
941
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
942
	}
943
944
	/**
945
	 * Maximum file upload size set by the network.
946
	 * @return number
947
	 */
948
	static function network_max_upload_file_size( $option = null ) {
949
		// value in KB
950
		return get_site_option( 'fileupload_maxk', 300 );
951
	}
952
953
	/**
954
	 * Lets us know if a site allows admins to manage the network.
955
	 * @return array
956
	 */
957
	static function network_enable_administration_menus( $option = null ) {
958
		return get_site_option( 'menu_items' );
959
	}
960
961
	/**
962
	 * Return whether we are dealing with a multi network setup or not.
963
	 * The reason we are type casting this is because we want to avoid the situation where
964
	 * the result is false since when is_main_network_option return false it cases
965
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
966
	 * database which could be set to anything as opposed to what this function returns.
967
	 * @param  bool  $option
968
	 *
969
	 * @return boolean
970
	 */
971
	public function is_main_network_option( $option ) {
972
		// return '1' or ''
973
		return (string) (bool) Jetpack::is_multi_network();
974
	}
975
976
	/**
977
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
978
	 *
979
	 * @param  string  $option
980
	 * @return boolean
981
	 */
982
	public function is_multisite( $option ) {
983
		return (string) (bool) is_multisite();
984
	}
985
986
	/**
987
	 * Implemented since there is no core is multi network function
988
	 * Right now there is no way to tell if we which network is the dominant network on the system
989
	 *
990
	 * @since  3.3
991
	 * @return boolean
992
	 */
993
	public static function is_multi_network() {
994
		global  $wpdb;
995
996
		// if we don't have a multi site setup no need to do any more
997
		if ( ! is_multisite() ) {
998
			return false;
999
		}
1000
1001
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
1002
		if ( $num_sites > 1 ) {
1003
			return true;
1004
		} else {
1005
			return false;
1006
		}
1007
	}
1008
1009
	/**
1010
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
1011
	 * @return null
1012
	 */
1013
	function update_jetpack_main_network_site_option() {
1014
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1015
	}
1016
	/**
1017
	 * Triggered after a user updates the network settings via Network Settings Admin Page
1018
	 *
1019
	 */
1020
	function update_jetpack_network_settings() {
1021
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1022
		// Only sync this info for the main network site.
1023
	}
1024
1025
	/**
1026
	 * Get back if the current site is single user site.
1027
	 *
1028
	 * @return bool
1029
	 */
1030
	public static function is_single_user_site() {
1031
		$user_query = new WP_User_Query( array(
1032
			'blog_id' => get_current_blog_id(),
1033
			'fields'  => 'ID',
1034
			'number' => 2
1035
		) );
1036
		return 1 === (int) $user_query->get_total();
1037
	}
1038
1039
	/**
1040
	 * Returns true if the site has file write access false otherwise.
1041
	 * @return string ( '1' | '0' )
1042
	 **/
1043
	public static function file_system_write_access() {
1044
		if ( ! function_exists( 'get_filesystem_method' ) ) {
1045
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
1046
		}
1047
1048
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1049
1050
		$filesystem_method = get_filesystem_method();
1051
		if ( $filesystem_method === 'direct' ) {
1052
			return 1;
1053
		}
1054
1055
		ob_start();
1056
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1057
		ob_end_clean();
1058
		if ( $filesystem_credentials_are_stored ) {
1059
			return 1;
1060
		}
1061
		return 0;
1062
	}
1063
1064
	/**
1065
	 * Finds out if a site is using a version control system.
1066
	 * @return string ( '1' | '0' )
1067
	 **/
1068
	public static function is_version_controlled() {
1069
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' );
1070
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1071
	}
1072
1073
	/**
1074
	 * Determines whether the current theme supports featured images or not.
1075
	 * @return string ( '1' | '0' )
1076
	 */
1077
	public static function featured_images_enabled() {
1078
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1079
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1080
	}
1081
1082
	/**
1083
	 * jetpack_updates is saved in the following schema:
1084
	 *
1085
	 * array (
1086
	 *      'plugins'                       => (int) Number of plugin updates available.
1087
	 *      'themes'                        => (int) Number of theme updates available.
1088
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1089
	 *      'translations'                  => (int) Number of translation updates available.
1090
	 *      'total'                         => (int) Total of all available updates.
1091
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1092
	 * )
1093
	 * @return array
1094
	 */
1095
	public static function get_updates() {
1096
		$update_data = wp_get_update_data();
1097
1098
		// Stores the individual update counts as well as the total count.
1099
		if ( isset( $update_data['counts'] ) ) {
1100
			$updates = $update_data['counts'];
1101
		}
1102
1103
		// If we need to update WordPress core, let's find the latest version number.
1104 View Code Duplication
		if ( ! empty( $updates['wordpress'] ) ) {
1105
			$cur = get_preferred_from_update_core();
1106
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1107
				$updates['wp_update_version'] = $cur->current;
1108
			}
1109
		}
1110
		return isset( $updates ) ? $updates : array();
1111
	}
1112
1113
	public static function get_update_details() {
1114
		$update_details = array(
1115
			'update_core' => get_site_transient( 'update_core' ),
1116
			'update_plugins' => get_site_transient( 'update_plugins' ),
1117
			'update_themes' => get_site_transient( 'update_themes' ),
1118
		);
1119
		return $update_details;
1120
	}
1121
1122
	public static function refresh_update_data() {
1123
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1124
1125
	}
1126
1127
	public static function refresh_theme_data() {
1128
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1129
	}
1130
1131
	/**
1132
	 * Is Jetpack active?
1133
	 */
1134
	public static function is_active() {
1135
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1136
	}
1137
1138
	/**
1139
	 * Is Jetpack in development (offline) mode?
1140
	 */
1141
	public static function is_development_mode() {
1142
		$development_mode = false;
1143
1144
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1145
			$development_mode = JETPACK_DEV_DEBUG;
1146
		}
1147
1148
		elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1149
			$development_mode = true;
1150
		}
1151
		/**
1152
		 * Filters Jetpack's development mode.
1153
		 *
1154
		 * @see https://jetpack.com/support/development-mode/
1155
		 *
1156
		 * @since 2.2.1
1157
		 *
1158
		 * @param bool $development_mode Is Jetpack's development mode active.
1159
		 */
1160
		return apply_filters( 'jetpack_development_mode', $development_mode );
1161
	}
1162
1163
	/**
1164
	* Get Jetpack development mode notice text and notice class.
1165
	*
1166
	* Mirrors the checks made in Jetpack::is_development_mode
1167
	*
1168
	*/
1169
	public static function show_development_mode_notice() {
1170
		if ( Jetpack::is_development_mode() ) {
1171
			if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1172
				$notice = sprintf(
1173
					/* translators: %s is a URL */
1174
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1175
					'https://jetpack.com/support/development-mode/'
1176
				);
1177
			} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1178
				$notice = sprintf(
1179
					/* translators: %s is a URL */
1180
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1181
					'https://jetpack.com/support/development-mode/'
1182
				);
1183
			} else {
1184
				$notice = sprintf(
1185
					/* translators: %s is a URL */
1186
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1187
					'https://jetpack.com/support/development-mode/'
1188
				);
1189
			}
1190
1191
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1192
		}
1193
1194
		// Throw up a notice if using a development version and as for feedback.
1195
		if ( Jetpack::is_development_version() ) {
1196
			/* translators: %s is a URL */
1197
			$notice = sprintf( __( 'You are currently running a development version of Jetpack. <a href="%s" target="_blank">Submit your feedback</a>', 'jetpack' ), 'https://jetpack.com/contact-support/beta-group/' );
1198
1199
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1200
		}
1201
		// Throw up a notice if using staging mode
1202
		if ( Jetpack::is_staging_site() ) {
1203
			/* translators: %s is a URL */
1204
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1205
1206
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1207
		}
1208
	}
1209
1210
	/**
1211
	 * Whether Jetpack's version maps to a public release, or a development version.
1212
	 */
1213
	public static function is_development_version() {
1214
		return ! preg_match( '/^\d+(\.\d+)+$/', JETPACK__VERSION );
1215
	}
1216
1217
	/**
1218
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1219
	 */
1220
	public static function is_user_connected( $user_id = false ) {
1221
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1222
		if ( ! $user_id ) {
1223
			return false;
1224
		}
1225
1226
		return (bool) Jetpack_Data::get_access_token( $user_id );
1227
	}
1228
1229
	/**
1230
	 * Get the wpcom user data of the current|specified connected user.
1231
	 */
1232
	public static function get_connected_user_data( $user_id = null ) {
1233
		if ( ! $user_id ) {
1234
			$user_id = get_current_user_id();
1235
		}
1236
1237
		$transient_key = "jetpack_connected_user_data_$user_id";
1238
1239
		if ( $cached_user_data = get_transient( $transient_key ) ) {
1240
			return $cached_user_data;
1241
		}
1242
1243
		Jetpack::load_xml_rpc_client();
1244
		$xml = new Jetpack_IXR_Client( array(
1245
			'user_id' => $user_id,
1246
		) );
1247
		$xml->query( 'wpcom.getUser' );
1248
		if ( ! $xml->isError() ) {
1249
			$user_data = $xml->getResponse();
1250
			set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS );
1251
			return $user_data;
1252
		}
1253
1254
		return false;
1255
	}
1256
1257
	/**
1258
	 * Get the wpcom email of the current|specified connected user.
1259
	 */
1260 View Code Duplication
	public static function get_connected_user_email( $user_id = null ) {
1261
		if ( ! $user_id ) {
1262
			$user_id = get_current_user_id();
1263
		}
1264
		Jetpack::load_xml_rpc_client();
1265
		$xml = new Jetpack_IXR_Client( array(
1266
			'user_id' => $user_id,
1267
		) );
1268
		$xml->query( 'wpcom.getUserEmail' );
1269
		if ( ! $xml->isError() ) {
1270
			return $xml->getResponse();
1271
		}
1272
		return false;
1273
	}
1274
1275
	/**
1276
	 * Get the wpcom email of the master user.
1277
	 */
1278
	public static function get_master_user_email() {
1279
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1280
		if ( $master_user_id ) {
1281
			return self::get_connected_user_email( $master_user_id );
1282
		}
1283
		return '';
1284
	}
1285
1286
	function current_user_is_connection_owner() {
1287
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1288
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1289
	}
1290
1291
	/**
1292
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1293
	 */
1294
	function extra_oembed_providers() {
1295
		// Cloudup: https://dev.cloudup.com/#oembed
1296
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1297
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1298
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1299
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1300
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1301
	}
1302
1303
	/**
1304
	 * Synchronize connected user role changes
1305
	 */
1306
	function user_role_change( $user_id ) {
1307
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' );
1308
		Jetpack_Sync_Users::user_role_change( $user_id );
1309
	}
1310
1311
	/**
1312
	 * Loads the currently active modules.
1313
	 */
1314
	public static function load_modules() {
1315
		if ( ! self::is_active() && !self::is_development_mode() ) {
1316
			if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) {
1317
				return;
1318
			}
1319
		}
1320
1321
		$version = Jetpack_Options::get_option( 'version' );
1322 View Code Duplication
		if ( ! $version ) {
1323
			$version = $old_version = JETPACK__VERSION . ':' . time();
1324
			/** This action is documented in class.jetpack.php */
1325
			do_action( 'updating_jetpack_version', $version, false );
1326
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1327
		}
1328
		list( $version ) = explode( ':', $version );
1329
1330
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1331
1332
		$modules_data = array();
1333
1334
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1335
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1336
			$updated_modules = array();
1337
			foreach ( $modules as $module ) {
1338
				$modules_data[ $module ] = Jetpack::get_module( $module );
1339
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1340
					continue;
1341
				}
1342
1343
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1344
					continue;
1345
				}
1346
1347
				$updated_modules[] = $module;
1348
			}
1349
1350
			$modules = array_diff( $modules, $updated_modules );
1351
		}
1352
1353
		$is_development_mode = Jetpack::is_development_mode();
1354
1355
		foreach ( $modules as $index => $module ) {
1356
			// If we're in dev mode, disable modules requiring a connection
1357
			if ( $is_development_mode ) {
1358
				// Prime the pump if we need to
1359
				if ( empty( $modules_data[ $module ] ) ) {
1360
					$modules_data[ $module ] = Jetpack::get_module( $module );
1361
				}
1362
				// If the module requires a connection, but we're in local mode, don't include it.
1363
				if ( $modules_data[ $module ]['requires_connection'] ) {
1364
					continue;
1365
				}
1366
			}
1367
1368
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1369
				continue;
1370
			}
1371
1372
			if ( ! @include( Jetpack::get_module_path( $module ) ) ) {
1373
				unset( $modules[ $index ] );
1374
				self::update_active_modules( array_values( $modules ) );
1375
				continue;
1376
			}
1377
1378
			/**
1379
			 * Fires when a specific module is loaded.
1380
			 * The dynamic part of the hook, $module, is the module slug.
1381
			 *
1382
			 * @since 1.1.0
1383
			 */
1384
			do_action( 'jetpack_module_loaded_' . $module );
1385
		}
1386
1387
		/**
1388
		 * Fires when all the modules are loaded.
1389
		 *
1390
		 * @since 1.1.0
1391
		 */
1392
		do_action( 'jetpack_modules_loaded' );
1393
1394
		// Load module-specific code that is needed even when a module isn't active. Loaded here because code contained therein may need actions such as setup_theme.
1395
		if ( Jetpack::is_active() || Jetpack::is_development_mode() )
1396
			require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1397
	}
1398
1399
	/**
1400
	 * Check if Jetpack's REST API compat file should be included
1401
	 * @action plugins_loaded
1402
	 * @return null
1403
	 */
1404
	public function check_rest_api_compat() {
1405
		/**
1406
		 * Filters the list of REST API compat files to be included.
1407
		 *
1408
		 * @since 2.2.5
1409
		 *
1410
		 * @param array $args Array of REST API compat files to include.
1411
		 */
1412
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1413
1414
		if ( function_exists( 'bbpress' ) )
1415
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1416
1417
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1418
			require_once $_jetpack_rest_api_compat_include;
1419
	}
1420
1421
	/**
1422
	 * Gets all plugins currently active in values, regardless of whether they're
1423
	 * traditionally activated or network activated.
1424
	 *
1425
	 * @todo Store the result in core's object cache maybe?
1426
	 */
1427
	public static function get_active_plugins() {
1428
		$active_plugins = (array) get_option( 'active_plugins', array() );
1429
1430
		if ( is_multisite() ) {
1431
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1432
			// whereas active_plugins stores them in the values.
1433
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1434
			if ( $network_plugins ) {
1435
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1436
			}
1437
		}
1438
1439
		sort( $active_plugins );
1440
1441
		return array_unique( $active_plugins );
1442
	}
1443
1444
	/**
1445
	 * Gets and parses additional plugin data to send with the heartbeat data
1446
	 *
1447
	 * @since 3.8.1
1448
	 *
1449
	 * @return array Array of plugin data
1450
	 */
1451
	public static function get_parsed_plugin_data() {
1452
		if ( ! function_exists( 'get_plugins' ) ) {
1453
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1454
		}
1455
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1456
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1457
		$active_plugins = Jetpack::get_active_plugins();
1458
1459
		$plugins = array();
1460
		foreach ( $all_plugins as $path => $plugin_data ) {
1461
			$plugins[ $path ] = array(
1462
					'is_active' => in_array( $path, $active_plugins ),
1463
					'file'      => $path,
1464
					'name'      => $plugin_data['Name'],
1465
					'version'   => $plugin_data['Version'],
1466
					'author'    => $plugin_data['Author'],
1467
			);
1468
		}
1469
1470
		return $plugins;
1471
	}
1472
1473
	/**
1474
	 * Gets and parses theme data to send with the heartbeat data
1475
	 *
1476
	 * @since 3.8.1
1477
	 *
1478
	 * @return array Array of theme data
1479
	 */
1480
	public static function get_parsed_theme_data() {
1481
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1482
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1483
1484
		$themes = array();
1485
		foreach ( $all_themes as $slug => $theme_data ) {
1486
			$theme_headers = array();
1487
			foreach ( $header_keys as $header_key ) {
1488
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
1489
			}
1490
1491
			$themes[ $slug ] = array(
1492
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
1493
					'slug' => $slug,
1494
					'theme_root' => $theme_data->get_theme_root_uri(),
1495
					'parent' => $theme_data->parent(),
1496
					'headers' => $theme_headers
1497
			);
1498
		}
1499
1500
		return $themes;
1501
	}
1502
1503
	/**
1504
	 * Checks whether a specific plugin is active.
1505
	 *
1506
	 * We don't want to store these in a static variable, in case
1507
	 * there are switch_to_blog() calls involved.
1508
	 */
1509
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
1510
		return in_array( $plugin, self::get_active_plugins() );
1511
	}
1512
1513
	/**
1514
	 * Check if Jetpack's Open Graph tags should be used.
1515
	 * If certain plugins are active, Jetpack's og tags are suppressed.
1516
	 *
1517
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1518
	 * @action plugins_loaded
1519
	 * @return null
1520
	 */
1521
	public function check_open_graph() {
1522
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
1523
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
1524
		}
1525
1526
		$active_plugins = self::get_active_plugins();
1527
1528
		if ( ! empty( $active_plugins ) ) {
1529
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
1530
				if ( in_array( $plugin, $active_plugins ) ) {
1531
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
1532
					break;
1533
				}
1534
			}
1535
		}
1536
1537
		/**
1538
		 * Allow the addition of Open Graph Meta Tags to all pages.
1539
		 *
1540
		 * @since 2.0.3
1541
		 *
1542
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
1543
		 */
1544
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
1545
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
1546
		}
1547
	}
1548
1549
	/**
1550
	 * Check if Jetpack's Twitter tags should be used.
1551
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
1552
	 *
1553
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1554
	 * @action plugins_loaded
1555
	 * @return null
1556
	 */
1557
	public function check_twitter_tags() {
1558
1559
		$active_plugins = self::get_active_plugins();
1560
1561
		if ( ! empty( $active_plugins ) ) {
1562
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
1563
				if ( in_array( $plugin, $active_plugins ) ) {
1564
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
1565
					break;
1566
				}
1567
			}
1568
		}
1569
1570
		/**
1571
		 * Allow Twitter Card Meta tags to be disabled.
1572
		 *
1573
		 * @since 2.6.0
1574
		 *
1575
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
1576
		 */
1577
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
1578
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
1579
		}
1580
	}
1581
1582
	/**
1583
	 * Allows plugins to submit security reports.
1584
 	 *
1585
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
1586
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
1587
	 * @param array   $args         See definitions above
1588
	 */
1589
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
1590
		_deprecated_function( __FUNCTION__, 'jetpack-4.2', null );
1591
	}
1592
1593
/* Jetpack Options API */
1594
1595
	public static function get_option_names( $type = 'compact' ) {
1596
		return Jetpack_Options::get_option_names( $type );
1597
	}
1598
1599
	/**
1600
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
1601
 	 *
1602
	 * @param string $name    Option name
1603
	 * @param mixed  $default (optional)
1604
	 */
1605
	public static function get_option( $name, $default = false ) {
1606
		return Jetpack_Options::get_option( $name, $default );
1607
	}
1608
1609
	/**
1610
	* Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action
1611
	* Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted
1612
	* $name must be a registered option name.
1613
	*/
1614
	public static function create_nonce( $name ) {
1615
		$secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 );
1616
1617
		Jetpack_Options::update_option( $name, $secret );
1618
		@list( $secret_1, $secret_2, $eol ) = explode( ':', Jetpack_Options::get_option( $name ) );
1619
		if ( empty( $secret_1 ) || empty( $secret_2 ) || $eol < time() )
1620
			return new Jetpack_Error( 'missing_secrets' );
1621
1622
		return array(
1623
			'secret_1' => $secret_1,
1624
			'secret_2' => $secret_2,
1625
			'eol'      => $eol,
1626
		);
1627
	}
1628
1629
	/**
1630
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
1631
 	 *
1632
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
1633
	 * @param string $name  Option name
1634
	 * @param mixed  $value Option value
1635
	 */
1636
	public static function update_option( $name, $value ) {
1637
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
1638
		return Jetpack_Options::update_option( $name, $value );
1639
	}
1640
1641
	/**
1642
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
1643
 	 *
1644
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
1645
	 * @param array $array array( option name => option value, ... )
1646
	 */
1647
	public static function update_options( $array ) {
1648
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
1649
		return Jetpack_Options::update_options( $array );
1650
	}
1651
1652
	/**
1653
	 * Deletes the given option.  May be passed multiple option names as an array.
1654
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
1655
	 *
1656
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
1657
	 * @param string|array $names
1658
	 */
1659
	public static function delete_option( $names ) {
1660
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
1661
		return Jetpack_Options::delete_option( $names );
1662
	}
1663
1664
	/**
1665
	 * Enters a user token into the user_tokens option
1666
	 *
1667
	 * @param int $user_id
1668
	 * @param string $token
1669
	 * return bool
1670
	 */
1671
	public static function update_user_token( $user_id, $token, $is_master_user ) {
1672
		// not designed for concurrent updates
1673
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
1674
		if ( ! is_array( $user_tokens ) )
1675
			$user_tokens = array();
1676
		$user_tokens[$user_id] = $token;
1677
		if ( $is_master_user ) {
1678
			$master_user = $user_id;
1679
			$options     = compact( 'user_tokens', 'master_user' );
1680
		} else {
1681
			$options = compact( 'user_tokens' );
1682
		}
1683
		return Jetpack_Options::update_options( $options );
1684
	}
1685
1686
	/**
1687
	 * Returns an array of all PHP files in the specified absolute path.
1688
	 * Equivalent to glob( "$absolute_path/*.php" ).
1689
	 *
1690
	 * @param string $absolute_path The absolute path of the directory to search.
1691
	 * @return array Array of absolute paths to the PHP files.
1692
	 */
1693
	public static function glob_php( $absolute_path ) {
1694
		if ( function_exists( 'glob' ) ) {
1695
			return glob( "$absolute_path/*.php" );
1696
		}
1697
1698
		$absolute_path = untrailingslashit( $absolute_path );
1699
		$files = array();
1700
		if ( ! $dir = @opendir( $absolute_path ) ) {
1701
			return $files;
1702
		}
1703
1704
		while ( false !== $file = readdir( $dir ) ) {
1705
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
1706
				continue;
1707
			}
1708
1709
			$file = "$absolute_path/$file";
1710
1711
			if ( ! is_file( $file ) ) {
1712
				continue;
1713
			}
1714
1715
			$files[] = $file;
1716
		}
1717
1718
		closedir( $dir );
1719
1720
		return $files;
1721
	}
1722
1723
	public static function activate_new_modules( $redirect = false ) {
1724
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
1725
			return;
1726
		}
1727
1728
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
1729 View Code Duplication
		if ( ! $jetpack_old_version ) {
1730
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
1731
			/** This action is documented in class.jetpack.php */
1732
			do_action( 'updating_jetpack_version', $version, false );
1733
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1734
		}
1735
1736
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
1737
1738
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
1739
			return;
1740
		}
1741
1742
		$active_modules     = Jetpack::get_active_modules();
1743
		$reactivate_modules = array();
1744
		foreach ( $active_modules as $active_module ) {
1745
			$module = Jetpack::get_module( $active_module );
1746
			if ( ! isset( $module['changed'] ) ) {
1747
				continue;
1748
			}
1749
1750
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
1751
				continue;
1752
			}
1753
1754
			$reactivate_modules[] = $active_module;
1755
			Jetpack::deactivate_module( $active_module );
1756
		}
1757
1758
		$new_version = JETPACK__VERSION . ':' . time();
1759
		/** This action is documented in class.jetpack.php */
1760
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
1761
		Jetpack_Options::update_options(
1762
			array(
1763
				'version'     => $new_version,
1764
				'old_version' => $jetpack_old_version,
1765
			)
1766
		);
1767
1768
		Jetpack::state( 'message', 'modules_activated' );
1769
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
1770
1771
		if ( $redirect ) {
1772
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
1773
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
1774
				$page = $_GET['page'];
1775
			}
1776
1777
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
1778
			exit;
1779
		}
1780
	}
1781
1782
	/**
1783
	 * List available Jetpack modules. Simply lists .php files in /modules/.
1784
	 * Make sure to tuck away module "library" files in a sub-directory.
1785
	 */
1786
	public static function get_available_modules( $min_version = false, $max_version = false ) {
1787
		static $modules = null;
1788
1789
		if ( ! isset( $modules ) ) {
1790
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
1791
			// Use the cache if we're on the front-end and it's available...
1792
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
1793
				$modules = $available_modules_option[ JETPACK__VERSION ];
1794
			} else {
1795
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
1796
1797
				$modules = array();
1798
1799
				foreach ( $files as $file ) {
1800
					if ( ! $headers = Jetpack::get_module( $file ) ) {
1801
						continue;
1802
					}
1803
1804
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
1805
				}
1806
1807
				Jetpack_Options::update_option( 'available_modules', array(
1808
					JETPACK__VERSION => $modules,
1809
				) );
1810
			}
1811
		}
1812
1813
		/**
1814
		 * Filters the array of modules available to be activated.
1815
		 *
1816
		 * @since 2.4.0
1817
		 *
1818
		 * @param array $modules Array of available modules.
1819
		 * @param string $min_version Minimum version number required to use modules.
1820
		 * @param string $max_version Maximum version number required to use modules.
1821
		 */
1822
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
1823
1824
		if ( ! $min_version && ! $max_version ) {
1825
			return array_keys( $mods );
1826
		}
1827
1828
		$r = array();
1829
		foreach ( $mods as $slug => $introduced ) {
1830
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
1831
				continue;
1832
			}
1833
1834
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
1835
				continue;
1836
			}
1837
1838
			$r[] = $slug;
1839
		}
1840
1841
		return $r;
1842
	}
1843
1844
	/**
1845
	 * Default modules loaded on activation.
1846
	 */
1847
	public static function get_default_modules( $min_version = false, $max_version = false ) {
1848
		$return = array();
1849
1850
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
1851
			$module_data = Jetpack::get_module( $module );
1852
1853
			switch ( strtolower( $module_data['auto_activate'] ) ) {
1854
				case 'yes' :
1855
					$return[] = $module;
1856
					break;
1857
				case 'public' :
1858
					if ( Jetpack_Options::get_option( 'public' ) ) {
1859
						$return[] = $module;
1860
					}
1861
					break;
1862
				case 'no' :
1863
				default :
1864
					break;
1865
			}
1866
		}
1867
		/**
1868
		 * Filters the array of default modules.
1869
		 *
1870
		 * @since 2.5.0
1871
		 *
1872
		 * @param array $return Array of default modules.
1873
		 * @param string $min_version Minimum version number required to use modules.
1874
		 * @param string $max_version Maximum version number required to use modules.
1875
		 */
1876
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
1877
	}
1878
1879
	/**
1880
	 * Checks activated modules during auto-activation to determine
1881
	 * if any of those modules are being deprecated.  If so, close
1882
	 * them out, and add any replacement modules.
1883
	 *
1884
	 * Runs at priority 99 by default.
1885
	 *
1886
	 * This is run late, so that it can still activate a module if
1887
	 * the new module is a replacement for another that the user
1888
	 * currently has active, even if something at the normal priority
1889
	 * would kibosh everything.
1890
	 *
1891
	 * @since 2.6
1892
	 * @uses jetpack_get_default_modules filter
1893
	 * @param array $modules
1894
	 * @return array
1895
	 */
1896
	function handle_deprecated_modules( $modules ) {
1897
		$deprecated_modules = array(
1898
			'debug'            => null,  // Closed out and moved to ./class.jetpack-debugger.php
1899
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
1900
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
1901
		);
1902
1903
		// Don't activate SSO if they never completed activating WPCC.
1904
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
1905
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
1906
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
1907
				$deprecated_modules['wpcc'] = null;
1908
			}
1909
		}
1910
1911
		foreach ( $deprecated_modules as $module => $replacement ) {
1912
			if ( Jetpack::is_module_active( $module ) ) {
1913
				self::deactivate_module( $module );
1914
				if ( $replacement ) {
1915
					$modules[] = $replacement;
1916
				}
1917
			}
1918
		}
1919
1920
		return array_unique( $modules );
1921
	}
1922
1923
	/**
1924
	 * Checks activated plugins during auto-activation to determine
1925
	 * if any of those plugins are in the list with a corresponding module
1926
	 * that is not compatible with the plugin. The module will not be allowed
1927
	 * to auto-activate.
1928
	 *
1929
	 * @since 2.6
1930
	 * @uses jetpack_get_default_modules filter
1931
	 * @param array $modules
1932
	 * @return array
1933
	 */
1934
	function filter_default_modules( $modules ) {
1935
1936
		$active_plugins = self::get_active_plugins();
1937
1938
		if ( ! empty( $active_plugins ) ) {
1939
1940
			// For each module we'd like to auto-activate...
1941
			foreach ( $modules as $key => $module ) {
1942
				// If there are potential conflicts for it...
1943
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
1944
					// For each potential conflict...
1945
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
1946
						// If that conflicting plugin is active...
1947
						if ( in_array( $plugin, $active_plugins ) ) {
1948
							// Remove that item from being auto-activated.
1949
							unset( $modules[ $key ] );
1950
						}
1951
					}
1952
				}
1953
			}
1954
		}
1955
1956
		return $modules;
1957
	}
1958
1959
	/**
1960
	 * Extract a module's slug from its full path.
1961
	 */
1962
	public static function get_module_slug( $file ) {
1963
		return str_replace( '.php', '', basename( $file ) );
1964
	}
1965
1966
	/**
1967
	 * Generate a module's path from its slug.
1968
	 */
1969
	public static function get_module_path( $slug ) {
1970
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
1971
	}
1972
1973
	/**
1974
	 * Load module data from module file. Headers differ from WordPress
1975
	 * plugin headers to avoid them being identified as standalone
1976
	 * plugins on the WordPress plugins page.
1977
	 */
1978
	public static function get_module( $module ) {
1979
		$headers = array(
1980
			'name'                      => 'Module Name',
1981
			'description'               => 'Module Description',
1982
			'jumpstart_desc'            => 'Jumpstart Description',
1983
			'sort'                      => 'Sort Order',
1984
			'recommendation_order'      => 'Recommendation Order',
1985
			'introduced'                => 'First Introduced',
1986
			'changed'                   => 'Major Changes In',
1987
			'deactivate'                => 'Deactivate',
1988
			'free'                      => 'Free',
1989
			'requires_connection'       => 'Requires Connection',
1990
			'auto_activate'             => 'Auto Activate',
1991
			'module_tags'               => 'Module Tags',
1992
			'feature'                   => 'Feature',
1993
			'additional_search_queries' => 'Additional Search Queries',
1994
		);
1995
1996
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
1997
1998
		$mod = Jetpack::get_file_data( $file, $headers );
1999
		if ( empty( $mod['name'] ) ) {
2000
			return false;
2001
		}
2002
2003
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
2004
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
2005
		$mod['deactivate']              = empty( $mod['deactivate'] );
2006
		$mod['free']                    = empty( $mod['free'] );
2007
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
2008
2009
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
2010
			$mod['auto_activate'] = 'No';
2011
		} else {
2012
			$mod['auto_activate'] = (string) $mod['auto_activate'];
2013
		}
2014
2015
		if ( $mod['module_tags'] ) {
2016
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
2017
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
2018
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
2019
		} else {
2020
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2021
		}
2022
2023
		if ( $mod['feature'] ) {
2024
			$mod['feature'] = explode( ',', $mod['feature'] );
2025
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2026
		} else {
2027
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2028
		}
2029
2030
		/**
2031
		 * Filters the feature array on a module.
2032
		 *
2033
		 * This filter allows you to control where each module is filtered: Recommended,
2034
		 * Jumpstart, and the default "Other" listing.
2035
		 *
2036
		 * @since 3.5.0
2037
		 *
2038
		 * @param array   $mod['feature'] The areas to feature this module:
2039
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2040
		 *     'Recommended' shows on the main Jetpack admin screen.
2041
		 *     'Other' should be the default if no other value is in the array.
2042
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2043
		 * @param array   $mod All the currently assembled module data.
2044
		 */
2045
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2046
2047
		/**
2048
		 * Filter the returned data about a module.
2049
		 *
2050
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2051
		 * so please be careful.
2052
		 *
2053
		 * @since 3.6.0
2054
		 *
2055
		 * @param array   $mod    The details of the requested module.
2056
		 * @param string  $module The slug of the module, e.g. sharedaddy
2057
		 * @param string  $file   The path to the module source file.
2058
		 */
2059
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2060
	}
2061
2062
	/**
2063
	 * Like core's get_file_data implementation, but caches the result.
2064
	 */
2065
	public static function get_file_data( $file, $headers ) {
2066
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2067
		$file_name = basename( $file );
2068
		$file_data_option = Jetpack_Options::get_option( 'file_data', array() );
2069
		$key              = md5( $file_name . serialize( $headers ) );
2070
		$refresh_cache    = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2071
2072
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2073
		if ( ! $refresh_cache && isset( $file_data_option[ JETPACK__VERSION ][ $key ] ) ) {
2074
			return $file_data_option[ JETPACK__VERSION ][ $key ];
2075
		}
2076
2077
		$data = get_file_data( $file, $headers );
2078
2079
		// Strip out any old Jetpack versions that are cluttering the option.
2080
		$file_data_option = array_intersect_key( (array) $file_data_option, array( JETPACK__VERSION => null ) );
2081
		$file_data_option[ JETPACK__VERSION ][ $key ] = $data;
2082
		Jetpack_Options::update_option( 'file_data', $file_data_option );
2083
2084
		return $data;
2085
	}
2086
2087
	/**
2088
	 * Return translated module tag.
2089
	 *
2090
	 * @param string $tag Tag as it appears in each module heading.
2091
	 *
2092
	 * @return mixed
2093
	 */
2094
	public static function translate_module_tag( $tag ) {
2095
		return jetpack_get_module_i18n_tag( $tag );
2096
	}
2097
2098
	/**
2099
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2100
	 *
2101
	 * @since 3.9.2
2102
	 *
2103
	 * @param array $modules
2104
	 *
2105
	 * @return string|void
2106
	 */
2107
	public static function get_translated_modules( $modules ) {
2108
		foreach ( $modules as $index => $module ) {
2109
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2110
			if ( isset( $module['name'] ) ) {
2111
				$modules[ $index ]['name'] = $i18n_module['name'];
2112
			}
2113
			if ( isset( $module['description'] ) ) {
2114
				$modules[ $index ]['description'] = $i18n_module['description'];
2115
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2116
			}
2117
		}
2118
		return $modules;
2119
	}
2120
2121
	/**
2122
	 * Get a list of activated modules as an array of module slugs.
2123
	 */
2124
	public static function get_active_modules() {
2125
		$active = Jetpack_Options::get_option( 'active_modules' );
2126
		if ( ! is_array( $active ) )
2127
			$active = array();
2128
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2129
			$active[] = 'vaultpress';
2130
		} else {
2131
			$active = array_diff( $active, array( 'vaultpress' ) );
2132
		}
2133
2134
		//If protect is active on the main site of a multisite, it should be active on all sites.
2135
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2136
			$active[] = 'protect';
2137
		}
2138
2139
		return array_unique( $active );
2140
	}
2141
2142
	/**
2143
	 * Check whether or not a Jetpack module is active.
2144
	 *
2145
	 * @param string $module The slug of a Jetpack module.
2146
	 * @return bool
2147
	 *
2148
	 * @static
2149
	 */
2150
	public static function is_module_active( $module ) {
2151
		return in_array( $module, self::get_active_modules() );
2152
	}
2153
2154
	public static function is_module( $module ) {
2155
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2156
	}
2157
2158
	/**
2159
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2160
	 *
2161
	 * @param bool $catch True to start catching, False to stop.
2162
	 *
2163
	 * @static
2164
	 */
2165
	public static function catch_errors( $catch ) {
2166
		static $display_errors, $error_reporting;
2167
2168
		if ( $catch ) {
2169
			$display_errors  = @ini_set( 'display_errors', 1 );
2170
			$error_reporting = @error_reporting( E_ALL );
2171
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2172
		} else {
2173
			@ini_set( 'display_errors', $display_errors );
2174
			@error_reporting( $error_reporting );
2175
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2176
		}
2177
	}
2178
2179
	/**
2180
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2181
	 */
2182
	public static function catch_errors_on_shutdown() {
2183
		Jetpack::state( 'php_errors', ob_get_clean() );
2184
	}
2185
2186
	public static function activate_default_modules( $min_version = false, $max_version = false, $other_modules = array(), $redirect = true ) {
2187
		$jetpack = Jetpack::init();
2188
2189
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2190
		$modules = array_merge( $other_modules, $modules );
2191
2192
		// Look for standalone plugins and disable if active.
2193
2194
		$to_deactivate = array();
2195
		foreach ( $modules as $module ) {
2196
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2197
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2198
			}
2199
		}
2200
2201
		$deactivated = array();
2202
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2203
			list( $probable_file, $probable_title ) = $deactivate_me;
2204
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2205
				$deactivated[] = $module;
2206
			}
2207
		}
2208
2209
		if ( $deactivated && $redirect ) {
2210
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2211
2212
			$url = add_query_arg(
2213
				array(
2214
					'action'   => 'activate_default_modules',
2215
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2216
				),
2217
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2218
			);
2219
			wp_safe_redirect( $url );
2220
			exit;
2221
		}
2222
2223
		/**
2224
		 * Fires before default modules are activated.
2225
		 *
2226
		 * @since 1.9.0
2227
		 *
2228
		 * @param string $min_version Minimum version number required to use modules.
2229
		 * @param string $max_version Maximum version number required to use modules.
2230
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2231
		 */
2232
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2233
2234
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2235
		Jetpack::restate();
2236
		Jetpack::catch_errors( true );
2237
2238
		$active = Jetpack::get_active_modules();
2239
2240
		foreach ( $modules as $module ) {
2241
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2242
				$active[] = $module;
2243
				self::update_active_modules( $active );
2244
				continue;
2245
			}
2246
2247
			if ( in_array( $module, $active ) ) {
2248
				$module_info = Jetpack::get_module( $module );
2249
				if ( ! $module_info['deactivate'] ) {
2250
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2251 View Code Duplication
					if ( $active_state = Jetpack::state( $state ) ) {
2252
						$active_state = explode( ',', $active_state );
2253
					} else {
2254
						$active_state = array();
2255
					}
2256
					$active_state[] = $module;
2257
					Jetpack::state( $state, implode( ',', $active_state ) );
2258
				}
2259
				continue;
2260
			}
2261
2262
			$file = Jetpack::get_module_path( $module );
2263
			if ( ! file_exists( $file ) ) {
2264
				continue;
2265
			}
2266
2267
			// we'll override this later if the plugin can be included without fatal error
2268
			if ( $redirect ) {
2269
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2270
			}
2271
			Jetpack::state( 'error', 'module_activation_failed' );
2272
			Jetpack::state( 'module', $module );
2273
			ob_start();
2274
			require $file;
2275
2276
			$active[] = $module;
2277
			$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2278 View Code Duplication
			if ( $active_state = Jetpack::state( $state ) ) {
2279
				$active_state = explode( ',', $active_state );
2280
			} else {
2281
				$active_state = array();
2282
			}
2283
			$active_state[] = $module;
2284
			Jetpack::state( $state, implode( ',', $active_state ) );
2285
			Jetpack::update_active_modules( $active );
2286
2287
			ob_end_clean();
2288
		}
2289
		Jetpack::state( 'error', false );
2290
		Jetpack::state( 'module', false );
2291
		Jetpack::catch_errors( false );
2292
		/**
2293
		 * Fires when default modules are activated.
2294
		 *
2295
		 * @since 1.9.0
2296
		 *
2297
		 * @param string $min_version Minimum version number required to use modules.
2298
		 * @param string $max_version Maximum version number required to use modules.
2299
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2300
		 */
2301
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2302
	}
2303
2304
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2305
		/**
2306
		 * Fires before a module is activated.
2307
		 *
2308
		 * @since 2.6.0
2309
		 *
2310
		 * @param string $module Module slug.
2311
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2312
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2313
		 */
2314
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2315
2316
		$jetpack = Jetpack::init();
2317
2318
		if ( ! strlen( $module ) )
2319
			return false;
2320
2321
		if ( ! Jetpack::is_module( $module ) )
2322
			return false;
2323
2324
		// If it's already active, then don't do it again
2325
		$active = Jetpack::get_active_modules();
2326
		foreach ( $active as $act ) {
2327
			if ( $act == $module )
2328
				return true;
2329
		}
2330
2331
		$module_data = Jetpack::get_module( $module );
2332
2333
		if ( ! Jetpack::is_active() ) {
2334
			if ( !Jetpack::is_development_mode() )
2335
				return false;
2336
2337
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2338
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2339
				return false;
2340
		}
2341
2342
		// Check and see if the old plugin is active
2343
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2344
			// Deactivate the old plugin
2345
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2346
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2347
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2348
				Jetpack::state( 'deactivated_plugins', $module );
2349
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2350
				exit;
2351
			}
2352
		}
2353
2354
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2355
		Jetpack::state( 'module', $module );
2356
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2357
2358
		Jetpack::catch_errors( true );
2359
		ob_start();
2360
		require Jetpack::get_module_path( $module );
2361
2362
		$active[] = $module;
2363
		Jetpack::update_active_modules( $active );
2364
2365
		Jetpack::state( 'error', false ); // the override
2366
		ob_end_clean();
2367
		Jetpack::catch_errors( false );
2368
2369
		// A flag for Jump Start so it's not shown again. Only set if it hasn't been yet.
2370 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2371
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2372
2373
			//Jump start is being dismissed send data to MC Stats
2374
			$jetpack->stat( 'jumpstart', 'manual,'.$module );
2375
2376
			$jetpack->do_stats( 'server_side' );
2377
		}
2378
2379
		if ( $redirect ) {
2380
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2381
		}
2382
		if ( $exit ) {
2383
			exit;
2384
		}
2385
		return true;
2386
	}
2387
2388
	function activate_module_actions( $module ) {
2389
		_deprecated_function( __METHOD__, 'jeptack-4.2' );
2390
	}
2391
2392
	public static function deactivate_module( $module ) {
2393
		/**
2394
		 * Fires when a module is deactivated.
2395
		 *
2396
		 * @since 1.9.0
2397
		 *
2398
		 * @param string $module Module slug.
2399
		 */
2400
		do_action( 'jetpack_pre_deactivate_module', $module );
2401
2402
		$jetpack = Jetpack::init();
2403
2404
		$active = Jetpack::get_active_modules();
2405
		$new    = array_filter( array_diff( $active, (array) $module ) );
2406
2407
		// A flag for Jump Start so it's not shown again.
2408 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2409
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2410
2411
			//Jump start is being dismissed send data to MC Stats
2412
			$jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module );
2413
2414
			$jetpack->do_stats( 'server_side' );
2415
		}
2416
2417
		return self::update_active_modules( $new );
2418
	}
2419
2420
	public static function enable_module_configurable( $module ) {
2421
		$module = Jetpack::get_module_slug( $module );
2422
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
2423
	}
2424
2425
	public static function module_configuration_url( $module ) {
2426
		$module = Jetpack::get_module_slug( $module );
2427
		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2428
	}
2429
2430
	public static function module_configuration_load( $module, $method ) {
2431
		$module = Jetpack::get_module_slug( $module );
2432
		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2433
	}
2434
2435
	public static function module_configuration_head( $module, $method ) {
2436
		$module = Jetpack::get_module_slug( $module );
2437
		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2438
	}
2439
2440
	public static function module_configuration_screen( $module, $method ) {
2441
		$module = Jetpack::get_module_slug( $module );
2442
		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2443
	}
2444
2445
	public static function module_configuration_activation_screen( $module, $method ) {
2446
		$module = Jetpack::get_module_slug( $module );
2447
		add_action( 'display_activate_module_setting_' . $module, $method );
2448
	}
2449
2450
/* Installation */
2451
2452
	public static function bail_on_activation( $message, $deactivate = true ) {
2453
?>
2454
<!doctype html>
2455
<html>
2456
<head>
2457
<meta charset="<?php bloginfo( 'charset' ); ?>">
2458
<style>
2459
* {
2460
	text-align: center;
2461
	margin: 0;
2462
	padding: 0;
2463
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
2464
}
2465
p {
2466
	margin-top: 1em;
2467
	font-size: 18px;
2468
}
2469
</style>
2470
<body>
2471
<p><?php echo esc_html( $message ); ?></p>
2472
</body>
2473
</html>
2474
<?php
2475
		if ( $deactivate ) {
2476
			$plugins = get_option( 'active_plugins' );
2477
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
2478
			$update  = false;
2479
			foreach ( $plugins as $i => $plugin ) {
2480
				if ( $plugin === $jetpack ) {
2481
					$plugins[$i] = false;
2482
					$update = true;
2483
				}
2484
			}
2485
2486
			if ( $update ) {
2487
				update_option( 'active_plugins', array_filter( $plugins ) );
2488
			}
2489
		}
2490
		exit;
2491
	}
2492
2493
	/**
2494
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
2495
	 * @static
2496
	 */
2497
	public static function plugin_activation( $network_wide ) {
2498
		Jetpack_Options::update_option( 'activated', 1 );
2499
2500
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
2501
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
2502
		}
2503
2504
		if ( $network_wide )
2505
			Jetpack::state( 'network_nag', true );
2506
2507
		Jetpack::plugin_initialize();
2508
	}
2509
	/**
2510
	 * Runs before bumping version numbers up to a new version
2511
	 * @param  (string) $version    Version:timestamp
2512
	 * @param  (string) $old_version Old Version:timestamp or false if not set yet.
2513
	 * @return null              [description]
2514
	 */
2515
	public static function do_version_bump( $version, $old_version ) {
2516
2517
		if ( ! $old_version ) { // For new sites
2518
			// Setting up jetpack manage
2519
			Jetpack::activate_manage();
2520
		}
2521
	}
2522
2523
	/**
2524
	 * Sets the internal version number and activation state.
2525
	 * @static
2526
	 */
2527
	public static function plugin_initialize() {
2528
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
2529
			Jetpack_Options::update_option( 'activated', 2 );
2530
		}
2531
2532 View Code Duplication
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
2533
			$version = $old_version = JETPACK__VERSION . ':' . time();
2534
			/** This action is documented in class.jetpack.php */
2535
			do_action( 'updating_jetpack_version', $version, false );
2536
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2537
		}
2538
2539
		Jetpack::load_modules();
2540
2541
		Jetpack_Options::delete_option( 'do_activate' );
2542
	}
2543
2544
	/**
2545
	 * Removes all connection options
2546
	 * @static
2547
	 */
2548
	public static function plugin_deactivation( ) {
2549
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
2550
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
2551
			Jetpack_Network::init()->deactivate();
2552
		} else {
2553
			Jetpack::disconnect( false );
2554
			//Jetpack_Heartbeat::init()->deactivate();
2555
		}
2556
	}
2557
2558
	/**
2559
	 * Disconnects from the Jetpack servers.
2560
	 * Forgets all connection details and tells the Jetpack servers to do the same.
2561
	 * @static
2562
	 */
2563
	public static function disconnect( $update_activated_state = true ) {
2564
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
2565
		Jetpack::clean_nonces( true );
2566
2567
		Jetpack::load_xml_rpc_client();
2568
		$xml = new Jetpack_IXR_Client();
2569
		$xml->query( 'jetpack.deregister' );
2570
2571
		Jetpack_Options::delete_option(
2572
			array(
2573
				'register',
2574
				'blog_token',
2575
				'user_token',
2576
				'user_tokens',
2577
				'master_user',
2578
				'time_diff',
2579
				'fallback_no_verify_ssl_certs',
2580
			)
2581
		);
2582
2583
		if ( $update_activated_state ) {
2584
			Jetpack_Options::update_option( 'activated', 4 );
2585
		}
2586
2587
		$jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' );
2588
		// Check then record unique disconnection if site has never been disconnected previously
2589
		if ( -1 == $jetpack_unique_connection['disconnected'] ) {
2590
			$jetpack_unique_connection['disconnected'] = 1;
2591
		}
2592
		else {
2593
			if ( 0 == $jetpack_unique_connection['disconnected'] ) {
2594
				//track unique disconnect
2595
				$jetpack = Jetpack::init();
2596
2597
				$jetpack->stat( 'connections', 'unique-disconnect' );
2598
				$jetpack->do_stats( 'server_side' );
2599
			}
2600
			// increment number of times disconnected
2601
			$jetpack_unique_connection['disconnected'] += 1;
2602
		}
2603
2604
		Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
2605
2606
		// Delete all the sync related data. Since it could be taking up space.
2607
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-sender.php';
2608
		Jetpack_Sync_Sender::get_instance()->uninstall();
2609
2610
		// Disable the Heartbeat cron
2611
		Jetpack_Heartbeat::init()->deactivate();
2612
	}
2613
2614
	/**
2615
	 * Unlinks the current user from the linked WordPress.com user
2616
	 */
2617
	public static function unlink_user( $user_id = null ) {
2618
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
2619
			return false;
2620
2621
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
2622
2623
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
2624
			return false;
2625
2626
		if ( ! isset( $tokens[ $user_id ] ) )
2627
			return false;
2628
2629
		Jetpack::load_xml_rpc_client();
2630
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
2631
		$xml->query( 'jetpack.unlink_user', $user_id );
2632
2633
		unset( $tokens[ $user_id ] );
2634
2635
		Jetpack_Options::update_option( 'user_tokens', $tokens );
2636
2637
		/**
2638
		 * Fires after the current user has been unlinked from WordPress.com.
2639
		 *
2640
		 * @since 4.1.0
2641
		 *
2642
		 * @param int $user_id The current user's ID.
2643
		 */
2644
		do_action( 'jetpack_unlinked_user', $user_id );
2645
2646
		return true;
2647
	}
2648
2649
	/**
2650
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
2651
	 */
2652
	public static function try_registration() {
2653
		// Let's get some testing in beta versions and such.
2654
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
2655
			// Before attempting to connect, let's make sure that the domains are viable.
2656
			$domains_to_check = array_unique( array(
2657
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
2658
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
2659
			) );
2660
			foreach ( $domains_to_check as $domain ) {
2661
				$result = Jetpack_Data::is_usable_domain( $domain );
2662
				if ( is_wp_error( $result ) ) {
2663
					return $result;
2664
				}
2665
			}
2666
		}
2667
2668
		$result = Jetpack::register();
2669
2670
		// If there was an error with registration and the site was not registered, record this so we can show a message.
2671
		if ( ! $result || is_wp_error( $result ) ) {
2672
			return $result;
2673
		} else {
2674
			return true;
2675
		}
2676
	}
2677
2678
	/**
2679
	 * Tracking an internal event log. Try not to put too much chaff in here.
2680
	 *
2681
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
2682
	 */
2683
	public static function log( $code, $data = null ) {
2684
		// only grab the latest 200 entries
2685
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
2686
2687
		// Append our event to the log
2688
		$log_entry = array(
2689
			'time'    => time(),
2690
			'user_id' => get_current_user_id(),
2691
			'blog_id' => Jetpack_Options::get_option( 'id' ),
2692
			'code'    => $code,
2693
		);
2694
		// Don't bother storing it unless we've got some.
2695
		if ( ! is_null( $data ) ) {
2696
			$log_entry['data'] = $data;
2697
		}
2698
		$log[] = $log_entry;
2699
2700
		// Try add_option first, to make sure it's not autoloaded.
2701
		// @todo: Add an add_option method to Jetpack_Options
2702
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
2703
			Jetpack_Options::update_option( 'log', $log );
2704
		}
2705
2706
		/**
2707
		 * Fires when Jetpack logs an internal event.
2708
		 *
2709
		 * @since 3.0.0
2710
		 *
2711
		 * @param array $log_entry {
2712
		 *	Array of details about the log entry.
2713
		 *
2714
		 *	@param string time Time of the event.
2715
		 *	@param int user_id ID of the user who trigerred the event.
2716
		 *	@param int blog_id Jetpack Blog ID.
2717
		 *	@param string code Unique name for the event.
2718
		 *	@param string data Data about the event.
2719
		 * }
2720
		 */
2721
		do_action( 'jetpack_log_entry', $log_entry );
2722
	}
2723
2724
	/**
2725
	 * Get the internal event log.
2726
	 *
2727
	 * @param $event (string) - only return the specific log events
2728
	 * @param $num   (int)    - get specific number of latest results, limited to 200
2729
	 *
2730
	 * @return array of log events || WP_Error for invalid params
2731
	 */
2732
	public static function get_log( $event = false, $num = false ) {
2733
		if ( $event && ! is_string( $event ) ) {
2734
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
2735
		}
2736
2737
		if ( $num && ! is_numeric( $num ) ) {
2738
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
2739
		}
2740
2741
		$entire_log = Jetpack_Options::get_option( 'log', array() );
2742
2743
		// If nothing set - act as it did before, otherwise let's start customizing the output
2744
		if ( ! $num && ! $event ) {
2745
			return $entire_log;
2746
		} else {
2747
			$entire_log = array_reverse( $entire_log );
2748
		}
2749
2750
		$custom_log_output = array();
2751
2752
		if ( $event ) {
2753
			foreach ( $entire_log as $log_event ) {
2754
				if ( $event == $log_event[ 'code' ] ) {
2755
					$custom_log_output[] = $log_event;
2756
				}
2757
			}
2758
		} else {
2759
			$custom_log_output = $entire_log;
2760
		}
2761
2762
		if ( $num ) {
2763
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
2764
		}
2765
2766
		return $custom_log_output;
2767
	}
2768
2769
	/**
2770
	 * Log modification of important settings.
2771
	 */
2772
	public static function log_settings_change( $option, $old_value, $value ) {
2773
		switch( $option ) {
2774
			case 'jetpack_sync_non_public_post_stati':
2775
				self::log( $option, $value );
2776
				break;
2777
		}
2778
	}
2779
2780
	/**
2781
	 * Return stat data for WPCOM sync
2782
	 */
2783
	function get_stat_data() {
2784
		$heartbeat_data = Jetpack_Heartbeat::generate_stats_array();
2785
		$additional_data = $this->get_additional_stat_data();
2786
2787
		return json_encode( array_merge( $heartbeat_data, $additional_data ) );
2788
	}
2789
2790
	/**
2791
	 * Get additional stat data to sync to WPCOM
2792
	 */
2793
	function get_additional_stat_data( $prefix = '' ) {
2794
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
2795
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
2796
		$return["{$prefix}users"]          = count_users();
2797
		$return["{$prefix}site-count"]     = 0;
2798
		if ( function_exists( 'get_blog_count' ) ) {
2799
			$return["{$prefix}site-count"] = get_blog_count();
2800
		}
2801
		return $return;
2802
	}
2803
2804
	/* Admin Pages */
2805
2806
	function admin_init() {
2807
		// If the plugin is not connected, display a connect message.
2808
		if (
2809
			// the plugin was auto-activated and needs its candy
2810
			Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' )
2811
		||
2812
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
2813
			! Jetpack_Options::get_option( 'activated' )
2814
		) {
2815
			Jetpack::plugin_initialize();
2816
		}
2817
2818
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
2819
			if ( 4 != Jetpack_Options::get_option( 'activated' ) ) {
2820
				// Show connect notice on dashboard and plugins pages
2821
				add_action( 'load-index.php', array( $this, 'prepare_connect_notice' ) );
2822
				add_action( 'load-plugins.php', array( $this, 'prepare_connect_notice' ) );
2823
			}
2824
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
2825
			// Upgrade: 1.1 -> 1.1.1
2826
			// Check and see if host can verify the Jetpack servers' SSL certificate
2827
			$args = array();
2828
			Jetpack_Client::_wp_remote_request(
2829
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
2830
				$args,
2831
				true
2832
			);
2833
		} else {
2834
			// Show the notice on the Dashboard only for now
2835
2836
			add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
2837
		}
2838
2839
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
2840
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
2841
		}
2842
2843
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
2844
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
2845
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
2846
2847
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
2848
			// Artificially throw errors in certain whitelisted cases during plugin activation
2849
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
2850
		}
2851
2852
		// Jetpack Manage Activation Screen from .com
2853
		Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
2854
2855
		// Add custom column in wp-admin/users.php to show whether user is linked.
2856
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
2857
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
2858
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
2859
	}
2860
2861
	function admin_body_class( $admin_body_class = '' ) {
2862
		$classes = explode( ' ', trim( $admin_body_class ) );
2863
2864
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
2865
2866
		$admin_body_class = implode( ' ', array_unique( $classes ) );
2867
		return " $admin_body_class ";
2868
	}
2869
2870
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
2871
		return $admin_body_class . ' jetpack-pagestyles ';
2872
	}
2873
2874
	function prepare_connect_notice() {
2875
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
2876
2877
		add_action( 'admin_notices', array( $this, 'admin_connect_notice' ) );
2878
2879
		if ( Jetpack::state( 'network_nag' ) )
2880
			add_action( 'network_admin_notices', array( $this, 'network_connect_notice' ) );
2881
	}
2882
	/**
2883
	 * Call this function if you want the Big Jetpack Manage Notice to show up.
2884
	 *
2885
	 * @return null
2886
	 */
2887
	function prepare_manage_jetpack_notice() {
2888
2889
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
2890
		add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) );
2891
	}
2892
2893
	function manage_activate_screen() {
2894
		include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' );
2895
	}
2896
	/**
2897
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
2898
	 * This function artificially throws errors for such cases (whitelisted).
2899
	 *
2900
	 * @param string $plugin The activated plugin.
2901
	 */
2902
	function throw_error_on_activate_plugin( $plugin ) {
2903
		$active_modules = Jetpack::get_active_modules();
2904
2905
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
2906
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
2907
			$throw = false;
2908
2909
			// Try and make sure it really was the stats plugin
2910
			if ( ! class_exists( 'ReflectionFunction' ) ) {
2911
				if ( 'stats.php' == basename( $plugin ) ) {
2912
					$throw = true;
2913
				}
2914
			} else {
2915
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
2916
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
2917
					$throw = true;
2918
				}
2919
			}
2920
2921
			if ( $throw ) {
2922
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
2923
			}
2924
		}
2925
	}
2926
2927
	function intercept_plugin_error_scrape_init() {
2928
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
2929
	}
2930
2931
	function intercept_plugin_error_scrape( $action, $result ) {
2932
		if ( ! $result ) {
2933
			return;
2934
		}
2935
2936
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
2937
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
2938
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
2939
			}
2940
		}
2941
	}
2942
2943
	function add_remote_request_handlers() {
2944
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
2945
	}
2946
2947
	function remote_request_handlers() {
2948
		switch ( current_filter() ) {
2949
		case 'wp_ajax_nopriv_jetpack_upload_file' :
2950
			$response = $this->upload_handler();
2951
			break;
2952
		default :
2953
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
2954
			break;
2955
		}
2956
2957
		if ( ! $response ) {
2958
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
2959
		}
2960
2961
		if ( is_wp_error( $response ) ) {
2962
			$status_code       = $response->get_error_data();
2963
			$error             = $response->get_error_code();
2964
			$error_description = $response->get_error_message();
2965
2966
			if ( ! is_int( $status_code ) ) {
2967
				$status_code = 400;
2968
			}
2969
2970
			status_header( $status_code );
2971
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
2972
		}
2973
2974
		status_header( 200 );
2975
		if ( true === $response ) {
2976
			exit;
2977
		}
2978
2979
		die( json_encode( (object) $response ) );
2980
	}
2981
2982
	function upload_handler() {
2983
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
2984
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
2985
		}
2986
2987
		$user = wp_authenticate( '', '' );
2988
		if ( ! $user || is_wp_error( $user ) ) {
2989
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
2990
		}
2991
2992
		wp_set_current_user( $user->ID );
2993
2994
		if ( ! current_user_can( 'upload_files' ) ) {
2995
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
2996
		}
2997
2998
		if ( empty( $_FILES ) ) {
2999
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3000
		}
3001
3002
		foreach ( array_keys( $_FILES ) as $files_key ) {
3003
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3004
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3005
			}
3006
		}
3007
3008
		$media_keys = array_keys( $_FILES['media'] );
3009
3010
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3011
		if ( ! $token || is_wp_error( $token ) ) {
3012
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3013
		}
3014
3015
		$uploaded_files = array();
3016
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3017
		unset( $GLOBALS['post'] );
3018
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3019
			$file = array();
3020
			foreach ( $media_keys as $media_key ) {
3021
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3022
			}
3023
3024
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3025
3026
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3027
			if ( $hmac_provided !== $hmac_file ) {
3028
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3029
				continue;
3030
			}
3031
3032
			$_FILES['.jetpack.upload.'] = $file;
3033
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3034
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3035
				$post_id = 0;
3036
			}
3037
			$attachment_id = media_handle_upload(
3038
				'.jetpack.upload.',
3039
				$post_id,
3040
				array(),
3041
				array(
3042
					'action' => 'jetpack_upload_file',
3043
				)
3044
			);
3045
3046
			if ( ! $attachment_id ) {
3047
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3048
			} elseif ( is_wp_error( $attachment_id ) ) {
3049
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3050
			} else {
3051
				$attachment = get_post( $attachment_id );
3052
				$uploaded_files[$index] = (object) array(
3053
					'id'   => (string) $attachment_id,
3054
					'file' => $attachment->post_title,
3055
					'url'  => wp_get_attachment_url( $attachment_id ),
3056
					'type' => $attachment->post_mime_type,
3057
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3058
				);
3059
			}
3060
		}
3061
		if ( ! is_null( $global_post ) ) {
3062
			$GLOBALS['post'] = $global_post;
3063
		}
3064
3065
		return $uploaded_files;
3066
	}
3067
3068
	/**
3069
	 * Add help to the Jetpack page
3070
	 *
3071
	 * @since Jetpack (1.2.3)
3072
	 * @return false if not the Jetpack page
3073
	 */
3074
	function admin_help() {
3075
		$current_screen = get_current_screen();
3076
3077
		// Overview
3078
		$current_screen->add_help_tab(
3079
			array(
3080
				'id'		=> 'home',
3081
				'title'		=> __( 'Home', 'jetpack' ),
3082
				'content'	=>
3083
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3084
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3085
					'<p>' . __( 'On this page, you are able to view the modules available within Jetpack, learn more about them, and activate or deactivate them as needed.', 'jetpack' ) . '</p>',
3086
			)
3087
		);
3088
3089
		// Screen Content
3090
		if ( current_user_can( 'manage_options' ) ) {
3091
			$current_screen->add_help_tab(
3092
				array(
3093
					'id'		=> 'settings',
3094
					'title'		=> __( 'Settings', 'jetpack' ),
3095
					'content'	=>
3096
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3097
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3098
						'<ol>' .
3099
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3100
							'<li>' . __( 'Using the checkboxes next to each module, you can select multiple modules to toggle via the Bulk Actions menu at the top of the list.',	'jetpack' ) . '</li>' .
3101
						'</ol>' .
3102
						'<p>' . __( 'Using the tools on the right, you can search for specific modules, filter by module categories or which are active, or change the sorting order.', 'jetpack' ) . '</p>'
3103
				)
3104
			);
3105
		}
3106
3107
		// Help Sidebar
3108
		$current_screen->set_help_sidebar(
3109
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3110
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3111
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3112
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3113
		);
3114
	}
3115
3116
	function admin_menu_css() {
3117
		wp_enqueue_style( 'jetpack-icons' );
3118
	}
3119
3120
	function admin_menu_order() {
3121
		return true;
3122
	}
3123
3124 View Code Duplication
	function jetpack_menu_order( $menu_order ) {
3125
		$jp_menu_order = array();
3126
3127
		foreach ( $menu_order as $index => $item ) {
3128
			if ( $item != 'jetpack' ) {
3129
				$jp_menu_order[] = $item;
3130
			}
3131
3132
			if ( $index == 0 ) {
3133
				$jp_menu_order[] = 'jetpack';
3134
			}
3135
		}
3136
3137
		return $jp_menu_order;
3138
	}
3139
3140
	function admin_head() {
3141 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3142
			/** This action is documented in class.jetpack-admin-page.php */
3143
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3144
	}
3145
3146 View Code Duplication
	function admin_banner_styles() {
3147
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3148
3149
		wp_enqueue_style( 'jetpack', plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-20121016' );
3150
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3151
		wp_style_add_data( 'jetpack', 'suffix', $min );
3152
	}
3153
3154
	function admin_scripts() {
3155
		wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', JETPACK__PLUGIN_FILE ), array( 'jquery', 'wp-util' ), JETPACK__VERSION . '-20121111' );
3156
		wp_localize_script(
3157
			'jetpack-js',
3158
			'jetpackL10n',
3159
			array(
3160
				'ays_disconnect' => "This will deactivate all Jetpack modules.\nAre you sure you want to disconnect?",
3161
				'ays_unlink'     => "This will prevent user-specific modules such as Publicize, Notifications and Post By Email from working.\nAre you sure you want to unlink?",
3162
				'ays_dismiss'    => "This will deactivate Jetpack.\nAre you sure you want to deactivate Jetpack?",
3163
			)
3164
		);
3165
		add_action( 'admin_footer', array( $this, 'do_stats' ) );
3166
	}
3167
3168
	function plugin_action_links( $actions ) {
3169
3170
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), __( 'Jetpack', 'jetpack' ) ) );
3171
3172
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3173
			return array_merge(
3174
				$jetpack_home,
3175
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack_modules' ), __( 'Settings', 'jetpack' ) ) ),
3176
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3177
				$actions
3178
				);
3179
			}
3180
3181
		return array_merge( $jetpack_home, $actions );
3182
	}
3183
3184
	function admin_connect_notice() {
3185
		// Don't show the connect notice anywhere but the plugins.php after activating
3186
		$current = get_current_screen();
3187
		if ( 'plugins' !== $current->parent_base )
3188
			return;
3189
3190
		if ( ! current_user_can( 'jetpack_connect' ) )
3191
			return;
3192
3193
		$dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' );
3194
		?>
3195
		<div id="message" class="updated jp-banner">
3196
			<a href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3197
			<?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?>
3198
					<div class="jp-banner__description-container">
3199
						<h2 class="jp-banner__header"><?php _e( 'Your Jetpack is almost ready!', 'jetpack' ); ?></h2>
3200
						<p class="jp-banner__description"><?php _e( 'Please connect to or create a WordPress.com account to enable Jetpack, including powerful security, traffic, and customization services.', 'jetpack' ); ?></p>
3201
						<p class="jp-banner__button-container">
3202
							<a href="<?php echo $this->build_connect_url( false, false, 'banner' ) ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Connect to WordPress.com', 'jetpack' ); ?></a>
3203
							<a href="<?php echo Jetpack::admin_url( 'admin.php?page=jetpack' ) ?>" class="button" title="<?php esc_attr_e( 'Learn about the benefits you receive when you connect Jetpack to WordPress.com', 'jetpack' ); ?>"><?php _e( 'Learn more', 'jetpack' ); ?></a>
3204
						</p>
3205
					</div>
3206
			<?php else : ?>
3207
				<div class="jp-banner__content">
3208
					<h2><?php _e( 'Jetpack is installed!', 'jetpack' ) ?></h2>
3209
					<p><?php _e( 'It\'s ready to bring awesome, WordPress.com cloud-powered features to your site.', 'jetpack' ) ?></p>
3210
				</div>
3211
				<div class="jp-banner__action-container">
3212
					<a href="<?php echo Jetpack::admin_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Learn More', 'jetpack' ); ?></a>
3213
				</div>
3214
			<?php endif; ?>
3215
		</div>
3216
3217
		<?php
3218
	}
3219
3220
	/**
3221
	 * This is the first banner
3222
	 * It should be visible only to user that can update the option
3223
	 * Are not connected
3224
	 *
3225
	 * @return null
3226
	 */
3227
	function admin_jetpack_manage_notice() {
3228
		$screen = get_current_screen();
3229
3230
		// Don't show the connect notice on the jetpack settings page.
3231
		if ( ! in_array( $screen->base, array( 'dashboard' ) ) || $screen->is_network || $screen->action )
3232
			return;
3233
3234
		// Only show it if don't have the managment option set.
3235
		// And not dismissed it already.
3236
		if ( ! $this->can_display_jetpack_manage_notice() || Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) {
3237
			return;
3238
		}
3239
3240
		$opt_out_url = $this->opt_out_jetpack_manage_url();
3241
		$opt_in_url  = $this->opt_in_jetpack_manage_url();
3242
		/**
3243
		 * I think it would be great to have different wordsing depending on where you are
3244
		 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen
3245
		 * etc..
3246
		 */
3247
3248
		?>
3249
		<div id="message" class="updated jp-banner">
3250
				<a href="<?php echo esc_url( $opt_out_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3251
				<div class="jp-banner__description-container">
3252
					<h2 class="jp-banner__header"><?php esc_html_e( 'Jetpack Centralized Site Management', 'jetpack' ); ?></h2>
3253
					<p class="jp-banner__description"><?php printf( __( 'Manage multiple Jetpack enabled sites from one single dashboard at wordpress.com. Allows all existing, connected Administrators to modify your site.', 'jetpack' ), 'https://jetpack.com/support/site-management' ); ?></p>
3254
					<p class="jp-banner__button-container">
3255
						<a href="<?php echo esc_url( $opt_in_url ); ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Activate Jetpack Manage', 'jetpack' ); ?></a>
3256
						<a href="https://jetpack.com/support/site-management" class="button" target="_blank" title="<?php esc_attr_e( 'Learn more about Jetpack Manage on Jetpack.com', 'jetpack' ); ?>"><?php _e( 'Learn more', 'jetpack' ); ?></a>
3257
					</p>
3258
				</div>
3259
		</div>
3260
		<?php
3261
	}
3262
3263
	/**
3264
	 * Returns the url that the user clicks to remove the notice for the big banner
3265
	 * @return (string)
3266
	 */
3267
	function opt_out_jetpack_manage_url() {
3268
		$referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null );
3269
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' );
3270
	}
3271
	/**
3272
	 * Returns the url that the user clicks to opt in to Jetpack Manage
3273
	 * @return (string)
3274
	 */
3275
	function opt_in_jetpack_manage_url() {
3276
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' );
3277
	}
3278
3279
	function opt_in_jetpack_manage_notice() {
3280
		?>
3281
		<div class="wrap">
3282
			<div id="message" class="jetpack-message is-opt-in">
3283
				<?php echo sprintf( __( '<p><a href="%1$s" title="Opt in to WordPress.com Site Management" >Activate Site Management</a> to manage multiple sites from our centralized dashboard at wordpress.com/sites. <a href="%2$s" target="_blank">Learn more</a>.</p><a href="%1$s" class="jp-button">Activate Now</a>', 'jetpack' ), $this->opt_in_jetpack_manage_url(), 'https://jetpack.com/support/site-management' ); ?>
3284
			</div>
3285
		</div>
3286
		<?php
3287
3288
	}
3289
	/**
3290
	 * Determines whether to show the notice of not true = display notice
3291
	 * @return (bool)
3292
	 */
3293
	function can_display_jetpack_manage_notice() {
3294
		// never display the notice to users that can't do anything about it anyways
3295
		if( ! current_user_can( 'jetpack_manage_modules' ) )
3296
			return false;
3297
3298
		// don't display if we are in development more
3299
		if( Jetpack::is_development_mode() ) {
3300
			return false;
3301
		}
3302
		// don't display if the site is private
3303
		if(  ! Jetpack_Options::get_option( 'public' ) )
3304
			return false;
3305
3306
		/**
3307
		 * Should the Jetpack Remote Site Management notice be displayed.
3308
		 *
3309
		 * @since 3.3.0
3310
		 *
3311
		 * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
3312
		 */
3313
		return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
3314
	}
3315
3316
	function network_connect_notice() {
3317
		?>
3318
		<div id="message" class="updated jetpack-message">
3319
			<div class="squeezer">
3320
				<h2><?php _e( '<strong>Jetpack is activated!</strong> Each site on your network must be connected individually by an admin on that site.', 'jetpack' ) ?></h2>
3321
			</div>
3322
		</div>
3323
		<?php
3324
	}
3325
3326
	/*
3327
	 * Registration flow:
3328
	 * 1 - ::admin_page_load() action=register
3329
	 * 2 - ::try_registration()
3330
	 * 3 - ::register()
3331
	 *     - Creates jetpack_register option containing two secrets and a timestamp
3332
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
3333
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
3334
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
3335
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
3336
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
3337
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
3338
	 *       jetpack_id, jetpack_secret, jetpack_public
3339
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
3340
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
3341
	 * 5 - user logs in with WP.com account
3342
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
3343
	 *		- Jetpack_Client_Server::authorize()
3344
	 *		- Jetpack_Client_Server::get_token()
3345
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
3346
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
3347
	 *			- which responds with access_token, token_type, scope
3348
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
3349
	 *		- Jetpack::activate_default_modules()
3350
	 *     		- Deactivates deprecated plugins
3351
	 *     		- Activates all default modules
3352
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
3353
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
3354
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
3355
	 *     Done!
3356
	 */
3357
3358
	/**
3359
	 * Handles the page load events for the Jetpack admin page
3360
	 */
3361
	function admin_page_load() {
3362
		$error = false;
3363
3364
		// Make sure we have the right body class to hook stylings for subpages off of.
3365
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
3366
3367
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
3368
			// Should only be used in intermediate redirects to preserve state across redirects
3369
			Jetpack::restate();
3370
		}
3371
3372
		if ( isset( $_GET['connect_url_redirect'] ) ) {
3373
			// User clicked in the iframe to link their accounts
3374
			if ( ! Jetpack::is_user_connected() ) {
3375
				$connect_url = $this->build_connect_url( true, false, 'iframe' );
3376
				if ( isset( $_GET['notes_iframe'] ) )
3377
					$connect_url .= '&notes_iframe';
3378
				wp_redirect( $connect_url );
3379
				exit;
3380
			} else {
3381
				if ( ! isset( $_GET['calypso_env'] ) ) {
3382
					Jetpack::state( 'message', 'already_authorized' );
3383
					wp_safe_redirect( Jetpack::admin_url() );
3384
				} else {
3385
					$connect_url = $this->build_connect_url( true, false, 'iframe' );
3386
					$connect_url .= '&already_authorized=true';
3387
					wp_redirect( $connect_url );
3388
				}
3389
			}
3390
		}
3391
3392
3393
		if ( isset( $_GET['action'] ) ) {
3394
			switch ( $_GET['action'] ) {
3395
			case 'authorize':
3396
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
3397
					Jetpack::state( 'message', 'already_authorized' );
3398
					wp_safe_redirect( Jetpack::admin_url() );
3399
					exit;
3400
				}
3401
				Jetpack::log( 'authorize' );
3402
				$client_server = new Jetpack_Client_Server;
3403
				$client_server->client_authorize();
3404
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

An exit expression should only be used in rare cases. For example, if you write a short command line script.

In most cases however, using an exit expression makes the code untestable and often causes incompatibilities with other libraries. Thus, unless you are absolutely sure it is required here, we recommend to refactor your code to avoid its usage.

Loading history...
3405
			case 'register' :
3406
				if ( ! current_user_can( 'jetpack_connect' ) ) {
3407
					$error = 'cheatin';
3408
					break;
3409
				}
3410
				check_admin_referer( 'jetpack-register' );
3411
				Jetpack::log( 'register' );
3412
				Jetpack::maybe_set_version_option();
3413
				$registered = Jetpack::try_registration();
3414
				if ( is_wp_error( $registered ) ) {
3415
					$error = $registered->get_error_code();
3416
					Jetpack::state( 'error_description', $error );
3417
					Jetpack::state( 'error_description', $registered->get_error_message() );
3418
					break;
3419
				}
3420
3421
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
3422
3423
				wp_redirect( $this->build_connect_url( true, false, $from ) );
3424
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

An exit expression should only be used in rare cases. For example, if you write a short command line script.

In most cases however, using an exit expression makes the code untestable and often causes incompatibilities with other libraries. Thus, unless you are absolutely sure it is required here, we recommend to refactor your code to avoid its usage.

Loading history...
3425
			case 'activate' :
3426
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
3427
					$error = 'cheatin';
3428
					break;
3429
				}
3430
3431
				$module = stripslashes( $_GET['module'] );
3432
				check_admin_referer( "jetpack_activate-$module" );
3433
				Jetpack::log( 'activate', $module );
3434
				Jetpack::activate_module( $module );
3435
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
3436
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3437
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

An exit expression should only be used in rare cases. For example, if you write a short command line script.

In most cases however, using an exit expression makes the code untestable and often causes incompatibilities with other libraries. Thus, unless you are absolutely sure it is required here, we recommend to refactor your code to avoid its usage.

Loading history...
3438
			case 'activate_default_modules' :
3439
				check_admin_referer( 'activate_default_modules' );
3440
				Jetpack::log( 'activate_default_modules' );
3441
				Jetpack::restate();
3442
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
3443
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
3444
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
3445
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
3446
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3447
				exit;
3448
			case 'disconnect' :
3449
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
3450
					$error = 'cheatin';
3451
					break;
3452
				}
3453
3454
				check_admin_referer( 'jetpack-disconnect' );
3455
				Jetpack::log( 'disconnect' );
3456
				Jetpack::disconnect();
3457
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
3458
				exit;
3459
			case 'reconnect' :
3460
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
3461
					$error = 'cheatin';
3462
					break;
3463
				}
3464
3465
				check_admin_referer( 'jetpack-reconnect' );
3466
				Jetpack::log( 'reconnect' );
3467
				$this->disconnect();
3468
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
3469
				exit;
3470 View Code Duplication
			case 'deactivate' :
3471
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
3472
					$error = 'cheatin';
3473
					break;
3474
				}
3475
3476
				$modules = stripslashes( $_GET['module'] );
3477
				check_admin_referer( "jetpack_deactivate-$modules" );
3478
				foreach ( explode( ',', $modules ) as $module ) {
3479
					Jetpack::log( 'deactivate', $module );
3480
					Jetpack::deactivate_module( $module );
3481
					Jetpack::state( 'message', 'module_deactivated' );
3482
				}
3483
				Jetpack::state( 'module', $modules );
3484
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3485
				exit;
3486
			case 'unlink' :
3487
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
3488
				check_admin_referer( 'jetpack-unlink' );
3489
				Jetpack::log( 'unlink' );
3490
				$this->unlink_user();
3491
				Jetpack::state( 'message', 'unlinked' );
3492
				if ( 'sub-unlink' == $redirect ) {
3493
					wp_safe_redirect( admin_url() );
3494
				} else {
3495
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
3496
				}
3497
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

An exit expression should only be used in rare cases. For example, if you write a short command line script.

In most cases however, using an exit expression makes the code untestable and often causes incompatibilities with other libraries. Thus, unless you are absolutely sure it is required here, we recommend to refactor your code to avoid its usage.

Loading history...
3498
			default:
3499
				/**
3500
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
3501
				 *
3502
				 * @since 2.6.0
3503
				 *
3504
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
3505
				 */
3506
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3507
			}
3508
		}
3509
3510
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
3511
			self::activate_new_modules( true );
3512
		}
3513
3514
		$message_code = Jetpack::state( 'message' );
3515
		if ( Jetpack::state( 'optin-manage' ) ) {
3516
			$activated_manage = $message_code;
3517
			$message_code = 'jetpack-manage';
3518
		}
3519
3520
		switch ( $message_code ) {
3521
		case 'jetpack-manage':
3522
			$this->message = '<strong>' . sprintf( __( 'You are all set! Your site can now be managed from <a href="%s" target="_blank">wordpress.com/sites</a>.', 'jetpack' ), 'https://wordpress.com/sites' ) . '</strong>';
3523
			if ( $activated_manage ) {
3524
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
3525
			}
3526
			break;
3527
3528
		}
3529
3530
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
3531
3532
		if ( ! empty( $deactivated_plugins ) ) {
3533
			$deactivated_plugins = explode( ',', $deactivated_plugins );
3534
			$deactivated_titles  = array();
3535
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
3536
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
3537
					continue;
3538
				}
3539
3540
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
3541
			}
3542
3543
			if ( $deactivated_titles ) {
3544
				if ( $this->message ) {
3545
					$this->message .= "<br /><br />\n";
3546
				}
3547
3548
				$this->message .= wp_sprintf(
3549
					_n(
3550
						'Jetpack contains the most recent version of the old %l plugin.',
3551
						'Jetpack contains the most recent versions of the old %l plugins.',
3552
						count( $deactivated_titles ),
3553
						'jetpack'
3554
					),
3555
					$deactivated_titles
3556
				);
3557
3558
				$this->message .= "<br />\n";
3559
3560
				$this->message .= _n(
3561
					'The old version has been deactivated and can be removed from your site.',
3562
					'The old versions have been deactivated and can be removed from your site.',
3563
					count( $deactivated_titles ),
3564
					'jetpack'
3565
				);
3566
			}
3567
		}
3568
3569
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
3570
3571
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
3572
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
3573
		}
3574
3575 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3576
			/**
3577
			 * Fires when a module configuration page is loaded.
3578
			 * The dynamic part of the hook is the configure parameter from the URL.
3579
			 *
3580
			 * @since 1.1.0
3581
			 */
3582
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3583
		}
3584
3585
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
3586
	}
3587
3588
	function admin_notices() {
3589
3590
		if ( $this->error ) {
3591
?>
3592
<div id="message" class="jetpack-message jetpack-err">
3593
	<div class="squeezer">
3594
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
3595
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
3596
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
3597
<?php	endif; ?>
3598
	</div>
3599
</div>
3600
<?php
3601
		}
3602
3603
		if ( $this->message ) {
3604
?>
3605
<div id="message" class="jetpack-message">
3606
	<div class="squeezer">
3607
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
3608
	</div>
3609
</div>
3610
<?php
3611
		}
3612
3613
		if ( $this->privacy_checks ) :
3614
			$module_names = $module_slugs = array();
3615
3616
			$privacy_checks = explode( ',', $this->privacy_checks );
3617
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
3618
			foreach ( $privacy_checks as $module_slug ) {
3619
				$module = Jetpack::get_module( $module_slug );
3620
				if ( ! $module ) {
3621
					continue;
3622
				}
3623
3624
				$module_slugs[] = $module_slug;
3625
				$module_names[] = "<strong>{$module['name']}</strong>";
3626
			}
3627
3628
			$module_slugs = join( ',', $module_slugs );
3629
?>
3630
<div id="message" class="jetpack-message jetpack-err">
3631
	<div class="squeezer">
3632
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
3633
		<p><?php
3634
			echo wp_kses(
3635
				wptexturize(
3636
					wp_sprintf(
3637
						_nx(
3638
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
3639
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
3640
							count( $privacy_checks ),
3641
							'%l = list of Jetpack module/feature names',
3642
							'jetpack'
3643
						),
3644
						$module_names
3645
					)
3646
				),
3647
				array( 'strong' => true )
3648
			);
3649
3650
			echo "\n<br />\n";
3651
3652
			echo wp_kses(
3653
				sprintf(
3654
					_nx(
3655
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
3656
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
3657
						count( $privacy_checks ),
3658
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
3659
						'jetpack'
3660
					),
3661
					wp_nonce_url(
3662
						Jetpack::admin_url(
3663
							array(
3664
								'page'   => 'jetpack',
3665
								'action' => 'deactivate',
3666
								'module' => urlencode( $module_slugs ),
3667
							)
3668
						),
3669
						"jetpack_deactivate-$module_slugs"
3670
					),
3671
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
3672
				),
3673
				array( 'a' => array( 'href' => true, 'title' => true ) )
3674
			);
3675
		?></p>
3676
	</div>
3677
</div>
3678
<?php endif;
3679
	// only display the notice if the other stuff is not there
3680
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
3681
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
3682
			$this->opt_in_jetpack_manage_notice();
3683
		}
3684
	}
3685
3686
	/**
3687
	 * Record a stat for later output.  This will only currently output in the admin_footer.
3688
	 */
3689
	function stat( $group, $detail ) {
3690
		if ( ! isset( $this->stats[ $group ] ) )
3691
			$this->stats[ $group ] = array();
3692
		$this->stats[ $group ][] = $detail;
3693
	}
3694
3695
	/**
3696
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
3697
	 */
3698
	function do_stats( $method = '' ) {
3699
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
3700
			foreach ( $this->stats as $group => $stats ) {
3701
				if ( is_array( $stats ) && count( $stats ) ) {
3702
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
3703
					if ( 'server_side' === $method ) {
3704
						self::do_server_side_stat( $args );
3705
					} else {
3706
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
3707
					}
3708
				}
3709
				unset( $this->stats[ $group ] );
3710
			}
3711
		}
3712
	}
3713
3714
	/**
3715
	 * Runs stats code for a one-off, server-side.
3716
	 *
3717
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
3718
	 *
3719
	 * @return bool If it worked.
3720
	 */
3721
	static function do_server_side_stat( $args ) {
3722
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
3723
		if ( is_wp_error( $response ) )
3724
			return false;
3725
3726
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
3727
			return false;
3728
3729
		return true;
3730
	}
3731
3732
	/**
3733
	 * Builds the stats url.
3734
	 *
3735
	 * @param $args array|string The arguments to append to the URL.
3736
	 *
3737
	 * @return string The URL to be pinged.
3738
	 */
3739
	static function build_stats_url( $args ) {
3740
		$defaults = array(
3741
			'v'    => 'wpcom2',
3742
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
3743
		);
3744
		$args     = wp_parse_args( $args, $defaults );
3745
		/**
3746
		 * Filter the URL used as the Stats tracking pixel.
3747
		 *
3748
		 * @since 2.3.2
3749
		 *
3750
		 * @param string $url Base URL used as the Stats tracking pixel.
3751
		 */
3752
		$base_url = apply_filters(
3753
			'jetpack_stats_base_url',
3754
			'https://pixel.wp.com/g.gif'
3755
		);
3756
		$url      = add_query_arg( $args, $base_url );
3757
		return $url;
3758
	}
3759
3760
	static function translate_current_user_to_role() {
3761
		foreach ( self::$capability_translations as $role => $cap ) {
3762
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
3763
				return $role;
3764
			}
3765
		}
3766
3767
		return false;
3768
	}
3769
3770
	static function translate_role_to_cap( $role ) {
3771
		if ( ! isset( self::$capability_translations[$role] ) ) {
3772
			return false;
3773
		}
3774
3775
		return self::$capability_translations[$role];
3776
	}
3777
3778
	static function sign_role( $role ) {
3779
		if ( ! $user_id = (int) get_current_user_id() ) {
3780
			return false;
3781
		}
3782
3783
		$token = Jetpack_Data::get_access_token();
3784
		if ( ! $token || is_wp_error( $token ) ) {
3785
			return false;
3786
		}
3787
3788
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
3789
	}
3790
3791
3792
	/**
3793
	 * Builds a URL to the Jetpack connection auth page
3794
	 *
3795
	 * @since 3.9.5
3796
	 *
3797
	 * @param bool $raw If true, URL will not be escaped.
3798
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
3799
	 *                              If string, will be a custom redirect.
3800
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
3801
	 *
3802
	 * @return string Connect URL
3803
	 */
3804
	function build_connect_url( $raw = false, $redirect = false, $from = false ) {
3805
		if ( ! Jetpack_Options::get_option( 'blog_token' ) || ! Jetpack_Options::get_option( 'id' ) ) {
3806
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
3807
			if( is_network_admin() ) {
3808
			    $url = add_query_arg( 'is_multisite', network_admin_url(
3809
			    'admin.php?page=jetpack-settings' ), $url );
3810
			}
3811
		} else {
3812
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
3813
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
3814
			}
3815
3816
			$role = self::translate_current_user_to_role();
3817
			$signed_role = self::sign_role( $role );
3818
3819
			$user = wp_get_current_user();
3820
3821
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
3822
			$redirect = $redirect
3823
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
3824
				: $jetpack_admin_page;
3825
3826
			if( isset( $_REQUEST['is_multisite'] ) ) {
3827
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
3828
			}
3829
3830
			$secrets = Jetpack::init()->generate_secrets( 'authorize' );
3831
			@list( $secret ) = explode( ':', $secrets );
3832
3833
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
3834
				? get_site_icon_url()
3835
				: false;
3836
3837
			$args = urlencode_deep(
3838
				array(
3839
					'response_type' => 'code',
3840
					'client_id'     => Jetpack_Options::get_option( 'id' ),
3841
					'redirect_uri'  => add_query_arg(
3842
						array(
3843
							'action'   => 'authorize',
3844
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
3845
							'redirect' => urlencode( $redirect ),
3846
						),
3847
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
3848
					),
3849
					'state'         => $user->ID,
3850
					'scope'         => $signed_role,
3851
					'user_email'    => $user->user_email,
3852
					'user_login'    => $user->user_login,
3853
					'is_active'     => Jetpack::is_active(),
3854
					'jp_version'    => JETPACK__VERSION,
3855
					'auth_type'     => 'calypso',
3856
					'secret'        => $secret,
3857
					'locale'        => isset( $gp_locale->slug ) ? $gp_locale->slug : '',
3858
					'blogname'      => get_option( 'blogname' ),
3859
					'site_url'      => site_url(),
3860
					'home_url'      => home_url(),
3861
					'site_icon'     => $site_icon,
3862
				)
3863
			);
3864
3865
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
3866
		}
3867
3868
		if ( $from ) {
3869
			$url = add_query_arg( 'from', $from, $url );
3870
		}
3871
3872
		if ( isset( $_GET['calypso_env'] ) ) {
3873
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
3874
		}
3875
3876
		return $raw ? $url : esc_url( $url );
3877
	}
3878
3879
	function build_reconnect_url( $raw = false ) {
3880
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
3881
		return $raw ? $url : esc_url( $url );
3882
	}
3883
3884
	public static function admin_url( $args = null ) {
3885
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
3886
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
3887
		return $url;
3888
	}
3889
3890
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
3891
		$actionurl = str_replace( '&amp;', '&', $actionurl );
3892
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
3893
	}
3894
3895
	function dismiss_jetpack_notice() {
3896
3897
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
3898
			return;
3899
		}
3900
3901
		switch( $_GET['jetpack-notice'] ) {
3902
			case 'dismiss':
3903
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
3904
3905
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
3906
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
3907
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
3908
				}
3909
				break;
3910 View Code Duplication
			case 'jetpack-manage-opt-out':
3911
3912
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
3913
					// Don't show the banner again
3914
3915
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
3916
					// redirect back to the page that had the notice
3917
					if ( wp_get_referer() ) {
3918
						wp_safe_redirect( wp_get_referer() );
3919
					} else {
3920
						// Take me to Jetpack
3921
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3922
					}
3923
				}
3924
				break;
3925 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
3926
3927
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
3928
					// Don't show the banner again
3929
3930
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
3931
					// redirect back to the page that had the notice
3932
					if ( wp_get_referer() ) {
3933
						wp_safe_redirect( wp_get_referer() );
3934
					} else {
3935
						// Take me to Jetpack
3936
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3937
					}
3938
				}
3939
				break;
3940
			case 'jetpack-manage-opt-in':
3941
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
3942
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
3943
3944
					$redirection_url = Jetpack::admin_url();
3945
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3946
3947
					// Don't redirect form the Jetpack Setting Page
3948
					$referer_parsed = parse_url ( wp_get_referer() );
3949
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
3950
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
3951
						// Take the user to Jetpack home except when on the setting page
3952
						$redirection_url = wp_get_referer();
3953
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3954
					}
3955
					// Also update the JSON API FULL MANAGEMENT Option
3956
					Jetpack::activate_module( 'manage', false, false );
3957
3958
					// Special Message when option in.
3959
					Jetpack::state( 'optin-manage', 'true' );
3960
					// Activate the Module if not activated already
3961
3962
					// Redirect properly
3963
					wp_safe_redirect( $redirection_url );
3964
3965
				}
3966
				break;
3967
		}
3968
	}
3969
3970
	function debugger_page() {
3971
		nocache_headers();
3972
		if ( ! current_user_can( 'manage_options' ) ) {
3973
			die( '-1' );
3974
		}
3975
		Jetpack_Debugger::jetpack_debug_display_handler();
3976
		exit;
3977
	}
3978
3979
	public static function admin_screen_configure_module( $module_id ) {
3980
3981
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
3982
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
3983
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
3984
				/**
3985
				 * Fires to diplay a custom module activation screen.
3986
				 *
3987
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
3988
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
3989
				 *
3990
				 * @module manage
3991
				 *
3992
				 * @since 3.8.0
3993
				 *
3994
				 * @param int $module_id Module ID.
3995
				 */
3996
				do_action( 'display_activate_module_setting_' . $module_id );
3997
			} else {
3998
				self::display_activate_module_link( $module_id );
3999
			}
4000
4001
			return false;
4002
		} ?>
4003
4004
		<div id="jp-settings-screen" style="position: relative">
4005
			<h3>
4006
			<?php
4007
				$module = Jetpack::get_module( $module_id );
4008
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4009
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4010
			?>
4011
			</h3>
4012
			<?php
4013
				/**
4014
				 * Fires within the displayed message when a feature configuation is updated.
4015
				 *
4016
				 * @since 3.4.0
4017
				 *
4018
				 * @param int $module_id Module ID.
4019
				 */
4020
				do_action( 'jetpack_notices_update_settings', $module_id );
4021
				/**
4022
				 * Fires when a feature configuation screen is loaded.
4023
				 * The dynamic part of the hook, $module_id, is the module ID.
4024
				 *
4025
				 * @since 1.1.0
4026
				 */
4027
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4028
			?>
4029
		</div><?php
4030
	}
4031
4032
	/**
4033
	 * Display link to activate the module to see the settings screen.
4034
	 * @param  string $module_id
4035
	 * @return null
4036
	 */
4037
	public static function display_activate_module_link( $module_id ) {
4038
4039
		$info =  Jetpack::get_module( $module_id );
4040
		$extra = '';
4041
		$activate_url = wp_nonce_url(
4042
				Jetpack::admin_url(
4043
					array(
4044
						'page'   => 'jetpack',
4045
						'action' => 'activate',
4046
						'module' => $module_id,
4047
					)
4048
				),
4049
				"jetpack_activate-$module_id"
4050
			);
4051
4052
		?>
4053
4054
		<div class="wrap configure-module">
4055
			<div id="jp-settings-screen">
4056
				<?php
4057
				if ( $module_id == 'json-api' ) {
4058
4059
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4060
4061
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4062
4063
					$info['description'] = sprintf( __( 'Manage your multiple Jetpack sites from our centralized dashboard at wordpress.com/sites. <a href="%s" target="_blank">Learn more</a>.', 'jetpack' ), 'https://jetpack.com/support/site-management' );
4064
4065
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4066
				} ?>
4067
4068
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4069
				<div class="narrow">
4070
					<p><?php echo  $info['description']; ?></p>
4071
					<?php if( $extra ) { ?>
4072
					<p><?php echo esc_html( $extra ); ?></p>
4073
					<?php } ?>
4074
					<p>
4075
						<?php
4076
						if( wp_get_referer() ) {
4077
							printf( __( '<a class="button-primary" href="%s">Activate Now</a> or <a href="%s" >return to previous page</a>.', 'jetpack' ) , $activate_url, wp_get_referer() );
4078
						} else {
4079
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4080
						} ?>
4081
					</p>
4082
				</div>
4083
4084
			</div>
4085
		</div>
4086
4087
		<?php
4088
	}
4089
4090
	public static function sort_modules( $a, $b ) {
4091
		if ( $a['sort'] == $b['sort'] )
4092
			return 0;
4093
4094
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4095
	}
4096
4097
	function ajax_recheck_ssl() {
4098
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4099
		$result = Jetpack::permit_ssl( true );
4100
		wp_send_json( array(
4101
			'enabled' => $result,
4102
			'message' => get_transient( 'jetpack_https_test_message' )
4103
		) );
4104
	}
4105
4106
/* Client API */
4107
4108
	/**
4109
	 * Returns the requested Jetpack API URL
4110
	 *
4111
	 * @return string
4112
	 */
4113
	public static function api_url( $relative_url ) {
4114
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4115
	}
4116
4117
	/**
4118
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4119
	 */
4120
	public static function fix_url_for_bad_hosts( $url ) {
4121
		if ( 0 !== strpos( $url, 'https://' ) ) {
4122
			return $url;
4123
		}
4124
4125
		switch ( JETPACK_CLIENT__HTTPS ) {
4126
			case 'ALWAYS' :
4127
				return $url;
4128
			case 'NEVER' :
4129
				return set_url_scheme( $url, 'http' );
4130
			// default : case 'AUTO' :
4131
		}
4132
4133
		// we now return the unmodified SSL URL by default, as a security precaution
4134
		return $url;
4135
	}
4136
4137
	/**
4138
	 * Checks to see if the URL is using SSL to connect with Jetpack
4139
	 *
4140
	 * @since 2.3.3
4141
	 * @return boolean
4142
	 */
4143
	public static function permit_ssl( $force_recheck = false ) {
4144
		// Do some fancy tests to see if ssl is being supported
4145
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4146
			$message = '';
4147
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4148
				$ssl = 0;
4149
			} else {
4150
				switch ( JETPACK_CLIENT__HTTPS ) {
4151
					case 'NEVER':
4152
						$ssl = 0;
4153
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4154
						break;
4155
					case 'ALWAYS':
4156
					case 'AUTO':
4157
					default:
4158
						$ssl = 1;
4159
						break;
4160
				}
4161
4162
				// If it's not 'NEVER', test to see
4163
				if ( $ssl ) {
4164
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4165
						$ssl = 0;
4166
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4167
					} else {
4168
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4169
						if ( is_wp_error( $response ) ) {
4170
							$ssl = 0;
4171
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4172
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4173
							$ssl = 0;
4174
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4175
						}
4176
					}
4177
				}
4178
			}
4179
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4180
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4181
		}
4182
4183
		return (bool) $ssl;
4184
	}
4185
4186
	/*
4187
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4188
	 */
4189
	public function alert_auto_ssl_fail() {
4190
		if ( ! current_user_can( 'manage_options' ) )
4191
			return;
4192
4193
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4194
		?>
4195
4196
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4197
			<div class="jp-banner__content">
4198
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4199
				<p><?php _e( 'Your site could not connect to WordPress.com via HTTPS. This could be due to any number of reasons, including faulty SSL certificates, misconfigured or missing SSL libraries, or network issues.', 'jetpack' ); ?></p>
4200
				<p>
4201
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4202
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4203
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4204
				</p>
4205
				<p>
4206
					<?php printf( __( 'For more help, try our <a href="%1$s">connection debugger</a> or <a href="%2$s" target="_blank">troubleshooting tips</a>.', 'jetpack' ),
4207
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4208
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4209
				</p>
4210
			</div>
4211
		</div>
4212
		<style>
4213
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4214
		</style>
4215
		<script type="text/javascript">
4216
			jQuery( document ).ready( function( $ ) {
4217
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4218
					var $this = $( this );
4219
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4220
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4221
					e.preventDefault();
4222
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4223
					$.post( ajaxurl, data )
4224
					  .done( function( response ) {
4225
					  	if ( response.enabled ) {
4226
					  		$( '#jetpack-ssl-warning' ).hide();
4227
					  	} else {
4228
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4229
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4230
					  	}
4231
					  }.bind( $this ) );
4232
				} );
4233
			} );
4234
		</script>
4235
4236
		<?php
4237
	}
4238
4239
	/**
4240
	 * Returns the Jetpack XML-RPC API
4241
	 *
4242
	 * @return string
4243
	 */
4244
	public static function xmlrpc_api_url() {
4245
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4246
		return untrailingslashit( $base ) . '/xmlrpc.php';
4247
	}
4248
4249
	/**
4250
	 * Creates two secret tokens and the end of life timestamp for them.
4251
	 *
4252
	 * Note these tokens are unique per call, NOT static per site for connecting.
4253
	 *
4254
	 * @since 2.6
4255
	 * @return array
4256
	 */
4257
	public function generate_secrets( $action, $exp = 600 ) {
4258
	    $secret = wp_generate_password( 32, false ) // secret_1
4259
	    		. ':' . wp_generate_password( 32, false ) // secret_2
4260
	    		. ':' . ( time() + $exp ) // eol ( End of Life )
4261
	    		. ':' . get_current_user_id(); // ties the secrets to the current user
4262
		Jetpack_Options::update_option( $action, $secret );
4263
	    return Jetpack_Options::get_option( $action );
4264
	}
4265
4266
	/**
4267
	 * Builds the timeout limit for queries talking with the wpcom servers.
4268
	 *
4269
	 * Based on local php max_execution_time in php.ini
4270
	 *
4271
	 * @since 2.6
4272
	 * @return int
4273
	 **/
4274
	public function get_remote_query_timeout_limit() {
4275
	    $timeout = (int) ini_get( 'max_execution_time' );
4276
	    if ( ! $timeout ) // Ensure exec time set in php.ini
4277
		$timeout = 30;
4278
	    return intval( $timeout / 2 );
4279
	}
4280
4281
4282
	/**
4283
	 * Takes the response from the Jetpack register new site endpoint and
4284
	 * verifies it worked properly.
4285
	 *
4286
	 * @since 2.6
4287
	 * @return true or Jetpack_Error
4288
	 **/
4289
	public function validate_remote_register_response( $response ) {
4290
	    	if ( is_wp_error( $response ) ) {
4291
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
4292
		}
4293
4294
		$code   = wp_remote_retrieve_response_code( $response );
4295
		$entity = wp_remote_retrieve_body( $response );
4296
		if ( $entity )
4297
			$json = json_decode( $entity );
4298
		else
4299
			$json = false;
4300
4301
		$code_type = intval( $code / 100 );
4302
		if ( 5 == $code_type ) {
4303
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4304
		} elseif ( 408 == $code ) {
4305
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4306
		} elseif ( ! empty( $json->error ) ) {
4307
			$error_description = isset( $json->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $json->error_description ) : '';
4308
			return new Jetpack_Error( (string) $json->error, $error_description, $code );
4309
		} elseif ( 200 != $code ) {
4310
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4311
		}
4312
4313
		// Jetpack ID error block
4314
		if ( empty( $json->jetpack_id ) ) {
4315
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
4316
		} elseif ( ! is_scalar( $json->jetpack_id ) ) {
4317
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is not a scalar. Do not publicly post this error message! %s', 'jetpack' ) , $entity ), $entity );
4318
		} elseif ( preg_match( '/[^0-9]/', $json->jetpack_id ) ) {
4319
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID begins with a numeral. Do not publicly post this error message! %s', 'jetpack' ) , $entity ), $entity );
4320
		}
4321
4322
	    return true;
4323
	}
4324
	/**
4325
	 * @return bool|WP_Error
4326
	 */
4327
	public static function register() {
4328
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4329
		$secrets = Jetpack::init()->generate_secrets( 'register' );
4330
4331
		@list( $secret_1, $secret_2, $secret_eol ) = explode( ':', $secrets );
4332 View Code Duplication
		if ( empty( $secret_1 ) || empty( $secret_2 ) || empty( $secret_eol ) || $secret_eol < time() ) {
4333
			return new Jetpack_Error( 'missing_secrets' );
4334
		}
4335
4336
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4337
4338
		$gmt_offset = get_option( 'gmt_offset' );
4339
		if ( ! $gmt_offset ) {
4340
			$gmt_offset = 0;
4341
		}
4342
4343
		$stats_options = get_option( 'stats_options' );
4344
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
4345
4346
		$args = array(
4347
			'method'  => 'POST',
4348
			'body'    => array(
4349
				'siteurl'         => site_url(),
4350
				'home'            => home_url(),
4351
				'gmt_offset'      => $gmt_offset,
4352
				'timezone_string' => (string) get_option( 'timezone_string' ),
4353
				'site_name'       => (string) get_option( 'blogname' ),
4354
				'secret_1'        => $secret_1,
4355
				'secret_2'        => $secret_2,
4356
				'site_lang'       => get_locale(),
4357
				'timeout'         => $timeout,
4358
				'stats_id'        => $stats_id,
4359
				'state'           => get_current_user_id(),
4360
			),
4361
			'headers' => array(
4362
				'Accept' => 'application/json',
4363
			),
4364
			'timeout' => $timeout,
4365
		);
4366
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
4367
4368
4369
		// Make sure the response is valid and does not contain any Jetpack errors
4370
		$valid_response = Jetpack::init()->validate_remote_register_response( $response );
4371
		if( is_wp_error( $valid_response ) || !$valid_response ) {
4372
		    return $valid_response;
4373
		}
4374
4375
		// Grab the response values to work with
4376
		$code   = wp_remote_retrieve_response_code( $response );
4377
		$entity = wp_remote_retrieve_body( $response );
4378
4379
		if ( $entity )
4380
			$json = json_decode( $entity );
4381
		else
4382
			$json = false;
4383
4384 View Code Duplication
		if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) )
4385
			return new Jetpack_Error( 'jetpack_secret', '', $code );
4386
4387
		if ( isset( $json->jetpack_public ) ) {
4388
			$jetpack_public = (int) $json->jetpack_public;
4389
		} else {
4390
			$jetpack_public = false;
4391
		}
4392
4393
		Jetpack_Options::update_options(
4394
			array(
4395
				'id'         => (int)    $json->jetpack_id,
4396
				'blog_token' => (string) $json->jetpack_secret,
4397
				'public'     => $jetpack_public,
4398
			)
4399
		);
4400
4401
		/**
4402
		 * Fires when a site is registered on WordPress.com.
4403
		 *
4404
		 * @since 3.7.0
4405
		 *
4406
		 * @param int $json->jetpack_id Jetpack Blog ID.
4407
		 * @param string $json->jetpack_secret Jetpack Blog Token.
4408
		 * @param int|bool $jetpack_public Is the site public.
4409
		 */
4410
		do_action( 'jetpack_site_registered', $json->jetpack_id, $json->jetpack_secret, $jetpack_public );
4411
4412
		// Initialize Jump Start for the first and only time.
4413
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4414
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
4415
4416
			$jetpack = Jetpack::init();
4417
4418
			$jetpack->stat( 'jumpstart', 'unique-views' );
4419
			$jetpack->do_stats( 'server_side' );
4420
		};
4421
4422
		return true;
4423
	}
4424
4425
	/**
4426
	 * If the db version is showing something other that what we've got now, bump it to current.
4427
	 *
4428
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
4429
	 */
4430
	public static function maybe_set_version_option() {
4431
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
4432
		if ( JETPACK__VERSION != $version ) {
4433
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
4434
4435
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
4436
				/** This action is documented in class.jetpack.php */
4437
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
4438
			}
4439
4440
			return true;
4441
		}
4442
		return false;
4443
	}
4444
4445
/* Client Server API */
4446
4447
	/**
4448
	 * Loads the Jetpack XML-RPC client
4449
	 */
4450
	public static function load_xml_rpc_client() {
4451
		require_once ABSPATH . WPINC . '/class-IXR.php';
4452
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
4453
	}
4454
4455
	function verify_xml_rpc_signature() {
4456
		if ( $this->xmlrpc_verification ) {
4457
			return $this->xmlrpc_verification;
4458
		}
4459
4460
		// It's not for us
4461
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
4462
			return false;
4463
		}
4464
4465
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
4466
		if (
4467
			empty( $token_key )
4468
		||
4469
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
4470
		) {
4471
			return false;
4472
		}
4473
4474
		if ( '0' === $user_id ) {
4475
			$token_type = 'blog';
4476
			$user_id = 0;
4477
		} else {
4478
			$token_type = 'user';
4479
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
4480
				return false;
4481
			}
4482
			$user_id = (int) $user_id;
4483
4484
			$user = new WP_User( $user_id );
4485
			if ( ! $user || ! $user->exists() ) {
4486
				return false;
4487
			}
4488
		}
4489
4490
		$token = Jetpack_Data::get_access_token( $user_id );
4491
		if ( ! $token ) {
4492
			return false;
4493
		}
4494
4495
		$token_check = "$token_key.";
4496
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
4497
			return false;
4498
		}
4499
4500
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4501
4502
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4503
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
4504
			$post_data   = $_POST;
4505
			$file_hashes = array();
4506
			foreach ( $post_data as $post_data_key => $post_data_value ) {
4507
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
4508
					continue;
4509
				}
4510
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
4511
				$file_hashes[$post_data_key] = $post_data_value;
4512
			}
4513
4514
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
4515
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
4516
				$post_data[$post_data_key] = $post_data_value;
4517
			}
4518
4519
			ksort( $post_data );
4520
4521
			$body = http_build_query( stripslashes_deep( $post_data ) );
4522
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
4523
			$body = file_get_contents( 'php://input' );
4524
		} else {
4525
			$body = null;
4526
		}
4527
		$signature = $jetpack_signature->sign_current_request(
4528
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
4529
		);
4530
4531
		if ( ! $signature ) {
4532
			return false;
4533
		} else if ( is_wp_error( $signature ) ) {
4534
			return $signature;
4535
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4536
			return false;
4537
		}
4538
4539
		$timestamp = (int) $_GET['timestamp'];
4540
		$nonce     = stripslashes( (string) $_GET['nonce'] );
4541
4542
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
4543
			return false;
4544
		}
4545
4546
		$this->xmlrpc_verification = array(
4547
			'type'    => $token_type,
4548
			'user_id' => $token->external_user_id,
4549
		);
4550
4551
		return $this->xmlrpc_verification;
4552
	}
4553
4554
	/**
4555
	 * Authenticates XML-RPC and other requests from the Jetpack Server
4556
	 */
4557
	function authenticate_jetpack( $user, $username, $password ) {
4558
		if ( is_a( $user, 'WP_User' ) ) {
4559
			return $user;
4560
		}
4561
4562
		$token_details = $this->verify_xml_rpc_signature();
4563
4564
		if ( ! $token_details || is_wp_error( $token_details ) ) {
4565
			return $user;
4566
		}
4567
4568
		if ( 'user' !== $token_details['type'] ) {
4569
			return $user;
4570
		}
4571
4572
		if ( ! $token_details['user_id'] ) {
4573
			return $user;
4574
		}
4575
4576
		nocache_headers();
4577
4578
		return new WP_User( $token_details['user_id'] );
4579
	}
4580
4581
	function add_nonce( $timestamp, $nonce ) {
4582
		global $wpdb;
4583
		static $nonces_used_this_request = array();
4584
4585
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
4586
			return $nonces_used_this_request["$timestamp:$nonce"];
4587
		}
4588
4589
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
4590
		$timestamp = (int) $timestamp;
4591
		$nonce     = esc_sql( $nonce );
4592
4593
		// Raw query so we can avoid races: add_option will also update
4594
		$show_errors = $wpdb->show_errors( false );
4595
4596
		$old_nonce = $wpdb->get_row(
4597
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
4598
		);
4599
4600
		if ( is_null( $old_nonce ) ) {
4601
			$return = $wpdb->query(
4602
				$wpdb->prepare(
4603
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
4604
					"jetpack_nonce_{$timestamp}_{$nonce}",
4605
					time(),
4606
					'no'
4607
				)
4608
			);
4609
		} else {
4610
			$return = false;
4611
		}
4612
4613
		$wpdb->show_errors( $show_errors );
4614
4615
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
4616
4617
		return $return;
4618
	}
4619
4620
	/**
4621
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
4622
	 * Capture it here so we can verify the signature later.
4623
	 */
4624
	function xmlrpc_methods( $methods ) {
4625
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
4626
		return $methods;
4627
	}
4628
4629
	function public_xmlrpc_methods( $methods ) {
4630
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
4631
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
4632
		}
4633
		return $methods;
4634
	}
4635
4636
	function jetpack_getOptions( $args ) {
4637
		global $wp_xmlrpc_server;
4638
4639
		$wp_xmlrpc_server->escape( $args );
4640
4641
		$username	= $args[1];
4642
		$password	= $args[2];
4643
4644
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
4645
			return $wp_xmlrpc_server->error;
4646
		}
4647
4648
		$options = array();
4649
		$user_data = $this->get_connected_user_data();
4650
		if ( is_array( $user_data ) ) {
4651
			$options['jetpack_user_id'] = array(
4652
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
4653
				'readonly'      => true,
4654
				'value'         => $user_data['ID'],
4655
			);
4656
			$options['jetpack_user_login'] = array(
4657
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
4658
				'readonly'      => true,
4659
				'value'         => $user_data['login'],
4660
			);
4661
			$options['jetpack_user_email'] = array(
4662
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
4663
				'readonly'      => true,
4664
				'value'         => $user_data['email'],
4665
			);
4666
			$options['jetpack_user_site_count'] = array(
4667
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
4668
				'readonly'      => true,
4669
				'value'         => $user_data['site_count'],
4670
			);
4671
		}
4672
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
4673
		$args = stripslashes_deep( $args );
4674
		return $wp_xmlrpc_server->wp_getOptions( $args );
4675
	}
4676
4677
	function xmlrpc_options( $options ) {
4678
		$jetpack_client_id = false;
4679
		if ( self::is_active() ) {
4680
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
4681
		}
4682
		$options['jetpack_version'] = array(
4683
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
4684
				'readonly'      => true,
4685
				'value'         => JETPACK__VERSION,
4686
		);
4687
4688
		$options['jetpack_client_id'] = array(
4689
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
4690
				'readonly'      => true,
4691
				'value'         => $jetpack_client_id,
4692
		);
4693
		return $options;
4694
	}
4695
4696
	public static function clean_nonces( $all = false ) {
4697
		global $wpdb;
4698
4699
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
4700
		if ( method_exists ( $wpdb , 'esc_like' ) ) {
4701
			$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
4702
		} else {
4703
			$sql_args = array( like_escape( 'jetpack_nonce_' ) . '%' );
4704
		}
4705
4706
		if ( true !== $all ) {
4707
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
4708
			$sql_args[] = time() - 3600;
4709
		}
4710
4711
		$sql .= ' ORDER BY `option_id` LIMIT 100';
4712
4713
		$sql = $wpdb->prepare( $sql, $sql_args );
4714
4715
		for ( $i = 0; $i < 1000; $i++ ) {
4716
			if ( ! $wpdb->query( $sql ) ) {
4717
				break;
4718
			}
4719
		}
4720
	}
4721
4722
	/**
4723
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
4724
	 * SET: state( $key, $value );
4725
	 * GET: $value = state( $key );
4726
	 *
4727
	 * @param string $key
4728
	 * @param string $value
4729
	 * @param bool $restate private
4730
	 */
4731
	public static function state( $key = null, $value = null, $restate = false ) {
4732
		static $state = array();
4733
		static $path, $domain;
4734
		if ( ! isset( $path ) ) {
4735
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
4736
			$admin_url = Jetpack::admin_url();
4737
			$bits      = parse_url( $admin_url );
4738
4739
			if ( is_array( $bits ) ) {
4740
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
4741
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
4742
			} else {
4743
				$path = $domain = null;
4744
			}
4745
		}
4746
4747
		// Extract state from cookies and delete cookies
4748
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
4749
			$yum = $_COOKIE[ 'jetpackState' ];
4750
			unset( $_COOKIE[ 'jetpackState' ] );
4751
			foreach ( $yum as $k => $v ) {
4752
				if ( strlen( $v ) )
4753
					$state[ $k ] = $v;
4754
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
4755
			}
4756
		}
4757
4758
		if ( $restate ) {
4759
			foreach ( $state as $k => $v ) {
4760
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
4761
			}
4762
			return;
4763
		}
4764
4765
		// Get a state variable
4766
		if ( isset( $key ) && ! isset( $value ) ) {
4767
			if ( array_key_exists( $key, $state ) )
4768
				return $state[ $key ];
4769
			return null;
4770
		}
4771
4772
		// Set a state variable
4773
		if ( isset ( $key ) && isset( $value ) ) {
4774
			if( is_array( $value ) && isset( $value[0] ) ) {
4775
				$value = $value[0];
4776
			}
4777
			$state[ $key ] = $value;
4778
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
4779
		}
4780
	}
4781
4782
	public static function restate() {
4783
		Jetpack::state( null, null, true );
4784
	}
4785
4786
	public static function check_privacy( $file ) {
4787
		static $is_site_publicly_accessible = null;
4788
4789
		if ( is_null( $is_site_publicly_accessible ) ) {
4790
			$is_site_publicly_accessible = false;
4791
4792
			Jetpack::load_xml_rpc_client();
4793
			$rpc = new Jetpack_IXR_Client();
4794
4795
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
4796
			if ( $success ) {
4797
				$response = $rpc->getResponse();
4798
				if ( $response ) {
4799
					$is_site_publicly_accessible = true;
4800
				}
4801
			}
4802
4803
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
4804
		}
4805
4806
		if ( $is_site_publicly_accessible ) {
4807
			return;
4808
		}
4809
4810
		$module_slug = self::get_module_slug( $file );
4811
4812
		$privacy_checks = Jetpack::state( 'privacy_checks' );
4813
		if ( ! $privacy_checks ) {
4814
			$privacy_checks = $module_slug;
4815
		} else {
4816
			$privacy_checks .= ",$module_slug";
4817
		}
4818
4819
		Jetpack::state( 'privacy_checks', $privacy_checks );
4820
	}
4821
4822
	/**
4823
	 * Helper method for multicall XMLRPC.
4824
	 */
4825
	public static function xmlrpc_async_call() {
4826
		global $blog_id;
4827
		static $clients = array();
4828
4829
		$client_blog_id = is_multisite() ? $blog_id : 0;
4830
4831
		if ( ! isset( $clients[$client_blog_id] ) ) {
4832
			Jetpack::load_xml_rpc_client();
4833
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
4834
			if ( function_exists( 'ignore_user_abort' ) ) {
4835
				ignore_user_abort( true );
4836
			}
4837
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
4838
		}
4839
4840
		$args = func_get_args();
4841
4842
		if ( ! empty( $args[0] ) ) {
4843
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
4844
		} elseif ( is_multisite() ) {
4845
			foreach ( $clients as $client_blog_id => $client ) {
4846
				if ( ! $client_blog_id || empty( $client->calls ) ) {
4847
					continue;
4848
				}
4849
4850
				$switch_success = switch_to_blog( $client_blog_id, true );
4851
				if ( ! $switch_success ) {
4852
					continue;
4853
				}
4854
4855
				flush();
4856
				$client->query();
4857
4858
				restore_current_blog();
4859
			}
4860
		} else {
4861
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
4862
				flush();
4863
				$clients[0]->query();
4864
			}
4865
		}
4866
	}
4867
4868
	public static function staticize_subdomain( $url ) {
4869
4870
		// Extract hostname from URL
4871
		$host = parse_url( $url, PHP_URL_HOST );
4872
4873
		// Explode hostname on '.'
4874
		$exploded_host = explode( '.', $host );
4875
4876
		// Retrieve the name and TLD
4877
		if ( count( $exploded_host ) > 1 ) {
4878
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
4879
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
4880
			// Rebuild domain excluding subdomains
4881
			$domain = $name . '.' . $tld;
4882
		} else {
4883
			$domain = $host;
4884
		}
4885
		// Array of Automattic domains
4886
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
4887
4888
		// Return $url if not an Automattic domain
4889
		if ( ! in_array( $domain, $domain_whitelist ) ) {
4890
			return $url;
4891
		}
4892
4893
		if ( is_ssl() ) {
4894
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
4895
		}
4896
4897
		srand( crc32( basename( $url ) ) );
4898
		$static_counter = rand( 0, 2 );
4899
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
4900
4901
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
4902
	}
4903
4904
/* JSON API Authorization */
4905
4906
	/**
4907
	 * Handles the login action for Authorizing the JSON API
4908
	 */
4909
	function login_form_json_api_authorization() {
4910
		$this->verify_json_api_authorization_request();
4911
4912
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
4913
4914
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
4915
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
4916
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
4917
	}
4918
4919
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
4920
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
4921
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
4922
			return $url;
4923
		}
4924
4925
		$parsed_url = parse_url( $url );
4926
		$url = strtok( $url, '?' );
4927
		$url = "$url?{$_SERVER['QUERY_STRING']}";
4928
		if ( ! empty( $parsed_url['query'] ) )
4929
			$url .= "&{$parsed_url['query']}";
4930
4931
		return $url;
4932
	}
4933
4934
	// Make sure the POSTed request is handled by the same action
4935
	function preserve_action_in_login_form_for_json_api_authorization() {
4936
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
4937
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
4938
	}
4939
4940
	// If someone logs in to approve API access, store the Access Code in usermeta
4941
	function store_json_api_authorization_token( $user_login, $user ) {
4942
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
4943
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
4944
		$token = wp_generate_password( 32, false );
4945
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
4946
	}
4947
4948
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
4949
	function allow_wpcom_public_api_domain( $domains ) {
4950
		$domains[] = 'public-api.wordpress.com';
4951
		return $domains;
4952
	}
4953
4954
	// Add the Access Code details to the public-api.wordpress.com redirect
4955
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
4956
		return add_query_arg(
4957
			urlencode_deep(
4958
				array(
4959
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
4960
					'jetpack-user-id' => (int) $user->ID,
4961
					'jetpack-state'   => $this->json_api_authorization_request['state'],
4962
				)
4963
			),
4964
			$redirect_to
4965
		);
4966
	}
4967
4968
	// Verifies the request by checking the signature
4969
	function verify_json_api_authorization_request() {
4970
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4971
4972
		$token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
4973
		if ( ! $token || empty( $token->secret ) ) {
4974
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
4975
		}
4976
4977
		$die_error = __( 'Someone may be trying to trick you into giving them access to your site.  Or it could be you just encountered a bug :).  Either way, please close this window.', 'jetpack' );
4978
4979
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4980
4981
		if ( isset( $_POST['jetpack_json_api_original_query'] ) ) {
4982
			$signature = $jetpack_signature->sign_request( $_GET['token'], $_GET['timestamp'], $_GET['nonce'], '', 'GET', $_POST['jetpack_json_api_original_query'], null, true );
4983
		} else {
4984
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
4985
		}
4986
4987
		if ( ! $signature ) {
4988
			wp_die( $die_error );
4989
		} else if ( is_wp_error( $signature ) ) {
4990
			wp_die( $die_error );
4991
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4992
			if ( is_ssl() ) {
4993
				// If we signed an HTTP request on the Jetpack Servers, but got redirected to HTTPS by the local blog, check the HTTP signature as well
4994
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
4995
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $_GET['signature'] ) ) {
4996
					wp_die( $die_error );
4997
				}
4998
			} else {
4999
				wp_die( $die_error );
5000
			}
5001
		}
5002
5003
		$timestamp = (int) $_GET['timestamp'];
5004
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5005
5006
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5007
			// De-nonce the nonce, at least for 5 minutes.
5008
			// We have to reuse this nonce at least once (used the first time when the initial request is made, used a second time when the login form is POSTed)
5009
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5010
			if ( $old_nonce_time < time() - 300 ) {
5011
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
5012
			}
5013
		}
5014
5015
		$data = json_decode( base64_decode( stripslashes( $_GET['data'] ) ) );
5016
		$data_filters = array(
5017
			'state'        => 'opaque',
5018
			'client_id'    => 'int',
5019
			'client_title' => 'string',
5020
			'client_image' => 'url',
5021
		);
5022
5023
		foreach ( $data_filters as $key => $sanitation ) {
5024
			if ( ! isset( $data->$key ) ) {
5025
				wp_die( $die_error );
5026
			}
5027
5028
			switch ( $sanitation ) {
5029
			case 'int' :
5030
				$this->json_api_authorization_request[$key] = (int) $data->$key;
5031
				break;
5032
			case 'opaque' :
5033
				$this->json_api_authorization_request[$key] = (string) $data->$key;
5034
				break;
5035
			case 'string' :
5036
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
5037
				break;
5038
			case 'url' :
5039
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
5040
				break;
5041
			}
5042
		}
5043
5044
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5045
			wp_die( $die_error );
5046
		}
5047
	}
5048
5049
	function login_message_json_api_authorization( $message ) {
5050
		return '<p class="message">' . sprintf(
5051
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
5052
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5053
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5054
	}
5055
5056
	/**
5057
	 * Get $content_width, but with a <s>twist</s> filter.
5058
	 */
5059
	public static function get_content_width() {
5060
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5061
		/**
5062
		 * Filter the Content Width value.
5063
		 *
5064
		 * @since 2.2.3
5065
		 *
5066
		 * @param string $content_width Content Width value.
5067
		 */
5068
		return apply_filters( 'jetpack_content_width', $content_width );
5069
	}
5070
5071
	/**
5072
	 * Centralize the function here until it gets added to core.
5073
	 *
5074
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
5075
	 * @param int $size Size of the avatar image
5076
	 * @param string $default URL to a default image to use if no avatar is available
5077
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
5078
	 *
5079
	 * @return array First element is the URL, second is the class.
5080
	 */
5081
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
5082
		// Don't bother adding the __return_true filter if it's already there.
5083
		$has_filter = has_filter( 'pre_option_show_avatars', '__return_true' );
5084
5085
		if ( $force_display && ! $has_filter )
5086
			add_filter( 'pre_option_show_avatars', '__return_true' );
5087
5088
		$avatar = get_avatar( $id_or_email, $size, $default );
5089
5090
		if ( $force_display && ! $has_filter )
5091
			remove_filter( 'pre_option_show_avatars', '__return_true' );
5092
5093
		// If no data, fail out.
5094
		if ( is_wp_error( $avatar ) || ! $avatar )
5095
			return array( null, null );
5096
5097
		// Pull out the URL.  If it's not there, fail out.
5098
		if ( ! preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $url_matches ) )
5099
			return array( null, null );
5100
		$url = wp_specialchars_decode( $url_matches[1], ENT_QUOTES );
5101
5102
		// Pull out the class, but it's not a big deal if it's missing.
5103
		$class = '';
5104
		if ( preg_match( '/class=["\']([^"\']+)["\']/', $avatar, $class_matches ) )
5105
			$class = wp_specialchars_decode( $class_matches[1], ENT_QUOTES );
5106
5107
		return array( $url, $class );
5108
	}
5109
5110
	/**
5111
	 * Pings the WordPress.com Mirror Site for the specified options.
5112
	 *
5113
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
5114
	 *
5115
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
5116
	 */
5117
	public function get_cloud_site_options( $option_names ) {
5118
		$option_names = array_filter( (array) $option_names, 'is_string' );
5119
5120
		Jetpack::load_xml_rpc_client();
5121
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5122
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
5123
		if ( $xml->isError() ) {
5124
			return array(
5125
				'error_code' => $xml->getErrorCode(),
5126
				'error_msg'  => $xml->getErrorMessage(),
5127
			);
5128
		}
5129
		$cloud_site_options = $xml->getResponse();
5130
5131
		return $cloud_site_options;
5132
	}
5133
5134
	/**
5135
	 * Fetch the filtered array of options that we should compare to determine an identity crisis.
5136
	 *
5137
	 * @return array An array of options to check.
5138
	 */
5139
	public static function identity_crisis_options_to_check() {
5140
		return array(
5141
			'siteurl',
5142
			'home',
5143
		);
5144
	}
5145
5146
	/**
5147
	 * Checks to make sure that local options have the same values as remote options.  Will cache the results for up to 24 hours.
5148
	 *
5149
	 * @param bool $force_recheck Whether to ignore any cached transient and manually re-check.
5150
	 *
5151
	 * @return array An array of options that do not match.  If everything is good, it will evaluate to false.
5152
	 */
5153
	public static function check_identity_crisis( $force_recheck = false ) {
5154
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || Jetpack::is_staging_site() )
5155
			return false;
5156
5157
		if ( $force_recheck || false === ( $errors = get_transient( 'jetpack_has_identity_crisis' ) ) ) {
5158
			$options_to_check = self::identity_crisis_options_to_check();
5159
			$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5160
			$errors        = array();
5161
5162
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5163
5164
				// If it's not the same as the local value...
5165
				if ( $cloud_value !== get_option( $cloud_key ) ) {
5166
5167
					// Break out if we're getting errors.  We are going to check the error keys later when we alert.
5168
					if ( 'error_code' == $cloud_key ) {
5169
						$errors[ $cloud_key ] = $cloud_value;
5170
						break;
5171
					}
5172
5173
					$parsed_cloud_value = parse_url( $cloud_value );
5174
					// If the current options is an IP address
5175
					if ( filter_var( $parsed_cloud_value['host'], FILTER_VALIDATE_IP ) ) {
5176
						// Give the new value a Jetpack to fly in to the clouds
5177
						Jetpack::resolve_identity_crisis( $cloud_key );
5178
						continue;
5179
					}
5180
5181
					// And it's not been added to the whitelist...
5182
					if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5183
						/*
5184
						 * This should be a temporary hack until a cleaner solution is found.
5185
						 *
5186
						 * The siteurl and home can be set to use http in General > Settings
5187
						 * however some constants can be defined that can force https in wp-admin
5188
						 * when this happens wpcom can confuse wporg with a fake identity
5189
						 * crisis with a mismatch of http vs https when it should be allowed.
5190
						 * we need to check that here.
5191
						 *
5192
						 * @see https://github.com/Automattic/jetpack/issues/1006
5193
						 */
5194
						if ( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5195
							&& ( substr( $cloud_value, 0, 8 ) == "https://" )
5196
							&& Jetpack::init()->is_ssl_required_to_visit_site() ) {
5197
							// Ok, we found a mismatch of http and https because of wp-config, not an invalid url
5198
							continue;
5199
						}
5200
5201
5202
						// Then kick an error!
5203
						$errors[ $cloud_key ] = $cloud_value;
5204
					}
5205
				}
5206
			}
5207
		}
5208
5209
		/**
5210
		 * Filters the errors returned when checking for an Identity Crisis.
5211
		 *
5212
		 * @since 2.3.2
5213
		 *
5214
		 * @param array $errors Array of Identity Crisis errors.
5215
		 * @param bool $force_recheck Ignore any cached transient and manually re-check. Default to false.
5216
		 */
5217
		return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5218
	}
5219
5220
	/*
5221
	 * Resolve ID crisis
5222
	 *
5223
	 * If the URL has changed, but the rest of the options are the same (i.e. blog/user tokens)
5224
	 * The user has the option to update the shadow site with the new URL before a new
5225
	 * token is created.
5226
	 *
5227
	 * @param $key : Which option to sync.  null defautlts to home and siteurl
5228
	 */
5229
	public static function resolve_identity_crisis( $key = null ) {
5230
		if ( $key ) {
5231
			$identity_options = array( $key );
5232
		} else {
5233
			$identity_options = self::identity_crisis_options_to_check();
5234
		}
5235
5236
		if ( is_array( $identity_options ) ) {
5237
			foreach( $identity_options as $identity_option ) {
5238
				/**
5239
				 * Fires when a shadow site option is updated.
5240
				 * These options are updated via the Identity Crisis UI.
5241
				 * $identity_option is the option that gets updated.
5242
				 *
5243
				 * @since 3.7.0
5244
				 */
5245
				do_action( "update_option_{$identity_option}" );
5246
			}
5247
		}
5248
	}
5249
5250
	/*
5251
	 * Whitelist URL
5252
	 *
5253
	 * Ignore the URL differences between the blog and the shadow site.
5254
	 */
5255
	public static function whitelist_current_url() {
5256
		$options_to_check = Jetpack::identity_crisis_options_to_check();
5257
		$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5258
5259
		foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5260
			Jetpack::whitelist_identity_crisis_value( $cloud_key, $cloud_value );
5261
		}
5262
	}
5263
5264
	/*
5265
	 * Ajax callbacks for ID crisis resolutions
5266
	 *
5267
	 * Things that could happen here:
5268
	 *  - site_migrated : Update the URL on the shadow blog to match new domain
5269
	 *  - whitelist     : Ignore the URL difference
5270
	 *  - default       : Error message
5271
	 */
5272
	public static function resolve_identity_crisis_ajax_callback() {
5273
		check_ajax_referer( 'resolve-identity-crisis', 'ajax-nonce' );
5274
5275
		switch ( $_POST[ 'crisis_resolution_action' ] ) {
5276
			case 'site_migrated':
5277
				Jetpack::resolve_identity_crisis();
5278
				echo 'resolved';
5279
				break;
5280
5281
			case 'whitelist':
5282
				Jetpack::whitelist_current_url();
5283
				echo 'whitelisted';
5284
				break;
5285
5286
			case 'reset_connection':
5287
				// Delete the options first so it doesn't get confused which site to disconnect dotcom-side
5288
				Jetpack_Options::delete_option(
5289
					array(
5290
						'register',
5291
						'blog_token',
5292
						'user_token',
5293
						'user_tokens',
5294
						'master_user',
5295
						'time_diff',
5296
						'fallback_no_verify_ssl_certs',
5297
						'id',
5298
					)
5299
				);
5300
				delete_transient( 'jetpack_has_identity_crisis' );
5301
5302
				echo 'reset-connection-success';
5303
				break;
5304
5305
			default:
5306
				echo 'missing action';
5307
				break;
5308
		}
5309
5310
		wp_die();
5311
	}
5312
5313
	/**
5314
	 * Adds a value to the whitelist for the specified key.
5315
	 *
5316
	 * @param string $key The option name that we're whitelisting the value for.
5317
	 * @param string $value The value that we're intending to add to the whitelist.
5318
	 *
5319
	 * @return bool Whether the value was added to the whitelist, or false if it was already there.
5320
	 */
5321
	public static function whitelist_identity_crisis_value( $key, $value ) {
5322
		if ( Jetpack::is_identity_crisis_value_whitelisted( $key, $value ) ) {
5323
			return false;
5324
		}
5325
5326
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5327
		if ( empty( $whitelist[ $key ] ) || ! is_array( $whitelist[ $key ] ) ) {
5328
			$whitelist[ $key ] = array();
5329
		}
5330
		array_push( $whitelist[ $key ], $value );
5331
5332
		Jetpack_Options::update_option( 'identity_crisis_whitelist', $whitelist );
5333
		return true;
5334
	}
5335
5336
	/**
5337
	 * Checks whether a value is already whitelisted.
5338
	 *
5339
	 * @param string $key The option name that we're checking the value for.
5340
	 * @param string $value The value that we're curious to see if it's on the whitelist.
5341
	 *
5342
	 * @return bool Whether the value is whitelisted.
5343
	 */
5344
	public static function is_identity_crisis_value_whitelisted( $key, $value ) {
5345
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5346
		if ( ! empty( $whitelist[ $key ] ) && is_array( $whitelist[ $key ] ) && in_array( $value, $whitelist[ $key ] ) ) {
5347
			return true;
5348
		}
5349
		return false;
5350
	}
5351
5352
	/**
5353
	 * Checks whether the home and siteurl specifically are whitelisted
5354
	 * Written so that we don't have re-check $key and $value params every time
5355
	 * we want to check if this site is whitelisted, for example in footer.php
5356
	 *
5357
	 * @return bool True = already whitelisted False = not whitelisted
5358
	 */
5359
	public static function is_staging_site() {
5360
		$is_staging = false;
5361
5362
		$current_whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist' );
5363
		if ( $current_whitelist && ! get_transient( 'jetpack_checked_is_staging' ) ) {
5364
			$options_to_check  = Jetpack::identity_crisis_options_to_check();
5365
			$cloud_options     = Jetpack::init()->get_cloud_site_options( $options_to_check );
5366
5367
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5368
				if ( self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5369
					$is_staging = true;
5370
					break;
5371
				}
5372
			}
5373
			// set a flag so we don't check again for an hour
5374
			set_transient( 'jetpack_checked_is_staging', 1, HOUR_IN_SECONDS );
5375
		}
5376
		$known_staging = array(
5377
			'urls' => array(
5378
				'#\.staging\.wpengine\.com$#i', // WP Engine
5379
				),
5380
			'constants' => array(
5381
				'IS_WPE_SNAPSHOT',      // WP Engine
5382
				'KINSTA_DEV_ENV',       // Kinsta.com
5383
				'WPSTAGECOACH_STAGING', // WP Stagecoach
5384
				'JETPACK_STAGING_MODE', // Generic
5385
				)
5386
			);
5387
		/**
5388
		 * Filters the flags of known staging sites.
5389
		 *
5390
		 * @since 3.9.0
5391
		 *
5392
		 * @param array $known_staging {
5393
		 *     An array of arrays that each are used to check if the current site is staging.
5394
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
5395
		 *     @type array $constants PHP constants of known staging/developement environments.
5396
		 *  }
5397
		 */
5398
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
5399
5400
		if ( isset( $known_staging['urls'] ) ) {
5401
			foreach ( $known_staging['urls'] as $url ){
5402
				if ( preg_match( $url, site_url() ) ) {
5403
					$is_staging = true;
5404
					break;
5405
				}
5406
			}
5407
		}
5408
5409
		if ( isset( $known_staging['constants'] ) ) {
5410
			foreach ( $known_staging['constants'] as $constant ) {
5411
				if ( defined( $constant ) && constant( $constant ) ) {
5412
					$is_staging = true;
5413
				}
5414
			}
5415
		}
5416
5417
		/**
5418
		 * Filters is_staging_site check.
5419
		 *
5420
		 * @since 3.9.0
5421
		 *
5422
		 * @param bool $is_staging If the current site is a staging site.
5423
		 */
5424
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
5425
	}
5426
5427
	public function identity_crisis_js( $nonce ) {
5428
?>
5429
<script>
5430
(function( $ ) {
5431
	var SECOND_IN_MS = 1000;
5432
5433
	function contactSupport( e ) {
5434
		e.preventDefault();
5435
		$( '.jp-id-crisis-question' ).hide();
5436
		$( '#jp-id-crisis-contact-support' ).show();
5437
	}
5438
5439
	function autodismissSuccessBanner() {
5440
		$( '.jp-identity-crisis' ).fadeOut(600); //.addClass( 'dismiss' );
5441
	}
5442
5443
	var data = { action: 'jetpack_resolve_identity_crisis', 'ajax-nonce': '<?php echo $nonce; ?>' };
5444
5445
	$( document ).ready(function() {
5446
5447
		// Site moved: Update the URL on the shadow blog
5448
		$( '.site-moved' ).click(function( e ) {
5449
			e.preventDefault();
5450
			data.crisis_resolution_action = 'site_migrated';
5451
			$( '#jp-id-crisis-question-1 .spinner' ).show();
5452
			$.post( ajaxurl, data, function() {
5453
				$( '.jp-id-crisis-question' ).hide();
5454
				$( '.banner-title' ).hide();
5455
				$( '#jp-id-crisis-success' ).show();
5456
				setTimeout( autodismissSuccessBanner, 6 * SECOND_IN_MS );
5457
			});
5458
5459
		});
5460
5461
		// URL hasn't changed, next question please.
5462
		$( '.site-not-moved' ).click(function( e ) {
5463
			e.preventDefault();
5464
			$( '.jp-id-crisis-question' ).hide();
5465
			$( '#jp-id-crisis-question-2' ).show();
5466
		});
5467
5468
		// Reset connection: two separate sites.
5469
		$( '.reset-connection' ).click(function( e ) {
5470
			data.crisis_resolution_action = 'reset_connection';
5471
			$.post( ajaxurl, data, function( response ) {
5472
				if ( 'reset-connection-success' === response ) {
5473
					window.location.replace( '<?php echo Jetpack::admin_url(); ?>' );
5474
				}
5475
			});
5476
		});
5477
5478
		// It's a dev environment.  Ignore.
5479
		$( '.is-dev-env' ).click(function( e ) {
5480
			data.crisis_resolution_action = 'whitelist';
5481
			$( '#jp-id-crisis-question-2 .spinner' ).show();
5482
			$.post( ajaxurl, data, function() {
5483
				$( '.jp-id-crisis-question' ).hide();
5484
				$( '.banner-title' ).hide();
5485
				$( '#jp-id-crisis-success' ).show();
5486
				setTimeout( autodismissSuccessBanner, 4 * SECOND_IN_MS );
5487
			});
5488
		});
5489
5490
		$( '.not-reconnecting' ).click(contactSupport);
5491
		$( '.not-staging-or-dev' ).click(contactSupport);
5492
	});
5493
})( jQuery );
5494
</script>
5495
<?php
5496
	}
5497
5498
	/**
5499
	 * Maybe Use a .min.css stylesheet, maybe not.
5500
	 *
5501
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
5502
	 */
5503
	public static function maybe_min_asset( $url, $path, $plugin ) {
5504
		// Short out on things trying to find actual paths.
5505
		if ( ! $path || empty( $plugin ) ) {
5506
			return $url;
5507
		}
5508
5509
		// Strip out the abspath.
5510
		$base = dirname( plugin_basename( $plugin ) );
5511
5512
		// Short out on non-Jetpack assets.
5513
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
5514
			return $url;
5515
		}
5516
5517
		// File name parsing.
5518
		$file              = "{$base}/{$path}";
5519
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
5520
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
5521
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
5522
		$extension         = array_shift( $file_name_parts_r );
5523
5524
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
5525
			// Already pointing at the minified version.
5526
			if ( 'min' === $file_name_parts_r[0] ) {
5527
				return $url;
5528
			}
5529
5530
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
5531
			if ( file_exists( $min_full_path ) ) {
5532
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
5533
			}
5534
		}
5535
5536
		return $url;
5537
	}
5538
5539
	/**
5540
	 * Maybe inlines a stylesheet.
5541
	 *
5542
	 * If you'd like to inline a stylesheet instead of printing a link to it,
5543
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
5544
	 *
5545
	 * Attached to `style_loader_tag` filter.
5546
	 *
5547
	 * @param string $tag The tag that would link to the external asset.
5548
	 * @param string $handle The registered handle of the script in question.
5549
	 *
5550
	 * @return string
5551
	 */
5552
	public static function maybe_inline_style( $tag, $handle ) {
5553
		global $wp_styles;
5554
		$item = $wp_styles->registered[ $handle ];
5555
5556
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
5557
			return $tag;
5558
		}
5559
5560
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
5561
			$href = $matches[1];
5562
			// Strip off query string
5563
			if ( $pos = strpos( $href, '?' ) ) {
5564
				$href = substr( $href, 0, $pos );
5565
			}
5566
			// Strip off fragment
5567
			if ( $pos = strpos( $href, '#' ) ) {
5568
				$href = substr( $href, 0, $pos );
5569
			}
5570
		} else {
5571
			return $tag;
5572
		}
5573
5574
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
5575
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
5576
			return $tag;
5577
		}
5578
5579
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
5580
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
5581
			// And this isn't the pass that actually deals with the RTL version...
5582
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
5583
				// Short out, as the RTL version will deal with it in a moment.
5584
				return $tag;
5585
			}
5586
		}
5587
5588
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
5589
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
5590
		if ( $css ) {
5591
			$tag = "<!-- Inline {$item->handle} -->\r\n";
5592
			if ( empty( $item->extra['after'] ) ) {
5593
				wp_add_inline_style( $handle, $css );
5594
			} else {
5595
				array_unshift( $item->extra['after'], $css );
5596
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
5597
			}
5598
		}
5599
5600
		return $tag;
5601
	}
5602
5603
	/**
5604
	 * Loads a view file from the views
5605
	 *
5606
	 * Data passed in with the $data parameter will be available in the
5607
	 * template file as $data['value']
5608
	 *
5609
	 * @param string $template - Template file to load
5610
	 * @param array $data - Any data to pass along to the template
5611
	 * @return boolean - If template file was found
5612
	 **/
5613
	public function load_view( $template, $data = array() ) {
5614
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
5615
5616
		if( file_exists( $views_dir . $template ) ) {
5617
			require_once( $views_dir . $template );
5618
			return true;
5619
		}
5620
5621
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
5622
		return false;
5623
	}
5624
5625
	/**
5626
	 * Throws warnings for deprecated hooks to be removed from Jetpack
5627
	 */
5628
	public function deprecated_hooks() {
5629
		global $wp_filter;
5630
5631
		/*
5632
		 * Format:
5633
		 * deprecated_filter_name => replacement_name
5634
		 *
5635
		 * If there is no replacement us null for replacement_name
5636
		 */
5637
		$deprecated_list = array(
5638
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
5639
			'wpl_sharing_2014_1'                                     => null,
5640
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
5641
			'jetpack_identity_crisis_options_to_check'               => null,
5642
			'update_option_jetpack_single_user_site'                 => null,
5643
			'audio_player_default_colors'                            => null,
5644
			'add_option_jetpack_featured_images_enabled'             => null,
5645
			'add_option_jetpack_update_details'                      => null,
5646
			'add_option_jetpack_updates'                             => null,
5647
			'add_option_jetpack_network_name'                        => null,
5648
			'add_option_jetpack_network_allow_new_registrations'     => null,
5649
			'add_option_jetpack_network_add_new_users'               => null,
5650
			'add_option_jetpack_network_site_upload_space'           => null,
5651
			'add_option_jetpack_network_upload_file_types'           => null,
5652
			'add_option_jetpack_network_enable_administration_menus' => null,
5653
			'add_option_jetpack_is_multi_site'                       => null,
5654
			'add_option_jetpack_is_main_network'                     => null,
5655
			'add_option_jetpack_main_network_site'                   => null,
5656
			'jetpack_sync_all_registered_options'                    => null,
5657
		);
5658
5659
		// This is a silly loop depth. Better way?
5660
		foreach( $deprecated_list AS $hook => $hook_alt ) {
5661
			if( isset( $wp_filter[ $hook ] ) && is_array( $wp_filter[ $hook ] ) ) {
5662
				foreach( $wp_filter[$hook] AS $func => $values ) {
5663
					foreach( $values AS $hooked ) {
5664
						_deprecated_function( $hook . ' used for ' . $hooked['function'], null, $hook_alt );
5665
					}
5666
				}
5667
			}
5668
		}
5669
	}
5670
5671
	/**
5672
	 * Converts any url in a stylesheet, to the correct absolute url.
5673
	 *
5674
	 * Considerations:
5675
	 *  - Normal, relative URLs     `feh.png`
5676
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
5677
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
5678
	 *  - Absolute URLs             `http://domain.com/feh.png`
5679
	 *  - Domain root relative URLs `/feh.png`
5680
	 *
5681
	 * @param $css string: The raw CSS -- should be read in directly from the file.
5682
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
5683
	 *
5684
	 * @return mixed|string
5685
	 */
5686
	public static function absolutize_css_urls( $css, $css_file_url ) {
5687
		$pattern = '#url\((?P<path>[^)]*)\)#i';
5688
		$css_dir = dirname( $css_file_url );
5689
		$p       = parse_url( $css_dir );
5690
		$domain  = sprintf(
5691
					'%1$s//%2$s%3$s%4$s',
5692
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
5693
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
5694
					$p['host'],
5695
					isset( $p['port'] )             ? ":{$p['port']}" : ''
5696
				);
5697
5698
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
5699
			$find = $replace = array();
5700
			foreach ( $matches as $match ) {
5701
				$url = trim( $match['path'], "'\" \t" );
5702
5703
				// If this is a data url, we don't want to mess with it.
5704
				if ( 'data:' === substr( $url, 0, 5 ) ) {
5705
					continue;
5706
				}
5707
5708
				// If this is an absolute or protocol-agnostic url,
5709
				// we don't want to mess with it.
5710
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
5711
					continue;
5712
				}
5713
5714
				switch ( substr( $url, 0, 1 ) ) {
5715
					case '/':
5716
						$absolute = $domain . $url;
5717
						break;
5718
					default:
5719
						$absolute = $css_dir . '/' . $url;
5720
				}
5721
5722
				$find[]    = $match[0];
5723
				$replace[] = sprintf( 'url("%s")', $absolute );
5724
			}
5725
			$css = str_replace( $find, $replace, $css );
5726
		}
5727
5728
		return $css;
5729
	}
5730
5731
	/**
5732
	 * This method checks to see if SSL is required by the site in
5733
	 * order to visit it in some way other than only setting the
5734
	 * https value in the home or siteurl values.
5735
	 *
5736
	 * @since 3.2
5737
	 * @return boolean
5738
	 **/
5739
	private function is_ssl_required_to_visit_site() {
5740
		global $wp_version;
5741
		$ssl = is_ssl();
5742
5743
		if ( force_ssl_admin() ) {
5744
			$ssl = true;
5745
		}
5746
		return $ssl;
5747
	}
5748
5749
	/**
5750
	 * This methods removes all of the registered css files on the front end
5751
	 * from Jetpack in favor of using a single file. In effect "imploding"
5752
	 * all the files into one file.
5753
	 *
5754
	 * Pros:
5755
	 * - Uses only ONE css asset connection instead of 15
5756
	 * - Saves a minimum of 56k
5757
	 * - Reduces server load
5758
	 * - Reduces time to first painted byte
5759
	 *
5760
	 * Cons:
5761
	 * - Loads css for ALL modules. However all selectors are prefixed so it
5762
	 *		should not cause any issues with themes.
5763
	 * - Plugins/themes dequeuing styles no longer do anything. See
5764
	 *		jetpack_implode_frontend_css filter for a workaround
5765
	 *
5766
	 * For some situations developers may wish to disable css imploding and
5767
	 * instead operate in legacy mode where each file loads seperately and
5768
	 * can be edited individually or dequeued. This can be accomplished with
5769
	 * the following line:
5770
	 *
5771
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
5772
	 *
5773
	 * @since 3.2
5774
	 **/
5775
	public function implode_frontend_css( $travis_test = false ) {
5776
		$do_implode = true;
5777
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
5778
			$do_implode = false;
5779
		}
5780
5781
		/**
5782
		 * Allow CSS to be concatenated into a single jetpack.css file.
5783
		 *
5784
		 * @since 3.2.0
5785
		 *
5786
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
5787
		 */
5788
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
5789
5790
		// Do not use the imploded file when default behaviour was altered through the filter
5791
		if ( ! $do_implode ) {
5792
			return;
5793
		}
5794
5795
		// We do not want to use the imploded file in dev mode, or if not connected
5796
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
5797
			if ( ! $travis_test ) {
5798
				return;
5799
			}
5800
		}
5801
5802
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
5803
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
5804
			return;
5805
		}
5806
5807
		/*
5808
		 * Now we assume Jetpack is connected and able to serve the single
5809
		 * file.
5810
		 *
5811
		 * In the future there will be a check here to serve the file locally
5812
		 * or potentially from the Jetpack CDN
5813
		 *
5814
		 * For now:
5815
		 * - Enqueue a single imploded css file
5816
		 * - Zero out the style_loader_tag for the bundled ones
5817
		 * - Be happy, drink scotch
5818
		 */
5819
5820
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
5821
5822
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
5823
5824
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
5825
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
5826
	}
5827
5828
	function concat_remove_style_loader_tag( $tag, $handle ) {
5829
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
5830
			$tag = '';
5831
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
5832
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
5833
			}
5834
		}
5835
5836
		return $tag;
5837
	}
5838
5839
	/*
5840
	 * Check the heartbeat data
5841
	 *
5842
	 * Organizes the heartbeat data by severity.  For example, if the site
5843
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
5844
	 *
5845
	 * Data will be added to "caution" array, if it either:
5846
	 *  - Out of date Jetpack version
5847
	 *  - Out of date WP version
5848
	 *  - Out of date PHP version
5849
	 *
5850
	 * $return array $filtered_data
5851
	 */
5852
	public static function jetpack_check_heartbeat_data() {
5853
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
5854
5855
		$good    = array();
5856
		$caution = array();
5857
		$bad     = array();
5858
5859
		foreach ( $raw_data as $stat => $value ) {
5860
5861
			// Check jetpack version
5862
			if ( 'version' == $stat ) {
5863
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
5864
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
5865
					continue;
5866
				}
5867
			}
5868
5869
			// Check WP version
5870
			if ( 'wp-version' == $stat ) {
5871
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
5872
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
5873
					continue;
5874
				}
5875
			}
5876
5877
			// Check PHP version
5878
			if ( 'php-version' == $stat ) {
5879
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
5880
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
5881
					continue;
5882
				}
5883
			}
5884
5885
			// Check ID crisis
5886
			if ( 'identitycrisis' == $stat ) {
5887
				if ( 'yes' == $value ) {
5888
					$bad[ $stat ] = $value;
5889
					continue;
5890
				}
5891
			}
5892
5893
			// The rest are good :)
5894
			$good[ $stat ] = $value;
5895
		}
5896
5897
		$filtered_data = array(
5898
			'good'    => $good,
5899
			'caution' => $caution,
5900
			'bad'     => $bad
5901
		);
5902
5903
		return $filtered_data;
5904
	}
5905
5906
5907
	/*
5908
	 * This method is used to organize all options that can be reset
5909
	 * without disconnecting Jetpack.
5910
	 *
5911
	 * It is used in class.jetpack-cli.php to reset options
5912
	 *
5913
	 * @return array of options to delete.
5914
	 */
5915
	public static function get_jetpack_options_for_reset() {
5916
		$jetpack_options            = Jetpack_Options::get_option_names();
5917
		$jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
5918
		$jetpack_options_private    = Jetpack_Options::get_option_names( 'private' );
5919
5920
		$all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat, $jetpack_options_private );
5921
5922
		// A manual build of the wp options
5923
		$wp_options = array(
5924
			'sharing-options',
5925
			'disabled_likes',
5926
			'disabled_reblogs',
5927
			'jetpack_comments_likes_enabled',
5928
			'wp_mobile_excerpt',
5929
			'wp_mobile_featured_images',
5930
			'wp_mobile_app_promos',
5931
			'stats_options',
5932
			'stats_dashboard_widget',
5933
			'safecss_preview_rev',
5934
			'safecss_rev',
5935
			'safecss_revision_migrated',
5936
			'nova_menu_order',
5937
			'jetpack_portfolio',
5938
			'jetpack_portfolio_posts_per_page',
5939
			'jetpack_testimonial',
5940
			'jetpack_testimonial_posts_per_page',
5941
			'wp_mobile_custom_css',
5942
			'sharedaddy_disable_resources',
5943
			'sharing-options',
5944
			'sharing-services',
5945
			'site_icon_temp_data',
5946
			'featured-content',
5947
			'site_logo',
5948
			'jetpack_dismissed_notices',
5949
		);
5950
5951
		// Flag some Jetpack options as unsafe
5952
		$unsafe_options = array(
5953
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
5954
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
5955
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
5956
			'jumpstart',                    // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
5957
5958
			// non_compact
5959
			'activated',
5960
5961
			// private
5962
			'register',
5963
			'blog_token',                  // (string) The Client Secret/Blog Token of this site.
5964
			'user_token',                  // (string) The User Token of this site. (deprecated)
5965
			'user_tokens'
5966
		);
5967
5968
		// Remove the unsafe Jetpack options
5969
		foreach ( $unsafe_options as $unsafe_option ) {
5970
			if ( false !== ( $key = array_search( $unsafe_option, $all_jp_options ) ) ) {
5971
				unset( $all_jp_options[ $key ] );
5972
			}
5973
		}
5974
5975
		$options = array(
5976
			'jp_options' => $all_jp_options,
5977
			'wp_options' => $wp_options
5978
		);
5979
5980
		return $options;
5981
	}
5982
5983
	/**
5984
	 * Check if an option of a Jetpack module has been updated.
5985
	 *
5986
	 * If any module option has been updated before Jump Start has been dismissed,
5987
	 * update the 'jumpstart' option so we can hide Jump Start.
5988
	 *
5989
	 * @param string $option_name
5990
	 *
5991
	 * @return bool
5992
	 */
5993
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
5994
		// Bail if Jump Start has already been dismissed
5995
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
5996
			return false;
5997
		}
5998
5999
		$jetpack = Jetpack::init();
6000
6001
		// Manual build of module options
6002
		$option_names = self::get_jetpack_options_for_reset();
6003
6004
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6005
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6006
6007
			//Jump start is being dismissed send data to MC Stats
6008
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6009
6010
			$jetpack->do_stats( 'server_side' );
6011
		}
6012
6013
	}
6014
6015
	/*
6016
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6017
	 * so we can bring them directly to their site in calypso.
6018
	 *
6019
	 * @param string | url
6020
	 * @return string | url without the guff
6021
	 */
6022
	public static function build_raw_urls( $url ) {
6023
		$strip_http = '/.*?:\/\//i';
6024
		$url = preg_replace( $strip_http, '', $url  );
6025
		$url = str_replace( '/', '::', $url );
6026
		return $url;
6027
	}
6028
6029
	/**
6030
	 * Stores and prints out domains to prefetch for page speed optimization.
6031
	 *
6032
	 * @param mixed $new_urls
6033
	 */
6034
	public static function dns_prefetch( $new_urls = null ) {
6035
		static $prefetch_urls = array();
6036
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6037
			echo "\r\n";
6038
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6039
				printf( "<link rel='dns-prefetch' href='%s'>\r\n", esc_attr( $this_prefetch_url ) );
6040
			}
6041
		} elseif ( ! empty( $new_urls ) ) {
6042
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6043
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6044
			}
6045
			foreach ( (array) $new_urls as $this_new_url ) {
6046
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6047
			}
6048
			$prefetch_urls = array_unique( $prefetch_urls );
6049
		}
6050
	}
6051
6052
	public function wp_dashboard_setup() {
6053
		if ( self::is_active() ) {
6054
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6055
			$widget_title = __( 'Site Stats', 'jetpack' );
6056
		} elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
6057
			add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
6058
			$widget_title = __( 'Please Connect Jetpack', 'jetpack' );
6059
		}
6060
6061
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6062
			wp_add_dashboard_widget(
6063
				'jetpack_summary_widget',
6064
				$widget_title,
6065
				array( __CLASS__, 'dashboard_widget' )
6066
			);
6067
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6068
6069
			// If we're inactive and not in development mode, sort our box to the top.
6070
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6071
				global $wp_meta_boxes;
6072
6073
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6074
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6075
6076
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6077
			}
6078
		}
6079
	}
6080
6081
	/**
6082
	 * @param mixed $result Value for the user's option
6083
	 * @return mixed
6084
	 */
6085
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6086
		if ( ! is_array( $sorted ) ) {
6087
			return $sorted;
6088
		}
6089
6090
		foreach ( $sorted as $box_context => $ids ) {
6091
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6092
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6093
				continue;
6094
			}
6095
6096
			$ids_array = explode( ',', $ids );
6097
			$key = array_search( 'dashboard_stats', $ids_array );
6098
6099
			if ( false !== $key ) {
6100
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6101
				$ids_array[ $key ] = 'jetpack_summary_widget';
6102
				$sorted[ $box_context ] = implode( ',', $ids_array );
6103
				// We've found it, stop searching, and just return.
6104
				break;
6105
			}
6106
		}
6107
6108
		return $sorted;
6109
	}
6110
6111
	public static function dashboard_widget() {
6112
		/**
6113
		 * Fires when the dashboard is loaded.
6114
		 *
6115
		 * @since 3.4.0
6116
		 */
6117
		do_action( 'jetpack_dashboard_widget' );
6118
	}
6119
6120
	public static function dashboard_widget_footer() {
6121
		?>
6122
		<footer>
6123
6124
		<div class="protect">
6125
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6126
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6127
				<p><?php echo esc_html_x( 'Blocked malicious login attempts', '{#} Blocked malicious login attempts -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p>
6128
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6129
				<a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( array( 'action' => 'activate', 'module' => 'protect' ) ), 'jetpack_activate-protect' ) ); ?>" class="button button-jetpack" title="<?php esc_attr_e( 'Protect helps to keep you secure from brute-force login attacks.', 'jetpack' ); ?>">
6130
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6131
				</a>
6132
			<?php else : ?>
6133
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6134
			<?php endif; ?>
6135
		</div>
6136
6137
		<div class="akismet">
6138
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6139
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6140
				<p><?php echo esc_html_x( 'Spam comments blocked by Akismet.', '{#} Spam comments blocked by Akismet -- number is on a prior line, text is a caption.', 'jetpack' ); ?></p>
6141
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6142
				<a href="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'activate', 'plugin' => 'akismet/akismet.php' ), admin_url( 'plugins.php' ) ), 'activate-plugin_akismet/akismet.php' ) ); ?>" class="button button-jetpack">
6143
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6144
				</a>
6145
			<?php else : ?>
6146
				<p><a href="<?php echo esc_url( 'https://akismet.com/?utm_source=jetpack&utm_medium=link&utm_campaign=Jetpack%20Dashboard%20Widget%20Footer%20Link' ); ?>"><?php esc_html_e( 'Akismet can help to keep your blog safe from spam!', 'jetpack' ); ?></a></p>
6147
			<?php endif; ?>
6148
		</div>
6149
6150
		</footer>
6151
		<?php
6152
	}
6153
6154
	public function dashboard_widget_connect_to_wpcom() {
6155
		if ( Jetpack::is_active() || Jetpack::is_development_mode() || ! current_user_can( 'jetpack_connect' ) ) {
6156
			return;
6157
		}
6158
		?>
6159
		<div class="wpcom-connect">
6160
			<div class="jp-emblem">
6161
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">
6162
				<path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/>
6163
			</svg>
6164
			</div>
6165
			<h3><?php esc_html_e( 'Please Connect Jetpack', 'jetpack' ); ?></h3>
6166
			<p><?php echo wp_kses( __( 'Connecting Jetpack will show you <strong>stats</strong> about your traffic, <strong>protect</strong> you from brute force attacks, <strong>speed up</strong> your images and photos, and enable other <strong>traffic and security</strong> features.', 'jetpack' ), 'jetpack' ) ?></p>
6167
6168
			<div class="actions">
6169
				<a href="<?php echo $this->build_connect_url( false, false, 'widget-btn' ); ?>" class="button button-primary">
6170
					<?php esc_html_e( 'Connect Jetpack', 'jetpack' ); ?>
6171
				</a>
6172
			</div>
6173
		</div>
6174
		<?php
6175
	}
6176
6177
	/*
6178
	 * A graceful transition to using Core's site icon.
6179
	 *
6180
	 * All of the hard work has already been done with the image
6181
	 * in all_done_page(). All that needs to be done now is update
6182
	 * the option and display proper messaging.
6183
	 *
6184
	 * @todo remove when WP 4.3 is minimum
6185
	 *
6186
	 * @since 3.6.1
6187
	 *
6188
	 * @return bool false = Core's icon not available || true = Core's icon is available
6189
	 */
6190
	public static function jetpack_site_icon_available_in_core() {
6191
		global $wp_version;
6192
		$core_icon_available = function_exists( 'has_site_icon' ) && version_compare( $wp_version, '4.3-beta' ) >= 0;
6193
6194
		if ( ! $core_icon_available ) {
6195
			return false;
6196
		}
6197
6198
		// No need for Jetpack's site icon anymore if core's is already set
6199
		if ( has_site_icon() ) {
6200
			if ( Jetpack::is_module_active( 'site-icon' ) ) {
6201
				Jetpack::log( 'deactivate', 'site-icon' );
6202
				Jetpack::deactivate_module( 'site-icon' );
6203
			}
6204
			return true;
6205
		}
6206
6207
		// Transfer Jetpack's site icon to use core.
6208
		$site_icon_id = Jetpack::get_option( 'site_icon_id' );
6209
		if ( $site_icon_id ) {
6210
			// Update core's site icon
6211
			update_option( 'site_icon', $site_icon_id );
6212
6213
			// Delete Jetpack's icon option. We still want the blavatar and attached data though.
6214
			delete_option( 'site_icon_id' );
6215
		}
6216
6217
		// No need for Jetpack's site icon anymore
6218
		if ( Jetpack::is_module_active( 'site-icon' ) ) {
6219
			Jetpack::log( 'deactivate', 'site-icon' );
6220
			Jetpack::deactivate_module( 'site-icon' );
6221
		}
6222
6223
		return true;
6224
	}
6225
6226
	/**
6227
	 * Return string containing the Jetpack logo.
6228
	 *
6229
	 * @since 3.9.0
6230
	 *
6231
	 * @return string
6232
	 */
6233
	public static function get_jp_emblem() {
6234
		return '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">	<path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z" /></svg>';
6235
	}
6236
6237
	/*
6238
	 * Adds a "blank" column in the user admin table to display indication of user connection.
6239
	 */
6240
	function jetpack_icon_user_connected( $columns ) {
6241
		$columns['user_jetpack'] = '';
6242
		return $columns;
6243
	}
6244
6245
	/*
6246
	 * Show Jetpack icon if the user is linked.
6247
	 */
6248
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6249
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
6250
			$emblem_html = sprintf(
6251
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6252
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6253
				Jetpack::get_jp_emblem()
6254
			);
6255
			return $emblem_html;
6256
		}
6257
6258
		return $val;
6259
	}
6260
6261
	/*
6262
	 * Style the Jetpack user column
6263
	 */
6264
	function jetpack_user_col_style() {
6265
		global $current_screen;
6266
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
6267
			<style>
6268
				.fixed .column-user_jetpack {
6269
					width: 21px;
6270
				}
6271
				.jp-emblem-user-admin path {
6272
					fill: #8cc258;
6273
				}
6274
			</style>
6275
		<?php }
6276
	}
6277
6278
}
6279