Completed
Push — fix/4329-require-missing-file ( 7315bf )
by
unknown
32:17 queued 24:50
created

class.jetpack.php (2 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
	public $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_Options::update_option( '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
335
		if ( did_action( 'init' ) || current_filter() == 'init' ) {
336
			self::activate_module( 'manage', false, false );
337
		} else if ( !  has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) {
338
			add_action( 'init', array( __CLASS__, 'activate_manage' ) );
339
		}
340
341
	}
342
343
	/**
344
	 * Constructor.  Initializes WordPress hooks
345
	 */
346
	private function __construct() {
347
		/*
348
		 * Check for and alert any deprecated hooks
349
		 */
350
		add_action( 'init', array( $this, 'deprecated_hooks' ) );
351
352
353
		/*
354
		 * Load things that should only be in Network Admin.
355
		 *
356
		 * For now blow away everything else until a more full
357
		 * understanding of what is needed at the network level is
358
		 * available
359
		 */
360
		if( is_multisite() ) {
361
			Jetpack_Network::init();
362
		}
363
364
		// Unlink user before deleting the user from .com
365
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
366
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
367
368
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
369
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
370
371
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
372
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
373
374
			$this->require_jetpack_authentication();
375
376
			if ( Jetpack::is_active() ) {
377
				// Hack to preserve $HTTP_RAW_POST_DATA
378
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
379
380
				$signed = $this->verify_xml_rpc_signature();
381
				if ( $signed && ! is_wp_error( $signed ) ) {
382
					// The actual API methods.
383
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
384
				} else {
385
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
386
					// active Jetpack connection, so that additional users can link their account.
387
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
388
				}
389
			} else {
390
				// The bootstrap API methods.
391
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
392
			}
393
394
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
395
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
396
		} elseif ( is_admin() && isset( $_POST['action'] ) && 'jetpack_upload_file' == $_POST['action'] ) {
397
			$this->require_jetpack_authentication();
398
			$this->add_remote_request_handlers();
399
		} else {
400
			if ( Jetpack::is_active() ) {
401
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
402
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
403
			}
404
		}
405
406
		if ( Jetpack::is_active() ) {
407
			Jetpack_Heartbeat::init();
408
		}
409
410
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
411
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
412
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
413
		}
414
415
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
416
417
		add_action( 'admin_init', array( $this, 'admin_init' ) );
418
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
419
420
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
421
422
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
423
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
424
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
425
426
		// returns HTTPS support status
427
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
428
429
		// If any module option is updated before Jump Start is dismissed, hide Jump Start.
430
		add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
431
432
		// Identity Crisis AJAX callback function
433
		add_action( 'wp_ajax_jetpack_resolve_identity_crisis', array( $this, 'resolve_identity_crisis_ajax_callback' ) );
434
435
		// JITM AJAX callback function
436
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
437
438
		add_action( 'wp_ajax_jetpack_admin_ajax',          array( $this, 'jetpack_admin_ajax_callback' ) );
439
		add_action( 'wp_ajax_jetpack_admin_ajax_refresh',  array( $this, 'jetpack_admin_ajax_refresh_data' ) );
440
441
		// Universal ajax callback for all tracking events triggered via js
442
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
443
444
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
445
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
446
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
447
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
448
449
		add_action( 'jetpack_activate_module', array( $this, 'activate_module_actions' ) );
450
451
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
452
		
453
		/**
454
		 * These actions run checks to load additional files.
455
		 * They check for external files or plugins, so they need to run as late as possible.
456
		 */
457
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
458
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
459
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
460
461
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
462
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
463
464
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
465
466
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
467
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
468
469
		// A filter to control all just in time messages
470
		add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
471
472
		/**
473
		 * This is the hack to concatinate all css files into one.
474
		 * For description and reasoning see the implode_frontend_css method
475
		 *
476
		 * Super late priority so we catch all the registered styles
477
		 */
478
		if( !is_admin() ) {
479
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
480
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
481
		}
482
483
	}
484
	
485
	function jetpack_admin_ajax_tracks_callback() {
486
		// Check for nonce
487
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
488
			wp_die( 'Permissions check failed.' );
489
		}
490
491
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
492
			wp_die( 'No valid event name or type.' );
493
		}
494
495
		$tracks_data = array();
496
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
497
			$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
498
		}
499
500
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
501
		wp_send_json_success();
502
		wp_die();
503
	}
504
505
	function jetpack_admin_ajax_callback() {
506
		// Check for nonce
507 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) || ! current_user_can( 'jetpack_manage_modules' ) ) {
508
			wp_die( 'permissions check failed' );
509
		}
510
511
		if ( isset( $_REQUEST['toggleModule'] ) && 'nux-toggle-module' == $_REQUEST['toggleModule'] ) {
512
			$slug = $_REQUEST['thisModuleSlug'];
513
514
			if ( ! in_array( $slug, Jetpack::get_available_modules() ) ) {
515
				wp_die( 'That is not a Jetpack module slug' );
516
			}
517
518
			if ( Jetpack::is_module_active( $slug ) ) {
519
				Jetpack::deactivate_module( $slug );
520
			} else {
521
				Jetpack::activate_module( $slug, false, false );
522
			}
523
524
			$modules = Jetpack_Admin::init()->get_modules();
525
			echo json_encode( $modules[ $slug ] );
526
527
			exit;
528
		}
529
530
		wp_die();
531
	}
532
533
	/*
534
	 * Sometimes we need to refresh the data,
535
	 * especially if the page is visited via a 'history'
536
	 * event like back/forward
537
	 */
538
	function jetpack_admin_ajax_refresh_data() {
539
		// Check for nonce
540 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) ) {
541
			wp_die( 'permissions check failed' );
542
		}
543
544
		if ( isset( $_REQUEST['refreshData'] ) && 'refresh' == $_REQUEST['refreshData'] ) {
545
			$modules = Jetpack_Admin::init()->get_modules();
546
			echo json_encode( $modules );
547
			exit;
548
		}
549
550
		wp_die();
551
	}
552
553
	/**
554
	 * The callback for the JITM ajax requests.
555
	 */
556
	function jetpack_jitm_ajax_callback() {
557
		// Check for nonce
558
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
559
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
560
		}
561
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
562
			$module_slug = $_REQUEST['jitmModule'];
563
			Jetpack::log( 'activate', $module_slug );
564
			Jetpack::activate_module( $module_slug, false, false );
565
			Jetpack::state( 'message', 'no_message' );
566
567
			//A Jetpack module is being activated through a JITM, track it
568
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
569
			$this->do_stats( 'server_side' );
570
571
			wp_send_json_success();
572
		}
573
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
574
			// get the hide_jitm options array
575
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
576
			$module_slug = $_REQUEST['jitmModule'];
577
578
			if( ! $jetpack_hide_jitm ) {
579
				$jetpack_hide_jitm = array(
580
					$module_slug => 'hide'
581
				);
582
			} else {
583
				$jetpack_hide_jitm[$module_slug] = 'hide';
584
			}
585
586
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
587
588
			//jitm is being dismissed forever, track it
589
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
590
			$this->do_stats( 'server_side' );
591
592
			wp_send_json_success();
593
		}
594 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
595
			$module_slug = $_REQUEST['jitmModule'];
596
597
			// User went to WordPress.com, track this
598
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
599
			$this->do_stats( 'server_side' );
600
601
			wp_send_json_success();
602
		}
603 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
604
			$track = $_REQUEST['jitmModule'];
605
606
			// User is viewing JITM, track it.
607
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
608
			$this->do_stats( 'server_side' );
609
610
			wp_send_json_success();
611
		}
612
	}
613
614
	/**
615
	 * If there are any stats that need to be pushed, but haven't been, push them now.
616
	 */
617
	function __destruct() {
618
		if ( ! empty( $this->stats ) ) {
619
			$this->do_stats( 'server_side' );
620
		}
621
	}
622
623
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
624
		switch( $cap ) {
625
			case 'jetpack_connect' :
626
			case 'jetpack_reconnect' :
627
				if ( Jetpack::is_development_mode() ) {
628
					$caps = array( 'do_not_allow' );
629
					break;
630
				}
631
				/**
632
				 * Pass through. If it's not development mode, these should match disconnect.
633
				 * Let users disconnect if it's development mode, just in case things glitch.
634
				 */
635
			case 'jetpack_disconnect' :
636
				/**
637
				 * In multisite, can individual site admins manage their own connection?
638
				 *
639
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
640
				 */
641
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
642
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
643
						/**
644
						 * We need to update the option name -- it's terribly unclear which
645
						 * direction the override goes.
646
						 *
647
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
648
						 */
649
						$caps = array( 'do_not_allow' );
650
						break;
651
					}
652
				}
653
654
				$caps = array( 'manage_options' );
655
				break;
656
			case 'jetpack_manage_modules' :
657
			case 'jetpack_activate_modules' :
658
			case 'jetpack_deactivate_modules' :
659
				$caps = array( 'manage_options' );
660
				break;
661
			case 'jetpack_configure_modules' :
662
				$caps = array( 'manage_options' );
663
				break;
664
			case 'jetpack_network_admin_page':
665
			case 'jetpack_network_settings_page':
666
				$caps = array( 'manage_network_plugins' );
667
				break;
668
			case 'jetpack_network_sites_page':
669
				$caps = array( 'manage_sites' );
670
				break;
671
			case 'jetpack_admin_page' :
672
				if ( Jetpack::is_development_mode() ) {
673
					$caps = array( 'manage_options' );
674
					break;
675
				} else {
676
					$caps = array( 'read' );
677
				}
678
				break;
679
			case 'jetpack_connect_user' :
680
				if ( Jetpack::is_development_mode() ) {
681
					$caps = array( 'do_not_allow' );
682
					break;
683
				}
684
				$caps = array( 'read' );
685
				break;
686
		}
687
		return $caps;
688
	}
689
690
	function require_jetpack_authentication() {
691
		// Don't let anyone authenticate
692
		$_COOKIE = array();
693
		remove_all_filters( 'authenticate' );
694
695
		/**
696
		 * For the moment, remove Limit Login Attempts if its xmlrpc for Jetpack.
697
		 * If Limit Login Attempts is installed as a mu-plugin, it can occasionally
698
		 * generate false-positives.
699
		 */
700
		remove_filter( 'wp_login_failed', 'limit_login_failed' );
701
702
		if ( Jetpack::is_active() ) {
703
			// Allow Jetpack authentication
704
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
705
		}
706
	}
707
708
	/**
709
	 * Load language files
710
	 * @action plugins_loaded
711
	 */
712
	public static function plugin_textdomain() {
713
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
714
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
715
	}
716
717
	/**
718
	 * Register assets for use in various modules and the Jetpack admin page.
719
	 *
720
	 * @uses wp_script_is, wp_register_script, plugins_url
721
	 * @action wp_loaded
722
	 * @return null
723
	 */
724
	public function register_assets() {
725 View Code Duplication
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
726
			wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' );
727
		}
728
729 View Code Duplication
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
730
			wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' );
731
		}
732
733 View Code Duplication
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
734
			wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' );
735
		}
736
737 View Code Duplication
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
738
			wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true );
739
		}
740
741
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
742
			wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true );
743
744
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
745
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
746
			if ( ! is_numeric( $fb_app_id ) ) {
747
				$fb_app_id = '';
748
			}
749
			wp_localize_script(
750
				'jetpack-facebook-embed',
751
				'jpfbembed',
752
				array(
753
					'appid' => $fb_app_id,
754
					'locale' => $this->get_locale(),
755
				)
756
			);
757
		}
758
759
		/**
760
		 * As jetpack_register_genericons is by default fired off a hook,
761
		 * the hook may have already fired by this point.
762
		 * So, let's just trigger it manually.
763
		 */
764
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
765
		jetpack_register_genericons();
766
767
		/**
768
		 * Register the social logos 
769
		 */
770
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
771
		jetpack_register_social_logos();
772
773 View Code Duplication
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
774
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
775
	}
776
777
	/**
778
	 * Guess locale from language code.
779
	 *
780
	 * @param string $lang Language code.
781
	 * @return string|bool
782
	 */
783
	function guess_locale_from_lang( $lang ) {
784
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
785
			return 'en_US';
786
		}
787
788
		if ( ! class_exists( 'GP_Locales' ) ) {
789
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
790
				return false;
791
			}
792
793
			require JETPACK__GLOTPRESS_LOCALES_PATH;
794
		}
795
796
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
797
			// WP.com: get_locale() returns 'it'
798
			$locale = GP_Locales::by_slug( $lang );
799
		} else {
800
			// Jetpack: get_locale() returns 'it_IT';
801
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
802
		}
803
804
		if ( ! $locale ) {
805
			return false;
806
		}
807
808
		if ( empty( $locale->facebook_locale ) ) {
809
			if ( empty( $locale->wp_locale ) ) {
810
				return false;
811
			} else {
812
				// Facebook SDK is smart enough to fall back to en_US if a
813
				// locale isn't supported. Since supported Facebook locales
814
				// can fall out of sync, we'll attempt to use the known
815
				// wp_locale value and rely on said fallback.
816
				return $locale->wp_locale;
817
			}
818
		}
819
820
		return $locale->facebook_locale;
821
	}
822
823
	/**
824
	 * Get the locale.
825
	 *
826
	 * @return string|bool
827
	 */
828
	function get_locale() {
829
		$locale = $this->guess_locale_from_lang( get_locale() );
830
831
		if ( ! $locale ) {
832
			$locale = 'en_US';
833
		}
834
835
		return $locale;
836
	}
837
838
	/**
839
	 * Device Pixels support
840
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
841
	 */
842
	function devicepx() {
843
		if ( Jetpack::is_active() ) {
844
			wp_enqueue_script( 'devicepx', set_url_scheme( 'http://s0.wp.com/wp-content/js/devicepx-jetpack.js' ), array(), gmdate( 'oW' ), true );
845
		}
846
	}
847
848
	/**
849
	 * Return the network_site_url so that .com knows what network this site is a part of.
850
	 * @param  bool $option
851
	 * @return string
852
	 */
853
	public function jetpack_main_network_site_option( $option ) {
854
		return network_site_url();
855
	}
856
	/**
857
	 * Network Name.
858
	 */
859
	static function network_name( $option = null ) {
860
		global $current_site;
861
		return $current_site->site_name;
862
	}
863
	/**
864
	 * Does the network allow new user and site registrations.
865
	 * @return string
866
	 */
867
	static function network_allow_new_registrations( $option = null ) {
868
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
869
	}
870
	/**
871
	 * Does the network allow admins to add new users.
872
	 * @return boolian
873
	 */
874
	static function network_add_new_users( $option = null ) {
875
		return (bool) get_site_option( 'add_new_users' );
876
	}
877
	/**
878
	 * File upload psace left per site in MB.
879
	 *  -1 means NO LIMIT.
880
	 * @return number
881
	 */
882
	static function network_site_upload_space( $option = null ) {
883
		// value in MB
884
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
885
	}
886
887
	/**
888
	 * Network allowed file types.
889
	 * @return string
890
	 */
891
	static function network_upload_file_types( $option = null ) {
892
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
893
	}
894
895
	/**
896
	 * Maximum file upload size set by the network.
897
	 * @return number
898
	 */
899
	static function network_max_upload_file_size( $option = null ) {
900
		// value in KB
901
		return get_site_option( 'fileupload_maxk', 300 );
902
	}
903
904
	/**
905
	 * Lets us know if a site allows admins to manage the network.
906
	 * @return array
907
	 */
908
	static function network_enable_administration_menus( $option = null ) {
909
		return get_site_option( 'menu_items' );
910
	}
911
912
	/**
913
	 * Return whether we are dealing with a multi network setup or not.
914
	 * The reason we are type casting this is because we want to avoid the situation where
915
	 * the result is false since when is_main_network_option return false it cases
916
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
917
	 * database which could be set to anything as opposed to what this function returns.
918
	 * @param  bool  $option
919
	 *
920
	 * @return boolean
921
	 */
922
	public function is_main_network_option( $option ) {
923
		// return '1' or ''
924
		return (string) (bool) Jetpack::is_multi_network();
925
	}
926
927
	/**
928
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
929
	 *
930
	 * @param  string  $option
931
	 * @return boolean
932
	 */
933
	public function is_multisite( $option ) {
934
		return (string) (bool) is_multisite();
935
	}
936
937
	/**
938
	 * Implemented since there is no core is multi network function
939
	 * Right now there is no way to tell if we which network is the dominant network on the system
940
	 *
941
	 * @since  3.3
942
	 * @return boolean
943
	 */
944
	public static function is_multi_network() {
945
		global  $wpdb;
946
947
		// if we don't have a multi site setup no need to do any more
948
		if ( ! is_multisite() ) {
949
			return false;
950
		}
951
952
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
953
		if ( $num_sites > 1 ) {
954
			return true;
955
		} else {
956
			return false;
957
		}
958
	}
959
960
	/**
961
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
962
	 * @return null
963
	 */
964
	function update_jetpack_main_network_site_option() {
965
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
966
	}
967
	/**
968
	 * Triggered after a user updates the network settings via Network Settings Admin Page
969
	 *
970
	 */
971
	function update_jetpack_network_settings() {
972
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
973
		// Only sync this info for the main network site.
974
	}
975
976
	/**
977
	 * Get back if the current site is single user site.
978
	 *
979
	 * @return bool
980
	 */
981
	public static function is_single_user_site() {
982
		$user_query = new WP_User_Query( array(
983
			'blog_id' => get_current_blog_id(),
984
			'fields'  => 'ID',
985
			'number' => 2
986
		) );
987
		return 1 === (int) $user_query->get_total();
988
	}
989
990
	/**
991
	 * Returns true if the site has file write access false otherwise.
992
	 * @return string ( '1' | '0' )
993
	 **/
994
	public static function file_system_write_access() {
995
		if ( ! function_exists( 'get_filesystem_method' ) ) {
996
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
997
		}
998
999
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1000
1001
		$filesystem_method = get_filesystem_method();
1002
		if ( $filesystem_method === 'direct' ) {
1003
			return 1;
1004
		}
1005
1006
		ob_start();
1007
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1008
		ob_end_clean();
1009
		if ( $filesystem_credentials_are_stored ) {
1010
			return 1;
1011
		}
1012
		return 0;
1013
	}
1014
1015
	/**
1016
	 * Finds out if a site is using a version control system.
1017
	 * @return string ( '1' | '0' )
1018
	 **/
1019
	public static function is_version_controlled() {
1020
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' );
1021
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1022
	}
1023
1024
	/**
1025
	 * Determines whether the current theme supports featured images or not.
1026
	 * @return string ( '1' | '0' )
1027
	 */
1028
	public static function featured_images_enabled() {
1029
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1030
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1031
	}
1032
	
1033
	/**
1034
	 * jetpack_updates is saved in the following schema:
1035
	 *
1036
	 * array (
1037
	 *      'plugins'                       => (int) Number of plugin updates available.
1038
	 *      'themes'                        => (int) Number of theme updates available.
1039
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1040
	 *      'translations'                  => (int) Number of translation updates available.
1041
	 *      'total'                         => (int) Total of all available updates.
1042
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1043
	 * )
1044
	 * @return array
1045
	 */
1046
	public static function get_updates() {
1047
		$update_data = wp_get_update_data();
1048
1049
		// Stores the individual update counts as well as the total count.
1050
		if ( isset( $update_data['counts'] ) ) {
1051
			$updates = $update_data['counts'];
1052
		}
1053
1054
		// If we need to update WordPress core, let's find the latest version number.
1055 View Code Duplication
		if ( ! empty( $updates['wordpress'] ) ) {
1056
			$cur = get_preferred_from_update_core();
1057
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1058
				$updates['wp_update_version'] = $cur->current;
1059
			}
1060
		}
1061
		return isset( $updates ) ? $updates : array();
1062
	}
1063
1064
	public static function get_update_details() {
1065
		$update_details = array(
1066
			'update_core' => get_site_transient( 'update_core' ),
1067
			'update_plugins' => get_site_transient( 'update_plugins' ),
1068
			'update_themes' => get_site_transient( 'update_themes' ),
1069
		);
1070
		return $update_details;
1071
	}
1072
1073
	public static function refresh_update_data() {
1074
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1075
1076
	}
1077
1078
	public static function refresh_theme_data() {
1079
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1080
	}
1081
1082
	/**
1083
	 * Is Jetpack active?
1084
	 */
1085
	public static function is_active() {
1086
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1087
	}
1088
1089
	/**
1090
	 * Is Jetpack in development (offline) mode?
1091
	 */
1092
	public static function is_development_mode() {
1093
		$development_mode = false;
1094
1095
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1096
			$development_mode = JETPACK_DEV_DEBUG;
1097
		}
1098
1099
		elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1100
			$development_mode = true;
1101
		}
1102
		/**
1103
		 * Filters Jetpack's development mode.
1104
		 *
1105
		 * @see https://jetpack.com/support/development-mode/
1106
		 *
1107
		 * @since 2.2.1
1108
		 *
1109
		 * @param bool $development_mode Is Jetpack's development mode active.
1110
		 */
1111
		return apply_filters( 'jetpack_development_mode', $development_mode );
1112
	}
1113
1114
	/**
1115
	* Get Jetpack development mode notice text and notice class.
1116
	*
1117
	* Mirrors the checks made in Jetpack::is_development_mode
1118
	*
1119
	*/
1120
	public static function show_development_mode_notice() {
1121
		if ( Jetpack::is_development_mode() ) {
1122
			if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1123
				$notice = sprintf(
1124
					/* translators: %s is a URL */
1125
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1126
					'https://jetpack.com/support/development-mode/'
1127
				);
1128
			} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1129
				$notice = sprintf(
1130
					/* translators: %s is a URL */
1131
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1132
					'https://jetpack.com/support/development-mode/'
1133
				);
1134
			} else {
1135
				$notice = sprintf(
1136
					/* translators: %s is a URL */
1137
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1138
					'https://jetpack.com/support/development-mode/'
1139
				);
1140
			}
1141
1142
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1143
		}
1144
1145
		// Throw up a notice if using a development version and as for feedback.
