Completed
Push — update/gutenberg-tester-add-vi... ( e802e6...257786 )
by
unknown
17:59 queued 06:54
created

class.jetpack.php (6 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
require_once( JETPACK__PLUGIN_DIR . '_inc/lib/class.media.php' );
26
27
class Jetpack {
28
	public $xmlrpc_server = null;
29
30
	private $xmlrpc_verification = null;
31
	private $rest_authentication_status = null;
32
33
	public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
34
35
	/**
36
	 * @var array The handles of styles that are concatenated into jetpack.css
37
	 */
38
	public $concatenated_style_handles = array(
39
		'jetpack-carousel',
40
		'grunion.css',
41
		'the-neverending-homepage',
42
		'jetpack_likes',
43
		'jetpack_related-posts',
44
		'sharedaddy',
45
		'jetpack-slideshow',
46
		'presentations',
47
		'jetpack-subscriptions',
48
		'jetpack-responsive-videos-style',
49
		'jetpack-social-menu',
50
		'tiled-gallery',
51
		'jetpack_display_posts_widget',
52
		'gravatar-profile-widget',
53
		'goodreads-widget',
54
		'jetpack_social_media_icons_widget',
55
		'jetpack-top-posts-widget',
56
		'jetpack_image_widget',
57
		'jetpack-my-community-widget',
58
		'wordads',
59
		'eu-cookie-law-style',
60
		'flickr-widget-style',
61
		'jetpack-search-widget',
62
		'jetpack-simple-payments-widget-style',
63
	);
64
65
	/**
66
	 * Contains all assets that have had their URL rewritten to minified versions.
67
	 *
68
	 * @var array
69
	 */
70
	static $min_assets = array();
71
72
	public $plugins_to_deactivate = array(
73
		'stats'               => array( 'stats/stats.php', 'WordPress.com Stats' ),
74
		'shortlinks'          => array( 'stats/stats.php', 'WordPress.com Stats' ),
75
		'sharedaddy'          => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
76
		'twitter-widget'      => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ),
77
		'after-the-deadline'  => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ),
78
		'contact-form'        => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ),
79
		'contact-form'        => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ),
80
		'custom-css'          => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ),
81
		'random-redirect'     => array( 'random-redirect/random-redirect.php', 'Random Redirect' ),
82
		'videopress'          => array( 'video/video.php', 'VideoPress' ),
83
		'widget-visibility'   => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ),
84
		'widget-visibility'   => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ),
85
		'sharedaddy'          => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ),
86
		'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ),
87
		'latex'               => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
88
	);
89
90
	static $capability_translations = array(
91
		'administrator' => 'manage_options',
92
		'editor'        => 'edit_others_posts',
93
		'author'        => 'publish_posts',
94
		'contributor'   => 'edit_posts',
95
		'subscriber'    => 'read',
96
	);
97
98
	/**
99
	 * Map of modules that have conflicts with plugins and should not be auto-activated
100
	 * if the plugins are active.  Used by filter_default_modules
101
	 *
102
	 * Plugin Authors: If you'd like to prevent a single module from auto-activating,
103
	 * change `module-slug` and add this to your plugin:
104
	 *
105
	 * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' );
106
	 * function my_jetpack_get_default_modules( $modules ) {
107
	 *     return array_diff( $modules, array( 'module-slug' ) );
108
	 * }
109
	 *
110
	 * @var array
111
	 */
112
	private $conflicting_plugins = array(
113
		'comments'          => array(
114
			'Intense Debate'                       => 'intensedebate/intensedebate.php',
115
			'Disqus'                               => 'disqus-comment-system/disqus.php',
116
			'Livefyre'                             => 'livefyre-comments/livefyre.php',
117
			'Comments Evolved for WordPress'       => 'gplus-comments/comments-evolved.php',
118
			'Google+ Comments'                     => 'google-plus-comments/google-plus-comments.php',
119
			'WP-SpamShield Anti-Spam'              => 'wp-spamshield/wp-spamshield.php',
120
		),
121
		'comment-likes' => array(
122
			'Epoch'                                => 'epoch/plugincore.php',
123
		),
124
		'contact-form'      => array(
125
			'Contact Form 7'                       => 'contact-form-7/wp-contact-form-7.php',
126
			'Gravity Forms'                        => 'gravityforms/gravityforms.php',
127
			'Contact Form Plugin'                  => 'contact-form-plugin/contact_form.php',
128
			'Easy Contact Forms'                   => 'easy-contact-forms/easy-contact-forms.php',
129
			'Fast Secure Contact Form'             => 'si-contact-form/si-contact-form.php',
130
			'Ninja Forms'                          => 'ninja-forms/ninja-forms.php',
131
		),
132
		'minileven'         => array(
133
			'WPtouch'                              => 'wptouch/wptouch.php',
134
		),
135
		'latex'             => array(
136
			'LaTeX for WordPress'                  => 'latex/latex.php',
137
			'Youngwhans Simple Latex'              => 'youngwhans-simple-latex/yw-latex.php',
138
			'Easy WP LaTeX'                        => 'easy-wp-latex-lite/easy-wp-latex-lite.php',
139
			'MathJax-LaTeX'                        => 'mathjax-latex/mathjax-latex.php',
140
			'Enable Latex'                         => 'enable-latex/enable-latex.php',
141
			'WP QuickLaTeX'                        => 'wp-quicklatex/wp-quicklatex.php',
142
		),
143
		'protect'           => array(
144
			'Limit Login Attempts'                 => 'limit-login-attempts/limit-login-attempts.php',
145
			'Captcha'                              => 'captcha/captcha.php',
146
			'Brute Force Login Protection'         => 'brute-force-login-protection/brute-force-login-protection.php',
147
			'Login Security Solution'              => 'login-security-solution/login-security-solution.php',
148
			'WPSecureOps Brute Force Protect'      => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php',
149
			'BulletProof Security'                 => 'bulletproof-security/bulletproof-security.php',
150
			'SiteGuard WP Plugin'                  => 'siteguard/siteguard.php',
151
			'Security-protection'                  => 'security-protection/security-protection.php',
152
			'Login Security'                       => 'login-security/login-security.php',
153
			'Botnet Attack Blocker'                => 'botnet-attack-blocker/botnet-attack-blocker.php',
154
			'Wordfence Security'                   => 'wordfence/wordfence.php',
155
			'All In One WP Security & Firewall'    => 'all-in-one-wp-security-and-firewall/wp-security.php',
156
			'iThemes Security'                     => 'better-wp-security/better-wp-security.php',
157
		),
158
		'random-redirect'   => array(
159
			'Random Redirect 2'                    => 'random-redirect-2/random-redirect.php',
160
		),
161
		'related-posts'     => array(
162
			'YARPP'                                => 'yet-another-related-posts-plugin/yarpp.php',
163
			'WordPress Related Posts'              => 'wordpress-23-related-posts-plugin/wp_related_posts.php',
164
			'nrelate Related Content'              => 'nrelate-related-content/nrelate-related.php',
165
			'Contextual Related Posts'             => 'contextual-related-posts/contextual-related-posts.php',
166
			'Related Posts for WordPress'          => 'microkids-related-posts/microkids-related-posts.php',
167
			'outbrain'                             => 'outbrain/outbrain.php',
168
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
169
			'Sexybookmarks'                        => 'sexybookmarks/shareaholic.php',
170
		),
171
		'sharedaddy'        => array(
172
			'AddThis'                              => 'addthis/addthis_social_widget.php',
173
			'Add To Any'                           => 'add-to-any/add-to-any.php',
174
			'ShareThis'                            => 'share-this/sharethis.php',
175
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
176
		),
177
		'seo-tools' => array(
178
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
179
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
180
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
181
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
182
			'The SEO Framework'                    => 'autodescription/autodescription.php',
183
		),
184
		'verification-tools' => array(
185
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
186
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
187
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
188
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
189
			'The SEO Framework'                    => 'autodescription/autodescription.php',
190
		),
191
		'widget-visibility' => array(
192
			'Widget Logic'                         => 'widget-logic/widget_logic.php',
193
			'Dynamic Widgets'                      => 'dynamic-widgets/dynamic-widgets.php',
194
		),
195
		'sitemaps' => array(
196
			'Google XML Sitemaps'                  => 'google-sitemap-generator/sitemap.php',
197
			'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php',
198
			'Google XML Sitemaps for qTranslate'   => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php',
199
			'XML Sitemap & Google News feeds'      => 'xml-sitemap-feed/xml-sitemap.php',
200
			'Google Sitemap by BestWebSoft'        => 'google-sitemap-plugin/google-sitemap-plugin.php',
201
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
202
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
203
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
204
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
205
			'The SEO Framework'                    => 'autodescription/autodescription.php',
206
			'Sitemap'                              => 'sitemap/sitemap.php',
207
			'Simple Wp Sitemap'                    => 'simple-wp-sitemap/simple-wp-sitemap.php',
208
			'Simple Sitemap'                       => 'simple-sitemap/simple-sitemap.php',
209
			'XML Sitemaps'                         => 'xml-sitemaps/xml-sitemaps.php',
210
			'MSM Sitemaps'                         => 'msm-sitemap/msm-sitemap.php',
211
		),
212
		'lazy-images' => array(
213
			'Lazy Load'              => 'lazy-load/lazy-load.php',
214
			'BJ Lazy Load'           => 'bj-lazy-load/bj-lazy-load.php',
215
			'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php',
216
		),
217
	);
218
219
	/**
220
	 * Plugins for which we turn off our Facebook OG Tags implementation.
221
	 *
222
	 * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate
223
	 * Jetpack's Open Graph tags via filter when their Social Meta modules are active.
224
	 *
225
	 * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter:
226
	 * add_filter( 'jetpack_enable_open_graph', '__return_false' );
227
	 */
228
	private $open_graph_conflicting_plugins = array(
229
		'2-click-socialmedia-buttons/2-click-socialmedia-buttons.php',
230
		                                                         // 2 Click Social Media Buttons
231
		'add-link-to-facebook/add-link-to-facebook.php',         // Add Link to Facebook
232
		'add-meta-tags/add-meta-tags.php',                       // Add Meta Tags
233
		'easy-facebook-share-thumbnails/esft.php',               // Easy Facebook Share Thumbnail
234
		'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php',
235
		                                                         // Open Graph Meta Tags by Heateor
236
		'facebook/facebook.php',                                 // Facebook (official plugin)
237
		'facebook-awd/AWD_facebook.php',                         // Facebook AWD All in one
238
		'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php',
239
		                                                         // Facebook Featured Image & OG Meta Tags
240
		'facebook-meta-tags/facebook-metatags.php',              // Facebook Meta Tags
241
		'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php',
242
		                                                         // Facebook Open Graph Meta Tags for WordPress
243
		'facebook-revised-open-graph-meta-tag/index.php',        // Facebook Revised Open Graph Meta Tag
244
		'facebook-thumb-fixer/_facebook-thumb-fixer.php',        // Facebook Thumb Fixer
245
		'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php',
246
		                                                         // Fedmich's Facebook Open Graph Meta
247
		'network-publisher/networkpub.php',                      // Network Publisher
248
		'nextgen-facebook/nextgen-facebook.php',                 // NextGEN Facebook OG
249
		'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php',
250
		                                                         // NextScripts SNAP
251
		'og-tags/og-tags.php',                                   // OG Tags
252
		'opengraph/opengraph.php',                               // Open Graph
253
		'open-graph-protocol-framework/open-graph-protocol-framework.php',
254
		                                                         // Open Graph Protocol Framework
255
		'seo-facebook-comments/seofacebook.php',                 // SEO Facebook Comments
256
		'seo-ultimate/seo-ultimate.php',                         // SEO Ultimate
257
		'sexybookmarks/sexy-bookmarks.php',                      // Shareaholic
258
		'shareaholic/sexy-bookmarks.php',                        // Shareaholic
259
		'sharepress/sharepress.php',                             // SharePress
260
		'simple-facebook-connect/sfc.php',                       // Simple Facebook Connect
261
		'social-discussions/social-discussions.php',             // Social Discussions
262
		'social-sharing-toolkit/social_sharing_toolkit.php',     // Social Sharing Toolkit
263
		'socialize/socialize.php',                               // Socialize
264
		'squirrly-seo/squirrly.php',                             // SEO by SQUIRRLY™
265
		'only-tweet-like-share-and-google-1/tweet-like-plusone.php',
266
		                                                         // Tweet, Like, Google +1 and Share
267
		'wordbooker/wordbooker.php',                             // Wordbooker
268
		'wpsso/wpsso.php',                                       // WordPress Social Sharing Optimization
269
		'wp-caregiver/wp-caregiver.php',                         // WP Caregiver
270
		'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php',
271
		                                                         // WP Facebook Like Send & Open Graph Meta
272
		'wp-facebook-open-graph-protocol/wp-facebook-ogp.php',   // WP Facebook Open Graph protocol
273
		'wp-ogp/wp-ogp.php',                                     // WP-OGP
274
		'zoltonorg-social-plugin/zosp.php',                      // Zolton.org Social Plugin
275
		'wp-fb-share-like-button/wp_fb_share-like_widget.php',   // WP Facebook Like Button
276
		'open-graph-metabox/open-graph-metabox.php'              // Open Graph Metabox
277
	);
278
279
	/**
280
	 * Plugins for which we turn off our Twitter Cards Tags implementation.
281
	 */
282
	private $twitter_cards_conflicting_plugins = array(
283
	//	'twitter/twitter.php',                       // The official one handles this on its own.
284
	//	                                             // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php
285
		'eewee-twitter-card/index.php',              // Eewee Twitter Card
286
		'ig-twitter-cards/ig-twitter-cards.php',     // IG:Twitter Cards
287
		'jm-twitter-cards/jm-twitter-cards.php',     // JM Twitter Cards
288
		'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php',
289
		                                             // Pure Web Brilliant's Social Graph Twitter Cards Extension
290
		'twitter-cards/twitter-cards.php',           // Twitter Cards
291
		'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta
292
		'wp-twitter-cards/twitter_cards.php',        // WP Twitter Cards
293
	);
294
295
	/**
296
	 * Message to display in admin_notice
297
	 * @var string
298
	 */
299
	public $message = '';
300
301
	/**
302
	 * Error to display in admin_notice
303
	 * @var string
304
	 */
305
	public $error = '';
306
307
	/**
308
	 * Modules that need more privacy description.
309
	 * @var string
310
	 */
311
	public $privacy_checks = '';
312
313
	/**
314
	 * Stats to record once the page loads
315
	 *
316
	 * @var array
317
	 */
318
	public $stats = array();
319
320
	/**
321
	 * Jetpack_Sync object
322
	 */
323
	public $sync;
324
325
	/**
326
	 * Verified data for JSON authorization request
327
	 */
328
	public $json_api_authorization_request = array();
329
330
	/**
331
	 * @var string Transient key used to prevent multiple simultaneous plugin upgrades
332
	 */
333
	public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock';
334
335
	/**
336
	 * Holds the singleton instance of this class
337
	 * @since 2.3.3
338
	 * @var Jetpack
339
	 */
340
	static $instance = false;
341
342
	/**
343
	 * Singleton
344
	 * @static
345
	 */
346
	public static function init() {
347
		if ( ! self::$instance ) {
348
			self::$instance = new Jetpack;
349
350
			self::$instance->plugin_upgrade();
351
		}
352
353
		return self::$instance;
354
	}
355
356
	/**
357
	 * Must never be called statically
358
	 */
359
	function plugin_upgrade() {
360
		if ( Jetpack::is_active() ) {
361
			list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
362
			if ( JETPACK__VERSION != $version ) {
363
				// Prevent multiple upgrades at once - only a single process should trigger
364
				// an upgrade to avoid stampedes
365
				if ( false !== get_transient( self::$plugin_upgrade_lock_key ) ) {
366
					return;
367
				}
368
369
				// Set a short lock to prevent multiple instances of the upgrade
370
				set_transient( self::$plugin_upgrade_lock_key, 1, 10 );
371
372
				// check which active modules actually exist and remove others from active_modules list
373
				$unfiltered_modules = Jetpack::get_active_modules();
374
				$modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) );
375
				if ( array_diff( $unfiltered_modules, $modules ) ) {
376
					Jetpack::update_active_modules( $modules );
377
				}
378
379
				add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
380
381
				// Upgrade to 4.3.0
382
				if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) {
383
					Jetpack_Options::delete_option( 'identity_crisis_whitelist' );
384
				}
385
386
				// Make sure Markdown for posts gets turned back on
387
				if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) {
388
					update_option( 'wpcom_publish_posts_with_markdown', true );
389
				}
390
391
				if ( did_action( 'wp_loaded' ) ) {
392
					self::upgrade_on_load();
393
				} else {
394
					add_action(
395
						'wp_loaded',
396
						array( __CLASS__, 'upgrade_on_load' )
397
					);
398
				}
399
			}
400
		}
401
	}
402
403
	/**
404
	 * Runs upgrade routines that need to have modules loaded.
405
	 */
406
	static function upgrade_on_load() {
407
408
		// Not attempting any upgrades if jetpack_modules_loaded did not fire.
409
		// This can happen in case Jetpack has been just upgraded and is
410
		// being initialized late during the page load. In this case we wait
411
		// until the next proper admin page load with Jetpack active.
412
		if ( ! did_action( 'jetpack_modules_loaded' ) ) {
413
			delete_transient( self::$plugin_upgrade_lock_key );
414
415
			return;
416
		}
417
418
		Jetpack::maybe_set_version_option();
419
420
		if ( class_exists( 'Jetpack_Widget_Conditions' ) ) {
421
			Jetpack_Widget_Conditions::migrate_post_type_rules();
422
		}
423
424
		if (
425
			class_exists( 'Jetpack_Sitemap_Manager' )
426
			&& version_compare( JETPACK__VERSION, '5.3', '>=' )
427
		) {
428
			do_action( 'jetpack_sitemaps_purge_data' );
429
		}
430
431
		delete_transient( self::$plugin_upgrade_lock_key );
432
	}
433
434
	static function activate_manage( ) {
435
		if ( did_action( 'init' ) || current_filter() == 'init' ) {
436
			self::activate_module( 'manage', false, false );
437
		} else if ( !  has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) {
438
			add_action( 'init', array( __CLASS__, 'activate_manage' ) );
439
		}
440
	}
441
442
	static function update_active_modules( $modules ) {
443
		$current_modules = Jetpack_Options::get_option( 'active_modules', array() );
444
445
		$success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) );
446
447
		if ( is_array( $modules ) && is_array( $current_modules ) ) {
448
			$new_active_modules = array_diff( $modules, $current_modules );
449
			foreach( $new_active_modules as $module ) {
450
				/**
451
				 * Fires when a specific module is activated.
452
				 *
453
				 * @since 1.9.0
454
				 *
455
				 * @param string $module Module slug.
456
				 * @param boolean $success whether the module was activated. @since 4.2
457
				 */
458
				do_action( 'jetpack_activate_module', $module, $success );
459
460
				/**
461
				 * Fires when a module is activated.
462
				 * The dynamic part of the filter, $module, is the module slug.
463
				 *
464
				 * @since 1.9.0
465
				 *
466
				 * @param string $module Module slug.
467
				 */
468
				do_action( "jetpack_activate_module_$module", $module );
469
			}
470
471
			$new_deactive_modules = array_diff( $current_modules, $modules );
472
			foreach( $new_deactive_modules as $module ) {
473
				/**
474
				 * Fired after a module has been deactivated.
475
				 *
476
				 * @since 4.2.0
477
				 *
478
				 * @param string $module Module slug.
479
				 * @param boolean $success whether the module was deactivated.
480
				 */
481
				do_action( 'jetpack_deactivate_module', $module, $success );
482
				/**
483
				 * Fires when a module is deactivated.
484
				 * The dynamic part of the filter, $module, is the module slug.
485
				 *
486
				 * @since 1.9.0
487
				 *
488
				 * @param string $module Module slug.
489
				 */
490
				do_action( "jetpack_deactivate_module_$module", $module );
491
			}
492
		}
493
494
		return $success;
495
	}
496
497
	static function delete_active_modules() {
498
		self::update_active_modules( array() );
499
	}
500
501
	/**
502
	 * Constructor.  Initializes WordPress hooks
503
	 */
504
	private function __construct() {
505
		/*
506
		 * Check for and alert any deprecated hooks
507
		 */
508
		add_action( 'init', array( $this, 'deprecated_hooks' ) );
509
510
		/*
511
		 * Enable enhanced handling of previewing sites in Calypso
512
		 */
513
		if ( Jetpack::is_active() ) {
514
			require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php';
515
			add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 );
516
			require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-keyring-service-helper.php';
517
			add_action( 'init', array( 'Jetpack_Keyring_Service_Helper', 'init' ), 9, 0 );
518
		}
519
520
		/*
521
		 * Load things that should only be in Network Admin.
522
		 *
523
		 * For now blow away everything else until a more full
524
		 * understanding of what is needed at the network level is
525
		 * available
526
		 */
527
		if( is_multisite() ) {
528
			Jetpack_Network::init();
529
		}
530
531
		// Load Gutenberg editor blocks
532
		add_action( 'init', array( $this, 'load_jetpack_gutenberg' ) );
533
534
		add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 );
535
536
		// Unlink user before deleting the user from .com
537
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
538
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
539
540
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
541
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
542
543
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
544
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
545
546
			$this->require_jetpack_authentication();
547
548
			if ( Jetpack::is_active() ) {
549
				// Hack to preserve $HTTP_RAW_POST_DATA
550
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
551
552
				$signed = $this->verify_xml_rpc_signature();
553 View Code Duplication
				if ( $signed && ! is_wp_error( $signed ) ) {
554
					// The actual API methods.
555
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
556
				} else {
557
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
558
					// active Jetpack connection, so that additional users can link their account.
559
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
560
				}
561 View Code Duplication
			} else {
562
				// The bootstrap API methods.
563
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
564
				$signed = $this->verify_xml_rpc_signature();
565
				if ( $signed && ! is_wp_error( $signed ) ) {
566
					// the jetpack Provision method is available for blog-token-signed requests
567
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'provision_xmlrpc_methods' ) );
568
				}
569
			}
570
571
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
572
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
573
		} elseif (
574
			is_admin() &&
575
			isset( $_POST['action'] ) && (
576
				'jetpack_upload_file' == $_POST['action'] ||
577
				'jetpack_update_file' == $_POST['action']
578
			)
579
		) {
580
			$this->require_jetpack_authentication();
581
			$this->add_remote_request_handlers();
582
		} else {
583
			if ( Jetpack::is_active() ) {
584
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
585
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
586
			}
587
		}
588
589
		if ( Jetpack::is_active() ) {
590
			Jetpack_Heartbeat::init();
591
			if ( Jetpack::is_module_active( 'stats' ) && Jetpack::is_module_active( 'search' ) ) {
592
				require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php';
593
				Jetpack_Search_Performance_Logger::init();
594
			}
595
		}
596
597
		add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) );
598
		add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) );
599
600
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
601
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
602
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
603
		}
604
605
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
606
607
		add_action( 'admin_init', array( $this, 'admin_init' ) );
608
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
609
610
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
611
612
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
613
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
614
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
615
616
		// returns HTTPS support status
617
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
618
619
		// If any module option is updated before Jump Start is dismissed, hide Jump Start.
620
		add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
621
622
		// JITM AJAX callback function
623
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
624
625
		// Universal ajax callback for all tracking events triggered via js
626
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
627
628
		add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) );
629
630
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
631
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
632
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
633
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
634
635
		// gutenberg locale
636
		add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_gutenberg_locale' ) );
637
638
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
639
640
		/**
641
		 * These actions run checks to load additional files.
642
		 * They check for external files or plugins, so they need to run as late as possible.
643
		 */
644
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
645
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
646
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
647
648
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
649
		add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2  );
650
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
651
652
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
653
654
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
655
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
656
657
		// A filter to control all just in time messages
658
		add_filter( 'jetpack_just_in_time_msgs', '__return_true', 9 );
659
		add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9);
660
661
		// If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin.
662
		// We should make sure to only do this for front end links.
663
		if ( Jetpack::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) {
664
			add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 );
665
			add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 );
666
667
			//we'll override wp_notify_postauthor and wp_notify_moderator pluggable functions
668
			//so they point moderation links on emails to Calypso
669
			jetpack_require_lib( 'functions.wp-notify' );
670
		}
671
672
		// Update the Jetpack plan from API on heartbeats
673
		add_action( 'jetpack_heartbeat', array( $this, 'refresh_active_plan_from_wpcom' ) );
674
675
		/**
676
		 * This is the hack to concatenate all css files into one.
677
		 * For description and reasoning see the implode_frontend_css method
678
		 *
679
		 * Super late priority so we catch all the registered styles
680
		 */
681
		if( !is_admin() ) {
682
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
683
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
684
		}
685
686
		/**
687
		 * These are sync actions that we need to keep track of for jitms
688
		 */
689
		add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 );
690
691
		// Actually push the stats on shutdown.
692
		if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) {
693
			add_action( 'shutdown', array( $this, 'push_stats' ) );
694
		}
695
	}
696
697
	function point_edit_post_links_to_calypso( $default_url, $post_id ) {
698
		$post = get_post( $post_id );
699
700
		if ( empty( $post ) ) {
701
			return $default_url;
702
		}
703
704
		$post_type = $post->post_type;
705
706
		// Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso.
707
		// https://en.support.wordpress.com/custom-post-types/
708
		$allowed_post_types = array(
709
			'post' => 'post',
710
			'page' => 'page',
711
			'jetpack-portfolio' => 'edit/jetpack-portfolio',
712
			'jetpack-testimonial' => 'edit/jetpack-testimonial',
713
		);
714
715
		if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) {
716
			return $default_url;
717
		}
718
719
		$path_prefix = $allowed_post_types[ $post_type ];
720
721
		$site_slug  = Jetpack::build_raw_urls( get_home_url() );
722
723
		return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) );
724
	}
725
726
	function point_edit_comment_links_to_calypso( $url ) {
727
		// Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID.
728
		wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args );
729
		return esc_url( sprintf( 'https://wordpress.com/comment/%s/%d',
730
			Jetpack::build_raw_urls( get_home_url() ),
731
			$query_args['amp;c']
732
		) );
733
	}
734
735
	function jetpack_track_last_sync_callback( $params ) {
736
		/**
737
		 * Filter to turn off jitm caching
738
		 *
739
		 * @since 5.4.0
740
		 *
741
		 * @param bool false Whether to cache just in time messages
742
		 */
743
		if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) {
744
			return $params;
745
		}
746
747
		if ( is_array( $params ) && isset( $params[0] ) ) {
748
			$option = $params[0];
749
			if ( 'active_plugins' === $option ) {
750
				// use the cache if we can, but not terribly important if it gets evicted
751
				set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS );
752
			}
753
		}
754
755
		return $params;
756
	}
757
758
	function jetpack_connection_banner_callback() {
759
		check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' );
760
761
		if ( isset( $_REQUEST['dismissBanner'] ) ) {
762
			Jetpack_Options::update_option( 'dismissed_connection_banner', 1 );
763
			wp_send_json_success();
764
		}
765
766
		wp_die();
767
	}
768
769
	function jetpack_admin_ajax_tracks_callback() {
770
		// Check for nonce
771
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
772
			wp_die( 'Permissions check failed.' );
773
		}
774
775
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
776
			wp_die( 'No valid event name or type.' );
777
		}
778
779
		$tracks_data = array();
780
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
781
			if ( is_array( $_REQUEST['tracksEventProp'] ) ) {
782
				$tracks_data = $_REQUEST['tracksEventProp'];
783
			} else {
784
				$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
785
			}
786
		}
787
788
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
789
		wp_send_json_success();
790
		wp_die();
791
	}
792
793
	/**
794
	 * The callback for the JITM ajax requests.
795
	 */
796
	function jetpack_jitm_ajax_callback() {
797
		// Check for nonce
798
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
799
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
800
		}
801
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
802
			$module_slug = $_REQUEST['jitmModule'];
803
			Jetpack::log( 'activate', $module_slug );
804
			Jetpack::activate_module( $module_slug, false, false );
805
			Jetpack::state( 'message', 'no_message' );
806
807
			//A Jetpack module is being activated through a JITM, track it
808
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
809
			$this->do_stats( 'server_side' );
810
811
			wp_send_json_success();
812
		}
813
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
814
			// get the hide_jitm options array
815
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
816
			$module_slug = $_REQUEST['jitmModule'];
817
818
			if( ! $jetpack_hide_jitm ) {
819
				$jetpack_hide_jitm = array(
820
					$module_slug => 'hide'
821
				);
822
			} else {
823
				$jetpack_hide_jitm[$module_slug] = 'hide';
824
			}
825
826
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
827
828
			//jitm is being dismissed forever, track it
829
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
830
			$this->do_stats( 'server_side' );