1146
		if ( Jetpack::is_development_version() ) {
1147
			/* translators: %s is a URL */
1148
			$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/' );
1149
1150
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1151
		}
1152
		// Throw up a notice if using staging mode
1153
		if ( Jetpack::is_staging_site() ) {
1154
			/* translators: %s is a URL */
1155
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1156
1157
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1158
		}
1159
	}
1160
1161
	/**
1162
	 * Whether Jetpack's version maps to a public release, or a development version.
1163
	 */
1164
	public static function is_development_version() {
1165
		return ! preg_match( '/^\d+(\.\d+)+$/', JETPACK__VERSION );
1166
	}
1167
1168
	/**
1169
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1170
	 */
1171
	public static function is_user_connected( $user_id = false ) {
1172
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1173
		if ( ! $user_id ) {
1174
			return false;
1175
		}
1176
		return (bool) Jetpack_Data::get_access_token( $user_id );
1177
	}
1178
1179
	/**
1180
	 * Get the wpcom user data of the current|specified connected user.
1181
	 */
1182 View Code Duplication
	public static function get_connected_user_data( $user_id = null ) {
1183
		if ( ! $user_id ) {
1184
			$user_id = get_current_user_id();
1185
		}
1186
		Jetpack::load_xml_rpc_client();
1187
		$xml = new Jetpack_IXR_Client( array(
1188
			'user_id' => $user_id,
1189
		) );
1190
		$xml->query( 'wpcom.getUser' );
1191
		if ( ! $xml->isError() ) {
1192
			return $xml->getResponse();
1193
		}
1194
		return false;
1195
	}
1196
1197
	/**
1198
	 * Get the wpcom email of the current|specified connected user.
1199
	 */
1200 View Code Duplication
	public static function get_connected_user_email( $user_id = null ) {
1201
		if ( ! $user_id ) {
1202
			$user_id = get_current_user_id();
1203
		}
1204
		Jetpack::load_xml_rpc_client();
1205
		$xml = new Jetpack_IXR_Client( array(
1206
			'user_id' => $user_id,
1207
		) );
1208
		$xml->query( 'wpcom.getUserEmail' );
1209
		if ( ! $xml->isError() ) {
1210
			return $xml->getResponse();
1211
		}
1212
		return false;
1213
	}
1214
1215
	/**
1216
	 * Get the wpcom email of the master user.
1217
	 */
1218
	public static function get_master_user_email() {
1219
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1220
		if ( $master_user_id ) {
1221
			return self::get_connected_user_email( $master_user_id );
1222
		}
1223
		return '';
1224
	}
1225
1226
	function current_user_is_connection_owner() {
1227
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1228
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1229
	}
1230
1231
	/**
1232
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1233
	 */
1234
	function extra_oembed_providers() {
1235
		// Cloudup: https://dev.cloudup.com/#oembed
1236
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1237
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1238
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1239
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1240
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1241
	}
1242
1243
	/**
1244
	 * Synchronize connected user role changes
1245
	 */
1246
	function user_role_change( $user_id ) {
1247
		if ( Jetpack::is_active() && Jetpack::is_user_connected( $user_id ) ) {
1248
			$current_user_id = get_current_user_id();
1249
			wp_set_current_user( $user_id );
1250
			$role = $this->translate_current_user_to_role();
1251
			$signed_role = $this->sign_role( $role );
1252
			wp_set_current_user( $current_user_id );
1253
1254
			$master_token   = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1255
			$master_user_id = absint( $master_token->external_user_id );
1256
1257
			if ( ! $master_user_id )
1258
				return; // this shouldn't happen
1259
1260
			Jetpack::xmlrpc_async_call( 'jetpack.updateRole', $user_id, $signed_role );
1261
			//@todo retry on failure
1262
1263
			//try to choose a new master if we're demoting the current one
1264 View Code Duplication
			if ( $user_id == $master_user_id && 'administrator' != $role ) {
1265
				$query = new WP_User_Query(
1266
					array(
1267
						'fields'  => array( 'id' ),
1268
						'role'    => 'administrator',
1269
						'orderby' => 'id',
1270
						'exclude' => array( $master_user_id ),
1271
					)
1272
				);
1273
				$new_master = false;
1274
				foreach ( $query->results as $result ) {
1275
					$uid = absint( $result->id );
1276
					if ( $uid && Jetpack::is_user_connected( $uid ) ) {
1277
						$new_master = $uid;
1278
						break;
1279
					}
1280
				}
1281
1282
				if ( $new_master ) {
1283
					Jetpack_Options::update_option( 'master_user', $new_master );
1284
				}
1285
				// else disconnect..?
1286
			}
1287
		}
1288
	}
1289
1290
	/**
1291
	 * Loads the currently active modules.
1292
	 */
1293
	public static function load_modules() {
1294
		if ( ! self::is_active() && !self::is_development_mode() ) {
1295
			if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) {
1296
				return;
1297
			}
1298
		}
1299
1300
		$version = Jetpack_Options::get_option( 'version' );
1301 View Code Duplication
		if ( ! $version ) {
1302
			$version = $old_version = JETPACK__VERSION . ':' . time();
1303
			/** This action is documented in class.jetpack.php */
1304
			do_action( 'updating_jetpack_version', $version, false );
1305
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1306
		}
1307
		list( $version ) = explode( ':', $version );
1308
1309
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1310
1311
		$modules_data = array();
1312
1313
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1314
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1315
			$updated_modules = array();
1316
			foreach ( $modules as $module ) {
1317
				$modules_data[ $module ] = Jetpack::get_module( $module );
1318
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1319
					continue;
1320
				}
1321
1322
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1323
					continue;
1324
				}
1325
1326
				$updated_modules[] = $module;
1327
			}
1328
1329
			$modules = array_diff( $modules, $updated_modules );
1330
		}
1331
1332
		$is_development_mode = Jetpack::is_development_mode();
1333
1334
		foreach ( $modules as $index => $module ) {
1335
			// If we're in dev mode, disable modules requiring a connection
1336
			if ( $is_development_mode ) {
1337
				// Prime the pump if we need to
1338
				if ( empty( $modules_data[ $module ] ) ) {
1339
					$modules_data[ $module ] = Jetpack::get_module( $module );
1340
				}
1341
				// If the module requires a connection, but we're in local mode, don't include it.
1342
				if ( $modules_data[ $module ]['requires_connection'] ) {
1343
					continue;
1344
				}
1345
			}
1346
1347
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1348
				continue;
1349
			}
1350
1351
			if ( ! @include( Jetpack::get_module_path( $module ) ) ) {
1352
				unset( $modules[ $index ] );
1353
				Jetpack_Options::update_option( 'active_modules', array_values( $modules ) );
1354
				continue;
1355
			}
1356
1357
			/**
1358
			 * Fires when a specific module is loaded.
1359
			 * The dynamic part of the hook, $module, is the module slug.
1360
			 *
1361
			 * @since 1.1.0
1362
			 */
1363
			do_action( 'jetpack_module_loaded_' . $module );
1364
		}
1365
1366
		/**
1367
		 * Fires when all the modules are loaded.
1368
		 *
1369
		 * @since 1.1.0
1370
		 */
1371
		do_action( 'jetpack_modules_loaded' );
1372
1373
		// 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.
1374
		if ( Jetpack::is_active() || Jetpack::is_development_mode() )
1375
			require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1376
	}
1377
1378
	/**
1379
	 * Check if Jetpack's REST API compat file should be included
1380
	 * @action plugins_loaded
1381
	 * @return null
1382
	 */
1383
	public function check_rest_api_compat() {
1384
		/**
1385
		 * Filters the list of REST API compat files to be included.
1386
		 *
1387
		 * @since 2.2.5
1388
		 *
1389
		 * @param array $args Array of REST API compat files to include.
1390
		 */
1391
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1392
1393
		if ( function_exists( 'bbpress' ) )
1394
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1395
1396
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1397
			require_once $_jetpack_rest_api_compat_include;
1398
	}
1399
1400
	/**
1401
	 * Gets all plugins currently active in values, regardless of whether they're
1402
	 * traditionally activated or network activated.
1403
	 *
1404
	 * @todo Store the result in core's object cache maybe?
1405
	 */
1406
	public static function get_active_plugins() {
1407
		$active_plugins = (array) get_option( 'active_plugins', array() );
1408
1409
		if ( is_multisite() ) {
1410
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1411
			// whereas active_plugins stores them in the values.
1412
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1413
			if ( $network_plugins ) {
1414
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1415
			}
1416
		}
1417
1418
		sort( $active_plugins );
1419
1420
		return array_unique( $active_plugins );
1421
	}
1422
1423
	/**
1424
	 * Gets and parses additional plugin data to send with the heartbeat data
1425
	 *
1426
	 * @since 3.8.1
1427
	 *
1428
	 * @return array Array of plugin data
1429
	 */
1430
	public static function get_parsed_plugin_data() {
1431
		if ( ! function_exists( 'get_plugins' ) ) {
1432
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1433
		}
1434
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1435
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1436
		$active_plugins = Jetpack::get_active_plugins();
1437
1438
		$plugins = array();
1439
		foreach ( $all_plugins as $path => $plugin_data ) {
1440
			$plugins[ $path ] = array(
1441
					'is_active' => in_array( $path, $active_plugins ),
1442
					'file'      => $path,
1443
					'name'      => $plugin_data['Name'],
1444
					'version'   => $plugin_data['Version'],
1445
					'author'    => $plugin_data['Author'],
1446
			);
1447
		}
1448
1449
		return $plugins;
1450
	}
1451
1452
	/**
1453
	 * Gets and parses theme data to send with the heartbeat data
1454
	 *
1455
	 * @since 3.8.1
1456
	 *
1457
	 * @return array Array of theme data
1458
	 */
1459
	public static function get_parsed_theme_data() {
1460
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1461
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1462
1463
		$themes = array();
1464
		foreach ( $all_themes as $slug => $theme_data ) {
1465
			$theme_headers = array();
1466
			foreach ( $header_keys as $header_key ) {
1467
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
1468
			}
1469
1470
			$themes[ $slug ] = array(
1471
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
1472
					'slug' => $slug,
1473
					'theme_root' => $theme_data->get_theme_root_uri(),
1474
					'parent' => $theme_data->parent(),
1475
					'headers' => $theme_headers
1476
			);
1477
		}
1478
1479
		return $themes;
1480
	}
1481
1482
	/**
1483
	 * Checks whether a specific plugin is active.
1484
	 *
1485
	 * We don't want to store these in a static variable, in case
1486
	 * there are switch_to_blog() calls involved.
1487
	 */
1488
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
1489
		return in_array( $plugin, self::get_active_plugins() );
1490
	}
1491
1492
	/**
1493
	 * Check if Jetpack's Open Graph tags should be used.
1494
	 * If certain plugins are active, Jetpack's og tags are suppressed.
1495
	 *
1496
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1497
	 * @action plugins_loaded
1498
	 * @return null
1499
	 */
1500
	public function check_open_graph() {
1501
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
1502
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
1503
		}
1504
1505
		$active_plugins = self::get_active_plugins();
1506
1507
		if ( ! empty( $active_plugins ) ) {
1508
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
1509
				if ( in_array( $plugin, $active_plugins ) ) {
1510
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
1511
					break;
1512
				}
1513
			}
1514
		}
1515
1516
		/**
1517
		 * Allow the addition of Open Graph Meta Tags to all pages.
1518
		 *
1519
		 * @since 2.0.3
1520
		 *
1521
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
1522
		 */
1523
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
1524
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
1525
		}
1526
	}
1527
1528
	/**
1529
	 * Check if Jetpack's Twitter tags should be used.
1530
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
1531
	 *
1532
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1533
	 * @action plugins_loaded
1534
	 * @return null
1535
	 */
1536
	public function check_twitter_tags() {
1537
1538
		$active_plugins = self::get_active_plugins();
1539
1540
		if ( ! empty( $active_plugins ) ) {
1541
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
1542
				if ( in_array( $plugin, $active_plugins ) ) {
1543
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
1544
					break;
1545
				}
1546
			}
1547
		}
1548
1549
		/**
1550
		 * Allow Twitter Card Meta tags to be disabled.
1551
		 *
1552
		 * @since 2.6.0
1553
		 *
1554
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
1555
		 */
1556
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
1557
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
1558
		}
1559
	}
1560
1561
	/**
1562
	 * Allows plugins to submit security reports.
1563
 	 *
1564
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
1565
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
1566
	 * @param array   $args         See definitions above
1567
	 */
1568
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
1569
		_deprecated_function( __FUNCTION__, 'jetpack-4.2', null );
1570
	}
1571
1572
/* Jetpack Options API */
1573
1574
	public static function get_option_names( $type = 'compact' ) {
1575
		return Jetpack_Options::get_option_names( $type );
1576
	}
1577
1578
	/**
1579
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
1580
 	 *
1581
	 * @param string $name    Option name
1582
	 * @param mixed  $default (optional)
1583
	 */
1584
	public static function get_option( $name, $default = false ) {
1585
		return Jetpack_Options::get_option( $name, $default );
1586
	}
1587
1588
	/**
1589
	* Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action
1590
	* Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted
1591
	* $name must be a registered option name.
1592
	*/
1593
	public static function create_nonce( $name ) {
1594
		$secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 );
1595
1596
		Jetpack_Options::update_option( $name, $secret );
1597
		@list( $secret_1, $secret_2, $eol ) = explode( ':', Jetpack_Options::get_option( $name ) );
1598
		if ( empty( $secret_1 ) || empty( $secret_2 ) || $eol < time() )
1599
			return new Jetpack_Error( 'missing_secrets' );
1600
1601
		return array(
1602
			'secret_1' => $secret_1,
1603
			'secret_2' => $secret_2,
1604
			'eol'      => $eol,
1605
		);
1606
	}
1607
1608
	/**
1609
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
1610
 	 *
1611
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
1612
	 * @param string $name  Option name
1613
	 * @param mixed  $value Option value
1614
	 */
1615
	public static function update_option( $name, $value ) {
1616
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
1617
		return Jetpack_Options::update_option( $name, $value );
1618
	}
1619
1620
	/**
1621
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
1622
 	 *
1623
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
1624
	 * @param array $array array( option name => option value, ... )
1625
	 */
1626
	public static function update_options( $array ) {
1627
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
1628
		return Jetpack_Options::update_options( $array );
1629
	}
1630
1631
	/**
1632
	 * Deletes the given option.  May be passed multiple option names as an array.
1633
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
1634
	 *
1635
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
1636
	 * @param string|array $names
1637
	 */
1638
	public static function delete_option( $names ) {
1639
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
1640
		return Jetpack_Options::delete_option( $names );
1641
	}
1642
1643
	/**
1644
	 * Enters a user token into the user_tokens option
1645
	 *
1646
	 * @param int $user_id
1647
	 * @param string $token
1648
	 * return bool
1649
	 */
1650
	public static function update_user_token( $user_id, $token, $is_master_user ) {
1651
		// not designed for concurrent updates
1652
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
1653
		if ( ! is_array( $user_tokens ) )
1654
			$user_tokens = array();
1655
		$user_tokens[$user_id] = $token;
1656
		if ( $is_master_user ) {
1657
			$master_user = $user_id;
1658
			$options     = compact( 'user_tokens', 'master_user' );
1659
		} else {
1660
			$options = compact( 'user_tokens' );
1661
		}
1662
		return Jetpack_Options::update_options( $options );
1663
	}
1664
1665
	/**
1666
	 * Returns an array of all PHP files in the specified absolute path.
1667
	 * Equivalent to glob( "$absolute_path/*.php" ).
1668
	 *
1669
	 * @param string $absolute_path The absolute path of the directory to search.
1670
	 * @return array Array of absolute paths to the PHP files.
1671
	 */
1672
	public static function glob_php( $absolute_path ) {
1673
		if ( function_exists( 'glob' ) ) {
1674
			return glob( "$absolute_path/*.php" );
1675
		}
1676
1677
		$absolute_path = untrailingslashit( $absolute_path );
1678
		$files = array();
1679
		if ( ! $dir = @opendir( $absolute_path ) ) {
1680
			return $files;
1681
		}
1682
1683
		while ( false !== $file = readdir( $dir ) ) {
1684
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
1685
				continue;
1686
			}
1687
1688
			$file = "$absolute_path/$file";
1689
1690
			if ( ! is_file( $file ) ) {
1691
				continue;
1692
			}
1693
1694
			$files[] = $file;
1695
		}
1696
1697
		closedir( $dir );
1698
1699
		return $files;
1700
	}
1701
1702
	public static function activate_new_modules( $redirect = false ) {
1703
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
1704
			return;
1705
		}
1706
1707
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
1708 View Code Duplication
		if ( ! $jetpack_old_version ) {
1709
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
1710
			/** This action is documented in class.jetpack.php */
1711
			do_action( 'updating_jetpack_version', $version, false );
1712
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1713
		}
1714
1715
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
1716
1717
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
1718
			return;
1719
		}
1720
1721
		$active_modules     = Jetpack::get_active_modules();
1722
		$reactivate_modules = array();
1723
		foreach ( $active_modules as $active_module ) {
1724
			$module = Jetpack::get_module( $active_module );
1725
			if ( ! isset( $module['changed'] ) ) {
1726
				continue;
1727
			}
1728
1729
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
1730
				continue;
1731
			}
1732
1733
			$reactivate_modules[] = $active_module;
1734
			Jetpack::deactivate_module( $active_module );
1735
		}
1736
1737
		$new_version = JETPACK__VERSION . ':' . time();
1738
		/** This action is documented in class.jetpack.php */
1739
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
1740
		Jetpack_Options::update_options(
1741
			array(
1742
				'version'     => $new_version,
1743
				'old_version' => $jetpack_old_version,
1744
			)
1745
		);
1746
1747
		Jetpack::state( 'message', 'modules_activated' );
1748
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
1749
1750
		if ( $redirect ) {
1751
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
1752
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
1753
				$page = $_GET['page'];
1754
			}
1755
1756
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
1757
			exit;
1758
		}
1759
	}
1760
1761
	/**
1762
	 * List available Jetpack modules. Simply lists .php files in /modules/.
1763
	 * Make sure to tuck away module "library" files in a sub-directory.
1764
	 */
1765
	public static function get_available_modules( $min_version = false, $max_version = false ) {
1766
		static $modules = null;
1767
1768
		if ( ! isset( $modules ) ) {
1769
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
1770
			// Use the cache if we're on the front-end and it's available...
1771
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
1772
				$modules = $available_modules_option[ JETPACK__VERSION ];
1773
			} else {
1774
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
1775
1776
				$modules = array();
1777
1778
				foreach ( $files as $file ) {
1779
					if ( ! $headers = Jetpack::get_module( $file ) ) {
1780
						continue;
1781
					}
1782
1783
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
1784
				}
1785
1786
				Jetpack_Options::update_option( 'available_modules', array(
1787
					JETPACK__VERSION => $modules,
1788
				) );
1789
			}
1790
		}
1791
1792
		/**
1793
		 * Filters the array of modules available to be activated.
1794
		 *
1795
		 * @since 2.4.0
1796
		 *
1797
		 * @param array $modules Array of available modules.
1798
		 * @param string $min_version Minimum version number required to use modules.
1799
		 * @param string $max_version Maximum version number required to use modules.
1800
		 */
1801
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
1802
1803
		if ( ! $min_version && ! $max_version ) {
1804
			return array_keys( $mods );
1805
		}
1806
1807
		$r = array();
1808
		foreach ( $mods as $slug => $introduced ) {
1809
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
1810
				continue;
1811
			}
1812
1813
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
1814
				continue;
1815
			}
1816
1817
			$r[] = $slug;
1818
		}
1819
1820
		return $r;
1821
	}
1822
1823
	/**
1824
	 * Default modules loaded on activation.
1825
	 */
1826
	public static function get_default_modules( $min_version = false, $max_version = false ) {
1827
		$return = array();
1828
1829
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
1830
			$module_data = Jetpack::get_module( $module );
1831
1832
			switch ( strtolower( $module_data['auto_activate'] ) ) {
1833
				case 'yes' :
1834
					$return[] = $module;
1835
					break;
1836
				case 'public' :
1837
					if ( Jetpack_Options::get_option( 'public' ) ) {
1838
						$return[] = $module;
1839
					}
1840
					break;
1841
				case 'no' :
1842
				default :
1843
					break;
1844
			}
1845
		}
1846
		/**
1847
		 * Filters the array of default modules.
1848
		 *
1849
		 * @since 2.5.0
1850
		 *
1851
		 * @param array $return Array of default modules.
1852
		 * @param string $min_version Minimum version number required to use modules.
1853
		 * @param string $max_version Maximum version number required to use modules.
1854
		 */
1855
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
1856
	}
1857
1858
	/**
1859
	 * Checks activated modules during auto-activation to determine
1860
	 * if any of those modules are being deprecated.  If so, close
1861
	 * them out, and add any replacement modules.
1862
	 *
1863
	 * Runs at priority 99 by default.
1864
	 *
1865
	 * This is run late, so that it can still activate a module if
1866
	 * the new module is a replacement for another that the user
1867
	 * currently has active, even if something at the normal priority
1868
	 * would kibosh everything.
1869
	 *
1870
	 * @since 2.6
1871
	 * @uses jetpack_get_default_modules filter
1872
	 * @param array $modules
1873
	 * @return array
1874
	 */
1875
	function handle_deprecated_modules( $modules ) {
1876
		$deprecated_modules = array(
1877
			'debug'            => null,  // Closed out and moved to ./class.jetpack-debugger.php
1878
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
1879
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
1880
		);
1881
1882
		// Don't activate SSO if they never completed activating WPCC.
1883
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
1884
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
1885
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
1886
				$deprecated_modules['wpcc'] = null;
1887
			}
1888
		}
1889
1890
		foreach ( $deprecated_modules as $module => $replacement ) {
1891
			if ( Jetpack::is_module_active( $module ) ) {
1892
				self::deactivate_module( $module );
1893
				if ( $replacement ) {
1894
					$modules[] = $replacement;
1895
				}
1896
			}
1897
		}
1898
1899
		return array_unique( $modules );
1900
	}
1901
1902
	/**
1903
	 * Checks activated plugins during auto-activation to determine
1904
	 * if any of those plugins are in the list with a corresponding module
1905
	 * that is not compatible with the plugin. The module will not be allowed
1906
	 * to auto-activate.
1907
	 *
1908
	 * @since 2.6
1909
	 * @uses jetpack_get_default_modules filter
1910
	 * @param array $modules
1911
	 * @return array
1912
	 */
1913
	function filter_default_modules( $modules ) {
1914
1915
		$active_plugins = self::get_active_plugins();
1916
1917
		if ( ! empty( $active_plugins ) ) {
1918
1919
			// For each module we'd like to auto-activate...
1920
			foreach ( $modules as $key => $module ) {
1921
				// If there are potential conflicts for it...
1922
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
1923
					// For each potential conflict...
1924
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
1925
						// If that conflicting plugin is active...
1926
						if ( in_array( $plugin, $active_plugins ) ) {
1927
							// Remove that item from being auto-activated.
1928
							unset( $modules[ $key ] );
1929
						}
1930
					}
1931
				}
1932
			}
1933
		}
1934
1935
		return $modules;
1936
	}
1937
1938
	/**
1939
	 * Extract a module's slug from its full path.
1940
	 */
1941
	public static function get_module_slug( $file ) {
1942
		return str_replace( '.php', '', basename( $file ) );
1943
	}
1944
1945
	/**
1946
	 * Generate a module's path from its slug.
1947
	 */
1948
	public static function get_module_path( $slug ) {
1949
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
1950
	}
1951
1952
	/**
1953
	 * Load module data from module file. Headers differ from WordPress
1954
	 * plugin headers to avoid them being identified as standalone
1955
	 * plugins on the WordPress plugins page.
1956
	 */
1957
	public static function get_module( $module ) {
1958
		$headers = array(
1959
			'name'                      => 'Module Name',
1960
			'description'               => 'Module Description',
1961
			'jumpstart_desc'            => 'Jumpstart Description',
1962
			'sort'                      => 'Sort Order',
1963
			'recommendation_order'      => 'Recommendation Order',
1964
			'introduced'                => 'First Introduced',
1965
			'changed'                   => 'Major Changes In',
1966
			'deactivate'                => 'Deactivate',
1967
			'free'                      => 'Free',
1968
			'requires_connection'       => 'Requires Connection',
1969
			'auto_activate'             => 'Auto Activate',
1970
			'module_tags'               => 'Module Tags',
1971
			'feature'                   => 'Feature',
1972
			'additional_search_queries' => 'Additional Search Queries',
1973
		);
1974
1975
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
1976
1977
		$mod = Jetpack::get_file_data( $file, $headers );
1978
		if ( empty( $mod['name'] ) ) {
1979
			return false;
1980
		}
1981
1982
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
1983
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
1984
		$mod['deactivate']              = empty( $mod['deactivate'] );
1985
		$mod['free']                    = empty( $mod['free'] );
1986
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
1987
1988
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
1989
			$mod['auto_activate'] = 'No';
1990
		} else {
1991
			$mod['auto_activate'] = (string) $mod['auto_activate'];
1992
		}
1993
1994
		if ( $mod['module_tags'] ) {
1995
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
1996
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
1997
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
1998
		} else {
1999
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2000
		}
2001
2002
		if ( $mod['feature'] ) {
2003
			$mod['feature'] = explode( ',', $mod['feature'] );
2004
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2005
		} else {
2006
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2007
		}
2008
2009
		/**
2010
		 * Filters the feature array on a module.
2011
		 *
2012
		 * This filter allows you to control where each module is filtered: Recommended,
2013
		 * Jumpstart, and the default "Other" listing.
2014
		 *
2015
		 * @since 3.5.0
2016
		 *
2017
		 * @param array   $mod['feature'] The areas to feature this module:
2018
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2019
		 *     'Recommended' shows on the main Jetpack admin screen.
2020
		 *     'Other' should be the default if no other value is in the array.
2021
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2022
		 * @param array   $mod All the currently assembled module data.
2023
		 */
2024
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2025
2026
		/**
2027
		 * Filter the returned data about a module.
2028
		 *
2029
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2030
		 * so please be careful.
2031
		 *
2032
		 * @since 3.6.0
2033
		 *
2034
		 * @param array   $mod    The details of the requested module.
2035
		 * @param string  $module The slug of the module, e.g. sharedaddy
2036
		 * @param string  $file   The path to the module source file.
2037
		 */
2038
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2039
	}
2040
2041
	/**
2042
	 * Like core's get_file_data implementation, but caches the result.
2043
	 */
2044
	public static function get_file_data( $file, $headers ) {
2045
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2046
		$file_name = basename( $file );
2047
		$file_data_option = Jetpack_Options::get_option( 'file_data', array() );
2048
		$key              = md5( $file_name . serialize( $headers ) );
2049
		$refresh_cache    = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2050
2051
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2052
		if ( ! $refresh_cache && isset( $file_data_option[ JETPACK__VERSION ][ $key ] ) ) {
2053
			return $file_data_option[ JETPACK__VERSION ][ $key ];
2054
		}
2055
2056
		$data = get_file_data( $file, $headers );
2057
2058
		// Strip out any old Jetpack versions that are cluttering the option.
2059
		$file_data_option = array_intersect_key( (array) $file_data_option, array( JETPACK__VERSION => null ) );
2060
		$file_data_option[ JETPACK__VERSION ][ $key ] = $data;
2061
		Jetpack_Options::update_option( 'file_data', $file_data_option );
2062
2063
		return $data;
2064
	}
2065
2066
	/**
2067
	 * Return translated module tag.
2068
	 *
2069
	 * @param string $tag Tag as it appears in each module heading.
2070
	 *
2071
	 * @return mixed
2072
	 */
2073
	public static function translate_module_tag( $tag ) {
2074
		return jetpack_get_module_i18n_tag( $tag );
2075
	}
2076
2077
	/**
2078
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2079
	 *
2080
	 * @since 3.9.2
2081
	 *
2082
	 * @param array $modules
2083
	 *
2084
	 * @return string|void
2085
	 */
2086
	public static function get_translated_modules( $modules ) {
2087
		foreach ( $modules as $index => $module ) {
2088
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2089
			if ( isset( $module['name'] ) ) {
2090
				$modules[ $index ]['name'] = $i18n_module['name'];
2091
			}
2092
			if ( isset( $module['description'] ) ) {
2093
				$modules[ $index ]['description'] = $i18n_module['description'];
2094
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2095
			}
2096
		}
2097
		return $modules;
2098
	}
2099
2100
	/**
2101
	 * Get a list of activated modules as an array of module slugs.
2102
	 */
2103
	public static function get_active_modules() {
2104
		$active = Jetpack_Options::get_option( 'active_modules' );
2105
		if ( ! is_array( $active ) )
2106
			$active = array();
2107
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2108
			$active[] = 'vaultpress';
2109
		} else {
2110
			$active = array_diff( $active, array( 'vaultpress' ) );
2111
		}
2112
2113
		//If protect is active on the main site of a multisite, it should be active on all sites.
2114
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2115
			$active[] = 'protect';
2116
		}
2117
2118
		return array_unique( $active );
2119
	}
2120
2121
	/**
2122
	 * Check whether or not a Jetpack module is active.
2123
	 *
2124
	 * @param string $module The slug of a Jetpack module.
2125
	 * @return bool
2126
	 *
2127
	 * @static
2128
	 */
2129
	public static function is_module_active( $module ) {
2130
		return in_array( $module, self::get_active_modules() );
2131
	}
2132
2133
	public static function is_module( $module ) {
2134
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2135
	}
2136
2137
	/**
2138
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2139
	 *
2140
	 * @param bool $catch True to start catching, False to stop.
2141
	 *
2142
	 * @static
2143
	 */
2144
	public static function catch_errors( $catch ) {
2145
		static $display_errors, $error_reporting;
2146
2147
		if ( $catch ) {
2148
			$display_errors  = @ini_set( 'display_errors', 1 );
2149
			$error_reporting = @error_reporting( E_ALL );
2150
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2151
		} else {
2152
			@ini_set( 'display_errors', $display_errors );
2153
			@error_reporting( $error_reporting );
2154
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2155
		}
2156
	}
2157
2158
	/**
2159
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2160
	 */
2161
	public static function catch_errors_on_shutdown() {
2162
		Jetpack::state( 'php_errors', ob_get_clean() );
2163
	}
2164
2165
	public static function activate_default_modules( $min_version = false, $max_version = false, $other_modules = array(), $redirect = true ) {
2166
		$jetpack = Jetpack::init();
2167
2168
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2169
		$modules = array_merge( $other_modules, $modules );
2170
2171
		// Look for standalone plugins and disable if active.
2172
2173
		$to_deactivate = array();
2174
		foreach ( $modules as $module ) {
2175
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2176
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2177
			}
2178
		}
2179
2180
		$deactivated = array();
2181
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2182
			list( $probable_file, $probable_title ) = $deactivate_me;
2183
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2184
				$deactivated[] = $module;
2185
			}
2186
		}
2187
2188
		if ( $deactivated && $redirect ) {
2189
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2190
2191
			$url = add_query_arg(
2192
				array(
2193
					'action'   => 'activate_default_modules',
2194
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2195
				),
2196
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2197
			);
2198
			wp_safe_redirect( $url );
2199
			exit;
2200
		}
2201
2202
		/**
2203
		 * Fires before default modules are activated.
2204
		 *
2205
		 * @since 1.9.0
2206
		 *
2207
		 * @param string $min_version Minimum version number required to use modules.
2208
		 * @param string $max_version Maximum version number required to use modules.
2209
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2210
		 */
2211
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2212
2213
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2214
		Jetpack::restate();
2215
		Jetpack::catch_errors( true );
2216
2217
		$active = Jetpack::get_active_modules();
2218
2219
		foreach ( $modules as $module ) {
2220
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2221
				$active[] = $module;
2222
				Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2223
				continue;
2224
			}
2225
2226
			if ( in_array( $module, $active ) ) {
2227
				$module_info = Jetpack::get_module( $module );
2228
				if ( ! $module_info['deactivate'] ) {
2229
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2230 View Code Duplication
					if ( $active_state = Jetpack::state( $state ) ) {
2231
						$active_state = explode( ',', $active_state );
2232
					} else {
2233
						$active_state = array();
2234
					}
2235
					$active_state[] = $module;
2236
					Jetpack::state( $state, implode( ',', $active_state ) );
2237
				}
2238
				continue;
2239
			}
2240
2241
			$file = Jetpack::get_module_path( $module );
2242
			if ( ! file_exists( $file ) ) {
2243
				continue;
2244
			}
2245
2246
			// we'll override this later if the plugin can be included without fatal error
2247
			if ( $redirect ) {
2248
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2249
			}
2250
			Jetpack::state( 'error', 'module_activation_failed' );
2251
			Jetpack::state( 'module', $module );
2252
			ob_start();
2253
			require $file;
2254
			/**
2255
			 * Fires when a specific module is activated.
2256
			 *
2257
			 * @since 1.9.0
2258
			 *
2259
			 * @param string $module Module slug.
2260
			 */
2261
			do_action( 'jetpack_activate_module', $module );
2262
			$active[] = $module;
2263
			$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2264 View Code Duplication
			if ( $active_state = Jetpack::state( $state ) ) {
2265
				$active_state = explode( ',', $active_state );
2266
			} else {
2267
				$active_state = array();
2268
			}
2269
			$active_state[] = $module;
2270
			Jetpack::state( $state, implode( ',', $active_state ) );
2271
			Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2272
			ob_end_clean();
2273
		}
2274
		Jetpack::state( 'error', false );
2275
		Jetpack::state( 'module', false );
2276
		Jetpack::catch_errors( false );
2277
		/**
2278
		 * Fires when default modules are activated.
2279
		 *
2280
		 * @since 1.9.0
2281
		 *
2282
		 * @param string $min_version Minimum version number required to use modules.
2283
		 * @param string $max_version Maximum version number required to use modules.
2284
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2285
		 */
2286
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2287
	}
2288
2289
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2290
		/**
2291
		 * Fires before a module is activated.
2292
		 *
2293
		 * @since 2.6.0
2294
		 *
2295
		 * @param string $module Module slug.
2296
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2297
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2298
		 */
2299
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2300
2301
		$jetpack = Jetpack::init();
2302
2303
		if ( ! strlen( $module ) )
2304
			return false;
2305
2306
		if ( ! Jetpack::is_module( $module ) )
2307
			return false;
2308
2309
		// If it's already active, then don't do it again
2310
		$active = Jetpack::get_active_modules();
2311
		foreach ( $active as $act ) {
2312
			if ( $act == $module )
2313
				return true;
2314
		}
2315
2316
		$module_data = Jetpack::get_module( $module );
2317
2318
		if ( ! Jetpack::is_active() ) {
2319
			if ( !Jetpack::is_development_mode() )
2320
				return false;
2321
2322
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2323
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2324
				return false;
2325
		}
2326
2327
		// Check and see if the old plugin is active
2328
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2329
			// Deactivate the old plugin
2330
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2331
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2332
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2333
				Jetpack::state( 'deactivated_plugins', $module );
2334
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2335
				exit;
2336
			}
2337
		}
2338
2339
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2340
		Jetpack::state( 'module', $module );
2341
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2342
2343
		Jetpack::catch_errors( true );
2344
		ob_start();
2345
		require Jetpack::get_module_path( $module );
2346
		/** This action is documented in class.jetpack.php */
2347
		do_action( 'jetpack_activate_module', $module );
2348
		$active[] = $module;
2349
		Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2350
		Jetpack::state( 'error', false ); // the override
2351
		ob_end_clean();
2352
		Jetpack::catch_errors( false );
2353
2354
		// A flag for Jump Start so it's not shown again. Only set if it hasn't been yet.
2355 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2356
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2357
2358
			//Jump start is being dismissed send data to MC Stats
2359
			$jetpack->stat( 'jumpstart', 'manual,'.$module );
2360
2361
			$jetpack->do_stats( 'server_side' );
2362
		}
2363
2364
		if ( $redirect ) {
2365
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2366
		}
2367
		if ( $exit ) {
2368
			exit;
2369
		}
2370
		return true;
2371
	}
2372
2373
	function activate_module_actions( $module ) {
2374
		/**
2375
		 * Fires when a module is activated.
2376
		 * The dynamic part of the filter, $module, is the module slug.
2377
		 *
2378
		 * @since 1.9.0
2379
		 *
2380
		 * @param string $module Module slug.
2381
		 */
2382
		do_action( "jetpack_activate_module_$module", $module );
2383
	}
2384
2385
	public static function deactivate_module( $module ) {
2386
		/**
2387
		 * Fires when a module is deactivated.
2388
		 *
2389
		 * @since 1.9.0
2390
		 *
2391
		 * @param string $module Module slug.
2392
		 */
2393
		do_action( 'jetpack_pre_deactivate_module', $module );
2394
2395
		$jetpack = Jetpack::init();
2396
2397
		$active = Jetpack::get_active_modules();
2398
		$new    = array_filter( array_diff( $active, (array) $module ) );
2399
2400
		/**
2401
		 * Fires when a module is deactivated.
2402
		 * The dynamic part of the filter, $module, is the module slug.
2403
		 *
2404
		 * @since 1.9.0
2405
		 *
2406
		 * @param string $module Module slug.
2407
		 */
2408
		do_action( "jetpack_deactivate_module_$module", $module );
2409
2410
		// A flag for Jump Start so it's not shown again.
2411 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2412
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2413
2414
			//Jump start is being dismissed send data to MC Stats
2415
			$jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module );
2416
2417
			$jetpack->do_stats( 'server_side' );
2418
		}
2419
2420
		$success = Jetpack_Options::update_option( 'active_modules', array_unique( $new ) );
2421
		/**
2422
		 * Fired after a module has been deactivated.
2423
		 *
2424
		 * @since 4.1
2425
		 *
2426
		 * @param string $module Module slug.
2427
		 * @param boolean $success whether the module was deactivated.
2428
		 */
2429
		do_action( 'jetpack_deactivate_module', $module, $success );
2430
2431
		return $success;
2432
	}
2433
2434
	public static function enable_module_configurable( $module ) {
2435
		$module = Jetpack::get_module_slug( $module );
2436
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
2437
	}
2438
2439
	public static function module_configuration_url( $module ) {
2440
		$module = Jetpack::get_module_slug( $module );
2441
		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2442
	}
2443
2444
	public static function module_configuration_load( $module, $method ) {
2445
		$module = Jetpack::get_module_slug( $module );
2446
		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2447
	}
2448
2449
	public static function module_configuration_head( $module, $method ) {
2450
		$module = Jetpack::get_module_slug( $module );
2451
		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2452
	}
2453
2454
	public static function module_configuration_screen( $module, $method ) {
2455
		$module = Jetpack::get_module_slug( $module );
2456
		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2457
	}
2458
2459
	public static function module_configuration_activation_screen( $module, $method ) {
2460
		$module = Jetpack::get_module_slug( $module );
2461
		add_action( 'display_activate_module_setting_' . $module, $method );
2462
	}
2463
2464
/* Installation */
2465
2466
	public static function bail_on_activation( $message, $deactivate = true ) {
2467
?>
2468
<!doctype html>
2469
<html>
2470
<head>
2471
<meta charset="<?php bloginfo( 'charset' ); ?>">
2472
<style>
2473
* {
2474
	text-align: center;
2475
	margin: 0;
2476
	padding: 0;
2477
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
2478
}
2479
p {
2480
	margin-top: 1em;
2481
	font-size: 18px;
2482
}
2483
</style>
2484
<body>
2485
<p><?php echo esc_html( $message ); ?></p>
2486
</body>
2487
</html>
2488
<?php
2489
		if ( $deactivate ) {
2490
			$plugins = get_option( 'active_plugins' );
2491
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
2492
			$update  = false;
2493
			foreach ( $plugins as $i => $plugin ) {
2494
				if ( $plugin === $jetpack ) {
2495
					$plugins[$i] = false;
2496
					$update = true;
2497
				}
2498
			}
2499
2500
			if ( $update ) {
2501
				update_option( 'active_plugins', array_filter( $plugins ) );
2502
			}
2503
		}
2504
		exit;
2505
	}
2506
2507
	/**
2508
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
2509
	 * @static
2510
	 */
2511
	public static function plugin_activation( $network_wide ) {
2512
		Jetpack_Options::update_option( 'activated', 1 );
2513
2514
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
2515
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
2516
		}
2517
2518
		if ( $network_wide )
2519
			Jetpack::state( 'network_nag', true );
2520
2521
		Jetpack::plugin_initialize();
2522
	}
2523
	/**
2524
	 * Runs before bumping version numbers up to a new version
2525
	 * @param  (string) $version    Version:timestamp
2526
	 * @param  (string) $old_version Old Version:timestamp or false if not set yet.
2527
	 * @return null              [description]
2528
	 */
2529
	public static function do_version_bump( $version, $old_version ) {
2530
2531
		if ( ! $old_version ) { // For new sites
2532
			// Setting up jetpack manage
2533
			Jetpack::activate_manage();
2534
		}
2535
	}
2536
2537
	/**
2538
	 * Sets the internal version number and activation state.
2539
	 * @static
2540
	 */
2541
	public static function plugin_initialize() {
2542
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
2543
			Jetpack_Options::update_option( 'activated', 2 );
2544
		}
2545
2546 View Code Duplication
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
2547
			$version = $old_version = JETPACK__VERSION . ':' . time();
2548
			/** This action is documented in class.jetpack.php */
2549
			do_action( 'updating_jetpack_version', $version, false );
2550
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2551
		}
2552
2553
		Jetpack::load_modules();
2554
2555
		Jetpack_Options::delete_option( 'do_activate' );
2556
	}
2557
2558
	/**
2559
	 * Removes all connection options
2560
	 * @static
2561
	 */
2562
	public static function plugin_deactivation( ) {
2563
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
2564
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
2565
			Jetpack_Network::init()->deactivate();
2566
		} else {
2567
			Jetpack::disconnect( false );
2568
			//Jetpack_Heartbeat::init()->deactivate();
2569
		}
2570
	}
2571
2572
	/**
2573
	 * Disconnects from the Jetpack servers.
2574
	 * Forgets all connection details and tells the Jetpack servers to do the same.
2575
	 * @static
2576
	 */
2577
	public static function disconnect( $update_activated_state = true ) {
2578
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
2579
		Jetpack::clean_nonces( true );
2580
2581
		Jetpack::load_xml_rpc_client();
2582
		$xml = new Jetpack_IXR_Client();
2583
		$xml->query( 'jetpack.deregister' );
2584
2585
		Jetpack_Options::delete_option(
2586
			array(
2587
				'register',
2588
				'blog_token',
2589
				'user_token',
2590
				'user_tokens',
2591
				'master_user',
2592
				'time_diff',
2593
				'fallback_no_verify_ssl_certs',
2594
			)
2595
		);
2596
2597
		if ( $update_activated_state ) {
2598
			Jetpack_Options::update_option( 'activated', 4 );
2599
		}
2600
2601
		$jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' );
2602
		// Check then record unique disconnection if site has never been disconnected previously
2603
		if ( -1 == $jetpack_unique_connection['disconnected'] ) {
2604
			$jetpack_unique_connection['disconnected'] = 1;
2605
		}
2606
		else {
2607
			if ( 0 == $jetpack_unique_connection['disconnected'] ) {
2608
				//track unique disconnect
2609
				$jetpack = Jetpack::init();
2610
2611
				$jetpack->stat( 'connections', 'unique-disconnect' );
2612
				$jetpack->do_stats( 'server_side' );
2613
			}
2614
			// increment number of times disconnected
2615
			$jetpack_unique_connection['disconnected'] += 1;
2616
		}
2617
2618
		Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
2619
		
2620
		// Delete all the sync related data. Since it could be taking up space.
2621
		Jetpack_Sync_Sender::getInstance()->uninstall();
2622
2623
		// Disable the Heartbeat cron
2624
		Jetpack_Heartbeat::init()->deactivate();
2625
	}