831
832
			wp_send_json_success();
833
		}
834 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
835
			$module_slug = $_REQUEST['jitmModule'];
836
837
			// User went to WordPress.com, track this
838
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
839
			$this->do_stats( 'server_side' );
840
841
			wp_send_json_success();
842
		}
843 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
844
			$track = $_REQUEST['jitmModule'];
845
846
			// User is viewing JITM, track it.
847
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
848
			$this->do_stats( 'server_side' );
849
850
			wp_send_json_success();
851
		}
852
	}
853
854
	/**
855
	 * If there are any stats that need to be pushed, but haven't been, push them now.
856
	 */
857
	function push_stats() {
858
		if ( ! empty( $this->stats ) ) {
859
			$this->do_stats( 'server_side' );
860
		}
861
	}
862
863
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
864
		switch( $cap ) {
865
			case 'jetpack_connect' :
866
			case 'jetpack_reconnect' :
867
				if ( Jetpack::is_development_mode() ) {
868
					$caps = array( 'do_not_allow' );
869
					break;
870
				}
871
				/**
872
				 * Pass through. If it's not development mode, these should match disconnect.
873
				 * Let users disconnect if it's development mode, just in case things glitch.
874
				 */
875
			case 'jetpack_disconnect' :
876
				/**
877
				 * In multisite, can individual site admins manage their own connection?
878
				 *
879
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
880
				 */
881
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
882
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
883
						/**
884
						 * We need to update the option name -- it's terribly unclear which
885
						 * direction the override goes.
886
						 *
887
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
888
						 */
889
						$caps = array( 'do_not_allow' );
890
						break;
891
					}
892
				}
893
894
				$caps = array( 'manage_options' );
895
				break;
896
			case 'jetpack_manage_modules' :
897
			case 'jetpack_activate_modules' :
898
			case 'jetpack_deactivate_modules' :
899
				$caps = array( 'manage_options' );
900
				break;
901
			case 'jetpack_configure_modules' :
902
				$caps = array( 'manage_options' );
903
				break;
904
			case 'jetpack_network_admin_page':
905
			case 'jetpack_network_settings_page':
906
				$caps = array( 'manage_network_plugins' );
907
				break;
908
			case 'jetpack_network_sites_page':
909
				$caps = array( 'manage_sites' );
910
				break;
911
			case 'jetpack_admin_page' :
912
				if ( Jetpack::is_development_mode() ) {
913
					$caps = array( 'manage_options' );
914
					break;
915
				} else {
916
					$caps = array( 'read' );
917
				}
918
				break;
919
			case 'jetpack_connect_user' :
920
				if ( Jetpack::is_development_mode() ) {
921
					$caps = array( 'do_not_allow' );
922
					break;
923
				}
924
				$caps = array( 'read' );
925
				break;
926
		}
927
		return $caps;
928
	}
929
930
	function require_jetpack_authentication() {
931
		// Don't let anyone authenticate
932
		$_COOKIE = array();
933
		remove_all_filters( 'authenticate' );
934
		remove_all_actions( 'wp_login_failed' );
935
936
		if ( Jetpack::is_active() ) {
937
			// Allow Jetpack authentication
938
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
939
		}
940
	}
941
942
	/**
943
	 * Load language files
944
	 * @action plugins_loaded
945
	 */
946
	public static function plugin_textdomain() {
947
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
948
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
949
	}
950
951
	/**
952
	 * Register assets for use in various modules and the Jetpack admin page.
953
	 *
954
	 * @uses wp_script_is, wp_register_script, plugins_url
955
	 * @action wp_loaded
956
	 * @return null
957
	 */
958
	public function register_assets() {
959
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
960
			wp_register_script(
961
				'spin',
962
				self::get_file_url_for_environment( '_inc/build/spin.min.js', '_inc/spin.js' ),
963
				false,
964
				'1.3'
965
			);
966
		}
967
968
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
969
			wp_register_script(
970
				'jquery.spin',
971
				self::get_file_url_for_environment( '_inc/build/jquery.spin.min.js', '_inc/jquery.spin.js' ),
972
				array( 'jquery', 'spin' ),
973
				'1.3'
974
			);
975
		}
976
977 View Code Duplication
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
978
			wp_register_script(
979
				'jetpack-gallery-settings',
980
				self::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ),
981
				array( 'media-views' ),
982
				'20121225'
983
			);
984
		}
985
986
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
987
			wp_register_script(
988
				'jetpack-twitter-timeline',
989
				self::get_file_url_for_environment( '_inc/build/twitter-timeline.min.js', '_inc/twitter-timeline.js' ),
990
				array( 'jquery' ),
991
				'4.0.0',
992
				true
993
			);
994
		}
995
996
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
997
			wp_register_script(
998
				'jetpack-facebook-embed',
999
				self::get_file_url_for_environment( '_inc/build/facebook-embed.min.js', '_inc/facebook-embed.js' ),
1000
				array( 'jquery' ),
1001
				null,
1002
				true
1003
			);
1004
1005
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
1006
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
1007
			if ( ! is_numeric( $fb_app_id ) ) {
1008
				$fb_app_id = '';
1009
			}
1010
			wp_localize_script(
1011
				'jetpack-facebook-embed',
1012
				'jpfbembed',
1013
				array(
1014
					'appid' => $fb_app_id,
1015
					'locale' => $this->get_locale(),
1016
				)
1017
			);
1018
		}
1019
1020
		/**
1021
		 * As jetpack_register_genericons is by default fired off a hook,
1022
		 * the hook may have already fired by this point.
1023
		 * So, let's just trigger it manually.
1024
		 */
1025
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
1026
		jetpack_register_genericons();
1027
1028
		/**
1029
		 * Register the social logos
1030
		 */
1031
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
1032
		jetpack_register_social_logos();
1033
1034 View Code Duplication
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
1035
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
1036
	}
1037
1038
	/**
1039
	 * Guess locale from language code.
1040
	 *
1041
	 * @param string $lang Language code.
1042
	 * @return string|bool
1043
	 */
1044 View Code Duplication
	function guess_locale_from_lang( $lang ) {
1045
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
1046
			return 'en_US';
1047
		}
1048
1049
		if ( ! class_exists( 'GP_Locales' ) ) {
1050
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
1051
				return false;
1052
			}
1053
1054
			require JETPACK__GLOTPRESS_LOCALES_PATH;
1055
		}
1056
1057
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
1058
			// WP.com: get_locale() returns 'it'
1059
			$locale = GP_Locales::by_slug( $lang );
1060
		} else {
1061
			// Jetpack: get_locale() returns 'it_IT';
1062
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
1063
		}
1064
1065
		if ( ! $locale ) {
1066
			return false;
1067
		}
1068
1069
		if ( empty( $locale->facebook_locale ) ) {
1070
			if ( empty( $locale->wp_locale ) ) {
1071
				return false;
1072
			} else {
1073
				// Facebook SDK is smart enough to fall back to en_US if a
1074
				// locale isn't supported. Since supported Facebook locales
1075
				// can fall out of sync, we'll attempt to use the known
1076
				// wp_locale value and rely on said fallback.
1077
				return $locale->wp_locale;
1078
			}
1079
		}
1080
1081
		return $locale->facebook_locale;
1082
	}
1083
1084
	/**
1085
	 * Get the locale.
1086
	 *
1087
	 * @return string|bool
1088
	 */
1089
	function get_locale() {
1090
		$locale = $this->guess_locale_from_lang( get_locale() );
1091
1092
		if ( ! $locale ) {
1093
			$locale = 'en_US';
1094
		}
1095
1096
		return $locale;
1097
	}
1098
1099
	/**
1100
	 * Device Pixels support
1101
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
1102
	 */
1103
	function devicepx() {
1104
		if ( Jetpack::is_active() && ! Jetpack_AMP_Support::is_amp_request() ) {
1105
			wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true );
1106
		}
1107
	}
1108
1109
	/**
1110
	 * Return the network_site_url so that .com knows what network this site is a part of.
1111
	 * @param  bool $option
1112
	 * @return string
1113
	 */
1114
	public function jetpack_main_network_site_option( $option ) {
1115
		return network_site_url();
1116
	}
1117
	/**
1118
	 * Network Name.
1119
	 */
1120
	static function network_name( $option = null ) {
1121
		global $current_site;
1122
		return $current_site->site_name;
1123
	}
1124
	/**
1125
	 * Does the network allow new user and site registrations.
1126
	 * @return string
1127
	 */
1128
	static function network_allow_new_registrations( $option = null ) {
1129
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
1130
	}
1131
	/**
1132
	 * Does the network allow admins to add new users.
1133
	 * @return boolian
1134
	 */
1135
	static function network_add_new_users( $option = null ) {
1136
		return (bool) get_site_option( 'add_new_users' );
1137
	}
1138
	/**
1139
	 * File upload psace left per site in MB.
1140
	 *  -1 means NO LIMIT.
1141
	 * @return number
1142
	 */
1143
	static function network_site_upload_space( $option = null ) {
1144
		// value in MB
1145
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
1146
	}
1147
1148
	/**
1149
	 * Network allowed file types.
1150
	 * @return string
1151
	 */
1152
	static function network_upload_file_types( $option = null ) {
1153
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1154
	}
1155
1156
	/**
1157
	 * Maximum file upload size set by the network.
1158
	 * @return number
1159
	 */
1160
	static function network_max_upload_file_size( $option = null ) {
1161
		// value in KB
1162
		return get_site_option( 'fileupload_maxk', 300 );
1163
	}
1164
1165
	/**
1166
	 * Lets us know if a site allows admins to manage the network.
1167
	 * @return array
1168
	 */
1169
	static function network_enable_administration_menus( $option = null ) {
1170
		return get_site_option( 'menu_items' );
1171
	}
1172
1173
	/**
1174
	 * If a user has been promoted to or demoted from admin, we need to clear the
1175
	 * jetpack_other_linked_admins transient.
1176
	 *
1177
	 * @since 4.3.2
1178
	 * @since 4.4.0  $old_roles is null by default and if it's not passed, the transient is cleared.
1179
	 *
1180
	 * @param int    $user_id   The user ID whose role changed.
1181
	 * @param string $role      The new role.
1182
	 * @param array  $old_roles An array of the user's previous roles.
1183
	 */
1184
	function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) {
1185
		if ( 'administrator' == $role
1186
			|| ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) )
1187
			|| is_null( $old_roles )
1188
		) {
1189
			delete_transient( 'jetpack_other_linked_admins' );
1190
		}
1191
	}
1192
1193
	/**
1194
	 * Checks to see if there are any other users available to become primary
1195
	 * Users must both:
1196
	 * - Be linked to wpcom
1197
	 * - Be an admin
1198
	 *
1199
	 * @return mixed False if no other users are linked, Int if there are.
1200
	 */
1201
	static function get_other_linked_admins() {
1202
		$other_linked_users = get_transient( 'jetpack_other_linked_admins' );
1203
1204
		if ( false === $other_linked_users ) {
1205
			$admins = get_users( array( 'role' => 'administrator' ) );
1206
			if ( count( $admins ) > 1 ) {
1207
				$available = array();
1208
				foreach ( $admins as $admin ) {
1209
					if ( Jetpack::is_user_connected( $admin->ID ) ) {
1210
						$available[] = $admin->ID;
1211
					}
1212
				}
1213
1214
				$count_connected_admins = count( $available );
1215
				if ( count( $available ) > 1 ) {
1216
					$other_linked_users = $count_connected_admins;
1217
				} else {
1218
					$other_linked_users = 0;
1219
				}
1220
			} else {
1221
				$other_linked_users = 0;
1222
			}
1223
1224
			set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS );
1225
		}
1226
1227
		return ( 0 === $other_linked_users ) ? false : $other_linked_users;
1228
	}
1229
1230
	/**
1231
	 * Return whether we are dealing with a multi network setup or not.
1232
	 * The reason we are type casting this is because we want to avoid the situation where
1233
	 * the result is false since when is_main_network_option return false it cases
1234
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
1235
	 * database which could be set to anything as opposed to what this function returns.
1236
	 * @param  bool  $option
1237
	 *
1238
	 * @return boolean
1239
	 */
1240
	public function is_main_network_option( $option ) {
1241
		// return '1' or ''
1242
		return (string) (bool) Jetpack::is_multi_network();
1243
	}
1244
1245
	/**
1246
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1247
	 *
1248
	 * @param  string  $option
1249
	 * @return boolean
1250
	 */
1251
	public function is_multisite( $option ) {
1252
		return (string) (bool) is_multisite();
1253
	}
1254
1255
	/**
1256
	 * Implemented since there is no core is multi network function
1257
	 * Right now there is no way to tell if we which network is the dominant network on the system
1258
	 *
1259
	 * @since  3.3
1260
	 * @return boolean
1261
	 */
1262
	public static function is_multi_network() {
1263
		global  $wpdb;
1264
1265
		// if we don't have a multi site setup no need to do any more
1266
		if ( ! is_multisite() ) {
1267
			return false;
1268
		}
1269
1270
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
1271
		if ( $num_sites > 1 ) {
1272
			return true;
1273
		} else {
1274
			return false;
1275
		}
1276
	}
1277
1278
	/**
1279
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
1280
	 * @return null
1281
	 */
1282
	function update_jetpack_main_network_site_option() {
1283
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1284
	}
1285
	/**
1286
	 * Triggered after a user updates the network settings via Network Settings Admin Page
1287
	 *
1288
	 */
1289
	function update_jetpack_network_settings() {
1290
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1291
		// Only sync this info for the main network site.
1292
	}
1293
1294
	/**
1295
	 * Get back if the current site is single user site.
1296
	 *
1297
	 * @return bool
1298
	 */
1299
	public static function is_single_user_site() {
1300
		global $wpdb;
1301
1302 View Code Duplication
		if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) {
1303
			$some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" );
1304
			set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS );
1305
		}
1306
		return 1 === (int) $some_users;
1307
	}
1308
1309
	/**
1310
	 * Returns true if the site has file write access false otherwise.
1311
	 * @return string ( '1' | '0' )
1312
	 **/
1313
	public static function file_system_write_access() {
1314
		if ( ! function_exists( 'get_filesystem_method' ) ) {
1315
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
1316
		}
1317
1318
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1319
1320
		$filesystem_method = get_filesystem_method();
1321
		if ( $filesystem_method === 'direct' ) {
1322
			return 1;
1323
		}
1324
1325
		ob_start();
1326
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1327
		ob_end_clean();
1328
		if ( $filesystem_credentials_are_stored ) {
1329
			return 1;
1330
		}
1331
		return 0;
1332
	}
1333
1334
	/**
1335
	 * Finds out if a site is using a version control system.
1336
	 * @return string ( '1' | '0' )
1337
	 **/
1338
	public static function is_version_controlled() {
1339
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' );
1340
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1341
	}
1342
1343
	/**
1344
	 * Determines whether the current theme supports featured images or not.
1345
	 * @return string ( '1' | '0' )
1346
	 */
1347
	public static function featured_images_enabled() {
1348
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1349
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1350
	}
1351
1352
	/**
1353
	 * Wrapper for core's get_avatar_url().  This one is deprecated.
1354
	 *
1355
	 * @deprecated 4.7 use get_avatar_url instead.
1356
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
1357
	 * @param int $size Size of the avatar image
1358
	 * @param string $default URL to a default image to use if no avatar is available
1359
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
1360
	 *
1361
	 * @return array
1362
	 */
1363
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
1364
		_deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' );
1365
		return get_avatar_url( $id_or_email, array(
1366
			'size' => $size,
1367
			'default' => $default,
1368
			'force_default' => $force_display,
1369
		) );
1370
	}
1371
1372
	/**
1373
	 * jetpack_updates is saved in the following schema:
1374
	 *
1375
	 * array (
1376
	 *      'plugins'                       => (int) Number of plugin updates available.
1377
	 *      'themes'                        => (int) Number of theme updates available.
1378
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1379
	 *      'translations'                  => (int) Number of translation updates available.
1380
	 *      'total'                         => (int) Total of all available updates.
1381
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1382
	 * )
1383
	 * @return array
1384
	 */
1385
	public static function get_updates() {
1386
		$update_data = wp_get_update_data();
1387
1388
		// Stores the individual update counts as well as the total count.
1389
		if ( isset( $update_data['counts'] ) ) {
1390
			$updates = $update_data['counts'];
1391
		}
1392
1393
		// If we need to update WordPress core, let's find the latest version number.
1394 View Code Duplication
		if ( ! empty( $updates['wordpress'] ) ) {
1395
			$cur = get_preferred_from_update_core();
1396
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1397
				$updates['wp_update_version'] = $cur->current;
1398
			}
1399
		}
1400
		return isset( $updates ) ? $updates : array();
1401
	}
1402
1403
	public static function get_update_details() {
1404
		$update_details = array(
1405
			'update_core' => get_site_transient( 'update_core' ),
1406
			'update_plugins' => get_site_transient( 'update_plugins' ),
1407
			'update_themes' => get_site_transient( 'update_themes' ),
1408
		);
1409
		return $update_details;
1410
	}
1411
1412
	public static function refresh_update_data() {
1413
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1414
1415
	}
1416
1417
	public static function refresh_theme_data() {
1418
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1419
	}
1420
1421
	/**
1422
	 * Is Jetpack active?
1423
	 */
1424
	public static function is_active() {
1425
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1426
	}
1427
1428
	/**
1429
	 * Make an API call to WordPress.com for plan status
1430
	 *
1431
	 * @uses Jetpack_Options::get_option()
1432
	 * @uses Jetpack_Client::wpcom_json_api_request_as_blog()
1433
	 * @uses update_option()
1434
	 *
1435
	 * @access public
1436
	 * @static
1437
	 *
1438
	 * @return bool True if plan is updated, false if no update
1439
	 */
1440
	public static function refresh_active_plan_from_wpcom() {
1441
		// Make the API request
1442
		$request = sprintf( '/sites/%d', Jetpack_Options::get_option( 'id' ) );
1443
		$response = Jetpack_Client::wpcom_json_api_request_as_blog( $request, '1.1' );
1444
1445
		// Bail if there was an error or malformed response
1446
		if ( is_wp_error( $response ) || ! is_array( $response ) || ! isset( $response['body'] ) ) {
1447
			return false;
1448
		}
1449
1450
		// Decode the results
1451
		$results = json_decode( $response['body'], true );
1452
1453
		// Bail if there were no results or plan details returned
1454
		if ( ! is_array( $results ) || ! isset( $results['plan'] ) ) {
1455
			return false;
1456
		}
1457
1458
		// Store the option and return true if updated
1459
		return update_option( 'jetpack_active_plan', $results['plan'] );
1460
	}
1461
1462
	/**
1463
	 * Get the plan that this Jetpack site is currently using
1464
	 *
1465
	 * @uses get_option()
1466
	 *
1467
	 * @access public
1468
	 * @static
1469
	 *
1470
	 * @return array Active Jetpack plan details
1471
	 */
1472
	public static function get_active_plan() {
1473
		global $active_plan_cache;
1474
1475
		// this can be expensive to compute so we cache for the duration of a request
1476
		if ( is_array( $active_plan_cache ) && ! empty( $active_plan_cache ) ) {
1477
			return $active_plan_cache;
1478
		}
1479
1480
		$plan = get_option( 'jetpack_active_plan', array() );
1481
1482
		// Set the default options
1483
		$plan = wp_parse_args( $plan, array(
1484
			'product_slug' => 'jetpack_free',
1485
			'class'        => 'free',
1486
			'features'     => array(
1487
				'active' => array()
1488
			),
1489
		) );
1490
1491
		$supports = array();
1492
1493
		// Define what paid modules are supported by personal plans
1494
		$personal_plans = array(
1495
			'jetpack_personal',
1496
			'jetpack_personal_monthly',
1497
			'personal-bundle',
1498
			'personal-bundle-2y',
1499
		);
1500
1501
		if ( in_array( $plan['product_slug'], $personal_plans ) ) {
1502
			// special support value, not a module but a separate plugin
1503
			$supports[] = 'akismet';
1504
			$plan['class'] = 'personal';
1505
		}
1506
1507
		// Define what paid modules are supported by premium plans
1508
		$premium_plans = array(
1509
			'jetpack_premium',
1510
			'jetpack_premium_monthly',
1511
			'value_bundle',
1512
			'value_bundle-2y',
1513
		);
1514
1515 View Code Duplication
		if ( in_array( $plan['product_slug'], $premium_plans ) ) {
1516
			$supports[] = 'akismet';
1517
			$supports[] = 'simple-payments';
1518
			$supports[] = 'vaultpress';
1519
			$plan['class'] = 'premium';
1520
		}
1521
1522
		// Define what paid modules are supported by professional plans
1523
		$business_plans = array(
1524
			'jetpack_business',
1525
			'jetpack_business_monthly',
1526
			'business-bundle',
1527
			'business-bundle-2y',
1528
			'vip',
1529
		);
1530
1531 View Code Duplication
		if ( in_array( $plan['product_slug'], $business_plans ) ) {
1532
			$supports[] = 'akismet';
1533
			$supports[] = 'simple-payments';
1534
			$supports[] = 'vaultpress';
1535
			$plan['class'] = 'business';
1536
		}
1537
1538
		// get available features
1539
		foreach ( self::get_available_modules() as $module_slug ) {
1540
			$module = self::get_module( $module_slug );
1541
			if ( ! isset( $module ) || ! is_array( $module ) ) {
1542
				continue;
1543
			}
1544
			if ( in_array( 'free', $module['plan_classes'] ) || in_array( $plan['class'], $module['plan_classes'] ) ) {
1545
				$supports[] = $module_slug;
1546
			}
1547
		}
1548
1549
		$plan['supports'] = $supports;
1550
1551
		$active_plan_cache = $plan;
1552
1553
		return $plan;
1554
	}
1555
1556
	/**
1557
	 * Determine whether the active plan supports a particular feature
1558
	 *
1559
	 * @uses Jetpack::get_active_plan()
1560
	 *
1561
	 * @access public
1562
	 * @static
1563
	 *
1564
	 * @return bool True if plan supports feature, false if not
1565
	 */
1566
	public static function active_plan_supports( $feature ) {
1567
		$plan = Jetpack::get_active_plan();
1568
1569
		// Manually mapping WordPress.com features to Jetpack module slugs
1570
		foreach ( $plan['features']['active'] as $wpcom_feature ) {
1571
			switch ( $wpcom_feature ) {
1572
				case 'wordads-jetpack';
1573
1574
				// WordAds are supported for this site
1575
				if ( 'wordads' === $feature ) {
1576
					return true;
1577
				}
1578
				break;
1579
			}
1580
		}
1581
1582
		if (
1583
			in_array( $feature, $plan['supports'] )
1584
			|| in_array( $feature, $plan['features']['active'] )
1585
		) {
1586
			return true;
1587
		}
1588
1589
		return false;
1590
	}
1591
1592
	/**
1593
	 * Is Jetpack in development (offline) mode?
1594
	 */
1595
	public static function is_development_mode() {
1596
		$development_mode = false;
1597
1598
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1599
			$development_mode = JETPACK_DEV_DEBUG;
1600
		} elseif ( $site_url = site_url() ) {
1601
			$development_mode = false === strpos( $site_url, '.' );
1602
		}
1603
1604
		/**
1605
		 * Filters Jetpack's development mode.
1606
		 *
1607
		 * @see https://jetpack.com/support/development-mode/
1608
		 *
1609
		 * @since 2.2.1
1610
		 *
1611
		 * @param bool $development_mode Is Jetpack's development mode active.
1612
		 */
1613
		$development_mode = ( bool ) apply_filters( 'jetpack_development_mode', $development_mode );
1614
		return $development_mode;
1615
	}
1616
1617
	/**
1618
	 * Whether the site is currently onboarding or not.
1619
	 * A site is considered as being onboarded if it currently has an onboarding token.
1620
	 *
1621
	 * @since 5.8
1622
	 *
1623
	 * @access public
1624
	 * @static
1625
	 *
1626
	 * @return bool True if the site is currently onboarding, false otherwise
1627
	 */
1628
	public static function is_onboarding() {
1629
		return Jetpack_Options::get_option( 'onboarding' ) !== false;
1630
	}
1631
1632
	/**
1633
	* Get Jetpack development mode notice text and notice class.
1634
	*
1635
	* Mirrors the checks made in Jetpack::is_development_mode
1636
	*
1637
	*/
1638
	public static function show_development_mode_notice() {
1639
		if ( Jetpack::is_development_mode() ) {
1640
			if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1641
				$notice = sprintf(
1642
					/* translators: %s is a URL */
1643
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1644
					'https://jetpack.com/support/development-mode/'
1645
				);
1646
			} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1647
				$notice = sprintf(
1648
					/* translators: %s is a URL */
1649
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1650
					'https://jetpack.com/support/development-mode/'
1651
				);
1652
			} else {
1653
				$notice = sprintf(
1654
					/* translators: %s is a URL */
1655
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1656
					'https://jetpack.com/support/development-mode/'
1657
				);
1658
			}
1659
1660
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1661
		}
1662
1663
		// Throw up a notice if using a development version and as for feedback.
1664
		if ( Jetpack::is_development_version() ) {
1665
			/* translators: %s is a URL */
1666
			$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/' );
1667
1668
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1669
		}
1670
		// Throw up a notice if using staging mode
1671
		if ( Jetpack::is_staging_site() ) {
1672
			/* translators: %s is a URL */
1673
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1674
1675
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1676
		}
1677
	}
1678
1679
	/**
1680
	 * Whether Jetpack's version maps to a public release, or a development version.
1681
	 */
1682
	public static function is_development_version() {
1683
		/**
1684
		 * Allows filtering whether this is a development version of Jetpack.
1685
		 *
1686
		 * This filter is especially useful for tests.
1687
		 *
1688
		 * @since 4.3.0
1689
		 *
1690
		 * @param bool $development_version Is this a develoment version of Jetpack?
1691
		 */
1692
		return (bool) apply_filters(
1693
			'jetpack_development_version',
1694
			! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) )
1695
		);
1696
	}
1697
1698
	/**
1699
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1700
	 */
1701
	public static function is_user_connected( $user_id = false ) {
1702
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1703
		if ( ! $user_id ) {
1704
			return false;
1705
		}
1706
1707
		return (bool) Jetpack_Data::get_access_token( $user_id );
1708
	}
1709
1710
	/**
1711
	 * Get the wpcom user data of the current|specified connected user.
1712
	 */
1713
	public static function get_connected_user_data( $user_id = null ) {
1714
		if ( ! $user_id ) {
1715
			$user_id = get_current_user_id();
1716
		}
1717
1718
		$transient_key = "jetpack_connected_user_data_$user_id";
1719
1720
		if ( $cached_user_data = get_transient( $transient_key ) ) {
1721
			return $cached_user_data;
1722
		}
1723
1724
		Jetpack::load_xml_rpc_client();
1725
		$xml = new Jetpack_IXR_Client( array(
1726
			'user_id' => $user_id,
1727
		) );
1728
		$xml->query( 'wpcom.getUser' );
1729
		if ( ! $xml->isError() ) {
1730
			$user_data = $xml->getResponse();
1731
			set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS );
1732
			return $user_data;
1733
		}
1734
1735
		return false;
1736
	}
1737
1738
	/**
1739
	 * Get the wpcom email of the current|specified connected user.
1740
	 */
1741 View Code Duplication
	public static function get_connected_user_email( $user_id = null ) {
1742
		if ( ! $user_id ) {
1743
			$user_id = get_current_user_id();
1744
		}
1745
		Jetpack::load_xml_rpc_client();
1746
		$xml = new Jetpack_IXR_Client( array(
1747
			'user_id' => $user_id,
1748
		) );
1749
		$xml->query( 'wpcom.getUserEmail' );
1750
		if ( ! $xml->isError() ) {
1751
			return $xml->getResponse();
1752
		}
1753
		return false;
1754
	}
1755
1756
	/**
1757
	 * Get the wpcom email of the master user.
1758
	 */
1759
	public static function get_master_user_email() {
1760
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1761
		if ( $master_user_id ) {
1762
			return self::get_connected_user_email( $master_user_id );
1763
		}
1764
		return '';
1765
	}
1766
1767
	function current_user_is_connection_owner() {
1768
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1769
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1770
	}
1771
1772
	/**
1773
	 * Gets current user IP address.
1774
	 *
1775
	 * @param  bool $check_all_headers Check all headers? Default is `false`.
1776
	 *
1777
	 * @return string                  Current user IP address.
1778
	 */