2626
2627
	/**
2628
	 * Unlinks the current user from the linked WordPress.com user
2629
	 */
2630
	public static function unlink_user( $user_id = null ) {
2631
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
2632
			return false;
2633
2634
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
2635
2636
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
2637
			return false;
2638
2639
		if ( ! isset( $tokens[ $user_id ] ) )
2640
			return false;
2641
2642
		Jetpack::load_xml_rpc_client();
2643
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
2644
		$xml->query( 'jetpack.unlink_user', $user_id );
2645
2646
		unset( $tokens[ $user_id ] );
2647
2648
		Jetpack_Options::update_option( 'user_tokens', $tokens );
2649
2650
		/**
2651
		 * Fires after the current user has been unlinked from WordPress.com.
2652
		 *
2653
		 * @since 4.1.0
2654
		 *
2655
		 * @param int $user_id The current user's ID.
2656
		 */
2657
		do_action( 'jetpack_unlinked_user', $user_id );
2658
2659
		return true;
2660
	}
2661
2662
	/**
2663
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
2664
	 */
2665
	public static function try_registration() {
2666
		// Let's get some testing in beta versions and such.
2667
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
2668
			// Before attempting to connect, let's make sure that the domains are viable.
2669
			$domains_to_check = array_unique( array(
2670
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
2671
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
2672
			) );
2673
			foreach ( $domains_to_check as $domain ) {
2674
				$result = Jetpack_Data::is_usable_domain( $domain );
2675
				if ( is_wp_error( $result ) ) {
2676
					return $result;
2677
				}
2678
			}
2679
		}
2680
2681
		$result = Jetpack::register();
2682
2683
		// If there was an error with registration and the site was not registered, record this so we can show a message.
2684
		if ( ! $result || is_wp_error( $result ) ) {
2685
			return $result;
2686
		} else {
2687
			return true;
2688
		}
2689
	}
2690
2691
	/**
2692
	 * Tracking an internal event log. Try not to put too much chaff in here.
2693
	 *
2694
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
2695
	 */
2696
	public static function log( $code, $data = null ) {
2697
		// only grab the latest 200 entries
2698
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
2699
2700
		// Append our event to the log
2701
		$log_entry = array(
2702
			'time'    => time(),
2703
			'user_id' => get_current_user_id(),
2704
			'blog_id' => Jetpack_Options::get_option( 'id' ),
2705
			'code'    => $code,
2706
		);
2707
		// Don't bother storing it unless we've got some.
2708
		if ( ! is_null( $data ) ) {
2709
			$log_entry['data'] = $data;
2710
		}
2711
		$log[] = $log_entry;
2712
2713
		// Try add_option first, to make sure it's not autoloaded.
2714
		// @todo: Add an add_option method to Jetpack_Options
2715
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
2716
			Jetpack_Options::update_option( 'log', $log );
2717
		}
2718
2719
		/**
2720
		 * Fires when Jetpack logs an internal event.
2721
		 *
2722
		 * @since 3.0.0
2723
		 *
2724
		 * @param array $log_entry {
2725
		 *	Array of details about the log entry.
2726
		 *
2727
		 *	@param string time Time of the event.
2728
		 *	@param int user_id ID of the user who trigerred the event.
2729
		 *	@param int blog_id Jetpack Blog ID.
2730
		 *	@param string code Unique name for the event.
2731
		 *	@param string data Data about the event.
2732
		 * }
2733
		 */
2734
		do_action( 'jetpack_log_entry', $log_entry );
2735
	}
2736
2737
	/**
2738
	 * Get the internal event log.
2739
	 *
2740
	 * @param $event (string) - only return the specific log events
2741
	 * @param $num   (int)    - get specific number of latest results, limited to 200
2742
	 *
2743
	 * @return array of log events || WP_Error for invalid params
2744
	 */
2745
	public static function get_log( $event = false, $num = false ) {
2746
		if ( $event && ! is_string( $event ) ) {
2747
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
2748
		}
2749
2750
		if ( $num && ! is_numeric( $num ) ) {
2751
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
2752
		}
2753
2754
		$entire_log = Jetpack_Options::get_option( 'log', array() );
2755
2756
		// If nothing set - act as it did before, otherwise let's start customizing the output
2757
		if ( ! $num && ! $event ) {
2758
			return $entire_log;
2759
		} else {
2760
			$entire_log = array_reverse( $entire_log );
2761
		}
2762
2763
		$custom_log_output = array();
2764
2765
		if ( $event ) {
2766
			foreach ( $entire_log as $log_event ) {
2767
				if ( $event == $log_event[ 'code' ] ) {
2768
					$custom_log_output[] = $log_event;
2769
				}
2770
			}
2771
		} else {
2772
			$custom_log_output = $entire_log;
2773
		}
2774
2775
		if ( $num ) {
2776
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
2777
		}
2778
2779
		return $custom_log_output;
2780
	}
2781
2782
	/**
2783
	 * Log modification of important settings.
2784
	 */
2785
	public static function log_settings_change( $option, $old_value, $value ) {
2786
		switch( $option ) {
2787
			case 'jetpack_sync_non_public_post_stati':
2788
				self::log( $option, $value );
2789
				break;
2790
		}
2791
	}
2792
2793
	/**
2794
	 * Return stat data for WPCOM sync
2795
	 */
2796
	function get_stat_data() {
2797
		$heartbeat_data = Jetpack_Heartbeat::generate_stats_array();
2798
		$additional_data = $this->get_additional_stat_data();
2799
2800
		return json_encode( array_merge( $heartbeat_data, $additional_data ) );
2801
	}
2802
2803
	/**
2804
	 * Get additional stat data to sync to WPCOM
2805
	 */
2806
	function get_additional_stat_data( $prefix = '' ) {
2807
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
2808
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
2809
		$return["{$prefix}users"]          = count_users();
2810
		$return["{$prefix}site-count"]     = 0;
2811
		if ( function_exists( 'get_blog_count' ) ) {
2812
			$return["{$prefix}site-count"] = get_blog_count();
2813
		}
2814
		return $return;
2815
	}
2816
2817
	/* Admin Pages */
2818
2819
	function admin_init() {
2820
		// If the plugin is not connected, display a connect message.
2821
		if (
2822
			// the plugin was auto-activated and needs its candy
2823
			Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' )
2824
		||
2825
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
2826
			! Jetpack_Options::get_option( 'activated' )
2827
		) {
2828
			Jetpack::plugin_initialize();
2829
		}
2830
2831
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
2832
			if ( 4 != Jetpack_Options::get_option( 'activated' ) ) {
2833
				// Show connect notice on dashboard and plugins pages
2834
				add_action( 'load-index.php', array( $this, 'prepare_connect_notice' ) );
2835
				add_action( 'load-plugins.php', array( $this, 'prepare_connect_notice' ) );
2836
			}
2837
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
2838
			// Upgrade: 1.1 -> 1.1.1
2839
			// Check and see if host can verify the Jetpack servers' SSL certificate
2840
			$args = array();
2841
			Jetpack_Client::_wp_remote_request(
2842
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
2843
				$args,
2844
				true
2845
			);
2846
		} else {
2847
			// Show the notice on the Dashboard only for now
2848
2849
			add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
2850
		}
2851
2852
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
2853
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
2854
		}
2855
2856
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
2857
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
2858
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
2859
2860
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
2861
			// Artificially throw errors in certain whitelisted cases during plugin activation
2862
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
2863
2864
			// Kick off synchronization of user role when it changes
2865
			add_action( 'set_user_role', array( $this, 'user_role_change' ) );
2866
		}
2867
2868
		// Jetpack Manage Activation Screen from .com
2869
		Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
2870
2871
		// Add custom column in wp-admin/users.php to show whether user is linked.
2872
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
2873
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
2874
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
2875
	}
2876
2877
	function admin_body_class( $admin_body_class = '' ) {
2878
		$classes = explode( ' ', trim( $admin_body_class ) );
2879
2880
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
2881
2882
		$admin_body_class = implode( ' ', array_unique( $classes ) );
2883
		return " $admin_body_class ";
2884
	}
2885
2886
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
2887
		return $admin_body_class . ' jetpack-pagestyles ';
2888
	}
2889
2890
	function prepare_connect_notice() {
2891
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
2892
2893
		add_action( 'admin_notices', array( $this, 'admin_connect_notice' ) );
2894
2895
		if ( Jetpack::state( 'network_nag' ) )
2896
			add_action( 'network_admin_notices', array( $this, 'network_connect_notice' ) );
2897
	}
2898
	/**
2899
	 * Call this function if you want the Big Jetpack Manage Notice to show up.
2900
	 *
2901
	 * @return null
2902
	 */
2903
	function prepare_manage_jetpack_notice() {
2904
2905
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
2906
		add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) );
2907
	}
2908
2909
	function manage_activate_screen() {
2910
		include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' );
2911
	}
2912
	/**
2913
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
2914
	 * This function artificially throws errors for such cases (whitelisted).
2915
	 *
2916
	 * @param string $plugin The activated plugin.
2917
	 */
2918
	function throw_error_on_activate_plugin( $plugin ) {
2919
		$active_modules = Jetpack::get_active_modules();
2920
2921
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
2922
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
2923
			$throw = false;
2924
2925
			// Try and make sure it really was the stats plugin
2926
			if ( ! class_exists( 'ReflectionFunction' ) ) {
2927
				if ( 'stats.php' == basename( $plugin ) ) {
2928
					$throw = true;
2929
				}
2930
			} else {
2931
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
2932
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
2933
					$throw = true;
2934
				}
2935
			}
2936
2937
			if ( $throw ) {
2938
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
2939
			}
2940
		}
2941
	}
2942
2943
	function intercept_plugin_error_scrape_init() {
2944
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
2945
	}
2946
2947
	function intercept_plugin_error_scrape( $action, $result ) {
2948
		if ( ! $result ) {
2949
			return;
2950
		}
2951
2952
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
2953
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
2954
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
2955
			}
2956
		}
2957
	}
2958
2959
	function add_remote_request_handlers() {
2960
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
2961
	}
2962
2963
	function remote_request_handlers() {
2964
		switch ( current_filter() ) {
2965
		case 'wp_ajax_nopriv_jetpack_upload_file' :
2966
			$response = $this->upload_handler();
2967
			break;
2968
		default :
2969
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
2970
			break;
2971
		}
2972
2973
		if ( ! $response ) {
2974
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
2975
		}
2976
2977
		if ( is_wp_error( $response ) ) {
2978
			$status_code       = $response->get_error_data();
2979
			$error             = $response->get_error_code();
2980
			$error_description = $response->get_error_message();
2981
2982
			if ( ! is_int( $status_code ) ) {
2983
				$status_code = 400;
2984
			}
2985
2986
			status_header( $status_code );
2987
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
2988
		}
2989
2990
		status_header( 200 );
2991
		if ( true === $response ) {
2992
			exit;
2993
		}
2994
2995
		die( json_encode( (object) $response ) );
2996
	}
2997
2998
	function upload_handler() {
2999
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
3000
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
3001
		}
3002
3003
		$user = wp_authenticate( '', '' );
3004
		if ( ! $user || is_wp_error( $user ) ) {
3005
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
3006
		}
3007
3008
		wp_set_current_user( $user->ID );
3009
3010
		if ( ! current_user_can( 'upload_files' ) ) {
3011
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
3012
		}
3013
3014
		if ( empty( $_FILES ) ) {
3015
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3016
		}
3017
3018
		foreach ( array_keys( $_FILES ) as $files_key ) {
3019
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3020
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3021
			}
3022
		}
3023
3024
		$media_keys = array_keys( $_FILES['media'] );
3025
3026
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3027
		if ( ! $token || is_wp_error( $token ) ) {
3028
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3029
		}
3030
3031
		$uploaded_files = array();
3032
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3033
		unset( $GLOBALS['post'] );
3034
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3035
			$file = array();
3036
			foreach ( $media_keys as $media_key ) {
3037
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3038
			}
3039
3040
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3041
3042
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3043
			if ( $hmac_provided !== $hmac_file ) {
3044
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3045
				continue;
3046
			}
3047
3048
			$_FILES['.jetpack.upload.'] = $file;
3049
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3050
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3051
				$post_id = 0;
3052
			}
3053
			$attachment_id = media_handle_upload(
3054
				'.jetpack.upload.',
3055
				$post_id,
3056
				array(),
3057
				array(
3058
					'action' => 'jetpack_upload_file',
3059
				)
3060
			);
3061
3062
			if ( ! $attachment_id ) {
3063
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3064
			} elseif ( is_wp_error( $attachment_id ) ) {
3065
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3066
			} else {
3067
				$attachment = get_post( $attachment_id );
3068
				$uploaded_files[$index] = (object) array(
3069
					'id'   => (string) $attachment_id,
3070
					'file' => $attachment->post_title,
3071
					'url'  => wp_get_attachment_url( $attachment_id ),
3072
					'type' => $attachment->post_mime_type,
3073
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3074
				);
3075
			}
3076
		}
3077
		if ( ! is_null( $global_post ) ) {
3078
			$GLOBALS['post'] = $global_post;
3079
		}
3080
3081
		return $uploaded_files;
3082
	}
3083
3084
	/**
3085
	 * Add help to the Jetpack page
3086
	 *
3087
	 * @since Jetpack (1.2.3)
3088
	 * @return false if not the Jetpack page
3089
	 */
3090
	function admin_help() {
3091
		$current_screen = get_current_screen();
3092
3093
		// Overview
3094
		$current_screen->add_help_tab(
3095
			array(
3096
				'id'		=> 'home',
3097
				'title'		=> __( 'Home', 'jetpack' ),
3098
				'content'	=>
3099
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3100
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3101
					'<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>',
3102
			)
3103
		);
3104
3105
		// Screen Content
3106
		if ( current_user_can( 'manage_options' ) ) {
3107
			$current_screen->add_help_tab(
3108
				array(
3109
					'id'		=> 'settings',
3110
					'title'		=> __( 'Settings', 'jetpack' ),
3111
					'content'	=>
3112
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3113
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3114
						'<ol>' .
3115
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3116
							'<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>' .
3117
						'</ol>' .
3118
						'<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>'
3119
				)
3120
			);
3121
		}
3122
3123
		// Help Sidebar
3124
		$current_screen->set_help_sidebar(
3125
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3126
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3127
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3128
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3129
		);
3130
	}
3131
3132
	function admin_menu_css() {
3133
		wp_enqueue_style( 'jetpack-icons' );
3134
	}
3135
3136
	function admin_menu_order() {
3137
		return true;
3138
	}
3139
3140 View Code Duplication
	function jetpack_menu_order( $menu_order ) {
3141
		$jp_menu_order = array();
3142
3143
		foreach ( $menu_order as $index => $item ) {
3144
			if ( $item != 'jetpack' ) {
3145
				$jp_menu_order[] = $item;
3146
			}
3147
3148
			if ( $index == 0 ) {
3149
				$jp_menu_order[] = 'jetpack';
3150
			}
3151
		}
3152
3153
		return $jp_menu_order;
3154
	}
3155
3156
	function admin_head() {
3157 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3158
			/** This action is documented in class.jetpack-admin-page.php */
3159
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3160
	}
3161
3162
	function admin_banner_styles() {
3163
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3164
3165
		wp_enqueue_style( 'jetpack', plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-20121016' );
3166
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3167
		wp_style_add_data( 'jetpack', 'suffix', $min );
3168
	}
3169
3170
	function admin_scripts() {
3171
		wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', JETPACK__PLUGIN_FILE ), array( 'jquery', 'wp-util' ), JETPACK__VERSION . '-20121111' );
3172
		wp_localize_script(
3173
			'jetpack-js',
3174
			'jetpackL10n',
3175
			array(
3176
				'ays_disconnect' => "This will deactivate all Jetpack modules.\nAre you sure you want to disconnect?",
3177
				'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?",
3178
				'ays_dismiss'    => "This will deactivate Jetpack.\nAre you sure you want to deactivate Jetpack?",
3179
			)
3180
		);
3181
		add_action( 'admin_footer', array( $this, 'do_stats' ) );
3182
	}
3183
3184
	function plugin_action_links( $actions ) {
3185
3186
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), __( 'Jetpack', 'jetpack' ) ) );
3187
3188
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3189
			return array_merge(
3190
				$jetpack_home,
3191
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack_modules' ), __( 'Settings', 'jetpack' ) ) ),
3192
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3193
				$actions
3194
				);
3195
			}
3196
3197
		return array_merge( $jetpack_home, $actions );
3198
	}
3199
3200
	function admin_connect_notice() {
3201
		// Don't show the connect notice anywhere but the plugins.php after activating
3202
		$current = get_current_screen();
3203
		if ( 'plugins' !== $current->parent_base )
3204
			return;
3205
3206
		if ( ! current_user_can( 'jetpack_connect' ) )
3207
			return;
3208
3209
		$dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' );
3210
		?>
3211
		<div id="message" class="updated jp-banner">
3212
			<a href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3213
			<?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?>
3214
					<div class="jp-banner__description-container">
3215
						<h2 class="jp-banner__header"><?php _e( 'Your Jetpack is almost ready!', 'jetpack' ); ?></h2>
3216
						<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>
3217
						<p class="jp-banner__button-container">
3218
							<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>
3219
							<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>
3220
						</p>
3221
					</div>
3222 View Code Duplication
			<?php else : ?>
3223
				<div class="jp-banner__content">
3224
					<h2><?php _e( 'Jetpack is installed!', 'jetpack' ) ?></h2>
3225
					<p><?php _e( 'It\'s ready to bring awesome, WordPress.com cloud-powered features to your site.', 'jetpack' ) ?></p>
3226
				</div>
3227
				<div class="jp-banner__action-container">
3228
					<a href="<?php echo Jetpack::admin_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Learn More', 'jetpack' ); ?></a>
3229
				</div>
3230
			<?php endif; ?>
3231
		</div>
3232
3233
		<?php
3234
	}
3235
3236
	/**
3237
	 * This is the first banner
3238
	 * It should be visible only to user that can update the option
3239
	 * Are not connected
3240
	 *
3241
	 * @return null
3242
	 */
3243
	function admin_jetpack_manage_notice() {
3244
		$screen = get_current_screen();
3245
3246
		// Don't show the connect notice on the jetpack settings page.
3247
		if ( ! in_array( $screen->base, array( 'dashboard' ) ) || $screen->is_network || $screen->action )
3248
			return;
3249
3250
		// Only show it if don't have the managment option set.
3251
		// And not dismissed it already.
3252
		if ( ! $this->can_display_jetpack_manage_notice() || Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) {
3253
			return;
3254
		}
3255
3256
		$opt_out_url = $this->opt_out_jetpack_manage_url();
3257
		$opt_in_url  = $this->opt_in_jetpack_manage_url();
3258
		/**
3259
		 * I think it would be great to have different wordsing depending on where you are
3260
		 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen
3261
		 * etc..
3262
		 */
3263
3264
		?>
3265
		<div id="message" class="updated jp-banner">
3266
				<a href="<?php echo esc_url( $opt_out_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3267
				<div class="jp-banner__description-container">
3268
					<h2 class="jp-banner__header"><?php esc_html_e( 'Jetpack Centralized Site Management', 'jetpack' ); ?></h2>
3269
					<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>
3270
					<p class="jp-banner__button-container">
3271
						<a href="<?php echo esc_url( $opt_in_url ); ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Activate Jetpack Manage', 'jetpack' ); ?></a>
3272
						<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>
3273
					</p>
3274
				</div>
3275
		</div>
3276
		<?php
3277
	}
3278
3279
	/**
3280
	 * Returns the url that the user clicks to remove the notice for the big banner
3281
	 * @return (string)
3282
	 */
3283
	function opt_out_jetpack_manage_url() {
3284
		$referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null );
3285
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' );
3286
	}
3287
	/**
3288
	 * Returns the url that the user clicks to opt in to Jetpack Manage
3289
	 * @return (string)
3290
	 */
3291
	function opt_in_jetpack_manage_url() {
3292
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' );
3293
	}
3294
3295
	function opt_in_jetpack_manage_notice() {
3296
		?>
3297
		<div class="wrap">
3298
			<div id="message" class="jetpack-message is-opt-in">
3299
				<?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' ); ?>
3300
			</div>
3301
		</div>
3302
		<?php
3303
3304
	}
3305
	/**
3306
	 * Determines whether to show the notice of not true = display notice
3307
	 * @return (bool)
3308
	 */
3309
	function can_display_jetpack_manage_notice() {
3310
		// never display the notice to users that can't do anything about it anyways
3311
		if( ! current_user_can( 'jetpack_manage_modules' ) )
3312
			return false;
3313
3314
		// don't display if we are in development more
3315
		if( Jetpack::is_development_mode() ) {
3316
			return false;
3317
		}
3318
		// don't display if the site is private
3319
		if(  ! Jetpack_Options::get_option( 'public' ) )
3320
			return false;
3321
3322
		/**
3323
		 * Should the Jetpack Remote Site Management notice be displayed.
3324
		 *
3325
		 * @since 3.3.0
3326
		 *
3327
		 * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
3328
		 */
3329
		return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
3330
	}
3331
3332
	function network_connect_notice() {
3333
		?>
3334
		<div id="message" class="updated jetpack-message">
3335
			<div class="squeezer">
3336
				<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>
3337
			</div>
3338
		</div>
3339
		<?php
3340
	}
3341
3342
	/*
3343
	 * Registration flow:
3344
	 * 1 - ::admin_page_load() action=register
3345
	 * 2 - ::try_registration()
3346
	 * 3 - ::register()
3347
	 *     - Creates jetpack_register option containing two secrets and a timestamp
3348
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
3349
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
3350
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
3351
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
3352
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
3353
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
3354
	 *       jetpack_id, jetpack_secret, jetpack_public
3355
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
3356
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
3357
	 * 5 - user logs in with WP.com account
3358
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
3359
	 *		- Jetpack_Client_Server::authorize()
3360
	 *		- Jetpack_Client_Server::get_token()
3361
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
3362
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
3363
	 *			- which responds with access_token, token_type, scope
3364
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
3365
	 *		- Jetpack::activate_default_modules()
3366
	 *     		- Deactivates deprecated plugins
3367
	 *     		- Activates all default modules
3368
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
3369
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
3370
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
3371
	 *     Done!
3372
	 */
3373
3374
	/**
3375
	 * Handles the page load events for the Jetpack admin page
3376
	 */
3377
	function admin_page_load() {
3378
		$error = false;
3379
3380
		// Make sure we have the right body class to hook stylings for subpages off of.
3381
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
3382
3383
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
3384
			// Should only be used in intermediate redirects to preserve state across redirects
3385
			Jetpack::restate();
3386
		}
3387
3388
		if ( isset( $_GET['connect_url_redirect'] ) ) {
3389
			// User clicked in the iframe to link their accounts
3390
			if ( ! Jetpack::is_user_connected() ) {
3391
				$connect_url = $this->build_connect_url( true, false, 'iframe' );
3392
				if ( isset( $_GET['notes_iframe'] ) )
3393
					$connect_url .= '&notes_iframe';
3394
				wp_redirect( $connect_url );
3395
				exit;
3396
			} else {
3397
				if ( ! isset( $_GET['calypso_env'] ) ) {
3398
					Jetpack::state( 'message', 'already_authorized' );
3399
					wp_safe_redirect( Jetpack::admin_url() );
3400
				} else {
3401
					$connect_url = $this->build_connect_url( true, false, 'iframe' );
3402
					$connect_url .= '&already_authorized=true';
3403
					wp_redirect( $connect_url );
3404
				}
3405
			}
3406
		}
3407
3408
3409
		if ( isset( $_GET['action'] ) ) {
3410
			switch ( $_GET['action'] ) {
3411
			case 'authorize':
3412
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
3413
					Jetpack::state( 'message', 'already_authorized' );
3414
					wp_safe_redirect( Jetpack::admin_url() );
3415
					exit;
3416
				}
3417
				Jetpack::log( 'authorize' );
3418
				$client_server = new Jetpack_Client_Server;
3419
				$client_server->client_authorize();
3420
				exit;
3421
			case 'register' :
3422
				if ( ! current_user_can( 'jetpack_connect' ) ) {
3423
					$error = 'cheatin';
3424
					break;
3425
				}
3426
				check_admin_referer( 'jetpack-register' );
3427
				Jetpack::log( 'register' );
3428
				Jetpack::maybe_set_version_option();
3429
				$registered = Jetpack::try_registration();
3430
				if ( is_wp_error( $registered ) ) {
3431
					$error = $registered->get_error_code();
3432
					Jetpack::state( 'error_description', $error );
3433
					Jetpack::state( 'error_description', $registered->get_error_message() );
3434
					break;
3435
				}
3436
3437
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
3438
3439
				wp_redirect( $this->build_connect_url( true, false, $from ) );
3440
				exit;
3441
			case 'activate' :
3442
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
3443
					$error = 'cheatin';
3444
					break;
3445
				}
3446
3447
				$module = stripslashes( $_GET['module'] );
3448
				check_admin_referer( "jetpack_activate-$module" );
3449
				Jetpack::log( 'activate', $module );
3450
				Jetpack::activate_module( $module );
3451
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
3452
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3453
				exit;
3454
			case 'activate_default_modules' :
3455
				check_admin_referer( 'activate_default_modules' );
3456
				Jetpack::log( 'activate_default_modules' );
3457
				Jetpack::restate();
3458
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
3459
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
3460
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
3461
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
3462
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3463
				exit;
3464
			case 'disconnect' :
3465
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
3466
					$error = 'cheatin';
3467
					break;
3468
				}
3469
3470
				check_admin_referer( 'jetpack-disconnect' );
3471
				Jetpack::log( 'disconnect' );
3472
				Jetpack::disconnect();
3473
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
3474
				exit;
3475
			case 'reconnect' :
3476
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
3477
					$error = 'cheatin';
3478
					break;
3479
				}
3480
3481
				check_admin_referer( 'jetpack-reconnect' );
3482
				Jetpack::log( 'reconnect' );
3483
				$this->disconnect();
3484
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
3485
				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...
3486 View Code Duplication
			case 'deactivate' :
3487
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
3488
					$error = 'cheatin';
3489
					break;
3490
				}
3491
3492
				$modules = stripslashes( $_GET['module'] );
3493
				check_admin_referer( "jetpack_deactivate-$modules" );
3494
				foreach ( explode( ',', $modules ) as $module ) {
3495
					Jetpack::log( 'deactivate', $module );
3496
					Jetpack::deactivate_module( $module );
3497
					Jetpack::state( 'message', 'module_deactivated' );
3498
				}
3499
				Jetpack::state( 'module', $modules );
3500
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3501
				exit;
3502
			case 'unlink' :
3503
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
3504
				check_admin_referer( 'jetpack-unlink' );
3505
				Jetpack::log( 'unlink' );
3506
				$this->unlink_user();
3507
				Jetpack::state( 'message', 'unlinked' );
3508
				if ( 'sub-unlink' == $redirect ) {
3509
					wp_safe_redirect( admin_url() );
3510
				} else {
3511
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
3512
				}
3513
				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...
3514
			default:
3515
				/**
3516
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
3517
				 *
3518
				 * @since 2.6.0
3519
				 *
3520
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
3521
				 */
3522
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3523
			}
3524
		}
3525
3526
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
3527
			self::activate_new_modules( true );
3528
		}
3529
3530
		$message_code = Jetpack::state( 'message' );
3531
		if ( Jetpack::state( 'optin-manage' ) ) {
3532
			$activated_manage = $message_code;
3533
			$message_code = 'jetpack-manage';
3534
		}
3535
3536
		switch ( $message_code ) {
3537
		case 'jetpack-manage':
3538
			$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>';
3539
			if ( $activated_manage ) {
3540
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
3541
			}
3542
			break;
3543
3544
		}
3545
3546
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
3547
3548
		if ( ! empty( $deactivated_plugins ) ) {
3549
			$deactivated_plugins = explode( ',', $deactivated_plugins );
3550
			$deactivated_titles  = array();
3551
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
3552
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
3553
					continue;
3554
				}
3555
3556
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
3557
			}
3558
3559
			if ( $deactivated_titles ) {
3560
				if ( $this->message ) {
3561
					$this->message .= "<br /><br />\n";
3562
				}
3563
3564
				$this->message .= wp_sprintf(
3565
					_n(
3566
						'Jetpack contains the most recent version of the old %l plugin.',
3567
						'Jetpack contains the most recent versions of the old %l plugins.',
3568
						count( $deactivated_titles ),
3569
						'jetpack'
3570
					),
3571
					$deactivated_titles
3572
				);
3573
3574
				$this->message .= "<br />\n";
3575
3576
				$this->message .= _n(
3577
					'The old version has been deactivated and can be removed from your site.',
3578
					'The old versions have been deactivated and can be removed from your site.',
3579
					count( $deactivated_titles ),
3580
					'jetpack'
3581
				);
3582
			}
3583
		}
3584
3585
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
3586
3587
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
3588
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
3589
		}
3590
3591 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3592
			/**
3593
			 * Fires when a module configuration page is loaded.
3594
			 * The dynamic part of the hook is the configure parameter from the URL.
3595
			 *
3596
			 * @since 1.1.0
3597
			 */
3598
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3599
		}
3600
3601
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
3602
	}
3603
3604
	function admin_notices() {
3605
3606
		if ( $this->error ) {
3607
?>
3608
<div id="message" class="jetpack-message jetpack-err">
3609
	<div class="squeezer">
3610
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
3611
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
3612
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
3613
<?php	endif; ?>
3614
	</div>
3615
</div>
3616
<?php
3617
		}
3618
3619
		if ( $this->message ) {
3620
?>
3621
<div id="message" class="jetpack-message">
3622
	<div class="squeezer">
3623
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
3624
	</div>
3625
</div>
3626
<?php
3627
		}
3628
3629
		if ( $this->privacy_checks ) :
3630
			$module_names = $module_slugs = array();
3631
3632
			$privacy_checks = explode( ',', $this->privacy_checks );
3633
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
3634
			foreach ( $privacy_checks as $module_slug ) {
3635
				$module = Jetpack::get_module( $module_slug );
3636
				if ( ! $module ) {
3637
					continue;
3638
				}
3639
3640
				$module_slugs[] = $module_slug;
3641
				$module_names[] = "<strong>{$module['name']}</strong>";
3642
			}
3643
3644
			$module_slugs = join( ',', $module_slugs );
3645
?>
3646
<div id="message" class="jetpack-message jetpack-err">
3647
	<div class="squeezer">
3648
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
3649
		<p><?php
3650
			echo wp_kses(
3651
				wptexturize(
3652
					wp_sprintf(
3653
						_nx(
3654
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
3655
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
3656
							count( $privacy_checks ),
3657
							'%l = list of Jetpack module/feature names',
3658
							'jetpack'
3659
						),
3660
						$module_names
3661
					)
3662
				),
3663
				array( 'strong' => true )
3664
			);
3665
3666
			echo "\n<br />\n";
3667
3668
			echo wp_kses(
3669
				sprintf(
3670
					_nx(
3671
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
3672
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
3673
						count( $privacy_checks ),
3674
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
3675
						'jetpack'
3676
					),
3677
					wp_nonce_url(
3678
						Jetpack::admin_url(
3679
							array(
3680
								'page'   => 'jetpack',
3681
								'action' => 'deactivate',
3682
								'module' => urlencode( $module_slugs ),
3683
							)
3684
						),
3685
						"jetpack_deactivate-$module_slugs"
3686
					),
3687
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
3688
				),
3689
				array( 'a' => array( 'href' => true, 'title' => true ) )
3690
			);
3691
		?></p>
3692
	</div>
3693
</div>
3694
<?php endif;
3695
	// only display the notice if the other stuff is not there
3696
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
3697
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
3698
			$this->opt_in_jetpack_manage_notice();
3699
		}
3700
	}
3701
3702
	/**
3703
	 * Record a stat for later output.  This will only currently output in the admin_footer.
3704
	 */
3705
	function stat( $group, $detail ) {
3706
		if ( ! isset( $this->stats[ $group ] ) )
3707
			$this->stats[ $group ] = array();
3708
		$this->stats[ $group ][] = $detail;
3709
	}
3710
3711
	/**
3712
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
3713
	 */
3714
	function do_stats( $method = '' ) {
3715
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
3716
			foreach ( $this->stats as $group => $stats ) {
3717
				if ( is_array( $stats ) && count( $stats ) ) {
3718
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
3719
					if ( 'server_side' === $method ) {
3720
						self::do_server_side_stat( $args );
3721
					} else {
3722
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
3723
					}
3724
				}
3725
				unset( $this->stats[ $group ] );
3726
			}
3727
		}
3728
	}
3729
3730
	/**
3731
	 * Runs stats code for a one-off, server-side.
3732
	 *
3733
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
3734
	 *
3735
	 * @return bool If it worked.
3736
	 */
3737
	static function do_server_side_stat( $args ) {
3738
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
3739
		if ( is_wp_error( $response ) )
3740
			return false;
3741
3742
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
3743
			return false;
3744
3745
		return true;
3746
	}
3747
3748
	/**
3749
	 * Builds the stats url.
3750
	 *
3751
	 * @param $args array|string The arguments to append to the URL.
3752
	 *
3753
	 * @return string The URL to be pinged.
3754
	 */
3755
	static function build_stats_url( $args ) {
3756
		$defaults = array(
3757
			'v'    => 'wpcom2',
3758
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
3759
		);
3760
		$args     = wp_parse_args( $args, $defaults );
3761
		/**
3762
		 * Filter the URL used as the Stats tracking pixel.
3763
		 *
3764
		 * @since 2.3.2
3765
		 *
3766
		 * @param string $url Base URL used as the Stats tracking pixel.
3767
		 */
3768
		$base_url = apply_filters(
3769
			'jetpack_stats_base_url',
3770
			set_url_scheme( 'http://pixel.wp.com/g.gif' )
3771
		);
3772
		$url      = add_query_arg( $args, $base_url );
3773
		return $url;
3774
	}
3775
3776
	function translate_current_user_to_role() {
3777
		foreach ( $this->capability_translations as $role => $cap ) {
3778
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
3779
				return $role;
3780
			}
3781
		}
3782
3783
		return false;
3784
	}
3785
3786
	function translate_role_to_cap( $role ) {
3787
		if ( ! isset( $this->capability_translations[$role] ) ) {
3788
			return false;
3789
		}
3790
3791
		return $this->capability_translations[$role];
3792
	}
3793
3794
	function sign_role( $role ) {
3795
		if ( ! $user_id = (int) get_current_user_id() ) {
3796
			return false;
3797
		}
3798
3799
		$token = Jetpack_Data::get_access_token();
3800
		if ( ! $token || is_wp_error( $token ) ) {
3801
			return false;
3802
		}
3803
3804
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
3805
	}
3806
3807
3808
	/**
3809
	 * Builds a URL to the Jetpack connection auth page
3810
	 *
3811
	 * @since 3.9.5
3812
	 *
3813
	 * @param bool $raw If true, URL will not be escaped.
3814
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
3815
	 *                              If string, will be a custom redirect.
3816
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
3817
	 *
3818
	 * @return string Connect URL
3819
	 */
3820
	function build_connect_url( $raw = false, $redirect = false, $from = false ) {
3821
		if ( ! Jetpack_Options::get_option( 'blog_token' ) || ! Jetpack_Options::get_option( 'id' ) ) {
3822
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
3823
			if( is_network_admin() ) {
3824
			    $url = add_query_arg( 'is_multisite', network_admin_url(
3825
			    'admin.php?page=jetpack-settings' ), $url );
3826
			}
3827
		} else {
3828
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
3829
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
3830
			}
3831
3832
			$role = $this->translate_current_user_to_role();
3833
			$signed_role = $this->sign_role( $role );
3834
3835
			$user = wp_get_current_user();
3836
3837
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
3838
			$redirect = $redirect
3839
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
3840
				: $jetpack_admin_page;
3841
3842
			if( isset( $_REQUEST['is_multisite'] ) ) {
3843
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
3844
			}
3845
3846
			$secrets = Jetpack::init()->generate_secrets( 'authorize' );
3847
			@list( $secret ) = explode( ':', $secrets );
3848
			
3849
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
3850
				? get_site_icon_url()
3851
				: false;
3852
3853
			$args = urlencode_deep(
3854
				array(
3855
					'response_type' => 'code',
3856
					'client_id'     => Jetpack_Options::get_option( 'id' ),
3857
					'redirect_uri'  => add_query_arg(
3858
						array(
3859
							'action'   => 'authorize',
3860
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
3861
							'redirect' => urlencode( $redirect ),
3862
						),
3863
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
3864
					),
3865
					'state'         => $user->ID,
3866
					'scope'         => $signed_role,
3867
					'user_email'    => $user->user_email,
3868
					'user_login'    => $user->user_login,
3869
					'is_active'     => Jetpack::is_active(),
3870
					'jp_version'    => JETPACK__VERSION,
3871
					'auth_type'     => 'calypso',
3872
					'secret'        => $secret,
3873
					'locale'        => isset( $gp_locale->slug ) ? $gp_locale->slug : '',
3874
					'blogname'      => get_option( 'blogname' ),
3875
					'site_url'      => site_url(),
3876
					'home_url'      => home_url(),
3877
					'site_icon'     => $site_icon,
3878
				)
3879
			);
3880
3881
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
3882
		}
3883
3884
		if ( $from ) {
3885
			$url = add_query_arg( 'from', $from, $url );
3886
		}
3887
3888
		if ( isset( $_GET['calypso_env'] ) ) {
3889
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
3890
		}
3891
3892
		return $raw ? $url : esc_url( $url );
3893
	}
3894
3895
	function build_reconnect_url( $raw = false ) {
3896
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
3897
		return $raw ? $url : esc_url( $url );
3898
	}
3899
3900
	public static function admin_url( $args = null ) {
3901
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
3902
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
3903
		return $url;
3904
	}
3905
3906
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
3907
		$actionurl = str_replace( '&amp;', '&', $actionurl );
3908
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
3909
	}
3910
3911
	function dismiss_jetpack_notice() {
3912
3913
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
3914
			return;
3915
		}
3916
3917
		switch( $_GET['jetpack-notice'] ) {
3918
			case 'dismiss':
3919
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
3920
3921
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
3922
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
3923
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
3924
				}
3925
				break;
3926 View Code Duplication
			case 'jetpack-manage-opt-out':
3927
3928
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
3929
					// Don't show the banner again
3930
3931
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
3932
					// redirect back to the page that had the notice
3933
					if ( wp_get_referer() ) {
3934
						wp_safe_redirect( wp_get_referer() );
3935
					} else {
3936
						// Take me to Jetpack
3937
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3938
					}
3939
				}
3940
				break;
3941 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
3942
3943
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
3944
					// Don't show the banner again
3945
3946
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
3947
					// redirect back to the page that had the notice
3948
					if ( wp_get_referer() ) {
3949
						wp_safe_redirect( wp_get_referer() );
3950
					} else {
3951
						// Take me to Jetpack
3952
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3953
					}
3954
				}
3955
				break;
3956
			case 'jetpack-manage-opt-in':
3957
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
3958
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
3959
3960
					$redirection_url = Jetpack::admin_url();
3961
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3962
3963
					// Don't redirect form the Jetpack Setting Page
3964
					$referer_parsed = parse_url ( wp_get_referer() );
3965
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
3966
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
3967
						// Take the user to Jetpack home except when on the setting page
3968
						$redirection_url = wp_get_referer();
3969
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3970
					}
3971
					// Also update the JSON API FULL MANAGEMENT Option
3972
					Jetpack::activate_module( 'manage', false, false );
3973
3974
					// Special Message when option in.
3975
					Jetpack::state( 'optin-manage', 'true' );
3976
					// Activate the Module if not activated already
3977
3978
					// Redirect properly
3979
					wp_safe_redirect( $redirection_url );
3980
3981
				}
3982
				break;
3983
		}
3984
	}
3985
3986
	function debugger_page() {
3987
		nocache_headers();
3988
		if ( ! current_user_can( 'manage_options' ) ) {
3989
			die( '-1' );
3990
		}
3991
		Jetpack_Debugger::jetpack_debug_display_handler();
3992
		exit;
3993
	}
3994
3995
	public static function admin_screen_configure_module( $module_id ) {
3996
3997
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
3998
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
3999
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
4000
				/**
4001
				 * Fires to diplay a custom module activation screen.
4002
				 *
4003
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
4004
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
4005
				 *
4006
				 * @module manage
4007
				 *
4008
				 * @since 3.8.0
4009
				 *
4010
				 * @param int $module_id Module ID.
4011
				 */
4012
				do_action( 'display_activate_module_setting_' . $module_id );
4013
			} else {
4014
				self::display_activate_module_link( $module_id );
4015
			}
4016
4017
			return false;
4018
		} ?>
4019
4020
		<div id="jp-settings-screen" style="position: relative">
4021
			<h3>
4022
			<?php
4023
				$module = Jetpack::get_module( $module_id );
4024
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4025
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4026
			?>
4027
			</h3>
4028
			<?php
4029
				/**
4030
				 * Fires within the displayed message when a feature configuation is updated.
4031
				 *
4032
				 * @since 3.4.0
4033
				 *
4034
				 * @param int $module_id Module ID.
4035
				 */
4036
				do_action( 'jetpack_notices_update_settings', $module_id );
4037
				/**
4038
				 * Fires when a feature configuation screen is loaded.
4039
				 * The dynamic part of the hook, $module_id, is the module ID.
4040
				 *
4041
				 * @since 1.1.0
4042
				 */
4043
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4044
			?>
4045
		</div><?php
4046
	}
4047
4048
	/**
4049
	 * Display link to activate the module to see the settings screen.
4050
	 * @param  string $module_id
4051
	 * @return null
4052
	 */
4053
	public static function display_activate_module_link( $module_id ) {
4054
4055
		$info =  Jetpack::get_module( $module_id );
4056
		$extra = '';
4057
		$activate_url = wp_nonce_url(
4058
				Jetpack::admin_url(
4059
					array(
4060
						'page'   => 'jetpack',
4061
						'action' => 'activate',
4062
						'module' => $module_id,
4063
					)
4064
				),
4065
				"jetpack_activate-$module_id"
4066
			);
4067
4068
		?>
4069
4070
		<div class="wrap configure-module">
4071
			<div id="jp-settings-screen">
4072
				<?php
4073
				if ( $module_id == 'json-api' ) {
4074
4075
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4076
4077
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4078
4079
					$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' );
4080
4081
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4082
				} ?>
4083
4084
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4085
				<div class="narrow">
4086
					<p><?php echo  $info['description']; ?></p>
4087
					<?php if( $extra ) { ?>
4088
					<p><?php echo esc_html( $extra ); ?></p>
4089
					<?php } ?>
4090
					<p>
4091
						<?php
4092
						if( wp_get_referer() ) {
4093
							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() );
4094
						} else {
4095
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4096
						} ?>
4097
					</p>
4098
				</div>
4099
4100
			</div>
4101
		</div>
4102
4103
		<?php
4104
	}
4105
4106
	public static function sort_modules( $a, $b ) {
4107
		if ( $a['sort'] == $b['sort'] )
4108
			return 0;
4109
4110
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4111
	}
4112
4113
	function ajax_recheck_ssl() {
4114
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4115
		$result = Jetpack::permit_ssl( true );
4116
		wp_send_json( array(
4117
			'enabled' => $result,
4118
			'message' => get_transient( 'jetpack_https_test_message' )
4119
		) );
4120
	}
4121
4122
/* Client API */
4123
4124
	/**
4125
	 * Returns the requested Jetpack API URL
4126
	 *
4127
	 * @return string
4128
	 */
4129
	public static function api_url( $relative_url ) {
4130
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4131
	}
4132
4133
	/**
4134
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4135
	 */