1779
	public static function current_user_ip( $check_all_headers = false ) {
1780
		if ( $check_all_headers ) {
1781
			foreach ( array(
1782
				'HTTP_CF_CONNECTING_IP',
1783
				'HTTP_CLIENT_IP',
1784
				'HTTP_X_FORWARDED_FOR',
1785
				'HTTP_X_FORWARDED',
1786
				'HTTP_X_CLUSTER_CLIENT_IP',
1787
				'HTTP_FORWARDED_FOR',
1788
				'HTTP_FORWARDED',
1789
				'HTTP_VIA',
1790
			) as $key ) {
1791
				if ( ! empty( $_SERVER[ $key ] ) ) {
1792
					return $_SERVER[ $key ];
1793
				}
1794
			}
1795
		}
1796
1797
		return ! empty( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : '';
1798
	}
1799
1800
	/**
1801
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1802
	 */
1803
	function extra_oembed_providers() {
1804
		// Cloudup: https://dev.cloudup.com/#oembed
1805
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1806
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1807
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1808
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1809
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1810
		wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true );
1811
	}
1812
1813
	/**
1814
	 * Synchronize connected user role changes
1815
	 */
1816
	function user_role_change( $user_id ) {
1817
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' );
1818
		Jetpack_Sync_Users::user_role_change( $user_id );
1819
	}
1820
1821
	/**
1822
	 * Loads the currently active modules.
1823
	 */
1824
	public static function load_modules() {
1825
		if (
1826
			! self::is_active()
1827
			&& ! self::is_development_mode()
1828
			&& ! self::is_onboarding()
1829
			&& (
1830
				! is_multisite()
1831
				|| ! get_site_option( 'jetpack_protect_active' )
1832
			)
1833
		) {
1834
			return;
1835
		}
1836
1837
		$version = Jetpack_Options::get_option( 'version' );
1838 View Code Duplication
		if ( ! $version ) {
1839
			$version = $old_version = JETPACK__VERSION . ':' . time();
1840
			/** This action is documented in class.jetpack.php */
1841
			do_action( 'updating_jetpack_version', $version, false );
1842
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1843
		}
1844
		list( $version ) = explode( ':', $version );
1845
1846
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1847
1848
		$modules_data = array();
1849
1850
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1851
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1852
			$updated_modules = array();
1853
			foreach ( $modules as $module ) {
1854
				$modules_data[ $module ] = Jetpack::get_module( $module );
1855
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1856
					continue;
1857
				}
1858
1859
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1860
					continue;
1861
				}
1862
1863
				$updated_modules[] = $module;
1864
			}
1865
1866
			$modules = array_diff( $modules, $updated_modules );
1867
		}
1868
1869
		$is_development_mode = Jetpack::is_development_mode();
1870
1871
		foreach ( $modules as $index => $module ) {
1872
			// If we're in dev mode, disable modules requiring a connection
1873
			if ( $is_development_mode ) {
1874
				// Prime the pump if we need to
1875
				if ( empty( $modules_data[ $module ] ) ) {
1876
					$modules_data[ $module ] = Jetpack::get_module( $module );
1877
				}
1878
				// If the module requires a connection, but we're in local mode, don't include it.
1879
				if ( $modules_data[ $module ]['requires_connection'] ) {
1880
					continue;
1881
				}
1882
			}
1883
1884
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1885
				continue;
1886
			}
1887
1888
			if ( ! include_once( Jetpack::get_module_path( $module ) ) ) {
1889
				unset( $modules[ $index ] );
1890
				self::update_active_modules( array_values( $modules ) );
1891
				continue;
1892
			}
1893
1894
			/**
1895
			 * Fires when a specific module is loaded.
1896
			 * The dynamic part of the hook, $module, is the module slug.
1897
			 *
1898
			 * @since 1.1.0
1899
			 */
1900
			do_action( 'jetpack_module_loaded_' . $module );
1901
		}
1902
1903
		/**
1904
		 * Fires when all the modules are loaded.
1905
		 *
1906
		 * @since 1.1.0
1907
		 */
1908
		do_action( 'jetpack_modules_loaded' );
1909
1910
		// 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.
1911
		require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1912
	}
1913
1914
	/**
1915
	 * Check if Jetpack's REST API compat file should be included
1916
	 * @action plugins_loaded
1917
	 * @return null
1918
	 */
1919
	public function check_rest_api_compat() {
1920
		/**
1921
		 * Filters the list of REST API compat files to be included.
1922
		 *
1923
		 * @since 2.2.5
1924
		 *
1925
		 * @param array $args Array of REST API compat files to include.
1926
		 */
1927
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1928
1929
		if ( function_exists( 'bbpress' ) )
1930
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1931
1932
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1933
			require_once $_jetpack_rest_api_compat_include;
1934
	}
1935
1936
	/**
1937
	 * Gets all plugins currently active in values, regardless of whether they're
1938
	 * traditionally activated or network activated.
1939
	 *
1940
	 * @todo Store the result in core's object cache maybe?
1941
	 */
1942
	public static function get_active_plugins() {
1943
		$active_plugins = (array) get_option( 'active_plugins', array() );
1944
1945
		if ( is_multisite() ) {
1946
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1947
			// whereas active_plugins stores them in the values.
1948
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1949
			if ( $network_plugins ) {
1950
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1951
			}
1952
		}
1953
1954
		sort( $active_plugins );
1955
1956
		return array_unique( $active_plugins );
1957
	}
1958
1959
	/**
1960
	 * Gets and parses additional plugin data to send with the heartbeat data
1961
	 *
1962
	 * @since 3.8.1
1963
	 *
1964
	 * @return array Array of plugin data
1965
	 */
1966
	public static function get_parsed_plugin_data() {
1967
		if ( ! function_exists( 'get_plugins' ) ) {
1968
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1969
		}
1970
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1971
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1972
		$active_plugins = Jetpack::get_active_plugins();
1973
1974
		$plugins = array();
1975
		foreach ( $all_plugins as $path => $plugin_data ) {
1976
			$plugins[ $path ] = array(
1977
					'is_active' => in_array( $path, $active_plugins ),
1978
					'file'      => $path,
1979
					'name'      => $plugin_data['Name'],
1980
					'version'   => $plugin_data['Version'],
1981
					'author'    => $plugin_data['Author'],
1982
			);
1983
		}
1984
1985
		return $plugins;
1986
	}
1987
1988
	/**
1989
	 * Gets and parses theme data to send with the heartbeat data
1990
	 *
1991
	 * @since 3.8.1
1992
	 *
1993
	 * @return array Array of theme data
1994
	 */
1995
	public static function get_parsed_theme_data() {
1996
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1997
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1998
1999
		$themes = array();
2000
		foreach ( $all_themes as $slug => $theme_data ) {
2001
			$theme_headers = array();
2002
			foreach ( $header_keys as $header_key ) {
2003
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
2004
			}
2005
2006
			$themes[ $slug ] = array(
2007
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
2008
					'slug' => $slug,
2009
					'theme_root' => $theme_data->get_theme_root_uri(),
2010
					'parent' => $theme_data->parent(),
2011
					'headers' => $theme_headers
2012
			);
2013
		}
2014
2015
		return $themes;
2016
	}
2017
2018
	/**
2019
	 * Checks whether a specific plugin is active.
2020
	 *
2021
	 * We don't want to store these in a static variable, in case
2022
	 * there are switch_to_blog() calls involved.
2023
	 */
2024
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
2025
		return in_array( $plugin, self::get_active_plugins() );
2026
	}
2027
2028
	/**
2029
	 * Check if Jetpack's Open Graph tags should be used.
2030
	 * If certain plugins are active, Jetpack's og tags are suppressed.
2031
	 *
2032
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
2033
	 * @action plugins_loaded
2034
	 * @return null
2035
	 */
2036
	public function check_open_graph() {
2037
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
2038
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
2039
		}
2040
2041
		$active_plugins = self::get_active_plugins();
2042
2043
		if ( ! empty( $active_plugins ) ) {
2044
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
2045
				if ( in_array( $plugin, $active_plugins ) ) {
2046
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
2047
					break;
2048
				}
2049
			}
2050
		}
2051
2052
		/**
2053
		 * Allow the addition of Open Graph Meta Tags to all pages.
2054
		 *
2055
		 * @since 2.0.3
2056
		 *
2057
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
2058
		 */
2059
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
2060
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
2061
		}
2062
	}
2063
2064
	/**
2065
	 * Check if Jetpack's Twitter tags should be used.
2066
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
2067
	 *
2068
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
2069
	 * @action plugins_loaded
2070
	 * @return null
2071
	 */
2072
	public function check_twitter_tags() {
2073
2074
		$active_plugins = self::get_active_plugins();
2075
2076
		if ( ! empty( $active_plugins ) ) {
2077
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
2078
				if ( in_array( $plugin, $active_plugins ) ) {
2079
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
2080
					break;
2081
				}
2082
			}
2083
		}
2084
2085
		/**
2086
		 * Allow Twitter Card Meta tags to be disabled.
2087
		 *
2088
		 * @since 2.6.0
2089
		 *
2090
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
2091
		 */
2092
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
2093
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
2094
		}
2095
	}
2096
2097
	/**
2098
	 * Allows plugins to submit security reports.
2099
 	 *
2100
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
2101
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
2102
	 * @param array   $args         See definitions above
2103
	 */
2104
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
2105
		_deprecated_function( __FUNCTION__, 'jetpack-4.2', null );
2106
	}
2107
2108
/* Jetpack Options API */
2109
2110
	public static function get_option_names( $type = 'compact' ) {
2111
		return Jetpack_Options::get_option_names( $type );
2112
	}
2113
2114
	/**
2115
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
2116
 	 *
2117
	 * @param string $name    Option name
2118
	 * @param mixed  $default (optional)
2119
	 */
2120
	public static function get_option( $name, $default = false ) {
2121
		return Jetpack_Options::get_option( $name, $default );
2122
	}
2123
2124
	/**
2125
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
2126
 	 *
2127
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
2128
	 * @param string $name  Option name
2129
	 * @param mixed  $value Option value
2130
	 */
2131
	public static function update_option( $name, $value ) {
2132
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
2133
		return Jetpack_Options::update_option( $name, $value );
2134
	}
2135
2136
	/**
2137
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
2138
 	 *
2139
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
2140
	 * @param array $array array( option name => option value, ... )
2141
	 */
2142
	public static function update_options( $array ) {
2143
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
2144
		return Jetpack_Options::update_options( $array );
2145
	}
2146
2147
	/**
2148
	 * Deletes the given option.  May be passed multiple option names as an array.
2149
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
2150
	 *
2151
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
2152
	 * @param string|array $names
2153
	 */
2154
	public static function delete_option( $names ) {
2155
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
2156
		return Jetpack_Options::delete_option( $names );
2157
	}
2158
2159
	/**
2160
	 * Enters a user token into the user_tokens option
2161
	 *
2162
	 * @param int $user_id
2163
	 * @param string $token
2164
	 * return bool
2165
	 */
2166
	public static function update_user_token( $user_id, $token, $is_master_user ) {
2167
		// not designed for concurrent updates
2168
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
2169
		if ( ! is_array( $user_tokens ) )
2170
			$user_tokens = array();
2171
		$user_tokens[$user_id] = $token;
2172
		if ( $is_master_user ) {
2173
			$master_user = $user_id;
2174
			$options     = compact( 'user_tokens', 'master_user' );
2175
		} else {
2176
			$options = compact( 'user_tokens' );
2177
		}
2178
		return Jetpack_Options::update_options( $options );
2179
	}
2180
2181
	/**
2182
	 * Returns an array of all PHP files in the specified absolute path.
2183
	 * Equivalent to glob( "$absolute_path/*.php" ).
2184
	 *
2185
	 * @param string $absolute_path The absolute path of the directory to search.
2186
	 * @return array Array of absolute paths to the PHP files.
2187
	 */
2188
	public static function glob_php( $absolute_path ) {
2189
		if ( function_exists( 'glob' ) ) {
2190
			return glob( "$absolute_path/*.php" );
2191
		}
2192
2193
		$absolute_path = untrailingslashit( $absolute_path );
2194
		$files = array();
2195
		if ( ! $dir = @opendir( $absolute_path ) ) {
2196
			return $files;
2197
		}
2198
2199
		while ( false !== $file = readdir( $dir ) ) {
2200
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
2201
				continue;
2202
			}
2203
2204
			$file = "$absolute_path/$file";
2205
2206
			if ( ! is_file( $file ) ) {
2207
				continue;
2208
			}
2209
2210
			$files[] = $file;
2211
		}
2212
2213
		closedir( $dir );
2214
2215
		return $files;
2216
	}
2217
2218
	public static function activate_new_modules( $redirect = false ) {
2219
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
2220
			return;
2221
		}
2222
2223
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
2224 View Code Duplication
		if ( ! $jetpack_old_version ) {
2225
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
2226
			/** This action is documented in class.jetpack.php */
2227
			do_action( 'updating_jetpack_version', $version, false );
2228
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2229
		}
2230
2231
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
2232
2233
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
2234
			return;
2235
		}
2236
2237
		$active_modules     = Jetpack::get_active_modules();
2238
		$reactivate_modules = array();
2239
		foreach ( $active_modules as $active_module ) {
2240
			$module = Jetpack::get_module( $active_module );
2241
			if ( ! isset( $module['changed'] ) ) {
2242
				continue;
2243
			}
2244
2245
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
2246
				continue;
2247
			}
2248
2249
			$reactivate_modules[] = $active_module;
2250
			Jetpack::deactivate_module( $active_module );
2251
		}
2252
2253
		$new_version = JETPACK__VERSION . ':' . time();
2254
		/** This action is documented in class.jetpack.php */
2255
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
2256
		Jetpack_Options::update_options(
2257
			array(
2258
				'version'     => $new_version,
2259
				'old_version' => $jetpack_old_version,
2260
			)
2261
		);
2262
2263
		Jetpack::state( 'message', 'modules_activated' );
2264
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
2265
2266
		if ( $redirect ) {
2267
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
2268
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
2269
				$page = $_GET['page'];
2270
			}
2271
2272
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
2273
			exit;
2274
		}
2275
	}
2276
2277
	/**
2278
	 * List available Jetpack modules. Simply lists .php files in /modules/.
2279
	 * Make sure to tuck away module "library" files in a sub-directory.
2280
	 */
2281
	public static function get_available_modules( $min_version = false, $max_version = false ) {
2282
		static $modules = null;
2283
2284
		if ( ! isset( $modules ) ) {
2285
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
2286
			// Use the cache if we're on the front-end and it's available...
2287
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
2288
				$modules = $available_modules_option[ JETPACK__VERSION ];
2289
			} else {
2290
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
2291
2292
				$modules = array();
2293
2294
				foreach ( $files as $file ) {
2295
					if ( ! $headers = Jetpack::get_module( $file ) ) {
2296
						continue;
2297
					}
2298
2299
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
2300
				}
2301
2302
				Jetpack_Options::update_option( 'available_modules', array(
2303
					JETPACK__VERSION => $modules,
2304
				) );
2305
			}
2306
		}
2307
2308
		/**
2309
		 * Filters the array of modules available to be activated.
2310
		 *
2311
		 * @since 2.4.0
2312
		 *
2313
		 * @param array $modules Array of available modules.
2314
		 * @param string $min_version Minimum version number required to use modules.
2315
		 * @param string $max_version Maximum version number required to use modules.
2316
		 */
2317
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
2318
2319
		if ( ! $min_version && ! $max_version ) {
2320
			return array_keys( $mods );
2321
		}
2322
2323
		$r = array();
2324
		foreach ( $mods as $slug => $introduced ) {
2325
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
2326
				continue;
2327
			}
2328
2329
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
2330
				continue;
2331
			}
2332
2333
			$r[] = $slug;
2334
		}
2335
2336
		return $r;
2337
	}
2338
2339
	/**
2340
	 * Default modules loaded on activation.
2341
	 */
2342
	public static function get_default_modules( $min_version = false, $max_version = false ) {
2343
		$return = array();
2344
2345
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
2346
			$module_data = Jetpack::get_module( $module );
2347
2348
			switch ( strtolower( $module_data['auto_activate'] ) ) {
2349
				case 'yes' :
2350
					$return[] = $module;
2351
					break;
2352
				case 'public' :
2353
					if ( Jetpack_Options::get_option( 'public' ) ) {
2354
						$return[] = $module;
2355
					}
2356
					break;
2357
				case 'no' :
2358
				default :
2359
					break;
2360
			}
2361
		}
2362
		/**
2363
		 * Filters the array of default modules.
2364
		 *
2365
		 * @since 2.5.0
2366
		 *
2367
		 * @param array $return Array of default modules.
2368
		 * @param string $min_version Minimum version number required to use modules.
2369
		 * @param string $max_version Maximum version number required to use modules.
2370
		 */
2371
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
2372
	}
2373
2374
	/**
2375
	 * Checks activated modules during auto-activation to determine
2376
	 * if any of those modules are being deprecated.  If so, close
2377
	 * them out, and add any replacement modules.
2378
	 *
2379
	 * Runs at priority 99 by default.
2380
	 *
2381
	 * This is run late, so that it can still activate a module if
2382
	 * the new module is a replacement for another that the user
2383
	 * currently has active, even if something at the normal priority
2384
	 * would kibosh everything.
2385
	 *
2386
	 * @since 2.6
2387
	 * @uses jetpack_get_default_modules filter
2388
	 * @param array $modules
2389
	 * @return array
2390
	 */
2391
	function handle_deprecated_modules( $modules ) {
2392
		$deprecated_modules = array(
2393
			'debug'            => null,  // Closed out and moved to ./class.jetpack-debugger.php
2394
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2395
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
2396
		);
2397
2398
		// Don't activate SSO if they never completed activating WPCC.
2399
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
2400
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
2401
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
2402
				$deprecated_modules['wpcc'] = null;
2403
			}
2404
		}
2405
2406
		foreach ( $deprecated_modules as $module => $replacement ) {
2407
			if ( Jetpack::is_module_active( $module ) ) {
2408
				self::deactivate_module( $module );
2409
				if ( $replacement ) {
2410
					$modules[] = $replacement;
2411
				}
2412
			}
2413
		}
2414
2415
		return array_unique( $modules );
2416
	}
2417
2418
	/**
2419
	 * Checks activated plugins during auto-activation to determine
2420
	 * if any of those plugins are in the list with a corresponding module
2421
	 * that is not compatible with the plugin. The module will not be allowed
2422
	 * to auto-activate.
2423
	 *
2424
	 * @since 2.6
2425
	 * @uses jetpack_get_default_modules filter
2426
	 * @param array $modules
2427
	 * @return array
2428
	 */
2429
	function filter_default_modules( $modules ) {
2430
2431
		$active_plugins = self::get_active_plugins();
2432
2433
		if ( ! empty( $active_plugins ) ) {
2434
2435
			// For each module we'd like to auto-activate...
2436
			foreach ( $modules as $key => $module ) {
2437
				// If there are potential conflicts for it...
2438
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
2439
					// For each potential conflict...
2440
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
2441
						// If that conflicting plugin is active...
2442
						if ( in_array( $plugin, $active_plugins ) ) {
2443
							// Remove that item from being auto-activated.
2444
							unset( $modules[ $key ] );
2445
						}
2446
					}
2447
				}
2448
			}
2449
		}
2450
2451
		return $modules;
2452
	}
2453
2454
	/**
2455
	 * Extract a module's slug from its full path.
2456
	 */
2457
	public static function get_module_slug( $file ) {
2458
		return str_replace( '.php', '', basename( $file ) );
2459
	}
2460
2461
	/**
2462
	 * Generate a module's path from its slug.
2463
	 */
2464
	public static function get_module_path( $slug ) {
2465
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
2466
	}
2467
2468
	/**
2469
	 * Load module data from module file. Headers differ from WordPress
2470
	 * plugin headers to avoid them being identified as standalone
2471
	 * plugins on the WordPress plugins page.
2472
	 */
2473
	public static function get_module( $module ) {
2474
		$headers = array(
2475
			'name'                      => 'Module Name',
2476
			'description'               => 'Module Description',
2477
			'jumpstart_desc'            => 'Jumpstart Description',
2478
			'sort'                      => 'Sort Order',
2479
			'recommendation_order'      => 'Recommendation Order',
2480
			'introduced'                => 'First Introduced',
2481
			'changed'                   => 'Major Changes In',
2482
			'deactivate'                => 'Deactivate',
2483
			'free'                      => 'Free',
2484
			'requires_connection'       => 'Requires Connection',
2485
			'auto_activate'             => 'Auto Activate',
2486
			'module_tags'               => 'Module Tags',
2487
			'feature'                   => 'Feature',
2488
			'additional_search_queries' => 'Additional Search Queries',
2489
			'plan_classes'              => 'Plans',
2490
		);
2491
2492
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
2493
2494
		$mod = Jetpack::get_file_data( $file, $headers );
2495
		if ( empty( $mod['name'] ) ) {
2496
			return false;
2497
		}
2498
2499
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
2500
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
2501
		$mod['deactivate']              = empty( $mod['deactivate'] );
2502
		$mod['free']                    = empty( $mod['free'] );
2503
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
2504
2505
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
2506
			$mod['auto_activate'] = 'No';
2507
		} else {
2508
			$mod['auto_activate'] = (string) $mod['auto_activate'];
2509
		}
2510
2511
		if ( $mod['module_tags'] ) {
2512
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
2513
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
2514
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
2515
		} else {
2516
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2517
		}
2518
2519 View Code Duplication
		if ( $mod['plan_classes'] ) {
2520
			$mod['plan_classes'] = explode( ',', $mod['plan_classes'] );
2521
			$mod['plan_classes'] = array_map( 'strtolower', array_map( 'trim', $mod['plan_classes'] ) );
2522
		} else {
2523
			$mod['plan_classes'] = array( 'free' );
2524
		}
2525
2526 View Code Duplication
		if ( $mod['feature'] ) {
2527
			$mod['feature'] = explode( ',', $mod['feature'] );
2528
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2529
		} else {
2530
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2531
		}
2532
2533
		/**
2534
		 * Filters the feature array on a module.
2535
		 *
2536
		 * This filter allows you to control where each module is filtered: Recommended,
2537
		 * Jumpstart, and the default "Other" listing.
2538
		 *
2539
		 * @since 3.5.0
2540
		 *
2541
		 * @param array   $mod['feature'] The areas to feature this module:
2542
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2543
		 *     'Recommended' shows on the main Jetpack admin screen.
2544
		 *     'Other' should be the default if no other value is in the array.
2545
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2546
		 * @param array   $mod All the currently assembled module data.
2547
		 */
2548
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2549
2550
		/**
2551
		 * Filter the returned data about a module.
2552
		 *
2553
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2554
		 * so please be careful.
2555
		 *
2556
		 * @since 3.6.0
2557
		 *
2558
		 * @param array   $mod    The details of the requested module.
2559
		 * @param string  $module The slug of the module, e.g. sharedaddy
2560
		 * @param string  $file   The path to the module source file.
2561
		 */
2562
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2563
	}
2564
2565
	/**
2566
	 * Like core's get_file_data implementation, but caches the result.
2567
	 */
2568
	public static function get_file_data( $file, $headers ) {
2569
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2570
		$file_name = basename( $file );
2571
2572
		$cache_key = 'jetpack_file_data_' . JETPACK__VERSION;
2573
2574
		$file_data_option = get_transient( $cache_key );
2575
2576
		if ( false === $file_data_option ) {
2577
			$file_data_option = array();
2578
		}
2579
2580
		$key           = md5( $file_name . serialize( $headers ) );
2581
		$refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2582
2583
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2584
		if ( ! $refresh_cache && isset( $file_data_option[ $key ] ) ) {
2585
			return $file_data_option[ $key ];
2586
		}
2587
2588
		$data = get_file_data( $file, $headers );
2589
2590
		$file_data_option[ $key ] = $data;
2591
2592
		set_transient( $cache_key, $file_data_option, 29 * DAY_IN_SECONDS );
2593
2594
		return $data;
2595
	}
2596
2597
2598
	/**
2599
	 * Return translated module tag.
2600
	 *
2601
	 * @param string $tag Tag as it appears in each module heading.
2602
	 *
2603
	 * @return mixed
2604
	 */
2605
	public static function translate_module_tag( $tag ) {
2606
		return jetpack_get_module_i18n_tag( $tag );
2607
	}
2608
2609
	/**
2610
	 * Get i18n strings as a JSON-encoded string
2611
	 *
2612
	 * @return string The locale as JSON
2613
	 */
2614
	public static function get_i18n_data_json() {
2615
		$i18n_json = JETPACK__PLUGIN_DIR . 'languages/json/jetpack-' . get_user_locale() . '.json';
2616
2617
		if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) {
2618
			$locale_data = @file_get_contents( $i18n_json );
2619
			if ( $locale_data ) {
2620
				return $locale_data;
2621
			}
2622
		}
2623
2624
		// Return valid empty Jed locale
2625
		return json_encode( array(
2626
			'' => array(
2627
				'domain' => 'jetpack',
2628
				'lang'   => is_admin() ? get_user_locale() : get_locale(),
2629
			),
2630
		) );
2631
	}
2632
2633
	/**
2634
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2635
	 *
2636
	 * @since 3.9.2
2637
	 *
2638
	 * @param array $modules
2639
	 *
2640
	 * @return string|void
2641
	 */
2642
	public static function get_translated_modules( $modules ) {
2643
		foreach ( $modules as $index => $module ) {
2644
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2645
			if ( isset( $module['name'] ) ) {
2646
				$modules[ $index ]['name'] = $i18n_module['name'];
2647
			}
2648
			if ( isset( $module['description'] ) ) {
2649
				$modules[ $index ]['description'] = $i18n_module['description'];
2650
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2651
			}
2652
		}
2653
		return $modules;
2654
	}
2655
2656
	/**
2657
	 * Get a list of activated modules as an array of module slugs.
2658
	 */
2659
	public static function get_active_modules() {
2660
		$active = Jetpack_Options::get_option( 'active_modules' );
2661
2662
		if ( ! is_array( $active ) ) {
2663
			$active = array();
2664
		}
2665
2666
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2667
			$active[] = 'vaultpress';
2668
		} else {
2669
			$active = array_diff( $active, array( 'vaultpress' ) );
2670
		}
2671
2672
		//If protect is active on the main site of a multisite, it should be active on all sites.
2673
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2674
			$active[] = 'protect';
2675
		}
2676
2677
		/**
2678
		 * Allow filtering of the active modules.
2679
		 *
2680
		 * Gives theme and plugin developers the power to alter the modules that
2681
		 * are activated on the fly.
2682
		 *
2683
		 * @since 5.8.0
2684
		 *
2685
		 * @param array $active Array of active module slugs.
2686
		 */
2687
		$active = apply_filters( 'jetpack_active_modules', $active );
2688
2689
		return array_unique( $active );
2690
	}
2691
2692
	/**
2693
	 * Check whether or not a Jetpack module is active.
2694
	 *
2695
	 * @param string $module The slug of a Jetpack module.
2696
	 * @return bool
2697
	 *
2698
	 * @static
2699
	 */
2700
	public static function is_module_active( $module ) {
2701
		return in_array( $module, self::get_active_modules() );
2702
	}
2703
2704
	public static function is_module( $module ) {
2705
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2706
	}
2707
2708
	/**
2709
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2710
	 *
2711
	 * @param bool $catch True to start catching, False to stop.
2712
	 *
2713
	 * @static
2714
	 */
2715
	public static function catch_errors( $catch ) {
2716
		static $display_errors, $error_reporting;
2717
2718
		if ( $catch ) {
2719
			$display_errors  = @ini_set( 'display_errors', 1 );
2720
			$error_reporting = @error_reporting( E_ALL );
2721
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2722
		} else {
2723
			@ini_set( 'display_errors', $display_errors );
2724
			@error_reporting( $error_reporting );
2725
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2726
		}
2727
	}
2728
2729
	/**
2730
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2731
	 */
2732
	public static function catch_errors_on_shutdown() {
2733
		Jetpack::state( 'php_errors', self::alias_directories( ob_get_clean() ) );
2734
	}
2735
2736
	/**
2737
	 * Rewrite any string to make paths easier to read.
2738
	 *
2739
	 * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR
2740
	 * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR.
2741
	 *
2742
	 * @param $string
2743
	 * @return mixed
2744
	 */
2745
	public static function alias_directories( $string ) {
2746
		// ABSPATH has a trailing slash.
2747
		$string = str_replace( ABSPATH, 'ABSPATH/', $string );
2748
		// WP_CONTENT_DIR does not have a trailing slash.
2749
		$string = str_replace( WP_CONTENT_DIR, 'WP_CONTENT_DIR', $string );
2750
2751
		return $string;
2752
	}
2753
2754
	public static function activate_default_modules(
2755
		$min_version = false,
2756
		$max_version = false,
2757
		$other_modules = array(),
2758
		$redirect = true,
2759
		$send_state_messages = true
2760
	) {
2761
		$jetpack = Jetpack::init();
2762
2763
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2764
		$modules = array_merge( $other_modules, $modules );
2765
2766
		// Look for standalone plugins and disable if active.
2767
2768
		$to_deactivate = array();
2769
		foreach ( $modules as $module ) {
2770
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2771
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2772
			}
2773
		}