4136
	public static function fix_url_for_bad_hosts( $url ) {
4137
		if ( 0 !== strpos( $url, 'https://' ) ) {
4138
			return $url;
4139
		}
4140
4141
		switch ( JETPACK_CLIENT__HTTPS ) {
4142
			case 'ALWAYS' :
4143
				return $url;
4144
			case 'NEVER' :
4145
				return set_url_scheme( $url, 'http' );
4146
			// default : case 'AUTO' :
4147
		}
4148
4149
		// we now return the unmodified SSL URL by default, as a security precaution
4150
		return $url;
4151
	}
4152
4153
	/**
4154
	 * Checks to see if the URL is using SSL to connect with Jetpack
4155
	 *
4156
	 * @since 2.3.3
4157
	 * @return boolean
4158
	 */
4159
	public static function permit_ssl( $force_recheck = false ) {
4160
		// Do some fancy tests to see if ssl is being supported
4161
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4162
			$message = '';
4163
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4164
				$ssl = 0;
4165
			} else {
4166
				switch ( JETPACK_CLIENT__HTTPS ) {
4167
					case 'NEVER':
4168
						$ssl = 0;
4169
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4170
						break;
4171
					case 'ALWAYS':
4172
					case 'AUTO':
4173
					default:
4174
						$ssl = 1;
4175
						break;
4176
				}
4177
4178
				// If it's not 'NEVER', test to see
4179
				if ( $ssl ) {
4180
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4181
						$ssl = 0;
4182
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4183
					} else {
4184
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4185
						if ( is_wp_error( $response ) ) {
4186
							$ssl = 0;
4187
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4188
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4189
							$ssl = 0;
4190
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4191
						}
4192
					}
4193
				}
4194
			}
4195
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4196
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4197
		}
4198
4199
		return (bool) $ssl;
4200
	}
4201
4202
	/*
4203
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4204
	 */
4205
	public function alert_auto_ssl_fail() {
4206
		if ( ! current_user_can( 'manage_options' ) )
4207
			return;
4208
4209
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4210
		?>
4211
4212
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4213
			<div class="jp-banner__content">
4214
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4215
				<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>
4216
				<p>
4217
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4218
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4219
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4220
				</p>
4221
				<p>
4222
					<?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' ), 
4223
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4224
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4225
				</p>
4226
			</div>
4227
		</div>
4228
		<style>
4229
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4230
		</style>
4231
		<script type="text/javascript">
4232
			jQuery( document ).ready( function( $ ) {
4233
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4234
					var $this = $( this );
4235
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4236
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4237
					e.preventDefault();
4238
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4239
					$.post( ajaxurl, data )
4240
					  .done( function( response ) {
4241
					  	if ( response.enabled ) {
4242
					  		$( '#jetpack-ssl-warning' ).hide();
4243
					  	} else {
4244
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4245
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4246
					  	}
4247
					  }.bind( $this ) );
4248
				} );
4249
			} );
4250
		</script>
4251
4252
		<?php
4253
	}
4254
4255
	/**
4256
	 * Returns the Jetpack XML-RPC API
4257
	 *
4258
	 * @return string
4259
	 */
4260
	public static function xmlrpc_api_url() {
4261
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4262
		return untrailingslashit( $base ) . '/xmlrpc.php';
4263
	}
4264
4265
	/**
4266
	 * Creates two secret tokens and the end of life timestamp for them.
4267
	 *
4268
	 * Note these tokens are unique per call, NOT static per site for connecting.
4269
	 *
4270
	 * @since 2.6
4271
	 * @return array
4272
	 */
4273
	public function generate_secrets( $action, $exp = 600 ) {
4274
	    $secret = wp_generate_password( 32, false ) // secret_1
4275
	    		. ':' . wp_generate_password( 32, false ) // secret_2
4276
	    		. ':' . ( time() + $exp ) // eol ( End of Life )
4277
	    		. ':' . get_current_user_id(); // ties the secrets to the current user
4278
		Jetpack_Options::update_option( $action, $secret );
4279
	    return Jetpack_Options::get_option( $action );
4280
	}
4281
4282
	/**
4283
	 * Builds the timeout limit for queries talking with the wpcom servers.
4284
	 *
4285
	 * Based on local php max_execution_time in php.ini
4286
	 *
4287
	 * @since 2.6
4288
	 * @return int
4289
	 **/
4290
	public function get_remote_query_timeout_limit() {
4291
	    $timeout = (int) ini_get( 'max_execution_time' );
4292
	    if ( ! $timeout ) // Ensure exec time set in php.ini
4293
		$timeout = 30;
4294
	    return intval( $timeout / 2 );
4295
	}
4296
4297
4298
	/**
4299
	 * Takes the response from the Jetpack register new site endpoint and
4300
	 * verifies it worked properly.
4301
	 *
4302
	 * @since 2.6
4303
	 * @return true or Jetpack_Error
4304
	 **/
4305
	public function validate_remote_register_response( $response ) {
4306
	    	if ( is_wp_error( $response ) ) {
4307
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
4308
		}
4309
4310
		$code   = wp_remote_retrieve_response_code( $response );
4311
		$entity = wp_remote_retrieve_body( $response );
4312
		if ( $entity )
4313
			$json = json_decode( $entity );
4314
		else
4315
			$json = false;
4316
4317
		$code_type = intval( $code / 100 );
4318
		if ( 5 == $code_type ) {
4319
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4320
		} elseif ( 408 == $code ) {
4321
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4322
		} elseif ( ! empty( $json->error ) ) {
4323
			$error_description = isset( $json->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $json->error_description ) : '';
4324
			return new Jetpack_Error( (string) $json->error, $error_description, $code );
4325
		} elseif ( 200 != $code ) {
4326
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4327
		}
4328
4329
		// Jetpack ID error block
4330
		if ( empty( $json->jetpack_id ) ) {
4331
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
4332
		} elseif ( ! is_scalar( $json->jetpack_id ) ) {
4333
			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 );
4334
		} elseif ( preg_match( '/[^0-9]/', $json->jetpack_id ) ) {
4335
			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 );
4336
		}
4337
4338
	    return true;
4339
	}
4340
	/**
4341
	 * @return bool|WP_Error
4342
	 */
4343
	public static function register() {
4344
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4345
		$secrets = Jetpack::init()->generate_secrets( 'register' );
4346
4347
		@list( $secret_1, $secret_2, $secret_eol ) = explode( ':', $secrets );
4348 View Code Duplication
		if ( empty( $secret_1 ) || empty( $secret_2 ) || empty( $secret_eol ) || $secret_eol < time() ) {
4349
			return new Jetpack_Error( 'missing_secrets' );
4350
		}
4351
4352
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4353
4354
		$gmt_offset = get_option( 'gmt_offset' );
4355
		if ( ! $gmt_offset ) {
4356
			$gmt_offset = 0;
4357
		}
4358
4359
		$stats_options = get_option( 'stats_options' );
4360
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
4361
4362
		$args = array(
4363
			'method'  => 'POST',
4364
			'body'    => array(
4365
				'siteurl'         => site_url(),
4366
				'home'            => home_url(),
4367
				'gmt_offset'      => $gmt_offset,
4368
				'timezone_string' => (string) get_option( 'timezone_string' ),
4369
				'site_name'       => (string) get_option( 'blogname' ),
4370
				'secret_1'        => $secret_1,
4371
				'secret_2'        => $secret_2,
4372
				'site_lang'       => get_locale(),
4373
				'timeout'         => $timeout,
4374
				'stats_id'        => $stats_id,
4375
				'state'           => get_current_user_id(),
4376
			),
4377
			'headers' => array(
4378
				'Accept' => 'application/json',
4379
			),
4380
			'timeout' => $timeout,
4381
		);
4382
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
4383
4384
4385
		// Make sure the response is valid and does not contain any Jetpack errors
4386
		$valid_response = Jetpack::init()->validate_remote_register_response( $response );
4387
		if( is_wp_error( $valid_response ) || !$valid_response ) {
4388
		    return $valid_response;
4389
		}
4390
4391
		// Grab the response values to work with
4392
		$code   = wp_remote_retrieve_response_code( $response );
4393
		$entity = wp_remote_retrieve_body( $response );
4394
4395
		if ( $entity )
4396
			$json = json_decode( $entity );
4397
		else
4398
			$json = false;
4399
4400 View Code Duplication
		if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) )
4401
			return new Jetpack_Error( 'jetpack_secret', '', $code );
4402
4403
		if ( isset( $json->jetpack_public ) ) {
4404
			$jetpack_public = (int) $json->jetpack_public;
4405
		} else {
4406
			$jetpack_public = false;
4407
		}
4408
4409
		Jetpack_Options::update_options(
4410
			array(
4411
				'id'         => (int)    $json->jetpack_id,
4412
				'blog_token' => (string) $json->jetpack_secret,
4413
				'public'     => $jetpack_public,
4414
			)
4415
		);
4416
4417
		/**
4418
		 * Fires when a site is registered on WordPress.com.
4419
		 *
4420
		 * @since 3.7.0
4421
		 *
4422
		 * @param int $json->jetpack_id Jetpack Blog ID.
4423
		 * @param string $json->jetpack_secret Jetpack Blog Token.
4424
		 * @param int|bool $jetpack_public Is the site public.
4425
		 */
4426
		do_action( 'jetpack_site_registered', $json->jetpack_id, $json->jetpack_secret, $jetpack_public );
4427
4428
		// Initialize Jump Start for the first and only time.
4429
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4430
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
4431
4432
			$jetpack = Jetpack::init();
4433
4434
			$jetpack->stat( 'jumpstart', 'unique-views' );
4435
			$jetpack->do_stats( 'server_side' );
4436
		};
4437
4438
		return true;
4439
	}
4440
4441
	/**
4442
	 * If the db version is showing something other that what we've got now, bump it to current.
4443
	 *
4444
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
4445
	 */
4446
	public static function maybe_set_version_option() {
4447
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
4448
		if ( JETPACK__VERSION != $version ) {
4449
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
4450
			return true;
4451
		}
4452
		return false;
4453
	}
4454
4455
/* Client Server API */
4456
4457
	/**
4458
	 * Loads the Jetpack XML-RPC client
4459
	 */
4460
	public static function load_xml_rpc_client() {
4461
		require_once ABSPATH . WPINC . '/class-IXR.php';
4462
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
4463
	}
4464
4465
	function verify_xml_rpc_signature() {
4466
		if ( $this->xmlrpc_verification ) {
4467
			return $this->xmlrpc_verification;
4468
		}
4469
4470
		// It's not for us
4471
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
4472
			return false;
4473
		}
4474
4475
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
4476
		if (
4477
			empty( $token_key )
4478
		||
4479
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
4480
		) {
4481
			return false;
4482
		}
4483
4484
		if ( '0' === $user_id ) {
4485
			$token_type = 'blog';
4486
			$user_id = 0;
4487
		} else {
4488
			$token_type = 'user';
4489
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
4490
				return false;
4491
			}
4492
			$user_id = (int) $user_id;
4493
4494
			$user = new WP_User( $user_id );
4495
			if ( ! $user || ! $user->exists() ) {
4496
				return false;
4497
			}
4498
		}
4499
4500
		$token = Jetpack_Data::get_access_token( $user_id );
4501
		if ( ! $token ) {
4502
			return false;
4503
		}
4504
4505
		$token_check = "$token_key.";
4506
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
4507
			return false;
4508
		}
4509
4510
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4511
4512
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4513
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
4514
			$post_data   = $_POST;
4515
			$file_hashes = array();
4516
			foreach ( $post_data as $post_data_key => $post_data_value ) {
4517
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
4518
					continue;
4519
				}
4520
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
4521
				$file_hashes[$post_data_key] = $post_data_value;
4522
			}
4523
4524
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
4525
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
4526
				$post_data[$post_data_key] = $post_data_value;
4527
			}
4528
4529
			ksort( $post_data );
4530
4531
			$body = http_build_query( stripslashes_deep( $post_data ) );
4532
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
4533
			$body = file_get_contents( 'php://input' );
4534
		} else {
4535
			$body = null;
4536
		}
4537
		$signature = $jetpack_signature->sign_current_request(
4538
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
4539
		);
4540
4541
		if ( ! $signature ) {
4542
			return false;
4543
		} else if ( is_wp_error( $signature ) ) {
4544
			return $signature;
4545
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4546
			return false;
4547
		}
4548
4549
		$timestamp = (int) $_GET['timestamp'];
4550
		$nonce     = stripslashes( (string) $_GET['nonce'] );
4551
4552
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
4553
			return false;
4554
		}
4555
4556
		$this->xmlrpc_verification = array(
4557
			'type'    => $token_type,
4558
			'user_id' => $token->external_user_id,
4559
		);
4560
4561
		return $this->xmlrpc_verification;
4562
	}
4563
4564
	/**
4565
	 * Authenticates XML-RPC and other requests from the Jetpack Server
4566
	 */
4567
	function authenticate_jetpack( $user, $username, $password ) {
4568
		if ( is_a( $user, 'WP_User' ) ) {
4569
			return $user;
4570
		}
4571
4572
		$token_details = $this->verify_xml_rpc_signature();
4573
4574
		if ( ! $token_details || is_wp_error( $token_details ) ) {
4575
			return $user;
4576
		}
4577
4578
		if ( 'user' !== $token_details['type'] ) {
4579
			return $user;
4580
		}
4581
4582
		if ( ! $token_details['user_id'] ) {
4583
			return $user;
4584
		}
4585
4586
		nocache_headers();
4587
4588
		return new WP_User( $token_details['user_id'] );
4589
	}
4590
4591
	function add_nonce( $timestamp, $nonce ) {
4592
		global $wpdb;
4593
		static $nonces_used_this_request = array();
4594
4595
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
4596
			return $nonces_used_this_request["$timestamp:$nonce"];
4597
		}
4598
4599
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
4600
		$timestamp = (int) $timestamp;
4601
		$nonce     = esc_sql( $nonce );
4602
4603
		// Raw query so we can avoid races: add_option will also update
4604
		$show_errors = $wpdb->show_errors( false );
4605
4606
		$old_nonce = $wpdb->get_row(
4607
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
4608
		);
4609
4610
		if ( is_null( $old_nonce ) ) {
4611
			$return = $wpdb->query(
4612
				$wpdb->prepare(
4613
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
4614
					"jetpack_nonce_{$timestamp}_{$nonce}",
4615
					time(),
4616
					'no'
4617
				)
4618
			);
4619
		} else {
4620
			$return = false;
4621
		}
4622
4623
		$wpdb->show_errors( $show_errors );
4624
4625
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
4626
4627
		return $return;
4628
	}
4629
4630
	/**
4631
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
4632
	 * Capture it here so we can verify the signature later.
4633
	 */
4634
	function xmlrpc_methods( $methods ) {
4635
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
4636
		return $methods;
4637
	}
4638
4639
	function public_xmlrpc_methods( $methods ) {
4640
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
4641
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
4642
		}
4643
		return $methods;
4644
	}
4645
4646
	function jetpack_getOptions( $args ) {
4647
		global $wp_xmlrpc_server;
4648
4649
		$wp_xmlrpc_server->escape( $args );
4650
4651
		$username	= $args[1];
4652
		$password	= $args[2];
4653
4654
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
4655
			return $wp_xmlrpc_server->error;
4656
		}
4657
4658
		$options = array();
4659
		$user_data = $this->get_connected_user_data();
4660
		if ( is_array( $user_data ) ) {
4661
			$options['jetpack_user_id'] = array(
4662
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
4663
				'readonly'      => true,
4664
				'value'         => $user_data['ID'],
4665
			);
4666
			$options['jetpack_user_login'] = array(
4667
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
4668
				'readonly'      => true,
4669
				'value'         => $user_data['login'],
4670
			);
4671
			$options['jetpack_user_email'] = array(
4672
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
4673
				'readonly'      => true,
4674
				'value'         => $user_data['email'],
4675
			);
4676
			$options['jetpack_user_site_count'] = array(
4677
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
4678
				'readonly'      => true,
4679
				'value'         => $user_data['site_count'],
4680
			);
4681
		}
4682
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
4683
		$args = stripslashes_deep( $args );
4684
		return $wp_xmlrpc_server->wp_getOptions( $args );
4685
	}
4686
4687
	function xmlrpc_options( $options ) {
4688
		$jetpack_client_id = false;
4689
		if ( self::is_active() ) {
4690
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
4691
		}
4692
		$options['jetpack_version'] = array(
4693
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
4694
				'readonly'      => true,
4695
				'value'         => JETPACK__VERSION,
4696
		);
4697
4698
		$options['jetpack_client_id'] = array(
4699
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
4700
				'readonly'      => true,
4701
				'value'         => $jetpack_client_id,
4702
		);
4703
		return $options;
4704
	}
4705
4706
	public static function clean_nonces( $all = false ) {
4707
		global $wpdb;
4708
4709
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
4710
		if ( method_exists ( $wpdb , 'esc_like' ) ) {
4711
			$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
4712
		} else {
4713
			$sql_args = array( like_escape( 'jetpack_nonce_' ) . '%' );
4714
		}
4715
4716
		if ( true !== $all ) {
4717
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
4718
			$sql_args[] = time() - 3600;
4719
		}
4720
4721
		$sql .= ' ORDER BY `option_id` LIMIT 100';
4722
4723
		$sql = $wpdb->prepare( $sql, $sql_args );
4724
4725
		for ( $i = 0; $i < 1000; $i++ ) {
4726
			if ( ! $wpdb->query( $sql ) ) {
4727
				break;
4728
			}
4729
		}
4730
	}
4731
4732
	/**
4733
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
4734
	 * SET: state( $key, $value );
4735
	 * GET: $value = state( $key );
4736
	 *
4737
	 * @param string $key
4738
	 * @param string $value
4739
	 * @param bool $restate private
4740
	 */
4741
	public static function state( $key = null, $value = null, $restate = false ) {
4742
		static $state = array();
4743
		static $path, $domain;
4744
		if ( ! isset( $path ) ) {
4745
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
4746
			$admin_url = Jetpack::admin_url();
4747
			$bits      = parse_url( $admin_url );
4748
4749
			if ( is_array( $bits ) ) {
4750
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
4751
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
4752
			} else {
4753
				$path = $domain = null;
4754
			}
4755
		}
4756
4757
		// Extract state from cookies and delete cookies
4758
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
4759
			$yum = $_COOKIE[ 'jetpackState' ];
4760
			unset( $_COOKIE[ 'jetpackState' ] );
4761
			foreach ( $yum as $k => $v ) {
4762
				if ( strlen( $v ) )
4763
					$state[ $k ] = $v;
4764
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
4765
			}
4766
		}
4767
4768
		if ( $restate ) {
4769
			foreach ( $state as $k => $v ) {
4770
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
4771
			}
4772
			return;
4773
		}
4774
4775
		// Get a state variable
4776
		if ( isset( $key ) && ! isset( $value ) ) {
4777
			if ( array_key_exists( $key, $state ) )
4778
				return $state[ $key ];
4779
			return null;
4780
		}
4781
4782
		// Set a state variable
4783
		if ( isset ( $key ) && isset( $value ) ) {
4784
			if( is_array( $value ) && isset( $value[0] ) ) {
4785
				$value = $value[0];
4786
			}
4787
			$state[ $key ] = $value;
4788
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
4789
		}
4790
	}
4791
4792
	public static function restate() {
4793
		Jetpack::state( null, null, true );
4794
	}
4795
4796
	public static function check_privacy( $file ) {
4797
		static $is_site_publicly_accessible = null;
4798
4799
		if ( is_null( $is_site_publicly_accessible ) ) {
4800
			$is_site_publicly_accessible = false;
4801
4802
			Jetpack::load_xml_rpc_client();
4803
			$rpc = new Jetpack_IXR_Client();
4804
4805
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
4806
			if ( $success ) {
4807
				$response = $rpc->getResponse();
4808
				if ( $response ) {
4809
					$is_site_publicly_accessible = true;
4810
				}
4811
			}
4812
4813
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
4814
		}
4815
4816
		if ( $is_site_publicly_accessible ) {
4817
			return;
4818
		}
4819
4820
		$module_slug = self::get_module_slug( $file );
4821
4822
		$privacy_checks = Jetpack::state( 'privacy_checks' );
4823
		if ( ! $privacy_checks ) {
4824
			$privacy_checks = $module_slug;
4825
		} else {
4826
			$privacy_checks .= ",$module_slug";
4827
		}
4828
4829
		Jetpack::state( 'privacy_checks', $privacy_checks );
4830
	}
4831
4832
	/**
4833
	 * Helper method for multicall XMLRPC.
4834
	 */
4835
	public static function xmlrpc_async_call() {
4836
		global $blog_id;
4837
		static $clients = array();
4838
4839
		$client_blog_id = is_multisite() ? $blog_id : 0;
4840
4841
		if ( ! isset( $clients[$client_blog_id] ) ) {
4842
			Jetpack::load_xml_rpc_client();
4843
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
4844
			if ( function_exists( 'ignore_user_abort' ) ) {
4845
				ignore_user_abort( true );
4846
			}
4847
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
4848
		}
4849
4850
		$args = func_get_args();
4851
4852
		if ( ! empty( $args[0] ) ) {
4853
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
4854
		} elseif ( is_multisite() ) {
4855
			foreach ( $clients as $client_blog_id => $client ) {
4856
				if ( ! $client_blog_id || empty( $client->calls ) ) {
4857
					continue;
4858
				}
4859
4860
				$switch_success = switch_to_blog( $client_blog_id, true );
4861
				if ( ! $switch_success ) {
4862
					continue;
4863
				}
4864
4865
				flush();
4866
				$client->query();
4867
4868
				restore_current_blog();
4869
			}
4870
		} else {
4871
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
4872
				flush();
4873
				$clients[0]->query();
4874
			}
4875
		}
4876
	}
4877
4878
	public static function staticize_subdomain( $url ) {
4879
4880
		// Extract hostname from URL
4881
		$host = parse_url( $url, PHP_URL_HOST );
4882
4883
		// Explode hostname on '.'
4884
		$exploded_host = explode( '.', $host );
4885
4886
		// Retrieve the name and TLD
4887
		if ( count( $exploded_host ) > 1 ) {
4888
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
4889
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
4890
			// Rebuild domain excluding subdomains
4891
			$domain = $name . '.' . $tld;
4892
		} else {
4893
			$domain = $host;
4894
		}
4895
		// Array of Automattic domains
4896
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
4897
4898
		// Return $url if not an Automattic domain
4899
		if ( ! in_array( $domain, $domain_whitelist ) ) {
4900
			return $url;
4901
		}
4902
4903
		if ( is_ssl() ) {
4904
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
4905
		}
4906
4907
		srand( crc32( basename( $url ) ) );
4908
		$static_counter = rand( 0, 2 );
4909
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
4910
4911
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
4912
	}
4913
4914
/* JSON API Authorization */
4915
4916
	/**
4917
	 * Handles the login action for Authorizing the JSON API
4918
	 */
4919
	function login_form_json_api_authorization() {
4920
		$this->verify_json_api_authorization_request();
4921
4922
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
4923
4924
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
4925
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
4926
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
4927
	}
4928
4929
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
4930
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
4931
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
4932
			return $url;
4933
		}
4934
4935
		$parsed_url = parse_url( $url );
4936
		$url = strtok( $url, '?' );
4937
		$url = "$url?{$_SERVER['QUERY_STRING']}";
4938
		if ( ! empty( $parsed_url['query'] ) )
4939
			$url .= "&{$parsed_url['query']}";
4940
4941
		return $url;
4942
	}
4943
4944
	// Make sure the POSTed request is handled by the same action
4945
	function preserve_action_in_login_form_for_json_api_authorization() {
4946
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
4947
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
4948
	}
4949
4950
	// If someone logs in to approve API access, store the Access Code in usermeta
4951
	function store_json_api_authorization_token( $user_login, $user ) {
4952
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
4953
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
4954
		$token = wp_generate_password( 32, false );
4955
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
4956
	}
4957
4958
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
4959
	function allow_wpcom_public_api_domain( $domains ) {
4960
		$domains[] = 'public-api.wordpress.com';
4961
		return $domains;
4962
	}
4963
4964
	// Add the Access Code details to the public-api.wordpress.com redirect
4965
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
4966
		return add_query_arg(
4967
			urlencode_deep(
4968
				array(
4969
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
4970
					'jetpack-user-id' => (int) $user->ID,
4971
					'jetpack-state'   => $this->json_api_authorization_request['state'],
4972
				)
4973
			),
4974
			$redirect_to
4975
		);
4976
	}
4977
4978
	// Verifies the request by checking the signature
4979
	function verify_json_api_authorization_request() {
4980
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4981
4982
		$token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
4983
		if ( ! $token || empty( $token->secret ) ) {
4984
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
4985
		}
4986
4987
		$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' );
4988
4989
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4990
4991
		if ( isset( $_POST['jetpack_json_api_original_query'] ) ) {
4992
			$signature = $jetpack_signature->sign_request( $_GET['token'], $_GET['timestamp'], $_GET['nonce'], '', 'GET', $_POST['jetpack_json_api_original_query'], null, true );
4993
		} else {
4994
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
4995
		}
4996
4997
		if ( ! $signature ) {
4998
			wp_die( $die_error );
4999
		} else if ( is_wp_error( $signature ) ) {
5000
			wp_die( $die_error );
5001
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5002
			if ( is_ssl() ) {
5003
				// 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
5004
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
5005
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $_GET['signature'] ) ) {
5006
					wp_die( $die_error );
5007
				}
5008
			} else {
5009
				wp_die( $die_error );
5010
			}
5011
		}
5012
5013
		$timestamp = (int) $_GET['timestamp'];
5014
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5015
5016
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5017
			// De-nonce the nonce, at least for 5 minutes.
5018
			// 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)
5019
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5020
			if ( $old_nonce_time < time() - 300 ) {
5021
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
5022
			}
5023
		}
5024
5025
		$data = json_decode( base64_decode( stripslashes( $_GET['data'] ) ) );
5026
		$data_filters = array(
5027
			'state'        => 'opaque',
5028
			'client_id'    => 'int',
5029
			'client_title' => 'string',
5030
			'client_image' => 'url',
5031
		);
5032
5033
		foreach ( $data_filters as $key => $sanitation ) {
5034
			if ( ! isset( $data->$key ) ) {
5035
				wp_die( $die_error );
5036
			}
5037
5038
			switch ( $sanitation ) {
5039
			case 'int' :
5040
				$this->json_api_authorization_request[$key] = (int) $data->$key;
5041
				break;
5042
			case 'opaque' :
5043
				$this->json_api_authorization_request[$key] = (string) $data->$key;
5044
				break;
5045
			case 'string' :
5046
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
5047
				break;
5048
			case 'url' :
5049
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
5050
				break;
5051
			}
5052
		}
5053
5054
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5055
			wp_die( $die_error );
5056
		}
5057
	}
5058
5059
	function login_message_json_api_authorization( $message ) {
5060
		return '<p class="message">' . sprintf(
5061
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
5062
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5063
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5064
	}
5065
5066
	/**
5067
	 * Get $content_width, but with a <s>twist</s> filter.
5068
	 */
5069
	public static function get_content_width() {
5070
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5071
		/**
5072
		 * Filter the Content Width value.
5073
		 *
5074
		 * @since 2.2.3
5075
		 *
5076
		 * @param string $content_width Content Width value.
5077
		 */
5078
		return apply_filters( 'jetpack_content_width', $content_width );
5079
	}
5080
5081
	/**
5082
	 * Centralize the function here until it gets added to core.
5083
	 *
5084
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
5085
	 * @param int $size Size of the avatar image
5086
	 * @param string $default URL to a default image to use if no avatar is available
5087
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
5088
	 *
5089
	 * @return array First element is the URL, second is the class.
5090
	 */
5091
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
5092
		// Don't bother adding the __return_true filter if it's already there.
5093
		$has_filter = has_filter( 'pre_option_show_avatars', '__return_true' );
5094
5095
		if ( $force_display && ! $has_filter )
5096
			add_filter( 'pre_option_show_avatars', '__return_true' );
5097
5098
		$avatar = get_avatar( $id_or_email, $size, $default );
5099
5100
		if ( $force_display && ! $has_filter )
5101
			remove_filter( 'pre_option_show_avatars', '__return_true' );
5102
5103
		// If no data, fail out.
5104
		if ( is_wp_error( $avatar ) || ! $avatar )
5105
			return array( null, null );
5106
5107
		// Pull out the URL.  If it's not there, fail out.
5108
		if ( ! preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $url_matches ) )
5109
			return array( null, null );
5110
		$url = wp_specialchars_decode( $url_matches[1], ENT_QUOTES );
5111
5112
		// Pull out the class, but it's not a big deal if it's missing.
5113
		$class = '';
5114
		if ( preg_match( '/class=["\']([^"\']+)["\']/', $avatar, $class_matches ) )
5115
			$class = wp_specialchars_decode( $class_matches[1], ENT_QUOTES );
5116
5117
		return array( $url, $class );
5118
	}
5119
5120
	/**
5121
	 * Pings the WordPress.com Mirror Site for the specified options.
5122
	 *
5123
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
5124
	 *
5125
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
5126
	 */
5127
	public function get_cloud_site_options( $option_names ) {
5128
		$option_names = array_filter( (array) $option_names, 'is_string' );
5129
5130
		Jetpack::load_xml_rpc_client();
5131
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5132
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
5133
		if ( $xml->isError() ) {
5134
			return array(
5135
				'error_code' => $xml->getErrorCode(),
5136
				'error_msg'  => $xml->getErrorMessage(),
5137
			);
5138
		}
5139
		$cloud_site_options = $xml->getResponse();
5140
5141
		return $cloud_site_options;
5142
	}
5143
5144
	/**
5145
	 * Fetch the filtered array of options that we should compare to determine an identity crisis.
5146
	 *
5147
	 * @return array An array of options to check.
5148
	 */
5149
	public static function identity_crisis_options_to_check() {
5150
		return array(
5151
			'siteurl',
5152
			'home',
5153
		);
5154
	}
5155
5156
	/**
5157
	 * Checks to make sure that local options have the same values as remote options.  Will cache the results for up to 24 hours.
5158
	 *
5159
	 * @param bool $force_recheck Whether to ignore any cached transient and manually re-check.
5160
	 *
5161
	 * @return array An array of options that do not match.  If everything is good, it will evaluate to false.
5162
	 */
5163
	public static function check_identity_crisis( $force_recheck = false ) {
5164
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || Jetpack::is_staging_site() )
5165
			return false;
5166
5167
		if ( $force_recheck || false === ( $errors = get_transient( 'jetpack_has_identity_crisis' ) ) ) {
5168
			$options_to_check = self::identity_crisis_options_to_check();
5169
			$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5170
			$errors        = array();
5171
5172
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5173
5174
				// If it's not the same as the local value...
5175
				if ( $cloud_value !== get_option( $cloud_key ) ) {
5176
5177
					// Break out if we're getting errors.  We are going to check the error keys later when we alert.
5178
					if ( 'error_code' == $cloud_key ) {
5179
						$errors[ $cloud_key ] = $cloud_value;
5180
						break;
5181
					}
5182
5183
					$parsed_cloud_value = parse_url( $cloud_value );
5184
					// If the current options is an IP address
5185
					if ( filter_var( $parsed_cloud_value['host'], FILTER_VALIDATE_IP ) ) {
5186
						// Give the new value a Jetpack to fly in to the clouds
5187
						Jetpack::resolve_identity_crisis( $cloud_key );
5188
						continue;
5189
					}
5190
5191
					// And it's not been added to the whitelist...
5192
					if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5193
						/*
5194
						 * This should be a temporary hack until a cleaner solution is found.
5195
						 *
5196
						 * The siteurl and home can be set to use http in General > Settings
5197
						 * however some constants can be defined that can force https in wp-admin
5198
						 * when this happens wpcom can confuse wporg with a fake identity
5199
						 * crisis with a mismatch of http vs https when it should be allowed.
5200
						 * we need to check that here.
5201
						 *
5202
						 * @see https://github.com/Automattic/jetpack/issues/1006
5203
						 */
5204
						if ( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5205
							&& ( substr( $cloud_value, 0, 8 ) == "https://" )
5206
							&& Jetpack::init()->is_ssl_required_to_visit_site() ) {
5207
							// Ok, we found a mismatch of http and https because of wp-config, not an invalid url
5208
							continue;
5209
						}
5210
5211
5212
						// Then kick an error!
5213
						$errors[ $cloud_key ] = $cloud_value;
5214
					}
5215
				}
5216
			}
5217
		}
5218
5219
		/**
5220
		 * Filters the errors returned when checking for an Identity Crisis.
5221
		 *
5222
		 * @since 2.3.2
5223
		 *
5224
		 * @param array $errors Array of Identity Crisis errors.
5225
		 * @param bool $force_recheck Ignore any cached transient and manually re-check. Default to false.
5226
		 */
5227
		return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5228
	}
5229
5230
	/*
5231
	 * Resolve ID crisis
5232
	 *
5233
	 * If the URL has changed, but the rest of the options are the same (i.e. blog/user tokens)
5234
	 * The user has the option to update the shadow site with the new URL before a new
5235
	 * token is created.
5236
	 *
5237
	 * @param $key : Which option to sync.  null defautlts to home and siteurl
5238
	 */
5239
	public static function resolve_identity_crisis( $key = null ) {
5240
		if ( $key ) {
5241
			$identity_options = array( $key );
5242
		} else {
5243
			$identity_options = self::identity_crisis_options_to_check();
5244
		}
5245
5246
		if ( is_array( $identity_options ) ) {
5247
			foreach( $identity_options as $identity_option ) {
5248
				/**
5249
				 * Fires when a shadow site option is updated.
5250
				 * These options are updated via the Identity Crisis UI.
5251
				 * $identity_option is the option that gets updated.
5252
				 *
5253
				 * @since 3.7.0
5254
				 */
5255
				do_action( "update_option_{$identity_option}" );
5256
			}
5257
		}
5258
	}
5259
5260
	/*
5261
	 * Whitelist URL
5262
	 *
5263
	 * Ignore the URL differences between the blog and the shadow site.
5264
	 */
5265
	public static function whitelist_current_url() {
5266
		$options_to_check = Jetpack::identity_crisis_options_to_check();
5267
		$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5268
5269
		foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5270
			Jetpack::whitelist_identity_crisis_value( $cloud_key, $cloud_value );
5271
		}
5272
	}
5273
5274
	/*
5275
	 * Ajax callbacks for ID crisis resolutions
5276
	 *
5277
	 * Things that could happen here:
5278
	 *  - site_migrated : Update the URL on the shadow blog to match new domain
5279
	 *  - whitelist     : Ignore the URL difference
5280
	 *  - default       : Error message
5281
	 */
5282
	public static function resolve_identity_crisis_ajax_callback() {
5283
		check_ajax_referer( 'resolve-identity-crisis', 'ajax-nonce' );
5284
5285
		switch ( $_POST[ 'crisis_resolution_action' ] ) {
5286
			case 'site_migrated':
5287
				Jetpack::resolve_identity_crisis();
5288
				echo 'resolved';
5289
				break;
5290
5291
			case 'whitelist':
5292
				Jetpack::whitelist_current_url();
5293
				echo 'whitelisted';
5294
				break;
5295
5296
			case 'reset_connection':
5297
				// Delete the options first so it doesn't get confused which site to disconnect dotcom-side
5298
				Jetpack_Options::delete_option(
5299
					array(
5300
						'register',
5301
						'blog_token',
5302
						'user_token',
5303
						'user_tokens',
5304
						'master_user',
5305
						'time_diff',
5306
						'fallback_no_verify_ssl_certs',
5307
						'id',
5308
					)
5309
				);
5310
				delete_transient( 'jetpack_has_identity_crisis' );
5311
5312
				echo 'reset-connection-success';
5313
				break;
5314
5315
			default:
5316
				echo 'missing action';
5317
				break;
5318
		}
5319
5320
		wp_die();
5321
	}
5322
5323
	/**
5324
	 * Adds a value to the whitelist for the specified key.
5325
	 *
5326
	 * @param string $key The option name that we're whitelisting the value for.
5327
	 * @param string $value The value that we're intending to add to the whitelist.
5328
	 *
5329
	 * @return bool Whether the value was added to the whitelist, or false if it was already there.
5330
	 */
5331
	public static function whitelist_identity_crisis_value( $key, $value ) {
5332
		if ( Jetpack::is_identity_crisis_value_whitelisted( $key, $value ) ) {
5333
			return false;
5334
		}
5335
5336
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5337
		if ( empty( $whitelist[ $key ] ) || ! is_array( $whitelist[ $key ] ) ) {
5338
			$whitelist[ $key ] = array();
5339
		}
5340
		array_push( $whitelist[ $key ], $value );
5341
5342
		Jetpack_Options::update_option( 'identity_crisis_whitelist', $whitelist );
5343
		return true;
5344
	}
5345
5346
	/**
5347
	 * Checks whether a value is already whitelisted.
5348
	 *
5349
	 * @param string $key The option name that we're checking the value for.
5350
	 * @param string $value The value that we're curious to see if it's on the whitelist.
5351
	 *
5352
	 * @return bool Whether the value is whitelisted.
5353
	 */
5354
	public static function is_identity_crisis_value_whitelisted( $key, $value ) {
5355
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5356
		if ( ! empty( $whitelist[ $key ] ) && is_array( $whitelist[ $key ] ) && in_array( $value, $whitelist[ $key ] ) ) {
5357
			return true;
5358
		}
5359
		return false;
5360
	}
5361
5362
	/**
5363
	 * Checks whether the home and siteurl specifically are whitelisted
5364
	 * Written so that we don't have re-check $key and $value params every time
5365
	 * we want to check if this site is whitelisted, for example in footer.php
5366
	 *
5367
	 * @return bool True = already whitelisted False = not whitelisted
5368
	 */
5369
	public static function is_staging_site() {
5370
		$is_staging = false;
5371
5372
		$current_whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist' );
5373
		if ( $current_whitelist && ! get_transient( 'jetpack_checked_is_staging' ) ) {
5374
			$options_to_check  = Jetpack::identity_crisis_options_to_check();
5375
			$cloud_options     = Jetpack::init()->get_cloud_site_options( $options_to_check );
5376
5377
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5378
				if ( self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5379
					$is_staging = true;
5380
					break;
5381
				}
5382
			}
5383
			// set a flag so we don't check again for an hour
5384
			set_transient( 'jetpack_checked_is_staging', 1, HOUR_IN_SECONDS );
5385
		}
5386
		$known_staging = array(
5387
			'urls' => array(
5388
				'#\.staging\.wpengine\.com$#i',
5389
				),
5390
			'constants' => array(
5391
				'IS_WPE_SNAPSHOT',
5392
				'KINSTA_DEV_ENV',
5393
				'JETPACK_STAGING_MODE',
5394
				)
5395
			);
5396
		/**
5397
		 * Filters the flags of known staging sites.
5398
		 *
5399
		 * @since 3.9.0
5400
		 *
5401
		 * @param array $known_staging {
5402
		 *     An array of arrays that each are used to check if the current site is staging.
5403
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
5404
		 *     @type array $constants PHP constants of known staging/developement environments.
5405
		 *  }
5406
		 */
5407
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
5408
5409
		if ( isset( $known_staging['urls'] ) ) {
5410
			foreach ( $known_staging['urls'] as $url ){
5411
				if ( preg_match( $url, site_url() ) ) {
5412
					$is_staging = true;
5413
					break;
5414
				}
5415
			}
5416
		}
5417
5418
		if ( isset( $known_staging['constants'] ) ) {
5419
			foreach ( $known_staging['constants'] as $constant ) {
5420
				if ( defined( $constant ) && constant( $constant ) ) {
5421
					$is_staging = true;
5422
				}
5423
			}
5424
		}
5425
5426
		/**
5427
		 * Filters is_staging_site check.
5428
		 *
5429
		 * @since 3.9.0
5430
		 *
5431
		 * @param bool $is_staging If the current site is a staging site.
5432
		 */
5433
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
5434
	}
5435
5436
	public function identity_crisis_js( $nonce ) {
5437
?>
5438
<script>
5439
(function( $ ) {
5440
	var SECOND_IN_MS = 1000;
5441
5442
	function contactSupport( e ) {
5443
		e.preventDefault();
5444
		$( '.jp-id-crisis-question' ).hide();
5445
		$( '#jp-id-crisis-contact-support' ).show();
5446
	}
5447
5448
	function autodismissSuccessBanner() {
5449
		$( '.jp-identity-crisis' ).fadeOut(600); //.addClass( 'dismiss' );
5450
	}
5451
5452
	var data = { action: 'jetpack_resolve_identity_crisis', 'ajax-nonce': '<?php echo $nonce; ?>' };
5453
5454
	$( document ).ready(function() {
5455
5456
		// Site moved: Update the URL on the shadow blog
5457
		$( '.site-moved' ).click(function( e ) {
5458
			e.preventDefault();
5459
			data.crisis_resolution_action = 'site_migrated';
5460
			$( '#jp-id-crisis-question-1 .spinner' ).show();
5461
			$.post( ajaxurl, data, function() {
5462
				$( '.jp-id-crisis-question' ).hide();
5463
				$( '.banner-title' ).hide();
5464
				$( '#jp-id-crisis-success' ).show();
5465
				setTimeout( autodismissSuccessBanner, 6 * SECOND_IN_MS );
5466
			});
5467
5468
		});
5469
5470
		// URL hasn't changed, next question please.
5471
		$( '.site-not-moved' ).click(function( e ) {
5472
			e.preventDefault();
5473
			$( '.jp-id-crisis-question' ).hide();
5474
			$( '#jp-id-crisis-question-2' ).show();
5475
		});
5476
5477
		// Reset connection: two separate sites.
5478
		$( '.reset-connection' ).click(function( e ) {
5479
			data.crisis_resolution_action = 'reset_connection';
5480
			$.post( ajaxurl, data, function( response ) {
5481
				if ( 'reset-connection-success' === response ) {
5482
					window.location.replace( '<?php echo Jetpack::admin_url(); ?>' );
5483
				}
5484
			});
5485
		});
5486
5487
		// It's a dev environment.  Ignore.
5488
		$( '.is-dev-env' ).click(function( e ) {
5489
			data.crisis_resolution_action = 'whitelist';
5490
			$( '#jp-id-crisis-question-2 .spinner' ).show();
5491
			$.post( ajaxurl, data, function() {
5492
				$( '.jp-id-crisis-question' ).hide();
5493
				$( '.banner-title' ).hide();
5494
				$( '#jp-id-crisis-success' ).show();
5495
				setTimeout( autodismissSuccessBanner, 4 * SECOND_IN_MS );
5496
			});
5497
		});
5498
5499
		$( '.not-reconnecting' ).click(contactSupport);
5500
		$( '.not-staging-or-dev' ).click(contactSupport);
5501
	});
5502
})( jQuery );
5503
</script>
5504
<?php
5505
	}
5506
5507
	/**
5508
	 * Maybe Use a .min.css stylesheet, maybe not.
5509
	 *
5510
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
5511
	 */
5512
	public static function maybe_min_asset( $url, $path, $plugin ) {
5513
		// Short out on things trying to find actual paths.
5514
		if ( ! $path || empty( $plugin ) ) {
5515
			return $url;
5516
		}
5517
5518
		// Strip out the abspath.
5519
		$base = dirname( plugin_basename( $plugin ) );
5520
5521
		// Short out on non-Jetpack assets.
5522
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
5523
			return $url;
5524
		}
5525
5526
		// File name parsing.
5527
		$file              = "{$base}/{$path}";
5528
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
5529
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
5530
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
5531
		$extension         = array_shift( $file_name_parts_r );
5532
5533
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
5534
			// Already pointing at the minified version.
5535
			if ( 'min' === $file_name_parts_r[0] ) {
5536
				return $url;
5537
			}