2774
2775
		$deactivated = array();
2776
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2777
			list( $probable_file, $probable_title ) = $deactivate_me;
2778
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2779
				$deactivated[] = $module;
2780
			}
2781
		}
2782
2783
		if ( $deactivated && $redirect ) {
2784
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2785
2786
			$url = add_query_arg(
2787
				array(
2788
					'action'   => 'activate_default_modules',
2789
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2790
				),
2791
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2792
			);
2793
			wp_safe_redirect( $url );
2794
			exit;
2795
		}
2796
2797
		/**
2798
		 * Fires before default modules are activated.
2799
		 *
2800
		 * @since 1.9.0
2801
		 *
2802
		 * @param string $min_version Minimum version number required to use modules.
2803
		 * @param string $max_version Maximum version number required to use modules.
2804
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2805
		 */
2806
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2807
2808
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2809
		if ( $send_state_messages ) {
2810
			Jetpack::restate();
2811
			Jetpack::catch_errors( true );
2812
		}
2813
2814
		$active = Jetpack::get_active_modules();
2815
2816
		foreach ( $modules as $module ) {
2817
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2818
				$active[] = $module;
2819
				self::update_active_modules( $active );
2820
				continue;
2821
			}
2822
2823
			if ( $send_state_messages && in_array( $module, $active ) ) {
2824
				$module_info = Jetpack::get_module( $module );
2825 View Code Duplication
				if ( ! $module_info['deactivate'] ) {
2826
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2827
					if ( $active_state = Jetpack::state( $state ) ) {
2828
						$active_state = explode( ',', $active_state );
2829
					} else {
2830
						$active_state = array();
2831
					}
2832
					$active_state[] = $module;
2833
					Jetpack::state( $state, implode( ',', $active_state ) );
2834
				}
2835
				continue;
2836
			}
2837
2838
			$file = Jetpack::get_module_path( $module );
2839
			if ( ! file_exists( $file ) ) {
2840
				continue;
2841
			}
2842
2843
			// we'll override this later if the plugin can be included without fatal error
2844
			if ( $redirect ) {
2845
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2846
			}
2847
2848
			if ( $send_state_messages ) {
2849
				Jetpack::state( 'error', 'module_activation_failed' );
2850
				Jetpack::state( 'module', $module );
2851
			}
2852
2853
			ob_start();
2854
			require_once $file;
2855
2856
			$active[] = $module;
2857
2858 View Code Duplication
			if ( $send_state_messages ) {
2859
2860
				$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2861
				if ( $active_state = Jetpack::state( $state ) ) {
2862
					$active_state = explode( ',', $active_state );
2863
				} else {
2864
					$active_state = array();
2865
				}
2866
				$active_state[] = $module;
2867
				Jetpack::state( $state, implode( ',', $active_state ) );
2868
			}
2869
2870
			Jetpack::update_active_modules( $active );
2871
2872
			ob_end_clean();
2873
		}
2874
2875
		if ( $send_state_messages ) {
2876
			Jetpack::state( 'error', false );
2877
			Jetpack::state( 'module', false );
2878
		}
2879
2880
		Jetpack::catch_errors( false );
2881
		/**
2882
		 * Fires when default modules are activated.
2883
		 *
2884
		 * @since 1.9.0
2885
		 *
2886
		 * @param string $min_version Minimum version number required to use modules.
2887
		 * @param string $max_version Maximum version number required to use modules.
2888
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2889
		 */
2890
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2891
	}
2892
2893
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2894
		/**
2895
		 * Fires before a module is activated.
2896
		 *
2897
		 * @since 2.6.0
2898
		 *
2899
		 * @param string $module Module slug.
2900
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2901
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2902
		 */
2903
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2904
2905
		$jetpack = Jetpack::init();
2906
2907
		if ( ! strlen( $module ) )
2908
			return false;
2909
2910
		if ( ! Jetpack::is_module( $module ) )
2911
			return false;
2912
2913
		// If it's already active, then don't do it again
2914
		$active = Jetpack::get_active_modules();
2915
		foreach ( $active as $act ) {
2916
			if ( $act == $module )
2917
				return true;
2918
		}
2919
2920
		$module_data = Jetpack::get_module( $module );
2921
2922
		if ( ! Jetpack::is_active() ) {
2923
			if ( ! Jetpack::is_development_mode() && ! Jetpack::is_onboarding() )
2924
				return false;
2925
2926
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2927
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2928
				return false;
2929
		}
2930
2931
		// Check and see if the old plugin is active
2932
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2933
			// Deactivate the old plugin
2934
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2935
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2936
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2937
				Jetpack::state( 'deactivated_plugins', $module );
2938
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2939
				exit;
2940
			}
2941
		}
2942
2943
		// Protect won't work with mis-configured IPs
2944
		if ( 'protect' === $module ) {
2945
			include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php';
2946
			if ( ! jetpack_protect_get_ip() ) {
2947
				Jetpack::state( 'message', 'protect_misconfigured_ip' );
2948
				return false;
2949
			}
2950
		}
2951
2952
		if ( ! Jetpack::active_plan_supports( $module ) ) {
2953
			return false;
2954
		}
2955
2956
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2957
		Jetpack::state( 'module', $module );
2958
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2959
2960
		Jetpack::catch_errors( true );
2961
		ob_start();
2962
		require Jetpack::get_module_path( $module );
2963
		/** This action is documented in class.jetpack.php */
2964
		do_action( 'jetpack_activate_module', $module );
2965
		$active[] = $module;
2966
		Jetpack::update_active_modules( $active );
2967
2968
		Jetpack::state( 'error', false ); // the override
2969
		ob_end_clean();
2970
		Jetpack::catch_errors( false );
2971
2972
		// A flag for Jump Start so it's not shown again. Only set if it hasn't been yet.
2973 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2974
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2975
2976
			//Jump start is being dismissed send data to MC Stats
2977
			$jetpack->stat( 'jumpstart', 'manual,'.$module );
2978
2979
			$jetpack->do_stats( 'server_side' );
2980
		}
2981
2982
		if ( $redirect ) {
2983
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2984
		}
2985
		if ( $exit ) {
2986
			exit;
2987
		}
2988
		return true;
2989
	}
2990
2991
	function activate_module_actions( $module ) {
2992
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
2993
	}
2994
2995
	public static function deactivate_module( $module ) {
2996
		/**
2997
		 * Fires when a module is deactivated.
2998
		 *
2999
		 * @since 1.9.0
3000
		 *
3001
		 * @param string $module Module slug.
3002
		 */
3003
		do_action( 'jetpack_pre_deactivate_module', $module );
3004
3005
		$jetpack = Jetpack::init();
3006
3007
		$active = Jetpack::get_active_modules();
3008
		$new    = array_filter( array_diff( $active, (array) $module ) );
3009
3010
		// A flag for Jump Start so it's not shown again.
3011 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
3012
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
3013
3014
			//Jump start is being dismissed send data to MC Stats
3015
			$jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module );
3016
3017
			$jetpack->do_stats( 'server_side' );
3018
		}
3019
3020
		return self::update_active_modules( $new );
3021
	}
3022
3023
	public static function enable_module_configurable( $module ) {
3024
		$module = Jetpack::get_module_slug( $module );
3025
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
3026
	}
3027
3028
	public static function module_configuration_url( $module ) {
3029
		$module = Jetpack::get_module_slug( $module );
3030
		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
3031
	}
3032
3033
	public static function module_configuration_load( $module, $method ) {
3034
		$module = Jetpack::get_module_slug( $module );
3035
		add_action( 'jetpack_module_configuration_load_' . $module, $method );
3036
	}
3037
3038
	public static function module_configuration_head( $module, $method ) {
3039
		$module = Jetpack::get_module_slug( $module );
3040
		add_action( 'jetpack_module_configuration_head_' . $module, $method );
3041
	}
3042
3043
	public static function module_configuration_screen( $module, $method ) {
3044
		$module = Jetpack::get_module_slug( $module );
3045
		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
3046
	}
3047
3048
	public static function module_configuration_activation_screen( $module, $method ) {
3049
		$module = Jetpack::get_module_slug( $module );
3050
		add_action( 'display_activate_module_setting_' . $module, $method );
3051
	}
3052
3053
/* Installation */
3054
3055
	public static function bail_on_activation( $message, $deactivate = true ) {
3056
?>
3057
<!doctype html>
3058
<html>
3059
<head>
3060
<meta charset="<?php bloginfo( 'charset' ); ?>">
3061
<style>
3062
* {
3063
	text-align: center;
3064
	margin: 0;
3065
	padding: 0;
3066
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
3067
}
3068
p {
3069
	margin-top: 1em;
3070
	font-size: 18px;
3071
}
3072
</style>
3073
<body>
3074
<p><?php echo esc_html( $message ); ?></p>
3075
</body>
3076
</html>
3077
<?php
3078
		if ( $deactivate ) {
3079
			$plugins = get_option( 'active_plugins' );
3080
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
3081
			$update  = false;
3082
			foreach ( $plugins as $i => $plugin ) {
3083
				if ( $plugin === $jetpack ) {
3084
					$plugins[$i] = false;
3085
					$update = true;
3086
				}
3087
			}
3088
3089
			if ( $update ) {
3090
				update_option( 'active_plugins', array_filter( $plugins ) );
3091
			}
3092
		}
3093
		exit;
3094
	}
3095
3096
	/**
3097
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
3098
	 * @static
3099
	 */
3100
	public static function plugin_activation( $network_wide ) {
3101
		Jetpack_Options::update_option( 'activated', 1 );
3102
3103
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
3104
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
3105
		}
3106
3107
		if ( $network_wide )
3108
			Jetpack::state( 'network_nag', true );
3109
3110
		// For firing one-off events (notices) immediately after activation
3111
		set_transient( 'activated_jetpack', true, .1 * MINUTE_IN_SECONDS );
3112
3113
		update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) );
3114
3115
		Jetpack::plugin_initialize();
3116
	}
3117
3118
	public static function get_activation_source( $referer_url ) {
3119
3120
		if ( defined( 'WP_CLI' ) && WP_CLI ) {
3121
			return array( 'wp-cli', null );
3122
		}
3123
3124
		$referer = parse_url( $referer_url );
3125
3126
		$source_type = 'unknown';
3127
		$source_query = null;
3128
3129
		if ( ! is_array( $referer ) ) {
3130
			return array( $source_type, $source_query );
3131
		}
3132
3133
		$plugins_path = parse_url( admin_url( 'plugins.php' ), PHP_URL_PATH );
3134
		$plugins_install_path = parse_url( admin_url( 'plugin-install.php' ), PHP_URL_PATH );// /wp-admin/plugin-install.php
3135
3136
		if ( isset( $referer['query'] ) ) {
3137
			parse_str( $referer['query'], $query_parts );
3138
		} else {
3139
			$query_parts = array();
3140
		}
3141
3142
		if ( $plugins_path === $referer['path'] ) {
3143
			$source_type = 'list';
3144
		} elseif ( $plugins_install_path === $referer['path'] ) {
3145
			$tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured';
3146
			switch( $tab ) {
3147
				case 'popular':
3148
					$source_type = 'popular';
3149
					break;
3150
				case 'recommended':
3151
					$source_type = 'recommended';
3152
					break;
3153
				case 'favorites':
3154
					$source_type = 'favorites';
3155
					break;
3156
				case 'search':
3157
					$source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' );
3158
					$source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null;
3159
					break;
3160
				default:
3161
					$source_type = 'featured';
3162
			}
3163
		}
3164
3165
		return array( $source_type, $source_query );
3166
	}
3167
3168
	/**
3169
	 * Runs before bumping version numbers up to a new version
3170
	 * @param  string $version    Version:timestamp
3171
	 * @param  string $old_version Old Version:timestamp or false if not set yet.
3172
	 * @return null              [description]
3173
	 */
3174
	public static function do_version_bump( $version, $old_version ) {
3175
3176
		if ( ! $old_version ) { // For new sites
3177
			// Setting up jetpack manage
3178
			Jetpack::activate_manage();
3179
		}
3180
	}
3181
3182
	/**
3183
	 * Sets the internal version number and activation state.
3184
	 * @static
3185
	 */
3186
	public static function plugin_initialize() {
3187
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
3188
			Jetpack_Options::update_option( 'activated', 2 );
3189
		}
3190
3191 View Code Duplication
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
3192
			$version = $old_version = JETPACK__VERSION . ':' . time();
3193
			/** This action is documented in class.jetpack.php */
3194
			do_action( 'updating_jetpack_version', $version, false );
3195
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
3196
		}
3197
3198
		Jetpack::load_modules();
3199
3200
		Jetpack_Options::delete_option( 'do_activate' );
3201
		Jetpack_Options::delete_option( 'dismissed_connection_banner' );
3202
	}
3203
3204
	/**
3205
	 * Removes all connection options
3206
	 * @static
3207
	 */
3208
	public static function plugin_deactivation( ) {
3209
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
3210
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
3211
			Jetpack_Network::init()->deactivate();
3212
		} else {
3213
			Jetpack::disconnect( false );
3214
			//Jetpack_Heartbeat::init()->deactivate();
3215
		}
3216
	}
3217
3218
	/**
3219
	 * Disconnects from the Jetpack servers.
3220
	 * Forgets all connection details and tells the Jetpack servers to do the same.
3221
	 * @static
3222
	 */
3223
	public static function disconnect( $update_activated_state = true ) {
3224
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
3225
		Jetpack::clean_nonces( true );
3226
3227
		// If the site is in an IDC because sync is not allowed,
3228
		// let's make sure to not disconnect the production site.
3229
		if ( ! self::validate_sync_error_idc_option() ) {
3230
			JetpackTracking::record_user_event( 'disconnect_site', array() );
3231
			Jetpack::load_xml_rpc_client();
3232
			$xml = new Jetpack_IXR_Client();
3233
			$xml->query( 'jetpack.deregister' );
3234
		}
3235
3236
		Jetpack_Options::delete_option(
3237
			array(
3238
				'blog_token',
3239
				'user_token',
3240
				'user_tokens',
3241
				'master_user',
3242
				'time_diff',
3243
				'fallback_no_verify_ssl_certs',
3244
			)
3245
		);
3246
3247
		Jetpack_IDC::clear_all_idc_options();
3248
		Jetpack_Options::delete_raw_option( 'jetpack_secrets' );
3249
3250
		if ( $update_activated_state ) {
3251
			Jetpack_Options::update_option( 'activated', 4 );
3252
		}
3253
3254
		if ( $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ) ) {
3255
			// Check then record unique disconnection if site has never been disconnected previously
3256
			if ( - 1 == $jetpack_unique_connection['disconnected'] ) {
3257
				$jetpack_unique_connection['disconnected'] = 1;
3258
			} else {
3259
				if ( 0 == $jetpack_unique_connection['disconnected'] ) {
3260
					//track unique disconnect
3261
					$jetpack = Jetpack::init();
3262
3263
					$jetpack->stat( 'connections', 'unique-disconnect' );
3264
					$jetpack->do_stats( 'server_side' );
3265
				}
3266
				// increment number of times disconnected
3267
				$jetpack_unique_connection['disconnected'] += 1;
3268
			}
3269
3270
			Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
3271
		}
3272
3273
		// Delete cached connected user data
3274
		$transient_key = "jetpack_connected_user_data_" . get_current_user_id();
3275
		delete_transient( $transient_key );
3276
3277
		// Delete all the sync related data. Since it could be taking up space.
3278
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-sender.php';
3279
		Jetpack_Sync_Sender::get_instance()->uninstall();
3280
3281
		// Disable the Heartbeat cron
3282
		Jetpack_Heartbeat::init()->deactivate();
3283
	}
3284
3285
	/**
3286
	 * Unlinks the current user from the linked WordPress.com user
3287
	 */
3288
	public static function unlink_user( $user_id = null ) {
3289
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
3290
			return false;
3291
3292
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
3293
3294
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
3295
			return false;
3296
3297
		if ( ! isset( $tokens[ $user_id ] ) )
3298
			return false;
3299
3300
		Jetpack::load_xml_rpc_client();
3301
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
3302
		$xml->query( 'jetpack.unlink_user', $user_id );
3303
3304
		unset( $tokens[ $user_id ] );
3305
3306
		Jetpack_Options::update_option( 'user_tokens', $tokens );
3307
3308
		/**
3309
		 * Fires after the current user has been unlinked from WordPress.com.
3310
		 *
3311
		 * @since 4.1.0
3312
		 *
3313
		 * @param int $user_id The current user's ID.
3314
		 */
3315
		do_action( 'jetpack_unlinked_user', $user_id );
3316
3317
		return true;
3318
	}
3319
3320
	/**
3321
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
3322
	 */
3323
	public static function try_registration() {
3324
		// The user has agreed to the TOS at some point by now.
3325
		Jetpack_Options::update_option( 'tos_agreed', true );
3326
3327
		// Let's get some testing in beta versions and such.
3328
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
3329
			// Before attempting to connect, let's make sure that the domains are viable.
3330
			$domains_to_check = array_unique( array(
3331
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
3332
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
3333
			) );
3334
			foreach ( $domains_to_check as $domain ) {
3335
				$result = Jetpack_Data::is_usable_domain( $domain );
3336
				if ( is_wp_error( $result ) ) {
3337
					return $result;
3338
				}
3339
			}
3340
		}
3341
3342
		$result = Jetpack::register();
3343
3344
		// If there was an error with registration and the site was not registered, record this so we can show a message.
3345
		if ( ! $result || is_wp_error( $result ) ) {
3346
			return $result;
3347
		} else {
3348
			return true;
3349
		}
3350
	}
3351
3352
	/**
3353
	 * Tracking an internal event log. Try not to put too much chaff in here.
3354
	 *
3355
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
3356
	 */
3357
	public static function log( $code, $data = null ) {
3358
		// only grab the latest 200 entries
3359
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
3360
3361
		// Append our event to the log
3362
		$log_entry = array(
3363
			'time'    => time(),
3364
			'user_id' => get_current_user_id(),
3365
			'blog_id' => Jetpack_Options::get_option( 'id' ),
3366
			'code'    => $code,
3367
		);
3368
		// Don't bother storing it unless we've got some.
3369
		if ( ! is_null( $data ) ) {
3370
			$log_entry['data'] = $data;
3371
		}
3372
		$log[] = $log_entry;
3373
3374
		// Try add_option first, to make sure it's not autoloaded.
3375
		// @todo: Add an add_option method to Jetpack_Options
3376
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
3377
			Jetpack_Options::update_option( 'log', $log );
3378
		}
3379
3380
		/**
3381
		 * Fires when Jetpack logs an internal event.
3382
		 *
3383
		 * @since 3.0.0
3384
		 *
3385
		 * @param array $log_entry {
3386
		 *	Array of details about the log entry.
3387
		 *
3388
		 *	@param string time Time of the event.
3389
		 *	@param int user_id ID of the user who trigerred the event.
3390
		 *	@param int blog_id Jetpack Blog ID.
3391
		 *	@param string code Unique name for the event.
3392
		 *	@param string data Data about the event.
3393
		 * }
3394
		 */
3395
		do_action( 'jetpack_log_entry', $log_entry );
3396
	}
3397
3398
	/**
3399
	 * Get the internal event log.
3400
	 *
3401
	 * @param $event (string) - only return the specific log events
3402
	 * @param $num   (int)    - get specific number of latest results, limited to 200
3403
	 *
3404
	 * @return array of log events || WP_Error for invalid params
3405
	 */
3406
	public static function get_log( $event = false, $num = false ) {
3407
		if ( $event && ! is_string( $event ) ) {
3408
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
3409
		}
3410
3411
		if ( $num && ! is_numeric( $num ) ) {
3412
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
3413
		}
3414
3415
		$entire_log = Jetpack_Options::get_option( 'log', array() );
3416
3417
		// If nothing set - act as it did before, otherwise let's start customizing the output
3418
		if ( ! $num && ! $event ) {
3419
			return $entire_log;
3420
		} else {
3421
			$entire_log = array_reverse( $entire_log );
3422
		}
3423
3424
		$custom_log_output = array();
3425
3426
		if ( $event ) {
3427
			foreach ( $entire_log as $log_event ) {
3428
				if ( $event == $log_event[ 'code' ] ) {
3429
					$custom_log_output[] = $log_event;
3430
				}
3431
			}
3432
		} else {
3433
			$custom_log_output = $entire_log;
3434
		}
3435
3436
		if ( $num ) {
3437
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
3438
		}
3439
3440
		return $custom_log_output;
3441
	}
3442
3443
	/**
3444
	 * Log modification of important settings.
3445
	 */
3446
	public static function log_settings_change( $option, $old_value, $value ) {
3447
		switch( $option ) {
3448
			case 'jetpack_sync_non_public_post_stati':
3449
				self::log( $option, $value );
3450
				break;
3451
		}
3452
	}
3453
3454
	/**
3455
	 * Return stat data for WPCOM sync
3456
	 */
3457
	public static function get_stat_data( $encode = true, $extended = true ) {
3458
		$data = Jetpack_Heartbeat::generate_stats_array();
3459
3460
		if ( $extended ) {
3461
			$additional_data = self::get_additional_stat_data();
3462
			$data = array_merge( $data, $additional_data );
3463
		}
3464
3465
		if ( $encode ) {
3466
			return json_encode( $data );
3467
		}
3468
3469
		return $data;
3470
	}
3471
3472
	/**
3473
	 * Get additional stat data to sync to WPCOM
3474
	 */
3475
	public static function get_additional_stat_data( $prefix = '' ) {
3476
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
3477
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
3478
		$return["{$prefix}users"]          = (int) Jetpack::get_site_user_count();
3479
		$return["{$prefix}site-count"]     = 0;
3480
3481
		if ( function_exists( 'get_blog_count' ) ) {
3482
			$return["{$prefix}site-count"] = get_blog_count();
3483
		}
3484
		return $return;
3485
	}
3486
3487
	private static function get_site_user_count() {
3488
		global $wpdb;
3489
3490
		if ( function_exists( 'wp_is_large_network' ) ) {
3491
			if ( wp_is_large_network( 'users' ) ) {
3492
				return -1; // Not a real value but should tell us that we are dealing with a large network.
3493
			}
3494
		}
3495 View Code Duplication
		if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) {
3496
			// It wasn't there, so regenerate the data and save the transient
3497
			$user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" );
3498
			set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS );
3499
		}
3500
		return $user_count;
3501
	}
3502
3503
	/* Admin Pages */
3504
3505
	function admin_init() {
3506
		// If the plugin is not connected, display a connect message.
3507
		if (
3508
			// the plugin was auto-activated and needs its candy
3509
			Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' )
3510
		||
3511
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
3512
			! Jetpack_Options::get_option( 'activated' )
3513
		) {
3514
			Jetpack::plugin_initialize();
3515
		}
3516
3517
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
3518
			Jetpack_Connection_Banner::init();
3519
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
3520
			// Upgrade: 1.1 -> 1.1.1
3521
			// Check and see if host can verify the Jetpack servers' SSL certificate
3522
			$args = array();
3523
			Jetpack_Client::_wp_remote_request(
3524
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
3525
				$args,
3526
				true
3527
			);
3528
		} else if ( $this->can_display_jetpack_manage_notice() && ! Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) {
3529
			// Show the notice on the Dashboard only for now
3530
			add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
3531
		}
3532
3533
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
3534
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
3535
		}
3536
3537
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
3538
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
3539
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
3540
3541
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
3542
			// Artificially throw errors in certain whitelisted cases during plugin activation
3543
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
3544
		}
3545
3546
		// Jetpack Manage Activation Screen from .com
3547
		Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
3548
3549
		// Add custom column in wp-admin/users.php to show whether user is linked.
3550
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
3551
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
3552
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
3553
	}
3554
3555
	function admin_body_class( $admin_body_class = '' ) {
3556
		$classes = explode( ' ', trim( $admin_body_class ) );
3557
3558
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
3559
3560
		$admin_body_class = implode( ' ', array_unique( $classes ) );
3561
		return " $admin_body_class ";
3562
	}
3563
3564
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
3565
		return $admin_body_class . ' jetpack-pagestyles ';
3566
	}
3567
3568
	/**
3569
	 * Call this function if you want the Big Jetpack Manage Notice to show up.
3570
	 *
3571
	 * @return null
3572
	 */
3573
	function prepare_manage_jetpack_notice() {
3574
3575
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
3576
		add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) );
3577
	}
3578
3579
	function manage_activate_screen() {
3580
		include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' );
3581
	}
3582
	/**
3583
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
3584
	 * This function artificially throws errors for such cases (whitelisted).
3585
	 *
3586
	 * @param string $plugin The activated plugin.
3587
	 */
3588
	function throw_error_on_activate_plugin( $plugin ) {
3589
		$active_modules = Jetpack::get_active_modules();
3590
3591
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
3592
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
3593
			$throw = false;
3594
3595
			// Try and make sure it really was the stats plugin
3596
			if ( ! class_exists( 'ReflectionFunction' ) ) {
3597
				if ( 'stats.php' == basename( $plugin ) ) {
3598
					$throw = true;
3599
				}
3600
			} else {
3601
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
3602
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
3603
					$throw = true;
3604
				}
3605
			}
3606
3607
			if ( $throw ) {
3608
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
3609
			}
3610
		}
3611
	}
3612
3613
	function intercept_plugin_error_scrape_init() {
3614
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
3615
	}
3616
3617
	function intercept_plugin_error_scrape( $action, $result ) {
3618
		if ( ! $result ) {
3619
			return;
3620
		}
3621
3622
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
3623
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
3624
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
3625
			}
3626
		}
3627
	}
3628
3629
	function add_remote_request_handlers() {
3630
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
3631
		add_action( 'wp_ajax_nopriv_jetpack_update_file', array( $this, 'remote_request_handlers' ) );
3632
	}
3633
3634
	function remote_request_handlers() {
3635
		$action = current_filter();
3636
3637
		switch ( current_filter() ) {
3638
		case 'wp_ajax_nopriv_jetpack_upload_file' :
3639
			$response = $this->upload_handler();
3640
			break;
3641
3642
		case 'wp_ajax_nopriv_jetpack_update_file' :
3643
			$response = $this->upload_handler( true );
3644
			break;
3645
		default :
3646
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
3647
			break;
3648
		}
3649
3650
		if ( ! $response ) {
3651
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
3652
		}
3653
3654
		if ( is_wp_error( $response ) ) {
3655
			$status_code       = $response->get_error_data();
3656
			$error             = $response->get_error_code();
3657
			$error_description = $response->get_error_message();
3658
3659
			if ( ! is_int( $status_code ) ) {
3660
				$status_code = 400;
3661
			}
3662
3663
			status_header( $status_code );
3664
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
3665
		}
3666
3667
		status_header( 200 );
3668
		if ( true === $response ) {
3669
			exit;
3670
		}
3671
3672
		die( json_encode( (object) $response ) );
3673
	}
3674
3675
	/**
3676
	 * Uploads a file gotten from the global $_FILES.
3677
	 * If `$update_media_item` is true and `post_id` is defined
3678
	 * the attachment file of the media item (gotten through of the post_id)
3679
	 * will be updated instead of add a new one.
3680
	 *
3681
	 * @param  boolean $update_media_item - update media attachment
3682
	 * @return array - An array describing the uploadind files process
3683
	 */
3684
	function upload_handler( $update_media_item = false ) {
3685
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
3686
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
3687
		}
3688
3689
		$user = wp_authenticate( '', '' );
3690
		if ( ! $user || is_wp_error( $user ) ) {
3691
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
3692
		}
3693
3694
		wp_set_current_user( $user->ID );
3695
3696
		if ( ! current_user_can( 'upload_files' ) ) {
3697
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
3698
		}
3699
3700
		if ( empty( $_FILES ) ) {
3701
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3702
		}
3703
3704
		foreach ( array_keys( $_FILES ) as $files_key ) {
3705
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3706
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3707
			}
3708
		}
3709
3710
		$media_keys = array_keys( $_FILES['media'] );
3711
3712
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3713
		if ( ! $token || is_wp_error( $token ) ) {
3714
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3715
		}
3716
3717
		$uploaded_files = array();
3718
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3719
		unset( $GLOBALS['post'] );
3720
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3721
			$file = array();
3722
			foreach ( $media_keys as $media_key ) {
3723
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3724
			}
3725
3726
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3727
3728
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3729
			if ( $hmac_provided !== $hmac_file ) {
3730
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3731
				continue;
3732
			}
3733
3734
			$_FILES['.jetpack.upload.'] = $file;
3735
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3736
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3737
				$post_id = 0;
3738
			}
3739
3740
			if ( $update_media_item ) {
3741
				if ( ! isset( $post_id ) || $post_id === 0 ) {
3742
					return new Jetpack_Error( 'invalid_input', 'Media ID must be defined.', 400 );
3743
				}
3744
3745
				$media_array = $_FILES['media'];
3746
3747
				$file_array['name'] = $media_array['name'][0];
3748
				$file_array['type'] = $media_array['type'][0];
3749
				$file_array['tmp_name'] = $media_array['tmp_name'][0];
3750
				$file_array['error'] = $media_array['error'][0];
3751
				$file_array['size'] = $media_array['size'][0];
3752
3753
				$edited_media_item = Jetpack_Media::edit_media_file( $post_id, $file_array );
3754
3755
				if ( is_wp_error( $edited_media_item ) ) {
3756
					return $edited_media_item;
3757
				}
3758
3759
				$response = (object) array(
3760
					'id'   => (string) $post_id,
3761
					'file' => (string) $edited_media_item->post_title,
3762
					'url'  => (string) wp_get_attachment_url( $post_id ),
3763
					'type' => (string) $edited_media_item->post_mime_type,
3764
					'meta' => (array) wp_get_attachment_metadata( $post_id ),
3765
				);
3766
3767
				return (array) array( $response );
3768
			}
3769
3770
			$attachment_id = media_handle_upload(
3771
				'.jetpack.upload.',
3772
				$post_id,
3773
				array(),
3774
				array(
3775
					'action' => 'jetpack_upload_file',
3776
				)
3777
			);
3778
3779
			if ( ! $attachment_id ) {
3780
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3781
			} elseif ( is_wp_error( $attachment_id ) ) {
3782
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3783
			} else {
3784
				$attachment = get_post( $attachment_id );
3785
				$uploaded_files[$index] = (object) array(
3786
					'id'   => (string) $attachment_id,
3787
					'file' => $attachment->post_title,
3788
					'url'  => wp_get_attachment_url( $attachment_id ),
3789
					'type' => $attachment->post_mime_type,
3790
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3791
				);
3792
				// Zip files uploads are not supported unless they are done for installation purposed
3793
				// lets delete them in case something goes wrong in this whole process
3794
				if ( 'application/zip' === $attachment->post_mime_type ) {
3795
					// Schedule a cleanup for 2 hours from now in case of failed install.
3796
					wp_schedule_single_event( time() + 2 * HOUR_IN_SECONDS, 'upgrader_scheduled_cleanup', array( $attachment_id ) );
3797
				}
3798
			}
3799
		}
3800
		if ( ! is_null( $global_post ) ) {
3801
			$GLOBALS['post'] = $global_post;
3802
		}
3803
3804
		return $uploaded_files;
3805
	}
3806
3807
	/**
3808
	 * Add help to the Jetpack page
3809
	 *
3810
	 * @since Jetpack (1.2.3)
3811
	 * @return false if not the Jetpack page
3812
	 */
3813
	function admin_help() {
3814
		$current_screen = get_current_screen();
3815
3816
		// Overview
3817
		$current_screen->add_help_tab(
3818
			array(
3819
				'id'		=> 'home',
3820
				'title'		=> __( 'Home', 'jetpack' ),
3821
				'content'	=>
3822
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3823
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3824
					'<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>',
3825
			)
3826
		);
3827
3828
		// Screen Content
3829
		if ( current_user_can( 'manage_options' ) ) {
3830
			$current_screen->add_help_tab(
3831
				array(
3832
					'id'		=> 'settings',
3833
					'title'		=> __( 'Settings', 'jetpack' ),
3834
					'content'	=>
3835
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3836
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3837
						'<ol>' .
3838
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3839
							'<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>' .
3840
						'</ol>' .
3841
						'<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>'
3842
				)
3843
			);
3844
		}
3845
3846
		// Help Sidebar
3847
		$current_screen->set_help_sidebar(
3848
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3849
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3850
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3851
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3852
		);
3853
	}
3854
3855
	function admin_menu_css() {
3856
		wp_enqueue_style( 'jetpack-icons' );
3857
	}
3858
3859
	function admin_menu_order() {
3860
		return true;
3861
	}
3862
3863
	function enqueue_gutenberg_locale() {
3864
		wp_add_inline_script(
3865
			'wp-i18n',
3866
			'wp.i18n.setLocaleData( ' . self::get_i18n_data_json() . ', \'jetpack\' );'
3867
		);
3868
	}
3869
3870 View Code Duplication
	function jetpack_menu_order( $menu_order ) {
3871
		$jp_menu_order = array();
3872
3873
		foreach ( $menu_order as $index => $item ) {
3874
			if ( $item != 'jetpack' ) {
3875
				$jp_menu_order[] = $item;
3876
			}
3877
3878
			if ( $index == 0 ) {
3879
				$jp_menu_order[] = 'jetpack';
3880
			}
3881
		}
3882
3883
		return $jp_menu_order;
3884
	}
3885
3886
	function admin_head() {
3887 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3888
			/** This action is documented in class.jetpack-admin-page.php */
3889
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3890
	}
3891
3892
	function admin_banner_styles() {
3893
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3894
3895
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
3896
			wp_register_style(
3897
				'jetpack-dops-style',
3898
				plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ),
3899
				array(),
3900
				JETPACK__VERSION
3901
			);
3902
		}
3903
3904
		wp_enqueue_style(
3905
			'jetpack',
3906
			plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ),
3907
			array( 'jetpack-dops-style' ),
3908
			 JETPACK__VERSION . '-20121016'
3909
		);
3910
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3911
		wp_style_add_data( 'jetpack', 'suffix', $min );
3912
	}
3913
3914
	function plugin_action_links( $actions ) {
3915
3916
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), __( 'Jetpack', 'jetpack' ) ) );
3917
3918
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3919
			return array_merge(
3920
				$jetpack_home,
3921
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack#/settings' ), __( 'Settings', 'jetpack' ) ) ),
3922
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3923
				$actions
3924
				);
3925
			}
3926
3927
		return array_merge( $jetpack_home, $actions );
3928
	}
3929
3930
	/**
3931
	 * This is the first banner
3932
	 * It should be visible only to user that can update the option
3933
	 * Are not connected
3934
	 *
3935
	 * @return null
3936
	 */
3937
	function admin_jetpack_manage_notice() {
3938
		$screen = get_current_screen();
3939
3940
		// Don't show the connect notice on the jetpack settings page.
3941
		if ( ! in_array( $screen->base, array( 'dashboard' ) ) || $screen->is_network || $screen->action ) {
3942
			return;
3943
		}
3944
3945
		$opt_out_url = $this->opt_out_jetpack_manage_url();
3946
		$opt_in_url  = $this->opt_in_jetpack_manage_url();
3947
		/**
3948
		 * I think it would be great to have different wordsing depending on where you are
3949
		 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen
3950
		 * etc..
3951
		 */
3952
3953
		?>
3954
		<div id="message" class="updated jp-banner">
3955
				<a href="<?php echo esc_url( $opt_out_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3956
				<div class="jp-banner__description-container">
3957
					<h2 class="jp-banner__header"><?php esc_html_e( 'Jetpack Centralized Site Management', 'jetpack' ); ?></h2>
3958
					<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>
3959
					<p class="jp-banner__button-container">
3960
						<a href="<?php echo esc_url( $opt_in_url ); ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Activate Jetpack Manage', 'jetpack' ); ?></a>
3961
						<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>
3962
					</p>
3963
				</div>
3964
		</div>
3965
		<?php
3966
	}
3967
3968
	/**
3969
	 * Returns the url that the user clicks to remove the notice for the big banner
3970
	 * @return string
3971
	 */
3972
	function opt_out_jetpack_manage_url() {
3973
		$referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null );
3974
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' );
3975
	}
3976
	/**
3977
	 * Returns the url that the user clicks to opt in to Jetpack Manage
3978
	 * @return string
3979
	 */
3980
	function opt_in_jetpack_manage_url() {
3981
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' );
3982
	}
3983
3984
	function opt_in_jetpack_manage_notice() {
3985
		?>
3986
		<div class="wrap">
3987
			<div id="message" class="jetpack-message is-opt-in">
3988
				<?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' ); ?>
3989
			</div>
3990
		</div>
3991
		<?php
3992
3993
	}
3994
	/**
3995
	 * Determines whether to show the notice of not true = display notice
3996
	 * @return bool
3997
	 */
3998
	function can_display_jetpack_manage_notice() {
3999
		// never display the notice to users that can't do anything about it anyways
4000
		if( ! current_user_can( 'jetpack_manage_modules' ) )
4001
			return false;
4002
4003
		// don't display if we are in development more
4004
		if( Jetpack::is_development_mode() ) {
4005
			return false;
4006
		}
4007
		// don't display if the site is private
4008
		if(  ! Jetpack_Options::get_option( 'public' ) )
4009
			return false;
4010
4011
		/**
4012
		 * Should the Jetpack Remote Site Management notice be displayed.
4013
		 *
4014
		 * @since 3.3.0
4015
		 *
4016
		 * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
4017
		 */
4018
		return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
4019
	}
4020
4021
	/*
4022
	 * Registration flow:
4023
	 * 1 - ::admin_page_load() action=register
4024
	 * 2 - ::try_registration()
4025
	 * 3 - ::register()
4026
	 *     - Creates jetpack_register option containing two secrets and a timestamp
4027
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
4028
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
4029
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
4030
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
4031
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
4032
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
4033
	 *       jetpack_id, jetpack_secret, jetpack_public
4034
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
4035
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
4036
	 * 5 - user logs in with WP.com account
4037
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
4038
	 *		- Jetpack_Client_Server::authorize()
4039
	 *		- Jetpack_Client_Server::get_token()
4040
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
4041
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
4042
	 *			- which responds with access_token, token_type, scope
4043
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
4044
	 *		- Jetpack::activate_default_modules()
4045
	 *     		- Deactivates deprecated plugins
4046
	 *     		- Activates all default modules
4047
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
4048
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
4049
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
4050
	 *     Done!
4051
	 */
4052
4053
	/**
4054
	 * Handles the page load events for the Jetpack admin page
4055
	 */
4056
	function admin_page_load() {
4057
		$error = false;
4058
4059
		// Make sure we have the right body class to hook stylings for subpages off of.
4060
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
4061
4062
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
4063
			// Should only be used in intermediate redirects to preserve state across redirects
4064
			Jetpack::restate();
4065
		}
4066
4067
		if ( isset( $_GET['connect_url_redirect'] ) ) {
4068
			// User clicked in the iframe to link their accounts
4069
			if ( ! Jetpack::is_user_connected() ) {
4070
				$from = ! empty( $_GET['from'] ) ? $_GET['from'] : 'iframe';
4071
				$redirect = ! empty( $_GET['redirect_after_auth'] ) ? $_GET['redirect_after_auth'] : false;
4072
4073
				add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
4074
				$connect_url = $this->build_connect_url( true, $redirect, $from );
4075
				remove_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
4076
4077
				if ( isset( $_GET['notes_iframe'] ) )
4078
					$connect_url .= '&notes_iframe';
4079
				wp_redirect( $connect_url );
4080
				exit;
4081
			} else {
4082
				if ( ! isset( $_GET['calypso_env'] ) ) {
4083
					Jetpack::state( 'message', 'already_authorized' );
4084
					wp_safe_redirect( Jetpack::admin_url() );
4085
					exit;
4086
				} else {
4087
					$connect_url = $this->build_connect_url( true, false, 'iframe' );
4088
					$connect_url .= '&already_authorized=true';
4089
					wp_redirect( $connect_url );
4090
					exit;
4091
				}
4092
			}
4093
		}
4094
4095
4096
		if ( isset( $_GET['action'] ) ) {
4097
			switch ( $_GET['action'] ) {
4098
			case 'authorize':
4099
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
4100
					Jetpack::state( 'message', 'already_authorized' );
4101
					wp_safe_redirect( Jetpack::admin_url() );
4102
					exit;
4103
				}
4104
				Jetpack::log( 'authorize' );
4105
				$client_server = new Jetpack_Client_Server;
4106
				$client_server->client_authorize();
4107
				exit;
4108
			case 'register' :
4109
				if ( ! current_user_can( 'jetpack_connect' ) ) {
4110
					$error = 'cheatin';
4111
					break;
4112
				}
4113
				check_admin_referer( 'jetpack-register' );
4114
				Jetpack::log( 'register' );
4115
				Jetpack::maybe_set_version_option();
4116
				$registered = Jetpack::try_registration();
4117
				if ( is_wp_error( $registered ) ) {
4118
					$error = $registered->get_error_code();
4119
					Jetpack::state( 'error', $error );
4120
					Jetpack::state( 'error', $registered->get_error_message() );
4121
					JetpackTracking::record_user_event( 'jpc_register_fail', array(
4122
						'error_code' => $error,
4123
						'error_message' => $registered->get_error_message()
4124
					) );
4125
					break;
4126
				}
4127
4128
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
4129
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : false;
4130
4131
				JetpackTracking::record_user_event( 'jpc_register_success', array(
4132
					'from' => $from
4133
				) );
4134
4135
				$url = $this->build_connect_url( true, $redirect, $from );
4136
4137
				if ( ! empty( $_GET['onboarding'] ) ) {
4138
					$url = add_query_arg( 'onboarding', $_GET['onboarding'], $url );
4139
				}
4140
4141
				if ( ! empty( $_GET['auth_approved'] ) && 'true' === $_GET['auth_approved'] ) {
4142
					$url = add_query_arg( 'auth_approved', 'true', $url );
4143
				}
4144
4145
				wp_redirect( $url );
4146
				exit;
4147
			case 'activate' :
4148
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
4149
					$error = 'cheatin';
4150
					break;
4151
				}
4152
4153
				$module = stripslashes( $_GET['module'] );
4154
				check_admin_referer( "jetpack_activate-$module" );
4155
				Jetpack::log( 'activate', $module );
4156
				if ( ! Jetpack::activate_module( $module ) ) {
4157
					Jetpack::state( 'error', sprintf( __( 'Could not activate %s', 'jetpack' ), $module ) );
4158
				}
4159
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
4160
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4161
				exit;
4162
			case 'activate_default_modules' :
4163
				check_admin_referer( 'activate_default_modules' );
4164
				Jetpack::log( 'activate_default_modules' );
4165
				Jetpack::restate();
4166
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
4167
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
4168
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
4169
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
4170
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4171
				exit;
4172
			case 'disconnect' :
4173
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
4174
					$error = 'cheatin';
4175
					break;
4176
				}
4177
4178
				check_admin_referer( 'jetpack-disconnect' );
4179
				Jetpack::log( 'disconnect' );
4180
				Jetpack::disconnect();
4181
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
4182
				exit;
4183
			case 'reconnect' :
4184
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
4185
					$error = 'cheatin';
4186
					break;
4187
				}
4188
4189
				check_admin_referer( 'jetpack-reconnect' );
4190
				Jetpack::log( 'reconnect' );
4191
				$this->disconnect();
4192
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
4193
				exit;
4194 View Code Duplication
			case 'deactivate' :
4195
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
4196
					$error = 'cheatin';
4197
					break;
4198
				}
4199
4200
				$modules = stripslashes( $_GET['module'] );
4201
				check_admin_referer( "jetpack_deactivate-$modules" );
4202
				foreach ( explode( ',', $modules ) as $module ) {
4203
					Jetpack::log( 'deactivate', $module );
4204
					Jetpack::deactivate_module( $module );
4205
					Jetpack::state( 'message', 'module_deactivated' );
4206
				}
4207
				Jetpack::state( 'module', $modules );
4208
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4209
				exit;
4210
			case 'unlink' :
4211
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
4212
				check_admin_referer( 'jetpack-unlink' );
4213
				Jetpack::log( 'unlink' );
4214
				$this->unlink_user();
4215
				Jetpack::state( 'message', 'unlinked' );
4216
				if ( 'sub-unlink' == $redirect ) {
4217
					wp_safe_redirect( admin_url() );
4218
				} else {
4219
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
4220
				}
4221
				exit;
4222
			case 'onboard' :
4223
				if ( ! current_user_can( 'manage_options' ) ) {
4224
					wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4225
				} else {
4226
					Jetpack::create_onboarding_token();
4227
					$url = $this->build_connect_url( true );
4228
4229
					if ( false !== ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4230
						$url = add_query_arg( 'onboarding', $token, $url );
4231
					}
4232
4233
					$calypso_env = ! empty( $_GET[ 'calypso_env' ] ) ? $_GET[ 'calypso_env' ] : false;
4234
					if ( $calypso_env ) {
4235
						$url = add_query_arg( 'calypso_env', $calypso_env, $url );
4236
					}
4237
4238
					wp_redirect( $url );
4239
					exit;
4240
				}
4241
				exit;
4242
			default:
4243
				/**
4244
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
4245
				 *
4246
				 * @since 2.6.0
4247
				 *
4248
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
4249
				 */
4250
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
4251
			}
4252
		}
4253
4254
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
4255
			self::activate_new_modules( true );
4256
		}
4257
4258
		$message_code = Jetpack::state( 'message' );
4259
		if ( Jetpack::state( 'optin-manage' ) ) {
4260
			$activated_manage = $message_code;
4261
			$message_code = 'jetpack-manage';
4262
		}
4263
4264
		switch ( $message_code ) {
4265
		case 'jetpack-manage':
4266
			$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>';
4267
			if ( $activated_manage ) {
4268
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
4269
			}
4270
			break;
4271
4272
		}
4273
4274
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
4275
4276
		if ( ! empty( $deactivated_plugins ) ) {
4277
			$deactivated_plugins = explode( ',', $deactivated_plugins );
4278
			$deactivated_titles  = array();
4279
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
4280
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
4281
					continue;
4282
				}
4283
4284
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
4285
			}
4286
4287
			if ( $deactivated_titles ) {
4288
				if ( $this->message ) {
4289
					$this->message .= "<br /><br />\n";
4290
				}
4291
4292
				$this->message .= wp_sprintf(
4293
					_n(
4294
						'Jetpack contains the most recent version of the old %l plugin.',
4295
						'Jetpack contains the most recent versions of the old %l plugins.',
4296
						count( $deactivated_titles ),
4297
						'jetpack'
4298
					),
4299
					$deactivated_titles
4300
				);
4301
4302
				$this->message .= "<br />\n";
4303
4304
				$this->message .= _n(
4305
					'The old version has been deactivated and can be removed from your site.',
4306
					'The old versions have been deactivated and can be removed from your site.',
4307
					count( $deactivated_titles ),
4308
					'jetpack'
4309
				);
4310
			}
4311
		}
4312
4313
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
4314
4315
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
4316
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
4317
		}
4318
4319 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
4320
			/**
4321
			 * Fires when a module configuration page is loaded.
4322
			 * The dynamic part of the hook is the configure parameter from the URL.
4323
			 *
4324
			 * @since 1.1.0
4325
			 */
4326
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
4327
		}
4328
4329
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
4330
	}
4331
4332
	function admin_notices() {
4333
4334
		if ( $this->error ) {
4335
?>
4336
<div id="message" class="jetpack-message jetpack-err">
4337
	<div class="squeezer">
4338
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
4339
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
4340
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
4341
<?php	endif; ?>
4342
	</div>
4343
</div>
4344
<?php
4345
		}
4346
4347
		if ( $this->message ) {
4348
?>
4349
<div id="message" class="jetpack-message">
4350
	<div class="squeezer">
4351
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
4352
	</div>
4353
</div>
4354
<?php
4355
		}
4356
4357
		if ( $this->privacy_checks ) :
4358
			$module_names = $module_slugs = array();
4359
4360
			$privacy_checks = explode( ',', $this->privacy_checks );
4361
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
4362
			foreach ( $privacy_checks as $module_slug ) {
4363
				$module = Jetpack::get_module( $module_slug );
4364
				if ( ! $module ) {
4365
					continue;
4366
				}
4367
4368
				$module_slugs[] = $module_slug;
4369
				$module_names[] = "<strong>{$module['name']}</strong>";
4370
			}
4371
4372
			$module_slugs = join( ',', $module_slugs );
4373
?>
4374
<div id="message" class="jetpack-message jetpack-err">
4375
	<div class="squeezer">
4376
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
4377
		<p><?php
4378
			echo wp_kses(
4379
				wptexturize(
4380
					wp_sprintf(
4381
						_nx(
4382
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
4383
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
4384
							count( $privacy_checks ),
4385
							'%l = list of Jetpack module/feature names',
4386
							'jetpack'
4387
						),
4388
						$module_names
4389
					)
4390
				),
4391
				array( 'strong' => true )
4392
			);
4393
4394
			echo "\n<br />\n";
4395
4396
			echo wp_kses(
4397
				sprintf(
4398
					_nx(
4399
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
4400
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
4401
						count( $privacy_checks ),
4402
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
4403
						'jetpack'
4404
					),
4405
					wp_nonce_url(
4406
						Jetpack::admin_url(
4407
							array(
4408
								'page'   => 'jetpack',
4409
								'action' => 'deactivate',
4410
								'module' => urlencode( $module_slugs ),
4411
							)
4412
						),
4413
						"jetpack_deactivate-$module_slugs"
4414
					),
4415
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
4416
				),
4417
				array( 'a' => array( 'href' => true, 'title' => true ) )
4418
			);
4419
		?></p>
4420
	</div>
4421
</div>
4422
<?php endif;
4423
	// only display the notice if the other stuff is not there
4424
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
4425
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
4426
			$this->opt_in_jetpack_manage_notice();
4427
		}
4428
	}
4429
4430
	/**
4431
	 * Record a stat for later output.  This will only currently output in the admin_footer.
4432
	 */
4433
	function stat( $group, $detail ) {
4434
		if ( ! isset( $this->stats[ $group ] ) )
4435
			$this->stats[ $group ] = array();
4436
		$this->stats[ $group ][] = $detail;
4437
	}
4438
4439
	/**
4440
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
4441
	 */
4442
	function do_stats( $method = '' ) {
4443
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
4444
			foreach ( $this->stats as $group => $stats ) {
4445
				if ( is_array( $stats ) && count( $stats ) ) {
4446
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
4447
					if ( 'server_side' === $method ) {
4448
						self::do_server_side_stat( $args );
4449
					} else {
4450
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
4451
					}
4452
				}
4453
				unset( $this->stats[ $group ] );
4454
			}
4455
		}
4456
	}
4457
4458
	/**
4459
	 * Runs stats code for a one-off, server-side.
4460
	 *
4461
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
4462
	 *
4463
	 * @return bool If it worked.
4464
	 */
4465
	static function do_server_side_stat( $args ) {
4466
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
4467
		if ( is_wp_error( $response ) )
4468
			return false;
4469
4470
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
4471
			return false;
4472
4473
		return true;
4474
	}
4475
4476
	/**
4477
	 * Builds the stats url.
4478
	 *
4479
	 * @param $args array|string The arguments to append to the URL.
4480
	 *
4481
	 * @return string The URL to be pinged.
4482
	 */
4483
	static function build_stats_url( $args ) {
4484
		$defaults = array(
4485
			'v'    => 'wpcom2',
4486
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
4487
		);
4488
		$args     = wp_parse_args( $args, $defaults );
4489
		/**
4490
		 * Filter the URL used as the Stats tracking pixel.
4491
		 *
4492
		 * @since 2.3.2
4493
		 *
4494
		 * @param string $url Base URL used as the Stats tracking pixel.
4495
		 */
4496
		$base_url = apply_filters(
4497
			'jetpack_stats_base_url',
4498
			'https://pixel.wp.com/g.gif'
4499
		);
4500
		$url      = add_query_arg( $args, $base_url );
4501
		return $url;
4502
	}
4503
4504
	static function translate_current_user_to_role() {
4505
		foreach ( self::$capability_translations as $role => $cap ) {
4506
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
4507
				return $role;
4508
			}
4509
		}
4510
4511
		return false;
4512
	}
4513
4514
	static function translate_user_to_role( $user ) {
4515
		foreach ( self::$capability_translations as $role => $cap ) {
4516
			if ( user_can( $user, $role ) || user_can( $user, $cap ) ) {
4517
				return $role;
4518
			}
4519
		}
4520
4521
		return false;
4522
    }
4523
4524
	static function translate_role_to_cap( $role ) {
4525
		if ( ! isset( self::$capability_translations[$role] ) ) {
4526
			return false;
4527
		}
4528
4529
		return self::$capability_translations[$role];
4530
	}
4531
4532
	static function sign_role( $role, $user_id = null ) {
4533
		if ( empty( $user_id ) ) {
4534
			$user_id = (int) get_current_user_id();
4535
		}
4536
4537
		if ( ! $user_id  ) {
4538
			return false;
4539
		}
4540
4541
		$token = Jetpack_Data::get_access_token();
4542
		if ( ! $token || is_wp_error( $token ) ) {
4543
			return false;
4544
		}
4545
4546
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
4547
	}
4548
4549
4550
	/**
4551
	 * Builds a URL to the Jetpack connection auth page
4552
	 *
4553
	 * @since 3.9.5
4554
	 *
4555
	 * @param bool $raw If true, URL will not be escaped.
4556
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
4557
	 *                              If string, will be a custom redirect.
4558
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
4559
	 * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0
4560
	 *
4561
	 * @return string Connect URL
4562
	 */
4563
	function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) {
4564
		$site_id = Jetpack_Options::get_option( 'id' );
4565
		$token = Jetpack_Options::get_option( 'blog_token' );
4566
4567
		if ( $register || ! $token || ! $site_id ) {
4568
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4569
4570
			if ( ! empty( $redirect ) ) {
4571
				$url = add_query_arg(
4572
					'redirect',
4573
					urlencode( wp_validate_redirect( esc_url_raw( $redirect ) ) ),
4574
					$url
4575
				);
4576
			}
4577
4578
			if( is_network_admin() ) {
4579
				$url = add_query_arg( 'is_multisite', network_admin_url( 'admin.php?page=jetpack-settings' ), $url );
4580
			}
4581
		} else {
4582
4583
			// Let's check the existing blog token to see if we need to re-register. We only check once per minute
4584
			// because otherwise this logic can get us in to a loop.
4585
			$last_connect_url_check = intval( Jetpack_Options::get_raw_option( 'jetpack_last_connect_url_check' ) );
4586
			if ( ! $last_connect_url_check || ( time() - $last_connect_url_check ) > MINUTE_IN_SECONDS ) {
4587
				Jetpack_Options::update_raw_option( 'jetpack_last_connect_url_check', time() );
4588
4589
				$response = Jetpack_Client::wpcom_json_api_request_as_blog(
4590
					sprintf( '/sites/%d', $site_id ) .'?force=wpcom',
4591
					'1.1'
4592
				);
4593
4594
				if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
4595
					// Generating a register URL instead to refresh the existing token
4596
					return $this->build_connect_url( $raw, $redirect, $from, true );
4597
				}
4598
			}
4599
4600
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
4601
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4602
			}
4603
4604
			$role = self::translate_current_user_to_role();
4605
			$signed_role = self::sign_role( $role );
4606
4607
			$user = wp_get_current_user();
4608
4609
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4610
			$redirect = $redirect
4611
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4612
				: $jetpack_admin_page;
4613
4614
			if( isset( $_REQUEST['is_multisite'] ) ) {
4615
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4616
			}
4617
4618
			$secrets = Jetpack::generate_secrets( 'authorize', false, 2 * HOUR_IN_SECONDS );
4619
4620
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
4621
				? get_site_icon_url()
4622
				: false;
4623
4624
			/**
4625
			 * Filter the type of authorization.
4626
			 * 'calypso' completes authorization on wordpress.com/jetpack/connect
4627
			 * while 'jetpack' ( or any other value ) completes the authorization at jetpack.wordpress.com.
4628
			 *
4629
			 * @since 4.3.3
4630
			 *
4631
			 * @param string $auth_type Defaults to 'calypso', can also be 'jetpack'.
4632
			 */
4633
			$auth_type = apply_filters( 'jetpack_auth_type', 'calypso' );
4634
4635
			$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
4636
4637
			$args = urlencode_deep(
4638
				array(
4639
					'response_type' => 'code',
4640
					'client_id'     => Jetpack_Options::get_option( 'id' ),
4641
					'redirect_uri'  => add_query_arg(
4642
						array(
4643
							'action'   => 'authorize',
4644
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
4645
							'redirect' => urlencode( $redirect ),
4646
						),
4647
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
4648
					),
4649
					'state'         => $user->ID,
4650
					'scope'         => $signed_role,
4651
					'user_email'    => $user->user_email,
4652
					'user_login'    => $user->user_login,
4653
					'is_active'     => Jetpack::is_active(),
4654
					'jp_version'    => JETPACK__VERSION,
4655
					'auth_type'     => $auth_type,
4656
					'secret'        => $secrets['secret_1'],
4657
					'locale'        => ( isset( $gp_locale ) && isset( $gp_locale->slug ) ) ? $gp_locale->slug : '',
4658
					'blogname'      => get_option( 'blogname' ),
4659
					'site_url'      => site_url(),
4660
					'home_url'      => home_url(),
4661
					'site_icon'     => $site_icon,
4662
					'site_lang'     => get_locale(),
4663
					'_ui'           => $tracks_identity['_ui'],
4664
					'_ut'           => $tracks_identity['_ut']
4665
				)
4666
			);