5538
5539
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
5540
			if ( file_exists( $min_full_path ) ) {
5541
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
5542
			}
5543
		}
5544
5545
		return $url;
5546
	}
5547
5548
	/**
5549
	 * Maybe inlines a stylesheet.
5550
	 *
5551
	 * If you'd like to inline a stylesheet instead of printing a link to it,
5552
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
5553
	 *
5554
	 * Attached to `style_loader_tag` filter.
5555
	 *
5556
	 * @param string $tag The tag that would link to the external asset.
5557
	 * @param string $handle The registered handle of the script in question.
5558
	 *
5559
	 * @return string
5560
	 */
5561
	public static function maybe_inline_style( $tag, $handle ) {
5562
		global $wp_styles;
5563
		$item = $wp_styles->registered[ $handle ];
5564
5565
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
5566
			return $tag;
5567
		}
5568
5569
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
5570
			$href = $matches[1];
5571
			// Strip off query string
5572
			if ( $pos = strpos( $href, '?' ) ) {
5573
				$href = substr( $href, 0, $pos );
5574
			}
5575
			// Strip off fragment
5576
			if ( $pos = strpos( $href, '#' ) ) {
5577
				$href = substr( $href, 0, $pos );
5578
			}
5579
		} else {
5580
			return $tag;
5581
		}
5582
5583
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
5584
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
5585
			return $tag;
5586
		}
5587
5588
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
5589
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
5590
			// And this isn't the pass that actually deals with the RTL version...
5591
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
5592
				// Short out, as the RTL version will deal with it in a moment.
5593
				return $tag;
5594
			}
5595
		}
5596
5597
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
5598
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
5599
		if ( $css ) {
5600
			$tag = "<!-- Inline {$item->handle} -->\r\n";
5601
			if ( empty( $item->extra['after'] ) ) {
5602
				wp_add_inline_style( $handle, $css );
5603
			} else {
5604
				array_unshift( $item->extra['after'], $css );
5605
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
5606
			}
5607
		}
5608
5609
		return $tag;
5610
	}
5611
5612
	/**
5613
	 * Loads a view file from the views
5614
	 *
5615
	 * Data passed in with the $data parameter will be available in the
5616
	 * template file as $data['value']
5617
	 *
5618
	 * @param string $template - Template file to load
5619
	 * @param array $data - Any data to pass along to the template
5620
	 * @return boolean - If template file was found
5621
	 **/
5622
	public function load_view( $template, $data = array() ) {
5623
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
5624
5625
		if( file_exists( $views_dir . $template ) ) {
5626
			require_once( $views_dir . $template );
5627
			return true;
5628
		}
5629
5630
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
5631
		return false;
5632
	}
5633
5634
	/**
5635
	 * Throws warnings for deprecated hooks to be removed from Jetpack
5636
	 */
5637
	public function deprecated_hooks() {
5638
		global $wp_filter;
5639
5640
		/*
5641
		 * Format:
5642
		 * deprecated_filter_name => replacement_name
5643
		 *
5644
		 * If there is no replacement us null for replacement_name
5645
		 */
5646
		$deprecated_list = array(
5647
			'jetpack_bail_on_shortcode'                => 'jetpack_shortcodes_to_include',
5648
			'wpl_sharing_2014_1'                       => null,
5649
			'jetpack-tools-to-include'                 => 'jetpack_tools_to_include',
5650
			'jetpack_identity_crisis_options_to_check' => null,
5651
			'update_option_jetpack_single_user_site'   => null,
5652
			'audio_player_default_colors'              => null,
5653
		);
5654
5655
		// This is a silly loop depth. Better way?
5656
		foreach( $deprecated_list AS $hook => $hook_alt ) {
5657
			if( isset( $wp_filter[ $hook ] ) && is_array( $wp_filter[ $hook ] ) ) {
5658
				foreach( $wp_filter[$hook] AS $func => $values ) {
5659
					foreach( $values AS $hooked ) {
5660
						_deprecated_function( $hook . ' used for ' . $hooked['function'], null, $hook_alt );
5661
					}
5662
				}
5663
			}
5664
		}
5665
	}
5666
5667
	/**
5668
	 * Converts any url in a stylesheet, to the correct absolute url.
5669
	 *
5670
	 * Considerations:
5671
	 *  - Normal, relative URLs     `feh.png`
5672
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
5673
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
5674
	 *  - Absolute URLs             `http://domain.com/feh.png`
5675
	 *  - Domain root relative URLs `/feh.png`
5676
	 *
5677
	 * @param $css string: The raw CSS -- should be read in directly from the file.
5678
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
5679
	 *
5680
	 * @return mixed|string
5681
	 */
5682
	public static function absolutize_css_urls( $css, $css_file_url ) {
5683
		$pattern = '#url\((?P<path>[^)]*)\)#i';
5684
		$css_dir = dirname( $css_file_url );
5685
		$p       = parse_url( $css_dir );
5686
		$domain  = sprintf(
5687
					'%1$s//%2$s%3$s%4$s',
5688
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
5689
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
5690
					$p['host'],
5691
					isset( $p['port'] )             ? ":{$p['port']}" : ''
5692
				);
5693
5694
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
5695
			$find = $replace = array();
5696
			foreach ( $matches as $match ) {
5697
				$url = trim( $match['path'], "'\" \t" );
5698
5699
				// If this is a data url, we don't want to mess with it.
5700
				if ( 'data:' === substr( $url, 0, 5 ) ) {
5701
					continue;
5702
				}
5703
5704
				// If this is an absolute or protocol-agnostic url,
5705
				// we don't want to mess with it.
5706
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
5707
					continue;
5708
				}
5709
5710
				switch ( substr( $url, 0, 1 ) ) {
5711
					case '/':
5712
						$absolute = $domain . $url;
5713
						break;
5714
					default:
5715
						$absolute = $css_dir . '/' . $url;
5716
				}
5717
5718
				$find[]    = $match[0];
5719
				$replace[] = sprintf( 'url("%s")', $absolute );
5720
			}
5721
			$css = str_replace( $find, $replace, $css );
5722
		}
5723
5724
		return $css;
5725
	}
5726
5727
	/**
5728
	 * This method checks to see if SSL is required by the site in
5729
	 * order to visit it in some way other than only setting the
5730
	 * https value in the home or siteurl values.
5731
	 *
5732
	 * @since 3.2
5733
	 * @return boolean
5734
	 **/
5735
	private function is_ssl_required_to_visit_site() {
5736
		global $wp_version;
5737
		$ssl = is_ssl();
5738
5739
		if ( force_ssl_admin() ) {
5740
			$ssl = true;
5741
		}
5742
		return $ssl;
5743
	}
5744
5745
	/**
5746
	 * This methods removes all of the registered css files on the frontend
5747
	 * from Jetpack in favor of using a single file. In effect "imploding"
5748
	 * all the files into one file.
5749
	 *
5750
	 * Pros:
5751
	 * - Uses only ONE css asset connection instead of 15
5752
	 * - Saves a minimum of 56k
5753
	 * - Reduces server load
5754
	 * - Reduces time to first painted byte
5755
	 *
5756
	 * Cons:
5757
	 * - Loads css for ALL modules. However all selectors are prefixed so it
5758
	 *		should not cause any issues with themes.
5759
	 * - Plugins/themes dequeuing styles no longer do anything. See
5760
	 *		jetpack_implode_frontend_css filter for a workaround
5761
	 *
5762
	 * For some situations developers may wish to disable css imploding and
5763
	 * instead operate in legacy mode where each file loads seperately and
5764
	 * can be edited individually or dequeued. This can be accomplished with
5765
	 * the following line:
5766
	 *
5767
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
5768
	 *
5769
	 * @since 3.2
5770
	 **/
5771
	public function implode_frontend_css( $travis_test = false ) {
5772
		$do_implode = true;
5773
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
5774
			$do_implode = false;
5775
		}
5776
5777
		/**
5778
		 * Allow CSS to be concatenated into a single jetpack.css file.
5779
		 *
5780
		 * @since 3.2.0
5781
		 *
5782
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
5783
		 */
5784
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
5785
5786
		// Do not use the imploded file when default behaviour was altered through the filter
5787
		if ( ! $do_implode ) {
5788
			return;
5789
		}
5790
5791
		// We do not want to use the imploded file in dev mode, or if not connected
5792
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
5793
			if ( ! $travis_test ) {
5794
				return;
5795
			}
5796
		}
5797
5798
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
5799
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
5800
			return;
5801
		}
5802
5803
		/*
5804
		 * Now we assume Jetpack is connected and able to serve the single
5805
		 * file.
5806
		 *
5807
		 * In the future there will be a check here to serve the file locally
5808
		 * or potentially from the Jetpack CDN
5809
		 *
5810
		 * For now:
5811
		 * - Enqueue a single imploded css file
5812
		 * - Zero out the style_loader_tag for the bundled ones
5813
		 * - Be happy, drink scotch
5814
		 */
5815
5816
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
5817
5818
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
5819
5820
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
5821
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
5822
	}
5823
5824
	function concat_remove_style_loader_tag( $tag, $handle ) {
5825
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
5826
			$tag = '';
5827
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
5828
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
5829
			}
5830
		}
5831
5832
		return $tag;
5833
	}
5834
5835
	/*
5836
	 * Check the heartbeat data
5837
	 *
5838
	 * Organizes the heartbeat data by severity.  For example, if the site
5839
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
5840
	 *
5841
	 * Data will be added to "caution" array, if it either:
5842
	 *  - Out of date Jetpack version
5843
	 *  - Out of date WP version
5844
	 *  - Out of date PHP version
5845
	 *
5846
	 * $return array $filtered_data
5847
	 */
5848
	public static function jetpack_check_heartbeat_data() {
5849
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
5850
5851
		$good    = array();
5852
		$caution = array();
5853
		$bad     = array();
5854
5855
		foreach ( $raw_data as $stat => $value ) {
5856
5857
			// Check jetpack version
5858
			if ( 'version' == $stat ) {
5859
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
5860
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
5861
					continue;
5862
				}
5863
			}
5864
5865
			// Check WP version
5866
			if ( 'wp-version' == $stat ) {
5867
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
5868
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
5869
					continue;
5870
				}
5871
			}
5872
5873
			// Check PHP version
5874
			if ( 'php-version' == $stat ) {
5875
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
5876
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
5877
					continue;
5878
				}
5879
			}
5880
5881
			// Check ID crisis
5882
			if ( 'identitycrisis' == $stat ) {
5883
				if ( 'yes' == $value ) {
5884
					$bad[ $stat ] = $value;
5885
					continue;
5886
				}
5887
			}
5888
5889
			// The rest are good :)
5890
			$good[ $stat ] = $value;
5891
		}
5892
5893
		$filtered_data = array(
5894
			'good'    => $good,
5895
			'caution' => $caution,
5896
			'bad'     => $bad
5897
		);
5898
5899
		return $filtered_data;
5900
	}
5901
5902
5903
	/*
5904
	 * This method is used to organize all options that can be reset
5905
	 * without disconnecting Jetpack.
5906
	 *
5907
	 * It is used in class.jetpack-cli.php to reset options
5908
	 *
5909
	 * @return array of options to delete.
5910
	 */
5911
	public static function get_jetpack_options_for_reset() {
5912
		$jetpack_options            = Jetpack_Options::get_option_names();
5913
		$jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
5914
		$jetpack_options_private    = Jetpack_Options::get_option_names( 'private' );
5915
5916
		$all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat, $jetpack_options_private );
5917
5918
		// A manual build of the wp options
5919
		$wp_options = array(
5920
			'sharing-options',
5921
			'disabled_likes',
5922
			'disabled_reblogs',
5923
			'jetpack_comments_likes_enabled',
5924
			'wp_mobile_excerpt',
5925
			'wp_mobile_featured_images',
5926
			'wp_mobile_app_promos',
5927
			'stats_options',
5928
			'stats_dashboard_widget',
5929
			'safecss_preview_rev',
5930
			'safecss_rev',
5931
			'safecss_revision_migrated',
5932
			'nova_menu_order',
5933
			'jetpack_portfolio',
5934
			'jetpack_portfolio_posts_per_page',
5935
			'jetpack_testimonial',
5936
			'jetpack_testimonial_posts_per_page',
5937
			'wp_mobile_custom_css',
5938
			'sharedaddy_disable_resources',
5939
			'sharing-options',
5940
			'sharing-services',
5941
			'site_icon_temp_data',
5942
			'featured-content',
5943
			'site_logo',
5944
			'jetpack_dismissed_notices',
5945
		);
5946
5947
		// Flag some Jetpack options as unsafe
5948
		$unsafe_options = array(
5949
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
5950
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
5951
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
5952
			'jumpstart',                    // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
5953
5954
			// non_compact
5955
			'activated',
5956
5957
			// private
5958
			'register',
5959
			'blog_token',                  // (string) The Client Secret/Blog Token of this site.
5960
			'user_token',                  // (string) The User Token of this site. (deprecated)
5961
			'user_tokens'
5962
		);
5963
5964
		// Remove the unsafe Jetpack options
5965
		foreach ( $unsafe_options as $unsafe_option ) {
5966
			if ( false !== ( $key = array_search( $unsafe_option, $all_jp_options ) ) ) {
5967
				unset( $all_jp_options[ $key ] );
5968
			}
5969
		}
5970
5971
		$options = array(
5972
			'jp_options' => $all_jp_options,
5973
			'wp_options' => $wp_options
5974
		);
5975
5976
		return $options;
5977
	}
5978
5979
	/**
5980
	 * Check if an option of a Jetpack module has been updated.
5981
	 *
5982
	 * If any module option has been updated before Jump Start has been dismissed,
5983
	 * update the 'jumpstart' option so we can hide Jump Start.
5984
	 *
5985
	 * @param string $option_name
5986
	 *
5987
	 * @return bool
5988
	 */
5989
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
5990
		// Bail if Jump Start has already been dismissed
5991
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
5992
			return false;
5993
		}
5994
5995
		$jetpack = Jetpack::init();
5996
5997
		// Manual build of module options
5998
		$option_names = self::get_jetpack_options_for_reset();
5999
6000
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6001
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6002
6003
			//Jump start is being dismissed send data to MC Stats
6004
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6005
6006
			$jetpack->do_stats( 'server_side' );
6007
		}
6008
6009
	}
6010
6011
	/*
6012
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6013
	 * so we can bring them directly to their site in calypso.
6014
	 *
6015
	 * @param string | url
6016
	 * @return string | url without the guff
6017
	 */
6018
	public static function build_raw_urls( $url ) {
6019
		$strip_http = '/.*?:\/\//i';
6020
		$url = preg_replace( $strip_http, '', $url  );
6021
		$url = str_replace( '/', '::', $url );
6022
		return $url;
6023
	}
6024
6025
	/**
6026
	 * Stores and prints out domains to prefetch for page speed optimization.
6027
	 *
6028
	 * @param mixed $new_urls
6029
	 */
6030
	public static function dns_prefetch( $new_urls = null ) {
6031
		static $prefetch_urls = array();
6032
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6033
			echo "\r\n";
6034
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6035
				printf( "<link rel='dns-prefetch' href='%s'>\r\n", esc_attr( $this_prefetch_url ) );
6036
			}
6037
		} elseif ( ! empty( $new_urls ) ) {
6038
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6039
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6040
			}
6041
			foreach ( (array) $new_urls as $this_new_url ) {
6042
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6043
			}
6044
			$prefetch_urls = array_unique( $prefetch_urls );
6045
		}
6046
	}
6047
6048
	public function wp_dashboard_setup() {
6049
		if ( self::is_active() ) {
6050
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6051
			$widget_title = __( 'Site Stats', 'jetpack' );
6052
		} elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
6053
			add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
6054
			$widget_title = __( 'Please Connect Jetpack', 'jetpack' );
6055
		}
6056
6057
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6058
			wp_add_dashboard_widget(
6059
				'jetpack_summary_widget',
6060
				$widget_title,
6061
				array( __CLASS__, 'dashboard_widget' )
6062
			);
6063
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6064
6065
			// If we're inactive and not in development mode, sort our box to the top.
6066
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6067
				global $wp_meta_boxes;
6068
6069
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6070
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6071
6072
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6073
			}
6074
		}
6075
	}
6076
6077
	/**
6078
	 * @param mixed $result Value for the user's option
6079
	 * @return mixed
6080
	 */
6081
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6082
		if ( ! is_array( $sorted ) ) {
6083
			return $sorted;
6084
		}
6085
6086
		foreach ( $sorted as $box_context => $ids ) {
6087
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6088
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6089
				continue;
6090
			}
6091
6092
			$ids_array = explode( ',', $ids );
6093
			$key = array_search( 'dashboard_stats', $ids_array );
6094
6095
			if ( false !== $key ) {
6096
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6097
				$ids_array[ $key ] = 'jetpack_summary_widget';
6098
				$sorted[ $box_context ] = implode( ',', $ids_array );
6099
				// We've found it, stop searching, and just return.
6100
				break;
6101
			}
6102
		}
6103
6104
		return $sorted;
6105
	}
6106
6107
	public static function dashboard_widget() {
6108
		/**
6109
		 * Fires when the dashboard is loaded.
6110
		 *
6111
		 * @since 3.4.0
6112
		 */
6113
		do_action( 'jetpack_dashboard_widget' );
6114
	}
6115
6116
	public static function dashboard_widget_footer() {
6117
		?>
6118
		<footer>
6119
6120
		<div class="protect">
6121
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6122
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6123
				<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>
6124
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6125
				<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' ); ?>">
6126
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6127
				</a>
6128
			<?php else : ?>
6129
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6130
			<?php endif; ?>
6131
		</div>
6132
6133
		<div class="akismet">
6134
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6135
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6136
				<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>
6137
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6138
				<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">
6139
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6140
				</a>
6141
			<?php else : ?>
6142
				<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>
6143
			<?php endif; ?>
6144
		</div>
6145
6146
		</footer>
6147
		<?php
6148
	}
6149
6150
	public function dashboard_widget_connect_to_wpcom() {
6151
		if ( Jetpack::is_active() || Jetpack::is_development_mode() || ! current_user_can( 'jetpack_connect' ) ) {
6152
			return;
6153
		}
6154
		?>
6155
		<div class="wpcom-connect">
6156
			<div class="jp-emblem">
6157
			<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">
6158
				<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"/>
6159
			</svg>
6160
			</div>
6161
			<h3><?php esc_html_e( 'Please Connect Jetpack', 'jetpack' ); ?></h3>
6162
			<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>
6163
6164
			<div class="actions">
6165
				<a href="<?php echo $this->build_connect_url( false, false, 'widget-btn' ); ?>" class="button button-primary">
6166
					<?php esc_html_e( 'Connect Jetpack', 'jetpack' ); ?>
6167
				</a>
6168
			</div>
6169
		</div>
6170
		<?php
6171
	}
6172
6173
	/*
6174
	 * A graceful transition to using Core's site icon.
6175
	 *
6176
	 * All of the hard work has already been done with the image
6177
	 * in all_done_page(). All that needs to be done now is update
6178
	 * the option and display proper messaging.
6179
	 *
6180
	 * @todo remove when WP 4.3 is minimum
6181
	 *
6182
	 * @since 3.6.1
6183
	 *
6184
	 * @return bool false = Core's icon not available || true = Core's icon is available
6185
	 */
6186
	public static function jetpack_site_icon_available_in_core() {
6187
		global $wp_version;
6188
		$core_icon_available = function_exists( 'has_site_icon' ) && version_compare( $wp_version, '4.3-beta' ) >= 0;
6189
6190
		if ( ! $core_icon_available ) {
6191
			return false;
6192
		}
6193
6194
		// No need for Jetpack's site icon anymore if core's is already set
6195
		if ( has_site_icon() ) {
6196
			if ( Jetpack::is_module_active( 'site-icon' ) ) {
6197
				Jetpack::log( 'deactivate', 'site-icon' );
6198
				Jetpack::deactivate_module( 'site-icon' );
6199
			}
6200
			return true;
6201
		}
6202
6203
		// Transfer Jetpack's site icon to use core.
6204
		$site_icon_id = Jetpack::get_option( 'site_icon_id' );
6205
		if ( $site_icon_id ) {
6206
			// Update core's site icon
6207
			update_option( 'site_icon', $site_icon_id );
6208
6209
			// Delete Jetpack's icon option. We still want the blavatar and attached data though.
6210
			delete_option( 'site_icon_id' );
6211
		}
6212
6213
		// No need for Jetpack's site icon anymore
6214
		if ( Jetpack::is_module_active( 'site-icon' ) ) {
6215
			Jetpack::log( 'deactivate', 'site-icon' );
6216
			Jetpack::deactivate_module( 'site-icon' );
6217
		}
6218
6219
		return true;
6220
	}
6221
6222
	/**
6223
	 * Return string containing the Jetpack logo.
6224
	 *
6225
	 * @since 3.9.0
6226
	 *
6227
	 * @return string
6228
	 */
6229
	public static function get_jp_emblem() {
6230
		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>';
6231
	}
6232
6233
	/*
6234
	 * Adds a "blank" column in the user admin table to display indication of user connection.
6235
	 */
6236
	function jetpack_icon_user_connected( $columns ) {
6237
		$columns['user_jetpack'] = '';
6238
		return $columns;
6239
	}
6240
6241
	/*
6242
	 * Show Jetpack icon if the user is linked.
6243
	 */
6244
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6245
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
6246
			$emblem_html = sprintf(
6247
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6248
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6249
				Jetpack::get_jp_emblem()
6250
			);
6251
			return $emblem_html;
6252
		}
6253
6254
		return $val;
6255
	}
6256
6257
	/*
6258
	 * Style the Jetpack user column
6259
	 */
6260
	function jetpack_user_col_style() {
6261
		global $current_screen;
6262
		if ( 'users' == $current_screen->base ) { ?>
6263
			<style>
6264
				.fixed .column-user_jetpack {
6265
					width: 21px;
6266
				}
6267
				.jp-emblem-user-admin path {
6268
					fill: #8cc258;
6269
				}
6270
			</style>
6271
		<?php }
6272
	}
6273
6274
}
6275