4667
4668
			self::apply_activation_source_to_args( $args );
4669
4670
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
4671
		}
4672
4673
		if ( $from ) {
4674
			$url = add_query_arg( 'from', $from, $url );
4675
		}
4676
4677
4678
		if ( isset( $_GET['calypso_env'] ) ) {
4679
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
4680
		}
4681
4682
		return $raw ? $url : esc_url( $url );
4683
	}
4684
4685
	public static function apply_activation_source_to_args( &$args ) {
4686
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4687
4688
		if ( $activation_source_name ) {
4689
			$args['_as'] = urlencode( $activation_source_name );
4690
		}
4691
4692
		if ( $activation_source_keyword ) {
4693
			$args['_ak'] = urlencode( $activation_source_keyword );
4694
		}
4695
	}
4696
4697
	function build_reconnect_url( $raw = false ) {
4698
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
4699
		return $raw ? $url : esc_url( $url );
4700
	}
4701
4702
	public static function admin_url( $args = null ) {
4703
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
4704
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
4705
		return $url;
4706
	}
4707
4708
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4709
		$actionurl = str_replace( '&amp;', '&', $actionurl );
4710
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
4711
	}
4712
4713
	function dismiss_jetpack_notice() {
4714
4715
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
4716
			return;
4717
		}
4718
4719
		switch( $_GET['jetpack-notice'] ) {
4720
			case 'dismiss':
4721
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
4722
4723
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
4724
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
4725
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
4726
				}
4727
				break;
4728 View Code Duplication
			case 'jetpack-manage-opt-out':
4729
4730
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
4731
					// Don't show the banner again
4732
4733
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
4734
					// redirect back to the page that had the notice
4735
					if ( wp_get_referer() ) {
4736
						wp_safe_redirect( wp_get_referer() );
4737
					} else {
4738
						// Take me to Jetpack
4739
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4740
					}
4741
				}
4742
				break;
4743 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
4744
4745
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
4746
					// Don't show the banner again
4747
4748
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
4749
					// redirect back to the page that had the notice
4750
					if ( wp_get_referer() ) {
4751
						wp_safe_redirect( wp_get_referer() );
4752
					} else {
4753
						// Take me to Jetpack
4754
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4755
					}
4756
				}
4757
				break;
4758
			case 'jetpack-manage-opt-in':
4759
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
4760
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
4761
4762
					$redirection_url = Jetpack::admin_url();
4763
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4764
4765
					// Don't redirect form the Jetpack Setting Page
4766
					$referer_parsed = parse_url ( wp_get_referer() );
4767
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
4768
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
4769
						// Take the user to Jetpack home except when on the setting page
4770
						$redirection_url = wp_get_referer();
4771
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4772
					}
4773
					// Also update the JSON API FULL MANAGEMENT Option
4774
					Jetpack::activate_module( 'manage', false, false );
4775
4776
					// Special Message when option in.
4777
					Jetpack::state( 'optin-manage', 'true' );
4778
					// Activate the Module if not activated already
4779
4780
					// Redirect properly
4781
					wp_safe_redirect( $redirection_url );
4782
4783
				}
4784
				break;
4785
		}
4786
	}
4787
4788
	public static function admin_screen_configure_module( $module_id ) {
4789
4790
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
4791
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
4792
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
4793
				/**
4794
				 * Fires to diplay a custom module activation screen.
4795
				 *
4796
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
4797
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
4798
				 *
4799
				 * @module manage
4800
				 *
4801
				 * @since 3.8.0
4802
				 *
4803
				 * @param int $module_id Module ID.
4804
				 */
4805
				do_action( 'display_activate_module_setting_' . $module_id );
4806
			} else {
4807
				self::display_activate_module_link( $module_id );
4808
			}
4809
4810
			return false;
4811
		} ?>
4812
4813
		<div id="jp-settings-screen" style="position: relative">
4814
			<h3>
4815
			<?php
4816
				$module = Jetpack::get_module( $module_id );
4817
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4818
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4819
			?>
4820
			</h3>
4821
			<?php
4822
				/**
4823
				 * Fires within the displayed message when a feature configuation is updated.
4824
				 *
4825
				 * @since 3.4.0
4826
				 *
4827
				 * @param int $module_id Module ID.
4828
				 */
4829
				do_action( 'jetpack_notices_update_settings', $module_id );
4830
				/**
4831
				 * Fires when a feature configuation screen is loaded.
4832
				 * The dynamic part of the hook, $module_id, is the module ID.
4833
				 *
4834
				 * @since 1.1.0
4835
				 */
4836
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4837
			?>
4838
		</div><?php
4839
	}
4840
4841
	/**
4842
	 * Display link to activate the module to see the settings screen.
4843
	 * @param  string $module_id
4844
	 * @return null
4845
	 */
4846
	public static function display_activate_module_link( $module_id ) {
4847
4848
		$info =  Jetpack::get_module( $module_id );
4849
		$extra = '';
4850
		$activate_url = wp_nonce_url(
4851
				Jetpack::admin_url(
4852
					array(
4853
						'page'   => 'jetpack',
4854
						'action' => 'activate',
4855
						'module' => $module_id,
4856
					)
4857
				),
4858
				"jetpack_activate-$module_id"
4859
			);
4860
4861
		?>
4862
4863
		<div class="wrap configure-module">
4864
			<div id="jp-settings-screen">
4865
				<?php
4866
				if ( $module_id == 'json-api' ) {
4867
4868
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4869
4870
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4871
4872
					$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' );
4873
4874
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4875
				} ?>
4876
4877
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4878
				<div class="narrow">
4879
					<p><?php echo  $info['description']; ?></p>
4880
					<?php if( $extra ) { ?>
4881
					<p><?php echo esc_html( $extra ); ?></p>
4882
					<?php } ?>
4883
					<p>
4884
						<?php
4885
						if( wp_get_referer() ) {
4886
							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() );
4887
						} else {
4888
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4889
						} ?>
4890
					</p>
4891
				</div>
4892
4893
			</div>
4894
		</div>
4895
4896
		<?php
4897
	}
4898
4899
	public static function sort_modules( $a, $b ) {
4900
		if ( $a['sort'] == $b['sort'] )
4901
			return 0;
4902
4903
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4904
	}
4905
4906
	function ajax_recheck_ssl() {
4907
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4908
		$result = Jetpack::permit_ssl( true );
4909
		wp_send_json( array(
4910
			'enabled' => $result,
4911
			'message' => get_transient( 'jetpack_https_test_message' )
4912
		) );
4913
	}
4914
4915
/* Client API */
4916
4917
	/**
4918
	 * Returns the requested Jetpack API URL
4919
	 *
4920
	 * @return string
4921
	 */
4922
	public static function api_url( $relative_url ) {
4923
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4924
	}
4925
4926
	/**
4927
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4928
	 */
4929
	public static function fix_url_for_bad_hosts( $url ) {
4930
		if ( 0 !== strpos( $url, 'https://' ) ) {
4931
			return $url;
4932
		}
4933
4934
		switch ( JETPACK_CLIENT__HTTPS ) {
4935
			case 'ALWAYS' :
4936
				return $url;
4937
			case 'NEVER' :
4938
				return set_url_scheme( $url, 'http' );
4939
			// default : case 'AUTO' :
4940
		}
4941
4942
		// we now return the unmodified SSL URL by default, as a security precaution
4943
		return $url;
4944
	}
4945
4946
	/**
4947
	 * Create a random secret for validating onboarding payload
4948
	 *
4949
	 * @return string Secret token
4950
	 */
4951
	public static function create_onboarding_token() {
4952
		if ( false === ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4953
			$token = wp_generate_password( 32, false );
4954
			Jetpack_Options::update_option( 'onboarding', $token );
4955
		}
4956
4957
		return $token;
4958
	}
4959
4960
	/**
4961
	 * Remove the onboarding token
4962
	 *
4963
	 * @return bool True on success, false on failure
4964
	 */
4965
	public static function invalidate_onboarding_token() {
4966
		return Jetpack_Options::delete_option( 'onboarding' );
4967
	}
4968
4969
	/**
4970
	 * Validate an onboarding token for a specific action
4971
	 *
4972
	 * @return boolean True if token/action pair is accepted, false if not
4973
	 */
4974
	public static function validate_onboarding_token_action( $token, $action ) {
4975
		// Compare tokens, bail if tokens do not match
4976
		if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) {
4977
			return false;
4978
		}
4979
4980
		// List of valid actions we can take
4981
		$valid_actions = array(
4982
			'/jetpack/v4/settings',
4983
		);
4984
4985
		// Whitelist the action
4986
		if ( ! in_array( $action, $valid_actions ) ) {
4987
			return false;
4988
		}
4989
4990
		return true;
4991
	}
4992
4993
	/**
4994
	 * Checks to see if the URL is using SSL to connect with Jetpack
4995
	 *
4996
	 * @since 2.3.3
4997
	 * @return boolean
4998
	 */
4999
	public static function permit_ssl( $force_recheck = false ) {
5000
		// Do some fancy tests to see if ssl is being supported
5001
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
5002
			$message = '';
5003
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
5004
				$ssl = 0;
5005
			} else {
5006
				switch ( JETPACK_CLIENT__HTTPS ) {
5007
					case 'NEVER':
5008
						$ssl = 0;
5009
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
5010
						break;
5011
					case 'ALWAYS':
5012
					case 'AUTO':
5013
					default:
5014
						$ssl = 1;
5015
						break;
5016
				}
5017
5018
				// If it's not 'NEVER', test to see
5019
				if ( $ssl ) {
5020
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
5021
						$ssl = 0;
5022
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
5023
					} else {
5024
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
5025
						if ( is_wp_error( $response ) ) {
5026
							$ssl = 0;
5027
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
5028
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
5029
							$ssl = 0;
5030
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
5031
						}
5032
					}
5033
				}
5034
			}
5035
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
5036
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
5037
		}
5038
5039
		return (bool) $ssl;
5040
	}
5041
5042
	/*
5043
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
5044
	 */
5045
	public function alert_auto_ssl_fail() {
5046
		if ( ! current_user_can( 'manage_options' ) )
5047
			return;
5048
5049
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
5050
		?>
5051
5052
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
5053
			<div class="jp-banner__content">
5054
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
5055
				<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>
5056
				<p>
5057
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
5058
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
5059
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
5060
				</p>
5061
				<p>
5062
					<?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' ),
5063
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
5064
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
5065
				</p>
5066
			</div>
5067
		</div>
5068
		<style>
5069
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
5070
		</style>
5071
		<script type="text/javascript">
5072
			jQuery( document ).ready( function( $ ) {
5073
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
5074
					var $this = $( this );
5075
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
5076
					$( '#jetpack-recheck-ssl-output' ).html( '' );
5077
					e.preventDefault();
5078
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
5079
					$.post( ajaxurl, data )
5080
					  .done( function( response ) {
5081
					  	if ( response.enabled ) {
5082
					  		$( '#jetpack-ssl-warning' ).hide();
5083
					  	} else {
5084
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
5085
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
5086
					  	}
5087
					  }.bind( $this ) );
5088
				} );
5089
			} );
5090
		</script>
5091
5092
		<?php
5093
	}
5094
5095
	/**
5096
	 * Returns the Jetpack XML-RPC API
5097
	 *
5098
	 * @return string
5099
	 */
5100
	public static function xmlrpc_api_url() {
5101
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
5102
		return untrailingslashit( $base ) . '/xmlrpc.php';
5103
	}
5104
5105
	/**
5106
	 * Creates two secret tokens and the end of life timestamp for them.
5107
	 *
5108
	 * Note these tokens are unique per call, NOT static per site for connecting.
5109
	 *
5110
	 * @since 2.6
5111
	 * @return array
5112
	 */
5113
	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
5114
		if ( ! $user_id ) {
5115
			$user_id = get_current_user_id();
5116
		}
5117
5118
		$secret_name  = 'jetpack_' . $action . '_' . $user_id;
5119
		$secrets      = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5120
5121
		if (
5122
			isset( $secrets[ $secret_name ] ) &&
5123
			$secrets[ $secret_name ]['exp'] > time()
5124
		) {
5125
			return $secrets[ $secret_name ];
5126
		}
5127
5128
		$secret_value = array(
5129
			'secret_1'  => wp_generate_password( 32, false ),
5130
			'secret_2'  => wp_generate_password( 32, false ),
5131
			'exp'       => time() + $exp,
5132
		);
5133
5134
		$secrets[ $secret_name ] = $secret_value;
5135
5136
		Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
5137
		return $secrets[ $secret_name ];
5138
	}
5139
5140
	public static function get_secrets( $action, $user_id ) {
5141
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
5142
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5143
5144
		if ( ! isset( $secrets[ $secret_name ] ) ) {
5145
			return new WP_Error( 'verify_secrets_missing', 'Verification secrets not found' );
5146
		}
5147
5148
		if ( $secrets[ $secret_name ]['exp'] < time() ) {
5149
			self::delete_secrets( $action, $user_id );
5150
			return new WP_Error( 'verify_secrets_expired', 'Verification took too long' );
5151
		}
5152
5153
		return $secrets[ $secret_name ];
5154
	}
5155
5156
	public static function delete_secrets( $action, $user_id ) {
5157
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
5158
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5159
		if ( isset( $secrets[ $secret_name ] ) ) {
5160
			unset( $secrets[ $secret_name ] );
5161
			Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
5162
		}
5163
	}
5164
5165
	/**
5166
	 * Builds the timeout limit for queries talking with the wpcom servers.
5167
	 *
5168
	 * Based on local php max_execution_time in php.ini
5169
	 *
5170
	 * @since 2.6
5171
	 * @return int
5172
	 * @deprecated
5173
	 **/
5174
	public function get_remote_query_timeout_limit() {
5175
		_deprecated_function( __METHOD__, 'jetpack-5.4' );
5176
		return Jetpack::get_max_execution_time();
5177
	}
5178
5179
	/**
5180
	 * Builds the timeout limit for queries talking with the wpcom servers.
5181
	 *
5182
	 * Based on local php max_execution_time in php.ini
5183
	 *
5184
	 * @since 5.4
5185
	 * @return int
5186
	 **/
5187
	public static function get_max_execution_time() {
5188
		$timeout = (int) ini_get( 'max_execution_time' );
5189
5190
		// Ensure exec time set in php.ini
5191
		if ( ! $timeout ) {
5192
			$timeout = 30;
5193
		}
5194
		return $timeout;
5195
	}
5196
5197
	/**
5198
	 * Sets a minimum request timeout, and returns the current timeout
5199
	 *
5200
	 * @since 5.4
5201
	 **/
5202
	public static function set_min_time_limit( $min_timeout ) {
5203
		$timeout = self::get_max_execution_time();
5204
		if ( $timeout < $min_timeout ) {
5205
			$timeout = $min_timeout;
5206
			set_time_limit( $timeout );
5207
		}
5208
		return $timeout;
5209
	}
5210
5211
5212
	/**
5213
	 * Takes the response from the Jetpack register new site endpoint and
5214
	 * verifies it worked properly.
5215
	 *
5216
	 * @since 2.6
5217
	 * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures
5218
	 **/
5219
	public function validate_remote_register_response( $response ) {
5220
	  if ( is_wp_error( $response ) ) {
5221
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
5222
		}
5223
5224
		$code   = wp_remote_retrieve_response_code( $response );
5225
		$entity = wp_remote_retrieve_body( $response );
5226
		if ( $entity )
5227
			$registration_response = json_decode( $entity );
5228
		else
5229
			$registration_response = false;
5230
5231
		$code_type = intval( $code / 100 );
5232
		if ( 5 == $code_type ) {
5233
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5234
		} elseif ( 408 == $code ) {
5235
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5236
		} elseif ( ! empty( $registration_response->error ) ) {
5237
			if ( 'xml_rpc-32700' == $registration_response->error && ! function_exists( 'xml_parser_create' ) ) {
5238
				$error_description = __( "PHP's XML extension is not available. Jetpack requires the XML extension to communicate with WordPress.com. Please contact your hosting provider to enable PHP's XML extension.", 'jetpack' );
5239
			} else {
5240
				$error_description = isset( $registration_response->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $registration_response->error_description ) : '';
5241
			}
5242
5243
			return new Jetpack_Error( (string) $registration_response->error, $error_description, $code );
5244
		} elseif ( 200 != $code ) {
5245
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5246
		}
5247
5248
		// Jetpack ID error block
5249
		if ( empty( $registration_response->jetpack_id ) ) {
5250
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
5251
		} elseif ( ! is_scalar( $registration_response->jetpack_id ) ) {
5252
			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 );
5253
		} elseif ( preg_match( '/[^0-9]/', $registration_response->jetpack_id ) ) {
5254
			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 );
5255
		}
5256
5257
	    return $registration_response;
5258
	}
5259
	/**
5260
	 * @return bool|WP_Error
5261
	 */
5262
	public static function register() {
5263
		JetpackTracking::record_user_event( 'jpc_register_begin' );
5264
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5265
		$secrets = Jetpack::generate_secrets( 'register' );
5266
5267 View Code Duplication
		if (
5268
			empty( $secrets['secret_1'] ) ||
5269
			empty( $secrets['secret_2'] ) ||
5270
			empty( $secrets['exp'] )
5271
		) {
5272
			return new Jetpack_Error( 'missing_secrets' );
5273
		}
5274
5275
		// better to try (and fail) to set a higher timeout than this system
5276
		// supports than to have register fail for more users than it should
5277
		$timeout = Jetpack::set_min_time_limit( 60 ) / 2;
5278
5279
		$gmt_offset = get_option( 'gmt_offset' );
5280
		if ( ! $gmt_offset ) {
5281
			$gmt_offset = 0;
5282
		}
5283
5284
		$stats_options = get_option( 'stats_options' );
5285
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
5286
5287
		$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
5288
5289
		$args = array(
5290
			'method'  => 'POST',
5291
			'body'    => array(
5292
				'siteurl'         => site_url(),
5293
				'home'            => home_url(),
5294
				'gmt_offset'      => $gmt_offset,
5295
				'timezone_string' => (string) get_option( 'timezone_string' ),
5296
				'site_name'       => (string) get_option( 'blogname' ),
5297
				'secret_1'        => $secrets['secret_1'],
5298
				'secret_2'        => $secrets['secret_2'],
5299
				'site_lang'       => get_locale(),
5300
				'timeout'         => $timeout,
5301
				'stats_id'        => $stats_id,
5302
				'state'           => get_current_user_id(),
5303
				'_ui'             => $tracks_identity['_ui'],
5304
				'_ut'             => $tracks_identity['_ut'],
5305
				'jetpack_version' => JETPACK__VERSION
5306
			),
5307
			'headers' => array(
5308
				'Accept' => 'application/json',
5309
			),
5310
			'timeout' => $timeout,
5311
		);
5312
5313
		self::apply_activation_source_to_args( $args['body'] );
5314
5315
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
5316
5317
		// Make sure the response is valid and does not contain any Jetpack errors
5318
		$registration_details = Jetpack::init()->validate_remote_register_response( $response );
5319
		if ( is_wp_error( $registration_details ) ) {
5320
			return $registration_details;
5321
		} elseif ( ! $registration_details ) {
5322
			return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) );
5323
		}
5324
5325 View Code Duplication
		if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) {
5326
			return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) );
5327
		}
5328
5329
		if ( isset( $registration_details->jetpack_public ) ) {
5330
			$jetpack_public = (int) $registration_details->jetpack_public;
5331
		} else {
5332
			$jetpack_public = false;
5333
		}
5334
5335
		Jetpack_Options::update_options(
5336
			array(
5337
				'id'         => (int)    $registration_details->jetpack_id,
5338
				'blog_token' => (string) $registration_details->jetpack_secret,
5339
				'public'     => $jetpack_public,
5340
			)
5341
		);
5342
5343
		/**
5344
		 * Fires when a site is registered on WordPress.com.
5345
		 *
5346
		 * @since 3.7.0
5347
		 *
5348
		 * @param int $json->jetpack_id Jetpack Blog ID.
5349
		 * @param string $json->jetpack_secret Jetpack Blog Token.
5350
		 * @param int|bool $jetpack_public Is the site public.
5351
		 */
5352
		do_action( 'jetpack_site_registered', $registration_details->jetpack_id, $registration_details->jetpack_secret, $jetpack_public );
5353
5354
		// Initialize Jump Start for the first and only time.
5355
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
5356
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
5357
5358
			$jetpack = Jetpack::init();
5359
5360
			$jetpack->stat( 'jumpstart', 'unique-views' );
5361
			$jetpack->do_stats( 'server_side' );
5362
		};
5363
5364
		return true;
5365
	}
5366
5367
	/**
5368
	 * If the db version is showing something other that what we've got now, bump it to current.
5369
	 *
5370
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
5371
	 */
5372
	public static function maybe_set_version_option() {
5373
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
5374
		if ( JETPACK__VERSION != $version ) {
5375
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
5376
5377
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
5378
				/** This action is documented in class.jetpack.php */
5379
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
5380
			}
5381
5382
			return true;
5383
		}
5384
		return false;
5385
	}
5386
5387
/* Client Server API */
5388
5389
	/**
5390
	 * Loads the Jetpack XML-RPC client
5391
	 */
5392
	public static function load_xml_rpc_client() {
5393
		require_once ABSPATH . WPINC . '/class-IXR.php';
5394
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
5395
	}
5396
5397
	/**
5398
	 * Resets the saved authentication state in between testing requests.
5399
	 */
5400
	public function reset_saved_auth_state() {
5401
		$this->xmlrpc_verification = null;
5402
		$this->rest_authentication_status = null;
5403
	}
5404
5405
	function verify_xml_rpc_signature() {
5406
		if ( $this->xmlrpc_verification ) {
5407
			return $this->xmlrpc_verification;
5408
		}
5409
5410
		// It's not for us
5411
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
5412
			return false;
5413
		}
5414
5415
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
5416
		if (
5417
			empty( $token_key )
5418
		||
5419
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
5420
		) {
5421
			return false;
5422
		}
5423
5424
		if ( '0' === $user_id ) {
5425
			$token_type = 'blog';
5426
			$user_id = 0;
5427
		} else {
5428
			$token_type = 'user';
5429
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
5430
				return false;
5431
			}
5432
			$user_id = (int) $user_id;
5433
5434
			$user = new WP_User( $user_id );
5435
			if ( ! $user || ! $user->exists() ) {
5436
				return false;
5437
			}
5438
		}
5439
5440
		$token = Jetpack_Data::get_access_token( $user_id );
5441
		if ( ! $token ) {
5442
			return false;
5443
		}
5444
5445
		$token_check = "$token_key.";
5446
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
5447
			return false;
5448
		}
5449
5450
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5451
5452
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5453
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
5454
			$post_data   = $_POST;
5455
			$file_hashes = array();
5456
			foreach ( $post_data as $post_data_key => $post_data_value ) {
5457
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
5458
					continue;
5459
				}
5460
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
5461
				$file_hashes[$post_data_key] = $post_data_value;
5462
			}
5463
5464
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
5465
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
5466
				$post_data[$post_data_key] = $post_data_value;
5467
			}
5468
5469
			ksort( $post_data );
5470
5471
			$body = http_build_query( stripslashes_deep( $post_data ) );
5472
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
5473
			$body = file_get_contents( 'php://input' );
5474
		} else {
5475
			$body = null;
5476
		}
5477
5478
		$signature = $jetpack_signature->sign_current_request(
5479
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
5480
		);
5481
5482
		if ( ! $signature ) {
5483
			return false;
5484
		} else if ( is_wp_error( $signature ) ) {
5485
			return $signature;
5486
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5487
			return false;
5488
		}
5489
5490
		$timestamp = (int) $_GET['timestamp'];
5491
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5492
5493
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5494
			return false;
5495
		}
5496
5497
		// Let's see if this is onboarding. In such case, use user token type and the provided user id.
5498
		if ( isset( $this->HTTP_RAW_POST_DATA ) || ! empty( $_GET['onboarding'] ) ) {
5499
			if ( ! empty( $_GET['onboarding'] ) ) {
5500
				$jpo = $_GET;
5501
			} else {
5502
				$jpo = json_decode( $this->HTTP_RAW_POST_DATA, true );
5503
			}
5504
5505
			$jpo_token = ! empty( $jpo['onboarding']['token'] ) ? $jpo['onboarding']['token'] : null;
5506
			$jpo_user = ! empty( $jpo['onboarding']['jpUser'] ) ? $jpo['onboarding']['jpUser'] : null;
5507
5508
			if (
5509
				isset( $jpo_user ) && isset( $jpo_token ) &&
5510
				is_email( $jpo_user ) && ctype_alnum( $jpo_token ) &&
5511
				isset( $_GET['rest_route'] ) &&
5512
				self::validate_onboarding_token_action( $jpo_token, $_GET['rest_route'] )
5513
			) {
5514
				$jpUser = get_user_by( 'email', $jpo_user );
5515
				if ( is_a( $jpUser, 'WP_User' ) ) {
5516
					wp_set_current_user( $jpUser->ID );
5517
					$user_can = is_multisite()
5518
						? current_user_can_for_blog( get_current_blog_id(), 'manage_options' )
5519
						: current_user_can( 'manage_options' );
5520
					if ( $user_can ) {
5521
						$token_type = 'user';
5522
						$token->external_user_id = $jpUser->ID;
5523
					}
5524
				}
5525
			}
5526
		}
5527
5528
		$this->xmlrpc_verification = array(
5529
			'type'    => $token_type,
5530
			'user_id' => $token->external_user_id,
5531
		);
5532
5533
		return $this->xmlrpc_verification;
5534
	}
5535
5536
	/**
5537
	 * Authenticates XML-RPC and other requests from the Jetpack Server
5538
	 */
5539
	function authenticate_jetpack( $user, $username, $password ) {
5540
		if ( is_a( $user, 'WP_User' ) ) {
5541
			return $user;
5542
		}
5543
5544
		$token_details = $this->verify_xml_rpc_signature();
5545
5546
		if ( ! $token_details || is_wp_error( $token_details ) ) {
5547
			return $user;
5548
		}
5549
5550
		if ( 'user' !== $token_details['type'] ) {
5551
			return $user;
5552
		}
5553
5554
		if ( ! $token_details['user_id'] ) {
5555
			return $user;
5556
		}
5557
5558
		nocache_headers();
5559
5560
		return new WP_User( $token_details['user_id'] );
5561
	}
5562
5563
	// Authenticates requests from Jetpack server to WP REST API endpoints.
5564
	// Uses the existing XMLRPC request signing implementation.
5565
	function wp_rest_authenticate( $user ) {
5566
		if ( ! empty( $user ) ) {
5567
			// Another authentication method is in effect.
5568
			return $user;
5569
		}
5570
5571
		if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) {
5572
			// Nothing to do for this authentication method.
5573
			return null;
5574
		}
5575
5576
		if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) {
5577
			// Nothing to do for this authentication method.
5578
			return null;
5579
		}
5580
5581
		// Ensure that we always have the request body available.  At this
5582
		// point, the WP REST API code to determine the request body has not
5583
		// run yet.  That code may try to read from 'php://input' later, but
5584
		// this can only be done once per request in PHP versions prior to 5.6.
5585
		// So we will go ahead and perform this read now if needed, and save
5586
		// the request body where both the Jetpack signature verification code
5587
		// and the WP REST API code can see it.
5588
		if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) {
5589
			$GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' );
5590
		}
5591
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5592
5593
		// Only support specific request parameters that have been tested and
5594
		// are known to work with signature verification.  A different method
5595
		// can be passed to the WP REST API via the '?_method=' parameter if
5596
		// needed.
5597
		if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) {
5598
			$this->rest_authentication_status = new WP_Error(
5599
				'rest_invalid_request',
5600
				__( 'This request method is not supported.', 'jetpack' ),
5601
				array( 'status' => 400 )
5602
			);
5603
			return null;
5604
		}
5605
		if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) {
5606
			$this->rest_authentication_status = new WP_Error(
5607
				'rest_invalid_request',
5608
				__( 'This request method does not support body parameters.', 'jetpack' ),
5609
				array( 'status' => 400 )
5610
			);
5611
			return null;
5612
		}
5613
5614
		if ( ! empty( $_SERVER['CONTENT_TYPE'] ) ) {
5615
			$content_type = $_SERVER['CONTENT_TYPE'];
5616
		} elseif ( ! empty( $_SERVER['HTTP_CONTENT_TYPE'] ) ) {
5617
			$content_type = $_SERVER['HTTP_CONTENT_TYPE'];
5618
		}
5619
5620
		if (
5621
			isset( $content_type ) &&
5622
			$content_type !== 'application/x-www-form-urlencoded' &&
5623
			$content_type !== 'application/json'
5624
		) {
5625
			$this->rest_authentication_status = new WP_Error(
5626
				'rest_invalid_request',
5627
				__( 'This Content-Type is not supported.', 'jetpack' ),
5628
				array( 'status' => 400 )
5629
			);
5630
			return null;
5631
		}
5632
5633
		$verified = $this->verify_xml_rpc_signature();
5634
5635
		if ( is_wp_error( $verified ) ) {
5636
			$this->rest_authentication_status = $verified;
5637
			return null;
5638
		}
5639
5640
		if (
5641
			$verified &&
5642
			isset( $verified['type'] ) &&
5643
			'user' === $verified['type'] &&
5644
			! empty( $verified['user_id'] )
5645
		) {
5646
			// Authentication successful.
5647
			$this->rest_authentication_status = true;
5648
			return $verified['user_id'];
5649
		}
5650
5651
		// Something else went wrong.  Probably a signature error.
5652
		$this->rest_authentication_status = new WP_Error(
5653
			'rest_invalid_signature',
5654
			__( 'The request is not signed correctly.', 'jetpack' ),
5655
			array( 'status' => 400 )
5656
		);
5657
		return null;
5658
	}
5659
5660
	/**
5661
	 * Report authentication status to the WP REST API.
5662
	 *
5663
	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5664
	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5665
	 */
5666
	public function wp_rest_authentication_errors( $value ) {
5667
		if ( $value !== null ) {
5668
			return $value;
5669
		}
5670
		return $this->rest_authentication_status;
5671
	}
5672
5673
	function add_nonce( $timestamp, $nonce ) {
5674
		global $wpdb;
5675
		static $nonces_used_this_request = array();
5676
5677
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
5678
			return $nonces_used_this_request["$timestamp:$nonce"];
5679
		}
5680
5681
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
5682
		$timestamp = (int) $timestamp;
5683
		$nonce     = esc_sql( $nonce );
5684
5685
		// Raw query so we can avoid races: add_option will also update
5686
		$show_errors = $wpdb->show_errors( false );
5687
5688
		$old_nonce = $wpdb->get_row(
5689
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
5690
		);
5691
5692
		if ( is_null( $old_nonce ) ) {
5693
			$return = $wpdb->query(
5694
				$wpdb->prepare(
5695
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
5696
					"jetpack_nonce_{$timestamp}_{$nonce}",
5697
					time(),
5698
					'no'
5699
				)
5700
			);
5701
		} else {
5702
			$return = false;
5703
		}
5704
5705
		$wpdb->show_errors( $show_errors );
5706
5707
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
5708
5709
		return $return;
5710
	}
5711
5712
	/**
5713
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
5714
	 * Capture it here so we can verify the signature later.
5715
	 */
5716
	function xmlrpc_methods( $methods ) {
5717
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5718
		return $methods;
5719
	}
5720
5721
	function public_xmlrpc_methods( $methods ) {
5722
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
5723
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
5724
		}
5725
		return $methods;
5726
	}
5727
5728
	function jetpack_getOptions( $args ) {
5729
		global $wp_xmlrpc_server;
5730
5731
		$wp_xmlrpc_server->escape( $args );
5732
5733
		$username	= $args[1];
5734
		$password	= $args[2];
5735
5736
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
5737
			return $wp_xmlrpc_server->error;
5738
		}
5739
5740
		$options = array();
5741
		$user_data = $this->get_connected_user_data();
5742
		if ( is_array( $user_data ) ) {
5743
			$options['jetpack_user_id'] = array(
5744
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
5745
				'readonly'      => true,
5746
				'value'         => $user_data['ID'],
5747
			);
5748
			$options['jetpack_user_login'] = array(
5749
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
5750
				'readonly'      => true,
5751
				'value'         => $user_data['login'],
5752
			);
5753
			$options['jetpack_user_email'] = array(
5754
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
5755
				'readonly'      => true,
5756
				'value'         => $user_data['email'],
5757
			);
5758
			$options['jetpack_user_site_count'] = array(
5759
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
5760
				'readonly'      => true,
5761
				'value'         => $user_data['site_count'],
5762
			);
5763
		}
5764
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
5765
		$args = stripslashes_deep( $args );
5766
		return $wp_xmlrpc_server->wp_getOptions( $args );
5767
	}
5768
5769
	function xmlrpc_options( $options ) {
5770
		$jetpack_client_id = false;
5771
		if ( self::is_active() ) {
5772
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
5773
		}
5774
		$options['jetpack_version'] = array(
5775
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
5776
				'readonly'      => true,
5777
				'value'         => JETPACK__VERSION,
5778
		);
5779
5780
		$options['jetpack_client_id'] = array(
5781
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
5782
				'readonly'      => true,
5783
				'value'         => $jetpack_client_id,
5784
		);
5785
		return $options;
5786
	}
5787
5788
	public static function clean_nonces( $all = false ) {
5789
		global $wpdb;
5790
5791
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
5792
		$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
5793
5794
		if ( true !== $all ) {
5795
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
5796
			$sql_args[] = time() - 3600;
5797
		}
5798
5799
		$sql .= ' ORDER BY `option_id` LIMIT 100';
5800
5801
		$sql = $wpdb->prepare( $sql, $sql_args );
5802
5803
		for ( $i = 0; $i < 1000; $i++ ) {
5804
			if ( ! $wpdb->query( $sql ) ) {
5805
				break;
5806
			}
5807
		}
5808
	}
5809
5810
	/**
5811
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
5812
	 * SET: state( $key, $value );
5813
	 * GET: $value = state( $key );
5814
	 *
5815
	 * @param string $key
5816
	 * @param string $value
5817
	 * @param bool $restate private
5818
	 */
5819
	public static function state( $key = null, $value = null, $restate = false ) {
5820
		static $state = array();
5821
		static $path, $domain;
5822
		if ( ! isset( $path ) ) {
5823
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
5824
			$admin_url = Jetpack::admin_url();
5825
			$bits      = parse_url( $admin_url );
5826
5827
			if ( is_array( $bits ) ) {
5828
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
5829
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
5830
			} else {
5831
				$path = $domain = null;
5832
			}
5833
		}
5834
5835
		// Extract state from cookies and delete cookies
5836
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
5837
			$yum = $_COOKIE[ 'jetpackState' ];
5838
			unset( $_COOKIE[ 'jetpackState' ] );
5839
			foreach ( $yum as $k => $v ) {
5840
				if ( strlen( $v ) )
5841
					$state[ $k ] = $v;
5842
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
5843
			}
5844
		}
5845
5846
		if ( $restate ) {
5847
			foreach ( $state as $k => $v ) {
5848
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
5849
			}
5850
			return;
5851
		}
5852
5853
		// Get a state variable
5854
		if ( isset( $key ) && ! isset( $value ) ) {
5855
			if ( array_key_exists( $key, $state ) )
5856
				return $state[ $key ];
5857
			return null;
5858
		}
5859
5860
		// Set a state variable
5861
		if ( isset ( $key ) && isset( $value ) ) {
5862
			if( is_array( $value ) && isset( $value[0] ) ) {
5863
				$value = $value[0];
5864
			}
5865
			$state[ $key ] = $value;
5866
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
5867
		}
5868
	}
5869
5870
	public static function restate() {
5871
		Jetpack::state( null, null, true );
5872
	}
5873
5874
	public static function check_privacy( $file ) {
5875
		static $is_site_publicly_accessible = null;
5876
5877
		if ( is_null( $is_site_publicly_accessible ) ) {
5878
			$is_site_publicly_accessible = false;
5879
5880
			Jetpack::load_xml_rpc_client();
5881
			$rpc = new Jetpack_IXR_Client();
5882
5883
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
5884
			if ( $success ) {
5885
				$response = $rpc->getResponse();
5886
				if ( $response ) {
5887
					$is_site_publicly_accessible = true;
5888
				}
5889
			}
5890
5891
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
5892
		}
5893
5894
		if ( $is_site_publicly_accessible ) {
5895
			return;
5896
		}
5897
5898
		$module_slug = self::get_module_slug( $file );
5899
5900
		$privacy_checks = Jetpack::state( 'privacy_checks' );
5901
		if ( ! $privacy_checks ) {
5902
			$privacy_checks = $module_slug;
5903
		} else {
5904
			$privacy_checks .= ",$module_slug";
5905
		}
5906
5907
		Jetpack::state( 'privacy_checks', $privacy_checks );
5908
	}
5909
5910
	/**
5911
	 * Helper method for multicall XMLRPC.
5912
	 */
5913
	public static function xmlrpc_async_call() {
5914
		global $blog_id;
5915
		static $clients = array();
5916
5917
		$client_blog_id = is_multisite() ? $blog_id : 0;
5918
5919
		if ( ! isset( $clients[$client_blog_id] ) ) {
5920
			Jetpack::load_xml_rpc_client();
5921
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
5922
			if ( function_exists( 'ignore_user_abort' ) ) {
5923
				ignore_user_abort( true );
5924
			}
5925
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
5926
		}
5927
5928
		$args = func_get_args();
5929
5930
		if ( ! empty( $args[0] ) ) {
5931
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
5932
		} elseif ( is_multisite() ) {
5933
			foreach ( $clients as $client_blog_id => $client ) {
5934
				if ( ! $client_blog_id || empty( $client->calls ) ) {
5935
					continue;
5936
				}
5937
5938
				$switch_success = switch_to_blog( $client_blog_id, true );
5939
				if ( ! $switch_success ) {
5940
					continue;
5941
				}
5942
5943
				flush();
5944
				$client->query();
5945
5946
				restore_current_blog();
5947
			}
5948
		} else {
5949
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
5950
				flush();
5951
				$clients[0]->query();
5952
			}
5953
		}
5954
	}
5955
5956
	public static function staticize_subdomain( $url ) {
5957
5958
		// Extract hostname from URL
5959
		$host = parse_url( $url, PHP_URL_HOST );
5960
5961
		// Explode hostname on '.'
5962
		$exploded_host = explode( '.', $host );
5963
5964
		// Retrieve the name and TLD
5965
		if ( count( $exploded_host ) > 1 ) {
5966
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
5967
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
5968
			// Rebuild domain excluding subdomains
5969
			$domain = $name . '.' . $tld;
5970
		} else {
5971
			$domain = $host;
5972
		}
5973
		// Array of Automattic domains
5974
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
5975
5976
		// Return $url if not an Automattic domain
5977
		if ( ! in_array( $domain, $domain_whitelist ) ) {
5978
			return $url;
5979
		}
5980
5981
		if ( is_ssl() ) {
5982
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
5983
		}
5984
5985
		srand( crc32( basename( $url ) ) );
5986
		$static_counter = rand( 0, 2 );
5987
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
5988
5989
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
5990
	}
5991
5992
/* JSON API Authorization */
5993
5994
	/**
5995
	 * Handles the login action for Authorizing the JSON API
5996
	 */
5997
	function login_form_json_api_authorization() {
5998
		$this->verify_json_api_authorization_request();
5999
6000
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
6001
6002
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
6003
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
6004
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
6005
	}
6006
6007
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
6008
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
6009
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
6010
			return $url;
6011
		}
6012
6013
		$parsed_url = parse_url( $url );
6014
		$url = strtok( $url, '?' );
6015
		$url = "$url?{$_SERVER['QUERY_STRING']}";
6016
		if ( ! empty( $parsed_url['query'] ) )
6017
			$url .= "&{$parsed_url['query']}";
6018
6019
		return $url;
6020
	}
6021
6022
	// Make sure the POSTed request is handled by the same action
6023
	function preserve_action_in_login_form_for_json_api_authorization() {
6024
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
6025
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
6026
	}
6027
6028
	// If someone logs in to approve API access, store the Access Code in usermeta
6029
	function store_json_api_authorization_token( $user_login, $user ) {
6030
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
6031
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
6032
		$token = wp_generate_password( 32, false );
6033
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
6034
	}
6035
6036
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
6037
	function allow_wpcom_public_api_domain( $domains ) {
6038
		$domains[] = 'public-api.wordpress.com';
6039
		return $domains;
6040
	}
6041
6042
	// Add all wordpress.com environments to the safe redirect whitelist
6043
	function allow_wpcom_environments( $domains ) {
6044
		$domains[] = 'wordpress.com';
6045
		$domains[] = 'wpcalypso.wordpress.com';
6046
		$domains[] = 'horizon.wordpress.com';
6047
		$domains[] = 'calypso.localhost';
6048
		return $domains;
6049
	}
6050
6051
	// Add the Access Code details to the public-api.wordpress.com redirect
6052
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
6053
		return add_query_arg(
6054
			urlencode_deep(
6055
				array(
6056
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
6057
					'jetpack-user-id' => (int) $user->ID,
6058
					'jetpack-state'   => $this->json_api_authorization_request['state'],
6059
				)
6060
			),
6061
			$redirect_to
6062
		);
6063
	}
6064
6065
6066
	/**
6067
	 * Verifies the request by checking the signature
6068
	 *
6069
	 * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow
6070
	 * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO.
6071
	 *
6072
	 * @param null|array $environment
6073
	 */
6074
	function verify_json_api_authorization_request( $environment = null ) {
6075
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
6076
6077
		$environment = is_null( $environment )
6078
			? $_REQUEST
6079
			: $environment;
6080
6081
		list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] );
6082
		$token = Jetpack_Data::get_access_token( $envUserId );
6083
		if ( ! $token || empty( $token->secret ) ) {
6084
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
6085
		}
6086
6087
		$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' );
6088
6089
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
6090
6091
		if ( isset( $environment['jetpack_json_api_original_query'] ) ) {
6092
			$signature = $jetpack_signature->sign_request(
6093
				$environment['token'],
6094
				$environment['timestamp'],
6095
				$environment['nonce'],
6096
				'',
6097
				'GET',
6098
				$environment['jetpack_json_api_original_query'],
6099
				null,
6100
				true
6101
			);
6102
		} else {
6103
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
6104
		}
6105
6106
		if ( ! $signature ) {
6107
			wp_die( $die_error );
6108
		} else if ( is_wp_error( $signature ) ) {
6109
			wp_die( $die_error );
6110
		} else if ( ! hash_equals( $signature, $environment['signature'] ) ) {
6111
			if ( is_ssl() ) {
6112
				// 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
6113
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
6114
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) {
6115
					wp_die( $die_error );
6116
				}
6117
			} else {
6118
				wp_die( $die_error );
6119
			}
6120
		}
6121
6122
		$timestamp = (int) $environment['timestamp'];
6123
		$nonce     = stripslashes( (string) $environment['nonce'] );
6124
6125
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
6126
			// De-nonce the nonce, at least for 5 minutes.
6127
			// 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)
6128
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
6129
			if ( $old_nonce_time < time() - 300 ) {
6130
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
6131
			}
6132
		}
6133
6134
		$data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) );
6135
		$data_filters = array(
6136
			'state'        => 'opaque',
6137
			'client_id'    => 'int',
6138
			'client_title' => 'string',
6139
			'client_image' => 'url',
6140
		);
6141
6142
		foreach ( $data_filters as $key => $sanitation ) {
6143
			if ( ! isset( $data->$key ) ) {
6144
				wp_die( $die_error );
6145
			}
6146
6147
			switch ( $sanitation ) {
6148
			case 'int' :
6149
				$this->json_api_authorization_request[$key] = (int) $data->$key;
6150
				break;
6151
			case 'opaque' :
6152
				$this->json_api_authorization_request[$key] = (string) $data->$key;
6153
				break;
6154
			case 'string' :
6155
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
6156
				break;
6157
			case 'url' :
6158
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
6159
				break;
6160
			}
6161
		}
6162
6163
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
6164
			wp_die( $die_error );
6165
		}
6166
	}
6167
6168
	function login_message_json_api_authorization( $message ) {
6169
		return '<p class="message">' . sprintf(
6170
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
6171
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
6172
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
6173
	}
6174
6175
	/**
6176
	 * Get $content_width, but with a <s>twist</s> filter.
6177
	 */
6178
	public static function get_content_width() {
6179
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
6180
		/**
6181
		 * Filter the Content Width value.
6182
		 *
6183
		 * @since 2.2.3
6184
		 *
6185
		 * @param string $content_width Content Width value.
6186
		 */
6187
		return apply_filters( 'jetpack_content_width', $content_width );
6188
	}
6189
6190
	/**
6191
	 * Pings the WordPress.com Mirror Site for the specified options.
6192
	 *
6193
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
6194
	 *
6195
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
6196
	 */
6197
	public function get_cloud_site_options( $option_names ) {
6198
		$option_names = array_filter( (array) $option_names, 'is_string' );
6199
6200
		Jetpack::load_xml_rpc_client();
6201
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
6202
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
6203
		if ( $xml->isError() ) {
6204
			return array(
6205
				'error_code' => $xml->getErrorCode(),
6206
				'error_msg'  => $xml->getErrorMessage(),
6207
			);
6208
		}
6209
		$cloud_site_options = $xml->getResponse();
6210
6211
		return $cloud_site_options;
6212
	}
6213
6214
	/**
6215
	 * Checks if the site is currently in an identity crisis.
6216
	 *
6217
	 * @return array|bool Array of options that are in a crisis, or false if everything is OK.
6218
	 */
6219
	public static function check_identity_crisis() {
6220
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) {
6221
			return false;
6222
		}
6223
6224
		return Jetpack_Options::get_option( 'sync_error_idc' );
6225
	}
6226
6227
	/**
6228
	 * Checks whether the home and siteurl specifically are whitelisted
6229
	 * Written so that we don't have re-check $key and $value params every time
6230
	 * we want to check if this site is whitelisted, for example in footer.php
6231
	 *
6232
	 * @since  3.8.0
6233
	 * @return bool True = already whitelisted False = not whitelisted
6234
	 */
6235
	public static function is_staging_site() {
6236
		$is_staging = false;
6237
6238
		$known_staging = array(
6239
			'urls' => array(
6240
				'#\.staging\.wpengine\.com$#i', // WP Engine
6241
				'#\.staging\.kinsta\.com$#i',   // Kinsta.com
6242
				),
6243
			'constants' => array(
6244
				'IS_WPE_SNAPSHOT',      // WP Engine
6245
				'KINSTA_DEV_ENV',       // Kinsta.com
6246
				'WPSTAGECOACH_STAGING', // WP Stagecoach
6247
				'JETPACK_STAGING_MODE', // Generic
6248
				)
6249
			);
6250
		/**
6251
		 * Filters the flags of known staging sites.
6252
		 *
6253
		 * @since 3.9.0
6254
		 *
6255
		 * @param array $known_staging {
6256
		 *     An array of arrays that each are used to check if the current site is staging.
6257
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
6258
		 *     @type array $constants PHP constants of known staging/developement environments.
6259
		 *  }
6260
		 */
6261
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
6262
6263
		if ( isset( $known_staging['urls'] ) ) {
6264
			foreach ( $known_staging['urls'] as $url ){
6265
				if ( preg_match( $url, site_url() ) ) {
6266
					$is_staging = true;
6267
					break;
6268
				}
6269
			}
6270
		}
6271
6272
		if ( isset( $known_staging['constants'] ) ) {
6273
			foreach ( $known_staging['constants'] as $constant ) {
6274
				if ( defined( $constant ) && constant( $constant ) ) {
6275
					$is_staging = true;
6276
				}
6277
			}
6278
		}
6279
6280
		// Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode.
6281
		if ( ! $is_staging && self::validate_sync_error_idc_option() ) {
6282
			$is_staging = true;
6283
		}
6284
6285
		/**
6286
		 * Filters is_staging_site check.
6287
		 *
6288
		 * @since 3.9.0
6289
		 *
6290
		 * @param bool $is_staging If the current site is a staging site.
6291
		 */
6292
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
6293
	}
6294
6295
	/**
6296
	 * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup.
6297
	 *
6298
	 * @since 4.4.0
6299
	 * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC
6300
	 *
6301
	 * @return bool
6302
	 */
6303
	public static function validate_sync_error_idc_option() {
6304
		$is_valid = false;
6305
6306
		$idc_allowed = get_transient( 'jetpack_idc_allowed' );
6307
		if ( false === $idc_allowed ) {
6308
			$response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' );
6309
			if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) {
6310
				$json = json_decode( wp_remote_retrieve_body( $response ) );
6311
				$idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0';
6312
				$transient_duration = HOUR_IN_SECONDS;
6313
			} else {
6314
				// If the request failed for some reason, then assume IDC is allowed and set shorter transient.
6315
				$idc_allowed = '1';
6316
				$transient_duration = 5 * MINUTE_IN_SECONDS;
6317
			}
6318
6319
			set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration );
6320
		}
6321
6322
		// Is the site opted in and does the stored sync_error_idc option match what we now generate?
6323
		$sync_error = Jetpack_Options::get_option( 'sync_error_idc' );
6324
		if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) {
6325
			$local_options = self::get_sync_error_idc_option();
6326
			if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) {
6327
				$is_valid = true;
6328
			}
6329
		}
6330
6331
		/**
6332
		 * Filters whether the sync_error_idc option is valid.
6333
		 *
6334
		 * @since 4.4.0
6335
		 *
6336
		 * @param bool $is_valid If the sync_error_idc is valid or not.
6337
		 */
6338
		$is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid );
6339
6340
		if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) {
6341
			// Since the option exists, and did not validate, delete it
6342
			Jetpack_Options::delete_option( 'sync_error_idc' );
6343
		}
6344
6345
		return $is_valid;
6346
	}
6347
6348
	/**
6349
	 * Normalizes a url by doing three things:
6350
	 *  - Strips protocol
6351
	 *  - Strips www
6352
	 *  - Adds a trailing slash
6353
	 *
6354
	 * @since 4.4.0
6355
	 * @param string $url
6356
	 * @return WP_Error|string
6357
	 */
6358
	public static function normalize_url_protocol_agnostic( $url ) {
6359
		$parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) );
6360
		if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) {
6361
			return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) );
6362
		}
6363
6364
		// Strip www and protocols
6365
		$url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] );
6366
		return $url;
6367
	}
6368
6369
	/**
6370
	 * Gets the value that is to be saved in the jetpack_sync_error_idc option.
6371
	 *
6372
	 * @since 4.4.0
6373
	 * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB
6374
	 *
6375
	 * @param array $response
6376
	 * @return array Array of the local urls, wpcom urls, and error code
6377
	 */
6378
	public static function get_sync_error_idc_option( $response = array() ) {
6379
		// Since the local options will hit the database directly, store the values
6380
		// in a transient to allow for autoloading and caching on subsequent views.
6381
		$local_options = get_transient( 'jetpack_idc_local' );
6382
		if ( false === $local_options ) {
6383
			require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-functions.php';
6384
			$local_options = array(
6385
				'home'    => Jetpack_Sync_Functions::home_url(),
6386
				'siteurl' => Jetpack_Sync_Functions::site_url(),
6387
			);
6388
			set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS );
6389
		}
6390
6391
		$options = array_merge( $local_options, $response );
6392
6393
		$returned_values = array();
6394
		foreach( $options as $key => $option ) {
6395
			if ( 'error_code' === $key ) {
6396
				$returned_values[ $key ] = $option;
6397
				continue;
6398
			}
6399
6400
			if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) {
6401
				continue;
6402
			}
6403
6404
			$returned_values[ $key ] = $normalized_url;
6405
		}
6406
6407
		set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS );
6408
6409
		return $returned_values;
6410
	}
6411
6412
	/**
6413
	 * Returns the value of the jetpack_sync_idc_optin filter, or constant.
6414
	 * If set to true, the site will be put into staging mode.
6415
	 *
6416
	 * @since 4.3.2
6417
	 * @return bool
6418
	 */
6419
	public static function sync_idc_optin() {
6420
		if ( Jetpack_Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) {
6421
			$default = Jetpack_Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' );
6422
		} else {
6423
			$default = ! Jetpack_Constants::is_defined( 'SUNRISE' ) && ! is_multisite();
6424
		}
6425
6426
		/**
6427
		 * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home
6428
		 * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of
6429
		 * JETPACK_SYNC_IDC_OPTIN constant if set.
6430
		 *
6431
		 * @since 4.3.2
6432
		 *
6433
		 * @param bool $default Whether the site is opted in to IDC mitigation.
6434
		 */
6435
		return (bool) apply_filters( 'jetpack_sync_idc_optin', $default );
6436
	}
6437
6438
	/**
6439
	 * Maybe Use a .min.css stylesheet, maybe not.
6440
	 *
6441
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
6442
	 */
6443
	public static function maybe_min_asset( $url, $path, $plugin ) {
6444
		// Short out on things trying to find actual paths.
6445
		if ( ! $path || empty( $plugin ) ) {
6446
			return $url;
6447
		}
6448
6449
		$path = ltrim( $path, '/' );
6450
6451
		// Strip out the abspath.
6452
		$base = dirname( plugin_basename( $plugin ) );
6453
6454
		// Short out on non-Jetpack assets.
6455
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
6456
			return $url;
6457
		}
6458
6459
		// File name parsing.
6460
		$file              = "{$base}/{$path}";
6461
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
6462
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
6463
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
6464
		$extension         = array_shift( $file_name_parts_r );
6465
6466
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
6467
			// Already pointing at the minified version.
6468
			if ( 'min' === $file_name_parts_r[0] ) {
6469
				return $url;
6470
			}
6471
6472
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
6473
			if ( file_exists( $min_full_path ) ) {
6474
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
6475
				// If it's a CSS file, stash it so we can set the .min suffix for rtl-ing.
6476
				if ( 'css' === $extension ) {
6477
					$key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path );
6478
					self::$min_assets[ $key ] = $path;
6479
				}
6480
			}
6481
		}
6482
6483
		return $url;
6484
	}
6485
6486
	/**
6487
	 * If the asset is minified, let's flag .min as the suffix.
6488
	 *
6489
	 * Attached to `style_loader_src` filter.
6490
	 *
6491
	 * @param string $tag The tag that would link to the external asset.
6492
	 * @param string $handle The registered handle of the script in question.
6493
	 * @param string $href The url of the asset in question.
6494
	 */
6495
	public static function set_suffix_on_min( $src, $handle ) {
6496
		if ( false === strpos( $src, '.min.css' ) ) {
6497
			return $src;
6498
		}
6499
6500
		if ( ! empty( self::$min_assets ) ) {
6501
			foreach ( self::$min_assets as $file => $path ) {
6502
				if ( false !== strpos( $src, $file ) ) {
6503
					wp_style_add_data( $handle, 'suffix', '.min' );
6504
					return $src;
6505
				}
6506
			}
6507
		}
6508
6509
		return $src;
6510
	}
6511
6512
	/**
6513
	 * Maybe inlines a stylesheet.
6514
	 *
6515
	 * If you'd like to inline a stylesheet instead of printing a link to it,
6516
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
6517
	 *
6518
	 * Attached to `style_loader_tag` filter.
6519
	 *
6520
	 * @param string $tag The tag that would link to the external asset.
6521
	 * @param string $handle The registered handle of the script in question.
6522
	 *
6523
	 * @return string
6524
	 */
6525
	public static function maybe_inline_style( $tag, $handle ) {
6526
		global $wp_styles;
6527
		$item = $wp_styles->registered[ $handle ];
6528
6529
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
6530
			return $tag;
6531
		}
6532
6533
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
6534
			$href = $matches[1];
6535
			// Strip off query string
6536
			if ( $pos = strpos( $href, '?' ) ) {
6537
				$href = substr( $href, 0, $pos );
6538
			}
6539
			// Strip off fragment
6540
			if ( $pos = strpos( $href, '#' ) ) {
6541
				$href = substr( $href, 0, $pos );
6542
			}
6543
		} else {
6544
			return $tag;
6545
		}
6546
6547
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
6548
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
6549
			return $tag;
6550
		}
6551
6552
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
6553
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
6554
			// And this isn't the pass that actually deals with the RTL version...
6555
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
6556
				// Short out, as the RTL version will deal with it in a moment.
6557
				return $tag;
6558
			}
6559
		}
6560
6561
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
6562
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
6563
		if ( $css ) {
6564
			$tag = "<!-- Inline {$item->handle} -->\r\n";
6565
			if ( empty( $item->extra['after'] ) ) {
6566
				wp_add_inline_style( $handle, $css );
6567
			} else {
6568
				array_unshift( $item->extra['after'], $css );
6569
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
6570
			}
6571
		}
6572
6573
		return $tag;
6574
	}
6575
6576
	/**
6577
	 * Loads a view file from the views
6578
	 *
6579
	 * Data passed in with the $data parameter will be available in the
6580
	 * template file as $data['value']
6581
	 *
6582
	 * @param string $template - Template file to load
6583
	 * @param array $data - Any data to pass along to the template
6584
	 * @return boolean - If template file was found
6585
	 **/
6586
	public function load_view( $template, $data = array() ) {
6587
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
6588
6589
		if( file_exists( $views_dir . $template ) ) {
6590
			require_once( $views_dir . $template );
6591
			return true;
6592
		}
6593
6594
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
6595
		return false;
6596
	}
6597
6598
	/**
6599
	 * Throws warnings for deprecated hooks to be removed from Jetpack
6600
	 */
6601
	public function deprecated_hooks() {
6602
		global $wp_filter;
6603
6604
		/*
6605
		 * Format:
6606
		 * deprecated_filter_name => replacement_name
6607
		 *
6608
		 * If there is no replacement, use null for replacement_name
6609
		 */
6610
		$deprecated_list = array(
6611
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
6612
			'wpl_sharing_2014_1'                                     => null,
6613
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
6614
			'jetpack_identity_crisis_options_to_check'               => null,
6615
			'update_option_jetpack_single_user_site'                 => null,
6616
			'audio_player_default_colors'                            => null,
6617
			'add_option_jetpack_featured_images_enabled'             => null,
6618
			'add_option_jetpack_update_details'                      => null,
6619
			'add_option_jetpack_updates'                             => null,
6620
			'add_option_jetpack_network_name'                        => null,
6621
			'add_option_jetpack_network_allow_new_registrations'     => null,
6622
			'add_option_jetpack_network_add_new_users'               => null,
6623
			'add_option_jetpack_network_site_upload_space'           => null,
6624
			'add_option_jetpack_network_upload_file_types'           => null,
6625
			'add_option_jetpack_network_enable_administration_menus' => null,
6626
			'add_option_jetpack_is_multi_site'                       => null,
6627
			'add_option_jetpack_is_main_network'                     => null,
6628
			'add_option_jetpack_main_network_site'                   => null,
6629
			'jetpack_sync_all_registered_options'                    => null,
6630
			'jetpack_has_identity_crisis'                            => 'jetpack_sync_error_idc_validation',
6631
			'jetpack_is_post_mailable'                               => null,
6632
			'jetpack_seo_site_host'                                  => null,
6633
			'jetpack_installed_plugin'                               => 'jetpack_plugin_installed',
6634
			'jetpack_holiday_snow_option_name'                       => null,
6635
			'jetpack_holiday_chance_of_snow'                         => null,
6636
			'jetpack_holiday_snow_js_url'                            => null,
6637
			'jetpack_is_holiday_snow_season'                         => null,
6638
			'jetpack_holiday_snow_option_updated'                    => null,
6639
			'jetpack_holiday_snowing'                                => null,
6640
			'jetpack_sso_auth_cookie_expirtation'                    => 'jetpack_sso_auth_cookie_expiration',
6641
			'jetpack_cache_plans'                                    => null,
6642
			'jetpack_updated_theme'                                  => 'jetpack_updated_themes',
6643
			'jetpack_lazy_images_skip_image_with_atttributes'        => 'jetpack_lazy_images_skip_image_with_attributes',
6644
			'jetpack_enable_site_verification'                       => null,
6645
		);
6646
6647
		// This is a silly loop depth. Better way?
6648
		foreach( $deprecated_list AS $hook => $hook_alt ) {
6649
			if ( has_action( $hook ) ) {
6650
				foreach( $wp_filter[ $hook ] AS $func => $values ) {
6651
					foreach( $values AS $hooked ) {
6652
						if ( is_callable( $hooked['function'] ) ) {
6653
							$function_name = 'an anonymous function';
6654
						} else {
6655
							$function_name = $hooked['function'];
6656
						}
6657
						_deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt );
6658
					}
6659
				}
6660
			}
6661
		}
6662
	}
6663
6664
	/**
6665
	 * Converts any url in a stylesheet, to the correct absolute url.
6666
	 *
6667
	 * Considerations:
6668
	 *  - Normal, relative URLs     `feh.png`
6669
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
6670
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
6671
	 *  - Absolute URLs             `http://domain.com/feh.png`
6672
	 *  - Domain root relative URLs `/feh.png`
6673
	 *
6674
	 * @param $css string: The raw CSS -- should be read in directly from the file.
6675
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6676
	 *
6677
	 * @return mixed|string
6678
	 */
6679
	public static function absolutize_css_urls( $css, $css_file_url ) {
6680
		$pattern = '#url\((?P<path>[^)]*)\)#i';
6681
		$css_dir = dirname( $css_file_url );
6682
		$p       = parse_url( $css_dir );
6683
		$domain  = sprintf(
6684
					'%1$s//%2$s%3$s%4$s',
6685
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
6686
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
6687
					$p['host'],
6688
					isset( $p['port'] )             ? ":{$p['port']}" : ''
6689
				);
6690
6691
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
6692
			$find = $replace = array();
6693
			foreach ( $matches as $match ) {
6694
				$url = trim( $match['path'], "'\" \t" );
6695
6696
				// If this is a data url, we don't want to mess with it.
6697
				if ( 'data:' === substr( $url, 0, 5 ) ) {
6698
					continue;
6699
				}
6700
6701
				// If this is an absolute or protocol-agnostic url,
6702
				// we don't want to mess with it.
6703
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
6704
					continue;
6705
				}
6706
6707
				switch ( substr( $url, 0, 1 ) ) {
6708
					case '/':
6709
						$absolute = $domain . $url;
6710
						break;
6711
					default:
6712
						$absolute = $css_dir . '/' . $url;
6713
				}
6714
6715
				$find[]    = $match[0];
6716
				$replace[] = sprintf( 'url("%s")', $absolute );
6717
			}
6718
			$css = str_replace( $find, $replace, $css );
6719
		}
6720
6721
		return $css;
6722
	}
6723
6724
	/**
6725
	 * This methods removes all of the registered css files on the front end
6726
	 * from Jetpack in favor of using a single file. In effect "imploding"
6727
	 * all the files into one file.
6728
	 *
6729
	 * Pros:
6730
	 * - Uses only ONE css asset connection instead of 15
6731
	 * - Saves a minimum of 56k
6732
	 * - Reduces server load
6733
	 * - Reduces time to first painted byte
6734
	 *
6735
	 * Cons:
6736
	 * - Loads css for ALL modules. However all selectors are prefixed so it
6737
	 *		should not cause any issues with themes.
6738
	 * - Plugins/themes dequeuing styles no longer do anything. See
6739
	 *		jetpack_implode_frontend_css filter for a workaround
6740
	 *
6741
	 * For some situations developers may wish to disable css imploding and
6742
	 * instead operate in legacy mode where each file loads seperately and
6743
	 * can be edited individually or dequeued. This can be accomplished with
6744
	 * the following line:
6745
	 *
6746
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6747
	 *
6748
	 * @since 3.2
6749
	 **/
6750
	public function implode_frontend_css( $travis_test = false ) {
6751
		$do_implode = true;
6752
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6753
			$do_implode = false;
6754
		}
6755
6756
		/**
6757
		 * Allow CSS to be concatenated into a single jetpack.css file.
6758
		 *
6759
		 * @since 3.2.0
6760
		 *
6761
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
6762
		 */
6763
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6764
6765
		// Do not use the imploded file when default behaviour was altered through the filter
6766
		if ( ! $do_implode ) {
6767
			return;
6768
		}
6769
6770
		// We do not want to use the imploded file in dev mode, or if not connected
6771
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
6772
			if ( ! $travis_test ) {
6773
				return;
6774
			}
6775
		}
6776
6777
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
6778
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
6779
			return;
6780
		}
6781
6782
		/*
6783
		 * Now we assume Jetpack is connected and able to serve the single
6784
		 * file.
6785
		 *
6786
		 * In the future there will be a check here to serve the file locally
6787
		 * or potentially from the Jetpack CDN
6788
		 *
6789
		 * For now:
6790
		 * - Enqueue a single imploded css file
6791
		 * - Zero out the style_loader_tag for the bundled ones
6792
		 * - Be happy, drink scotch
6793
		 */
6794
6795
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6796
6797
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6798
6799
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6800
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6801
	}
6802
6803
	function concat_remove_style_loader_tag( $tag, $handle ) {
6804
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
6805
			$tag = '';
6806
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6807
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6808
			}
6809
		}
6810
6811
		return $tag;
6812
	}
6813
6814
	/*
6815
	 * Check the heartbeat data
6816
	 *
6817
	 * Organizes the heartbeat data by severity.  For example, if the site
6818
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
6819
	 *
6820
	 * Data will be added to "caution" array, if it either:
6821
	 *  - Out of date Jetpack version
6822
	 *  - Out of date WP version
6823
	 *  - Out of date PHP version
6824
	 *
6825
	 * $return array $filtered_data
6826
	 */
6827
	public static function jetpack_check_heartbeat_data() {
6828
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
6829
6830
		$good    = array();
6831
		$caution = array();
6832
		$bad     = array();
6833
6834
		foreach ( $raw_data as $stat => $value ) {
6835
6836
			// Check jetpack version
6837
			if ( 'version' == $stat ) {
6838
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
6839
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
6840
					continue;
6841
				}
6842
			}
6843
6844
			// Check WP version
6845
			if ( 'wp-version' == $stat ) {
6846
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
6847
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
6848
					continue;
6849
				}
6850
			}
6851
6852
			// Check PHP version
6853
			if ( 'php-version' == $stat ) {
6854
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
6855
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
6856
					continue;
6857
				}
6858
			}
6859
6860
			// Check ID crisis
6861
			if ( 'identitycrisis' == $stat ) {
6862
				if ( 'yes' == $value ) {
6863
					$bad[ $stat ] = $value;
6864
					continue;
6865
				}
6866
			}
6867
6868
			// The rest are good :)
6869
			$good[ $stat ] = $value;
6870
		}
6871
6872
		$filtered_data = array(
6873
			'good'    => $good,
6874
			'caution' => $caution,
6875
			'bad'     => $bad
6876
		);
6877
6878
		return $filtered_data;
6879
	}
6880
6881
6882
	/*
6883
	 * This method is used to organize all options that can be reset
6884
	 * without disconnecting Jetpack.
6885
	 *
6886
	 * It is used in class.jetpack-cli.php to reset options
6887
	 *
6888
	 * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat.
6889
	 *
6890
	 * @return array of options to delete.
6891
	 */
6892
	public static function get_jetpack_options_for_reset() {
6893
		return Jetpack_Options::get_options_for_reset();
6894
	}
6895
6896
	/**
6897
	 * Check if an option of a Jetpack module has been updated.
6898
	 *
6899
	 * If any module option has been updated before Jump Start has been dismissed,
6900
	 * update the 'jumpstart' option so we can hide Jump Start.
6901
	 *
6902
	 * @param string $option_name
6903
	 *
6904
	 * @return bool
6905
	 */
6906
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6907
		// Bail if Jump Start has already been dismissed
6908
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
6909
			return false;
6910
		}
6911
6912
		$jetpack = Jetpack::init();
6913
6914
		// Manual build of module options
6915
		$option_names = self::get_jetpack_options_for_reset();
6916
6917
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6918
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6919
6920
			//Jump start is being dismissed send data to MC Stats
6921
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6922
6923
			$jetpack->do_stats( 'server_side' );
6924
		}
6925
6926
	}
6927
6928
	/*
6929
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6930
	 * so we can bring them directly to their site in calypso.
6931
	 *
6932
	 * @param string | url
6933
	 * @return string | url without the guff
6934
	 */
6935
	public static function build_raw_urls( $url ) {
6936
		$strip_http = '/.*?:\/\//i';
6937
		$url = preg_replace( $strip_http, '', $url  );
6938
		$url = str_replace( '/', '::', $url );
6939
		return $url;
6940
	}
6941
6942
	/**
6943
	 * Stores and prints out domains to prefetch for page speed optimization.
6944
	 *
6945
	 * @param mixed $new_urls
6946
	 */
6947
	public static function dns_prefetch( $new_urls = null ) {
6948
		static $prefetch_urls = array();
6949
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6950
			echo "\r\n";
6951
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6952
				printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) );
6953
			}
6954
		} elseif ( ! empty( $new_urls ) ) {
6955
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6956
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6957
			}
6958
			foreach ( (array) $new_urls as $this_new_url ) {
6959
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6960
			}
6961
			$prefetch_urls = array_unique( $prefetch_urls );
6962
		}
6963
	}
6964
6965
	public function wp_dashboard_setup() {
6966
		if ( self::is_active() ) {
6967
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6968
		}
6969
6970
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6971
			wp_add_dashboard_widget(
6972
				'jetpack_summary_widget',
6973
				esc_html__( 'Site Stats', 'jetpack' ),
6974
				array( __CLASS__, 'dashboard_widget' )
6975
			);
6976
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6977
6978
			// If we're inactive and not in development mode, sort our box to the top.
6979
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6980
				global $wp_meta_boxes;
6981
6982
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6983
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6984
6985
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6986
			}
6987
		}
6988
	}
6989
6990
	/**
6991
	 * @param mixed $result Value for the user's option
6992
	 * @return mixed
6993
	 */
6994
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6995
		if ( ! is_array( $sorted ) ) {
6996
			return $sorted;
6997
		}
6998
6999
		foreach ( $sorted as $box_context => $ids ) {
7000
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
7001
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
7002
				continue;
7003
			}
7004
7005
			$ids_array = explode( ',', $ids );
7006
			$key = array_search( 'dashboard_stats', $ids_array );
7007
7008
			if ( false !== $key ) {
7009
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
7010
				$ids_array[ $key ] = 'jetpack_summary_widget';
7011
				$sorted[ $box_context ] = implode( ',', $ids_array );
7012
				// We've found it, stop searching, and just return.
7013
				break;
7014
			}
7015
		}
7016
7017
		return $sorted;
7018
	}
7019
7020
	public static function dashboard_widget() {
7021
		/**
7022
		 * Fires when the dashboard is loaded.
7023
		 *
7024
		 * @since 3.4.0
7025
		 */
7026
		do_action( 'jetpack_dashboard_widget' );
7027
	}
7028
7029
	public static function dashboard_widget_footer() {
7030
		?>
7031
		<footer>
7032
7033
		<div class="protect">
7034
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
7035
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
7036
				<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>
7037
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
7038
				<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' ); ?>">
7039
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
7040
				</a>
7041
			<?php else : ?>
7042
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
7043
			<?php endif; ?>
7044
		</div>
7045
7046
		<div class="akismet">
7047
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
7048
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
7049
				<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>
7050
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
7051
				<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">
7052
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
7053
				</a>
7054
			<?php else : ?>
7055
				<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>
7056
			<?php endif; ?>
7057
		</div>
7058
7059
		</footer>
7060
		<?php
7061
	}
7062
7063
	/**
7064
	 * Return string containing the Jetpack logo.
7065
	 *
7066
	 * @since 3.9.0
7067
	 *
7068
	 * @return string
7069
	 */
7070
	public static function get_jp_emblem() {
7071
		return '<svg id="jetpack-logo__icon" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 32 32"><path fill="#00BE28" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16c8.8,0,16-7.2,16-16S24.8,0,16,0z M15.2,18.7h-8l8-15.5V18.7z M16.8,28.8 V13.3h8L16.8,28.8z"/></svg>';
7072
	}
7073
7074
	/*
7075
	 * Adds a "blank" column in the user admin table to display indication of user connection.
7076
	 */
7077
	function jetpack_icon_user_connected( $columns ) {
7078
		$columns['user_jetpack'] = '';
7079
		return $columns;
7080
	}
7081
7082
	/*
7083
	 * Show Jetpack icon if the user is linked.
7084
	 */
7085
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
7086
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
7087
			$emblem_html = sprintf(
7088
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
7089
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
7090
				Jetpack::get_jp_emblem()
7091
			);
7092
			return $emblem_html;
7093
		}
7094
7095
		return $val;
7096
	}
7097
7098
	/*
7099
	 * Style the Jetpack user column
7100
	 */
7101
	function jetpack_user_col_style() {
7102
		global $current_screen;
7103
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
7104
			<style>
7105
				.fixed .column-user_jetpack {
7106
					width: 21px;
7107
				}
7108
				.jp-emblem-user-admin svg {
7109
					width: 20px;
7110
					height: 20px;
7111
				}
7112
				.jp-emblem-user-admin path {
7113
					fill: #00BE28;
7114
				}
7115
			</style>
7116
		<?php }
7117
	}
7118
7119
	/**
7120
	 * Checks if Akismet is active and working.
7121
	 *
7122
	 * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key
7123
	 * that implied usage of methods present since more recent version.
7124
	 * See https://github.com/Automattic/jetpack/pull/9585
7125
	 *
7126
	 * @since  5.1.0
7127
	 *
7128
	 * @return bool True = Akismet available. False = Aksimet not available.
7129
	 */
7130
	public static function is_akismet_active() {
7131
		if ( method_exists( 'Akismet' , 'http_post' ) ) {
7132
			$akismet_key = Akismet::get_api_key();
7133
			if ( ! $akismet_key ) {
7134
				return false;
7135
			}
7136
			$cached_key_verification = get_transient( 'jetpack_akismet_key_is_valid' );
7137
7138
			// We cache the result of the Akismet key verification for ten minutes.
7139
			if ( in_array( $cached_key_verification, array( 'valid', 'invalid' ) ) ) {
7140
				$akismet_key_state = $cached_key_verification;
7141
			} else {
7142
				$akismet_key_state = Akismet::verify_key( $akismet_key );
7143
				if ( 'failed' === $akismet_key_state ) {
7144
					return false;
7145
				}
7146
				set_transient( 'jetpack_akismet_key_is_valid', $akismet_key_state, 10 * MINUTE_IN_SECONDS );
7147
			}
7148
7149
			return ( 'valid' === $akismet_key_state );
7150
		}
7151
		return false;
7152
	}
7153
7154
	/**
7155
	 * Checks if one or more function names is in debug_backtrace
7156
	 *
7157
	 * @param $names Mixed string name of function or array of string names of functions
7158
	 *
7159
	 * @return bool
7160
	 */
7161
	public static function is_function_in_backtrace( $names ) {
7162
		$backtrace = debug_backtrace( false ); // phpcs:ignore PHPCompatibility.PHP.NewFunctionParameters.debug_backtrace_optionsFound
7163
		if ( ! is_array( $names ) ) {
7164
			$names = array( $names );
7165
		}
7166
		$names_as_keys = array_flip( $names );
7167
7168
		//Do check in constant O(1) time for PHP5.5+
7169
		if ( function_exists( 'array_column' ) ) {
7170
			$backtrace_functions = array_column( $backtrace, 'function' ); // phpcs:ignore PHPCompatibility.PHP.NewFunctions.array_columnFound
7171
			$backtrace_functions_as_keys = array_flip( $backtrace_functions );
7172
			$intersection = array_intersect_key( $backtrace_functions_as_keys, $names_as_keys );
7173
			return ! empty ( $intersection );
7174
		}
7175
7176
		//Do check in linear O(n) time for < PHP5.5 ( using isset at least prevents O(n^2) )
7177
		foreach ( $backtrace as $call ) {
7178
			if ( isset( $names_as_keys[ $call['function'] ] ) ) {
7179
				return true;
7180
			}
7181
		}
7182
		return false;
7183
	}
7184
7185
	/**
7186
	 * Given a minified path, and a non-minified path, will return
7187
	 * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy.
7188
	 *
7189
	 * Both `$min_base` and `$non_min_base` are expected to be relative to the
7190
	 * root Jetpack directory.
7191
	 *
7192
	 * @since 5.6.0
7193
	 *
7194
	 * @param string $min_path
7195
	 * @param string $non_min_path
7196
	 * @return string The URL to the file
7197
	 */
7198
	public static function get_file_url_for_environment( $min_path, $non_min_path ) {
7199
		$path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) )
7200
			? $non_min_path
7201
			: $min_path;
7202
7203
		return plugins_url( $path, JETPACK__PLUGIN_FILE );
7204
	}
7205
7206
	/**
7207
	 * Checks for whether Jetpack Rewind is enabled.
7208
	 * Will return true if the state of Rewind is anything except "unavailable".
7209
	 * @return bool|int|mixed
7210
	 */
7211
	public static function is_rewind_enabled() {
7212
		if ( ! Jetpack::is_active() ) {
7213
			return false;
7214
		}
7215
7216
		$rewind_enabled = get_transient( 'jetpack_rewind_enabled' );
7217
		if ( false === $rewind_enabled ) {
7218
			jetpack_require_lib( 'class.core-rest-api-endpoints' );
7219
			$rewind_data = (array) Jetpack_Core_Json_Api_Endpoints::rewind_data();
7220
			$rewind_enabled = ( ! is_wp_error( $rewind_data )
7221
				&& ! empty( $rewind_data['state'] )
7222
				&& 'active' === $rewind_data['state'] )
7223
				? 1
7224
				: 0;
7225
7226
			set_transient( 'jetpack_rewind_enabled', $rewind_enabled, 10 * MINUTE_IN_SECONDS );
7227
		}
7228
		return $rewind_enabled;
7229
	}
7230
7231
	/**
7232
	 * Checks whether or not TOS has been agreed upon.
7233
	 * Will return true if a user has clicked to register, or is already connected.
7234
	 */
7235
	public static function jetpack_tos_agreed() {
7236
		return Jetpack_Options::get_option( 'tos_agreed' ) || Jetpack::is_active();
7237
	}
7238
7239
	/**
7240
	 * Handles activating default modules as well general cleanup for the new connection.
7241
	 *
7242
	 * @param boolean $activate_sso                 Whether to activate the SSO module when activating default modules.
7243
	 * @param boolean $redirect_on_activation_error Whether to redirect on activation error.
7244
	 * @param boolean $send_state_messages          Whether to send state messages.
7245
	 * @return void
7246
	 */
7247
	public static function handle_post_authorization_actions(
7248
		$activate_sso = false,
7249
		$redirect_on_activation_error = false,
7250
		$send_state_messages = true
7251
	) {
7252
		$other_modules = $activate_sso
7253
			? array( 'sso' )
7254
			: array();
7255
7256
		if ( $active_modules = Jetpack_Options::get_option( 'active_modules' ) ) {
7257
			Jetpack::delete_active_modules();
7258
7259
			Jetpack::activate_default_modules( 999, 1, array_merge( $active_modules, $other_modules ), $redirect_on_activation_error, $send_state_messages );
7260
		} else {
7261
			Jetpack::activate_default_modules( false, false, $other_modules, $redirect_on_activation_error, $send_state_messages );
7262
		}
7263
7264
		// Since this is a fresh connection, be sure to clear out IDC options
7265
		Jetpack_IDC::clear_all_idc_options();
7266
		Jetpack_Options::delete_raw_option( 'jetpack_last_connect_url_check' );
7267
7268
		// Start nonce cleaner
7269
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
7270
		wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
7271
7272
		if ( $send_state_messages ) {
7273
			Jetpack::state( 'message', 'authorized' );
7274
		}
7275
	}
7276
7277
	/**
7278
	 * Check if Gutenberg editor is available
7279
	 *
7280
	 * @since 6.5.0
7281
	 *
7282
	 * @return bool
7283
	 */
7284
	public static function is_gutenberg_available() {
7285
		return function_exists( 'register_block_type' );
7286
	}
7287
7288
	/**
7289
	 * Load Gutenberg editor blocks.
7290
	 *
7291
	 * This section meant for unstable phase of developing Jetpack's
7292
	 * Gutenberg extensions. If still around after Sep. 15, 2018 then
7293
	 * please file an issue to remove it; if nobody responds within one
7294
	 * week then please delete the code.
7295
	 *
7296
	 *
7297
	 * Loading blocks is disabled by default and enabled via filter:
7298
	 *   add_filter( 'jetpack_gutenberg', '__return_true', 10 );
7299
	 *
7300
	 * When enabled, blocks are loaded from CDN by default. To load locally instead:
7301
	 *   add_filter( 'jetpack_gutenberg_cdn', '__return_false', 10 );
7302
	 *
7303
	 * Note that when loaded locally, you need to build the files yourself:
7304
	 * - _inc/blocks/jetpack-editor.js
7305
	 * - _inc/blocks/jetpack-editor.css
7306
	 *
7307
	 * CDN cache is busted once a day or when Jetpack version changes. To customize it:
7308
	 *   add_filter( 'jetpack_gutenberg_cdn_cache_buster', function( $version ) { return time(); }, 10, 1 );
7309
	 *
7310
	 * @since 6.5.0
7311
	 *
7312
	 * @return void
7313
	 */
7314
	public static function load_jetpack_gutenberg() {
7315
		/**
7316
		 * Filter to turn on loading Gutenberg blocks
7317
		 *
7318
		 * @since 6.5.0
7319
		 *
7320
		 * @param bool false Whether to load Gutenberg blocks
7321
		 */
7322
		if ( ! Jetpack::is_gutenberg_available() || ! apply_filters( 'jetpack_gutenberg', false ) ) {
7323
			return;
7324
		}
7325
7326
		$rtl = is_rtl() ? '.rtl' : '';
7327
7328
		/**
7329
		 * Filter to turn off serving blocks via CDN
7330
		 *
7331
		 * @since 6.5.0
7332
		 *
7333
		 * @param bool true Whether to load Gutenberg blocks from CDN
7334
		 */
7335
		if ( apply_filters( 'jetpack_gutenberg_cdn', true ) ) {
7336
			$cdn_base = 'https://s0.wp.com/wp-content/mu-plugins/jetpack/_inc/blocks';
7337
			$editor_script = "$cdn_base/jetpack-editor.js";
7338
			$editor_style = "$cdn_base/jetpack-editor$rtl.css";
7339
			$view_script = "$cdn_base/jetpack-view.js";
0 ignored issues
show
$view_script is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
7340
			$view_style = "$cdn_base/jetpack-view$rtl.css";
0 ignored issues
show
$view_style is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
7341
7342
			/**
7343
			 * Filter to modify cache busting for Gutenberg block assets loaded from CDN
7344
			 *
7345
			 * @since 6.5.0
7346
			 *
7347
			 * @param string
7348
			 */
7349
			$version = apply_filters( 'jetpack_gutenberg_cdn_cache_buster', sprintf( '%s-%s', gmdate( 'd-m-Y' ), JETPACK__VERSION ) );
7350
		} else {
7351
			$editor_script = plugins_url( '_inc/blocks/jetpack-editor.js', JETPACK__PLUGIN_FILE );
7352
			$editor_style = plugins_url( "_inc/blocks/jetpack-editor$rtl.css", JETPACK__PLUGIN_FILE );
7353
			$view_script = plugins_url( '_inc/blocks/jetpack-view.js', JETPACK__PLUGIN_FILE );
0 ignored issues
show
$view_script is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
7354
			$view_style = plugins_url( "_inc/blocks/jetpack-view$rtl.css", JETPACK__PLUGIN_FILE );
0 ignored issues
show
$view_style is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
7355
			$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . '_inc/blocks/jetpack-editor.js' ) : JETPACK__VERSION;
7356
		}
7357
7358
		wp_register_script(
7359
			'jetpack-blocks-editor',
7360
			$editor_script,
7361
			array(
7362
				'wp-blocks',
7363
				'wp-components',
7364
				'wp-compose',
7365
				'wp-data',
7366
				'wp-editor',
7367
				'wp-element',
7368
				'wp-i18n',
7369
				'wp-plugins',
7370
			),
7371
			$version
7372
		);
7373
7374
		wp_register_style(
7375
			'jetpack-blocks-editor',
7376
			$editor_style,
7377
			array(),
7378
			$version
7379
		);
7380
7381
		 wp_register_script(
7382
		   'jetpack-blocks-view',
7383
		   $block_script,
0 ignored issues
show
The variable $block_script does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
7384
		   array(),
7385
		   $version
7386
		 );
7387
7388
		 wp_register_style(
7389
		   'jetpack-blocks-view',
7390
		   $block_style,
0 ignored issues
show
The variable $block_style does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
7391
		   array(),
7392
		   $version
7393
		 );
7394
7395
		register_block_type( 'jetpack/blocks', array(
7396
				'script'        => 'jetpack-blocks-view',
7397
				'style'         => 'jetpack-blocks-view',
7398
				'editor_script' => 'jetpack-blocks-editor',
7399
				'editor_style'  => 'jetpack-blocks-editor',
7400
		) );
7401
	}
7402
7403
	/**
7404
	 * Returns a boolean for whether backups UI should be displayed or not.
7405
	 *
7406
	 * @return bool Should backups UI be displayed?
7407
	 */
7408
	public static function show_backups_ui() {
7409
		/**
7410
		 * Whether UI for backups should be displayed.
7411
		 *
7412
		 * @since 6.5.0
7413
		 *
7414
		 * @param bool $show_backups Should UI for backups be displayed? True by default.
7415
		 */
7416
		return Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) || apply_filters( 'jetpack_show_backups', true );
7417
	}
7418
}
7419