Completed
Push — update/allow-enabling-modules-... ( bb2f33 )
by Marin
09:30
created

class.jetpack.php (1 issue)

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

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

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

Loading history...
3995
			case 'disconnect' :
3996
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
3997
					$error = 'cheatin';
3998
					break;
3999
				}
4000
4001
				check_admin_referer( 'jetpack-disconnect' );
4002
				Jetpack::log( 'disconnect' );
4003
				Jetpack::disconnect();
4004
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
4005
				exit;
4006
			case 'reconnect' :
4007
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
4008
					$error = 'cheatin';
4009
					break;
4010
				}
4011
4012
				check_admin_referer( 'jetpack-reconnect' );
4013
				Jetpack::log( 'reconnect' );
4014
				$this->disconnect();
4015
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
4016
				exit;
4017 View Code Duplication
			case 'deactivate' :
4018
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
4019
					$error = 'cheatin';
4020
					break;
4021
				}
4022
4023
				$modules = stripslashes( $_GET['module'] );
4024
				check_admin_referer( "jetpack_deactivate-$modules" );
4025
				foreach ( explode( ',', $modules ) as $module ) {
4026
					Jetpack::log( 'deactivate', $module );
4027
					Jetpack::deactivate_module( $module );
4028
					Jetpack::state( 'message', 'module_deactivated' );
4029
				}
4030
				Jetpack::state( 'module', $modules );
4031
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4032
				exit;
4033
			case 'unlink' :
4034
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
4035
				check_admin_referer( 'jetpack-unlink' );
4036
				Jetpack::log( 'unlink' );
4037
				$this->unlink_user();
4038
				Jetpack::state( 'message', 'unlinked' );
4039
				if ( 'sub-unlink' == $redirect ) {
4040
					wp_safe_redirect( admin_url() );
4041
				} else {
4042
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
4043
				}
4044
				exit;
4045
			case 'onboard' :
4046
				if ( ! current_user_can( 'manage_options' ) ) {
4047
					wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4048
				} else {
4049
					Jetpack::create_onboarding_token();
4050
					$url = $this->build_connect_url( true );
4051
4052
					if ( false !== ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4053
						$url = add_query_arg( 'onboarding', $token, $url );
4054
					}
4055
4056
					$calypso_env = ! empty( $_GET[ 'calypso_env' ] ) ? $_GET[ 'calypso_env' ] : false;
4057
					if ( $calypso_env ) {
4058
						$url = add_query_arg( 'calypso_env', $calypso_env, $url );
4059
					}
4060
4061
					wp_redirect( $url );
4062
					exit;
4063
				}
4064
				exit;
4065
			default:
4066
				/**
4067
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
4068
				 *
4069
				 * @since 2.6.0
4070
				 *
4071
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
4072
				 */
4073
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
4074
			}
4075
		}
4076
4077
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
4078
			self::activate_new_modules( true );
4079
		}
4080
4081
		$message_code = Jetpack::state( 'message' );
4082
		if ( Jetpack::state( 'optin-manage' ) ) {
4083
			$activated_manage = $message_code;
4084
			$message_code = 'jetpack-manage';
4085
		}
4086
4087
		switch ( $message_code ) {
4088
		case 'jetpack-manage':
4089
			$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>';
4090
			if ( $activated_manage ) {
4091
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
4092
			}
4093
			break;
4094
4095
		}
4096
4097
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
4098
4099
		if ( ! empty( $deactivated_plugins ) ) {
4100
			$deactivated_plugins = explode( ',', $deactivated_plugins );
4101
			$deactivated_titles  = array();
4102
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
4103
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
4104
					continue;
4105
				}
4106
4107
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
4108
			}
4109
4110
			if ( $deactivated_titles ) {
4111
				if ( $this->message ) {
4112
					$this->message .= "<br /><br />\n";
4113
				}
4114
4115
				$this->message .= wp_sprintf(
4116
					_n(
4117
						'Jetpack contains the most recent version of the old %l plugin.',
4118
						'Jetpack contains the most recent versions of the old %l plugins.',
4119
						count( $deactivated_titles ),
4120
						'jetpack'
4121
					),
4122
					$deactivated_titles
4123
				);
4124
4125
				$this->message .= "<br />\n";
4126
4127
				$this->message .= _n(
4128
					'The old version has been deactivated and can be removed from your site.',
4129
					'The old versions have been deactivated and can be removed from your site.',
4130
					count( $deactivated_titles ),
4131
					'jetpack'
4132
				);
4133
			}
4134
		}
4135
4136
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
4137
4138
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
4139
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
4140
		}
4141
4142 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
4143
			/**
4144
			 * Fires when a module configuration page is loaded.
4145
			 * The dynamic part of the hook is the configure parameter from the URL.
4146
			 *
4147
			 * @since 1.1.0
4148
			 */
4149
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
4150
		}
4151
4152
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
4153
	}
4154
4155
	function admin_notices() {
4156
4157
		if ( $this->error ) {
4158
?>
4159
<div id="message" class="jetpack-message jetpack-err">
4160
	<div class="squeezer">
4161
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
4162
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
4163
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
4164
<?php	endif; ?>
4165
	</div>
4166
</div>
4167
<?php
4168
		}
4169
4170
		if ( $this->message ) {
4171
?>
4172
<div id="message" class="jetpack-message">
4173
	<div class="squeezer">
4174
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
4175
	</div>
4176
</div>
4177
<?php
4178
		}
4179
4180
		if ( $this->privacy_checks ) :
4181
			$module_names = $module_slugs = array();
4182
4183
			$privacy_checks = explode( ',', $this->privacy_checks );
4184
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
4185
			foreach ( $privacy_checks as $module_slug ) {
4186
				$module = Jetpack::get_module( $module_slug );
4187
				if ( ! $module ) {
4188
					continue;
4189
				}
4190
4191
				$module_slugs[] = $module_slug;
4192
				$module_names[] = "<strong>{$module['name']}</strong>";
4193
			}
4194
4195
			$module_slugs = join( ',', $module_slugs );
4196
?>
4197
<div id="message" class="jetpack-message jetpack-err">
4198
	<div class="squeezer">
4199
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
4200
		<p><?php
4201
			echo wp_kses(
4202
				wptexturize(
4203
					wp_sprintf(
4204
						_nx(
4205
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
4206
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
4207
							count( $privacy_checks ),
4208
							'%l = list of Jetpack module/feature names',
4209
							'jetpack'
4210
						),
4211
						$module_names
4212
					)
4213
				),
4214
				array( 'strong' => true )
4215
			);
4216
4217
			echo "\n<br />\n";
4218
4219
			echo wp_kses(
4220
				sprintf(
4221
					_nx(
4222
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
4223
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
4224
						count( $privacy_checks ),
4225
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
4226
						'jetpack'
4227
					),
4228
					wp_nonce_url(
4229
						Jetpack::admin_url(
4230
							array(
4231
								'page'   => 'jetpack',
4232
								'action' => 'deactivate',
4233
								'module' => urlencode( $module_slugs ),
4234
							)
4235
						),
4236
						"jetpack_deactivate-$module_slugs"
4237
					),
4238
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
4239
				),
4240
				array( 'a' => array( 'href' => true, 'title' => true ) )
4241
			);
4242
		?></p>
4243
	</div>
4244
</div>
4245
<?php endif;
4246
	// only display the notice if the other stuff is not there
4247
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
4248
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
4249
			$this->opt_in_jetpack_manage_notice();
4250
		}
4251
	}
4252
4253
	/**
4254
	 * Record a stat for later output.  This will only currently output in the admin_footer.
4255
	 */
4256
	function stat( $group, $detail ) {
4257
		if ( ! isset( $this->stats[ $group ] ) )
4258
			$this->stats[ $group ] = array();
4259
		$this->stats[ $group ][] = $detail;
4260
	}
4261
4262
	/**
4263
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
4264
	 */
4265
	function do_stats( $method = '' ) {
4266
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
4267
			foreach ( $this->stats as $group => $stats ) {
4268
				if ( is_array( $stats ) && count( $stats ) ) {
4269
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
4270
					if ( 'server_side' === $method ) {
4271
						self::do_server_side_stat( $args );
4272
					} else {
4273
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
4274
					}
4275
				}
4276
				unset( $this->stats[ $group ] );
4277
			}
4278
		}
4279
	}
4280
4281
	/**
4282
	 * Runs stats code for a one-off, server-side.
4283
	 *
4284
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
4285
	 *
4286
	 * @return bool If it worked.
4287
	 */
4288
	static function do_server_side_stat( $args ) {
4289
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
4290
		if ( is_wp_error( $response ) )
4291
			return false;
4292
4293
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
4294
			return false;
4295
4296
		return true;
4297
	}
4298
4299
	/**
4300
	 * Builds the stats url.
4301
	 *
4302
	 * @param $args array|string The arguments to append to the URL.
4303
	 *
4304
	 * @return string The URL to be pinged.
4305
	 */
4306
	static function build_stats_url( $args ) {
4307
		$defaults = array(
4308
			'v'    => 'wpcom2',
4309
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
4310
		);
4311
		$args     = wp_parse_args( $args, $defaults );
4312
		/**
4313
		 * Filter the URL used as the Stats tracking pixel.
4314
		 *
4315
		 * @since 2.3.2
4316
		 *
4317
		 * @param string $url Base URL used as the Stats tracking pixel.
4318
		 */
4319
		$base_url = apply_filters(
4320
			'jetpack_stats_base_url',
4321
			'https://pixel.wp.com/g.gif'
4322
		);
4323
		$url      = add_query_arg( $args, $base_url );
4324
		return $url;
4325
	}
4326
4327
	static function translate_current_user_to_role() {
4328
		foreach ( self::$capability_translations as $role => $cap ) {
4329
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
4330
				return $role;
4331
			}
4332
		}
4333
4334
		return false;
4335
	}
4336
4337
	static function translate_user_to_role( $user ) {
4338
		foreach ( self::$capability_translations as $role => $cap ) {
4339
			if ( user_can( $user, $role ) || user_can( $user, $cap ) ) {
4340
				return $role;
4341
			}
4342
		}
4343
4344
		return false;
4345
    }
4346
4347
	static function translate_role_to_cap( $role ) {
4348
		if ( ! isset( self::$capability_translations[$role] ) ) {
4349
			return false;
4350
		}
4351
4352
		return self::$capability_translations[$role];
4353
	}
4354
4355
	static function sign_role( $role, $user_id = null ) {
4356
		if ( empty( $user_id ) ) {
4357
			$user_id = (int) get_current_user_id();
4358
		}
4359
4360
		if ( ! $user_id  ) {
4361
			return false;
4362
		}
4363
4364
		$token = Jetpack_Data::get_access_token();
4365
		if ( ! $token || is_wp_error( $token ) ) {
4366
			return false;
4367
		}
4368
4369
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
4370
	}
4371
4372
4373
	/**
4374
	 * Builds a URL to the Jetpack connection auth page
4375
	 *
4376
	 * @since 3.9.5
4377
	 *
4378
	 * @param bool $raw If true, URL will not be escaped.
4379
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
4380
	 *                              If string, will be a custom redirect.
4381
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
4382
	 * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0
4383
	 *
4384
	 * @return string Connect URL
4385
	 */
4386
	function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) {
4387
		$site_id = Jetpack_Options::get_option( 'id' );
4388
		$token = Jetpack_Options::get_option( 'blog_token' );
4389
4390
		if ( $register || ! $token || ! $site_id ) {
4391
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4392
4393
			if ( ! empty( $redirect ) ) {
4394
				$url = add_query_arg(
4395
					'redirect',
4396
					urlencode( wp_validate_redirect( esc_url_raw( $redirect ) ) ),
4397
					$url
4398
				);
4399
			}
4400
4401
			if( is_network_admin() ) {
4402
				$url = add_query_arg( 'is_multisite', network_admin_url( 'admin.php?page=jetpack-settings' ), $url );
4403
			}
4404
		} else {
4405
4406
			// Let's check the existing blog token to see if we need to re-register. We only check once per minute
4407
			// because otherwise this logic can get us in to a loop.
4408
			$last_connect_url_check = intval( Jetpack_Options::get_raw_option( 'jetpack_last_connect_url_check' ) );
4409
			if ( ! $last_connect_url_check || ( time() - $last_connect_url_check ) > MINUTE_IN_SECONDS ) {
4410
				Jetpack_Options::update_raw_option( 'jetpack_last_connect_url_check', time() );
4411
4412
				$response = Jetpack_Client::wpcom_json_api_request_as_blog(
4413
					sprintf( '/sites/%d', $site_id ) .'?force=wpcom',
4414
					'1.1'
4415
				);
4416
4417
				if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
4418
					// Generating a register URL instead to refresh the existing token
4419
					return $this->build_connect_url( $raw, $redirect, $from, true );
4420
				}
4421
			}
4422
4423
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
4424
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4425
			}
4426
4427
			$role = self::translate_current_user_to_role();
4428
			$signed_role = self::sign_role( $role );
4429
4430
			$user = wp_get_current_user();
4431
4432
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4433
			$redirect = $redirect
4434
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4435
				: $jetpack_admin_page;
4436
4437
			if( isset( $_REQUEST['is_multisite'] ) ) {
4438
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4439
			}
4440
4441
			$secrets = Jetpack::generate_secrets( 'authorize', false, 2 * HOUR_IN_SECONDS );
4442
4443
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
4444
				? get_site_icon_url()
4445
				: false;
4446
4447
			/**
4448
			 * Filter the type of authorization.
4449
			 * 'calypso' completes authorization on wordpress.com/jetpack/connect
4450
			 * while 'jetpack' ( or any other value ) completes the authorization at jetpack.wordpress.com.
4451
			 *
4452
			 * @since 4.3.3
4453
			 *
4454
			 * @param string $auth_type Defaults to 'calypso', can also be 'jetpack'.
4455
			 */
4456
			$auth_type = apply_filters( 'jetpack_auth_type', 'calypso' );
4457
4458
			$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
4459
4460
			$args = urlencode_deep(
4461
				array(
4462
					'response_type' => 'code',
4463
					'client_id'     => Jetpack_Options::get_option( 'id' ),
4464
					'redirect_uri'  => add_query_arg(
4465
						array(
4466
							'action'   => 'authorize',
4467
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
4468
							'redirect' => urlencode( $redirect ),
4469
						),
4470
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
4471
					),
4472
					'state'         => $user->ID,
4473
					'scope'         => $signed_role,
4474
					'user_email'    => $user->user_email,
4475
					'user_login'    => $user->user_login,
4476
					'is_active'     => Jetpack::is_active(),
4477
					'jp_version'    => JETPACK__VERSION,
4478
					'auth_type'     => $auth_type,
4479
					'secret'        => $secrets['secret_1'],
4480
					'locale'        => ( isset( $gp_locale ) && isset( $gp_locale->slug ) ) ? $gp_locale->slug : '',
4481
					'blogname'      => get_option( 'blogname' ),
4482
					'site_url'      => site_url(),
4483
					'home_url'      => home_url(),
4484
					'site_icon'     => $site_icon,
4485
					'site_lang'     => get_locale(),
4486
					'_ui'           => $tracks_identity['_ui'],
4487
					'_ut'           => $tracks_identity['_ut']
4488
				)
4489
			);
4490
4491
			self::apply_activation_source_to_args( $args );
4492
4493
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
4494
		}
4495
4496
		if ( $from ) {
4497
			$url = add_query_arg( 'from', $from, $url );
4498
		}
4499
4500
4501
		if ( isset( $_GET['calypso_env'] ) ) {
4502
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
4503
		}
4504
4505
		return $raw ? $url : esc_url( $url );
4506
	}
4507
4508
	public static function apply_activation_source_to_args( &$args ) {
4509
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4510
4511
		if ( $activation_source_name ) {
4512
			$args['_as'] = urlencode( $activation_source_name );
4513
		}
4514
4515
		if ( $activation_source_keyword ) {
4516
			$args['_ak'] = urlencode( $activation_source_keyword );
4517
		}
4518
	}
4519
4520
	function build_reconnect_url( $raw = false ) {
4521
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
4522
		return $raw ? $url : esc_url( $url );
4523
	}
4524
4525
	public static function admin_url( $args = null ) {
4526
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
4527
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
4528
		return $url;
4529
	}
4530
4531
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4532
		$actionurl = str_replace( '&amp;', '&', $actionurl );
4533
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
4534
	}
4535
4536
	function dismiss_jetpack_notice() {
4537
4538
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
4539
			return;
4540
		}
4541
4542
		switch( $_GET['jetpack-notice'] ) {
4543
			case 'dismiss':
4544
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
4545
4546
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
4547
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
4548
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
4549
				}
4550
				break;
4551 View Code Duplication
			case 'jetpack-manage-opt-out':
4552
4553
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
4554
					// Don't show the banner again
4555
4556
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
4557
					// redirect back to the page that had the notice
4558
					if ( wp_get_referer() ) {
4559
						wp_safe_redirect( wp_get_referer() );
4560
					} else {
4561
						// Take me to Jetpack
4562
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4563
					}
4564
				}
4565
				break;
4566 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
4567
4568
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
4569
					// Don't show the banner again
4570
4571
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
4572
					// redirect back to the page that had the notice
4573
					if ( wp_get_referer() ) {
4574
						wp_safe_redirect( wp_get_referer() );
4575
					} else {
4576
						// Take me to Jetpack
4577
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4578
					}
4579
				}
4580
				break;
4581
			case 'jetpack-manage-opt-in':
4582
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
4583
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
4584
4585
					$redirection_url = Jetpack::admin_url();
4586
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4587
4588
					// Don't redirect form the Jetpack Setting Page
4589
					$referer_parsed = parse_url ( wp_get_referer() );
4590
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
4591
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
4592
						// Take the user to Jetpack home except when on the setting page
4593
						$redirection_url = wp_get_referer();
4594
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4595
					}
4596
					// Also update the JSON API FULL MANAGEMENT Option
4597
					Jetpack::activate_module( 'manage', false, false );
4598
4599
					// Special Message when option in.
4600
					Jetpack::state( 'optin-manage', 'true' );
4601
					// Activate the Module if not activated already
4602
4603
					// Redirect properly
4604
					wp_safe_redirect( $redirection_url );
4605
4606
				}
4607
				break;
4608
		}
4609
	}
4610
4611
	public static function admin_screen_configure_module( $module_id ) {
4612
4613
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
4614
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
4615
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
4616
				/**
4617
				 * Fires to diplay a custom module activation screen.
4618
				 *
4619
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
4620
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
4621
				 *
4622
				 * @module manage
4623
				 *
4624
				 * @since 3.8.0
4625
				 *
4626
				 * @param int $module_id Module ID.
4627
				 */
4628
				do_action( 'display_activate_module_setting_' . $module_id );
4629
			} else {
4630
				self::display_activate_module_link( $module_id );
4631
			}
4632
4633
			return false;
4634
		} ?>
4635
4636
		<div id="jp-settings-screen" style="position: relative">
4637
			<h3>
4638
			<?php
4639
				$module = Jetpack::get_module( $module_id );
4640
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4641
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4642
			?>
4643
			</h3>
4644
			<?php
4645
				/**
4646
				 * Fires within the displayed message when a feature configuation is updated.
4647
				 *
4648
				 * @since 3.4.0
4649
				 *
4650
				 * @param int $module_id Module ID.
4651
				 */
4652
				do_action( 'jetpack_notices_update_settings', $module_id );
4653
				/**
4654
				 * Fires when a feature configuation screen is loaded.
4655
				 * The dynamic part of the hook, $module_id, is the module ID.
4656
				 *
4657
				 * @since 1.1.0
4658
				 */
4659
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4660
			?>
4661
		</div><?php
4662
	}
4663
4664
	/**
4665
	 * Display link to activate the module to see the settings screen.
4666
	 * @param  string $module_id
4667
	 * @return null
4668
	 */
4669
	public static function display_activate_module_link( $module_id ) {
4670
4671
		$info =  Jetpack::get_module( $module_id );
4672
		$extra = '';
4673
		$activate_url = wp_nonce_url(
4674
				Jetpack::admin_url(
4675
					array(
4676
						'page'   => 'jetpack',
4677
						'action' => 'activate',
4678
						'module' => $module_id,
4679
					)
4680
				),
4681
				"jetpack_activate-$module_id"
4682
			);
4683
4684
		?>
4685
4686
		<div class="wrap configure-module">
4687
			<div id="jp-settings-screen">
4688
				<?php
4689
				if ( $module_id == 'json-api' ) {
4690
4691
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4692
4693
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4694
4695
					$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' );
4696
4697
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4698
				} ?>
4699
4700
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4701
				<div class="narrow">
4702
					<p><?php echo  $info['description']; ?></p>
4703
					<?php if( $extra ) { ?>
4704
					<p><?php echo esc_html( $extra ); ?></p>
4705
					<?php } ?>
4706
					<p>
4707
						<?php
4708
						if( wp_get_referer() ) {
4709
							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() );
4710
						} else {
4711
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4712
						} ?>
4713
					</p>
4714
				</div>
4715
4716
			</div>
4717
		</div>
4718
4719
		<?php
4720
	}
4721
4722
	public static function sort_modules( $a, $b ) {
4723
		if ( $a['sort'] == $b['sort'] )
4724
			return 0;
4725
4726
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4727
	}
4728
4729
	function ajax_recheck_ssl() {
4730
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4731
		$result = Jetpack::permit_ssl( true );
4732
		wp_send_json( array(
4733
			'enabled' => $result,
4734
			'message' => get_transient( 'jetpack_https_test_message' )
4735
		) );
4736
	}
4737
4738
/* Client API */
4739
4740
	/**
4741
	 * Returns the requested Jetpack API URL
4742
	 *
4743
	 * @return string
4744
	 */
4745
	public static function api_url( $relative_url ) {
4746
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4747
	}
4748
4749
	/**
4750
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4751
	 */
4752
	public static function fix_url_for_bad_hosts( $url ) {
4753
		if ( 0 !== strpos( $url, 'https://' ) ) {
4754
			return $url;
4755
		}
4756
4757
		switch ( JETPACK_CLIENT__HTTPS ) {
4758
			case 'ALWAYS' :
4759
				return $url;
4760
			case 'NEVER' :
4761
				return set_url_scheme( $url, 'http' );
4762
			// default : case 'AUTO' :
4763
		}
4764
4765
		// we now return the unmodified SSL URL by default, as a security precaution
4766
		return $url;
4767
	}
4768
4769
	/**
4770
	 * Create a random secret for validating onboarding payload
4771
	 *
4772
	 * @return string Secret token
4773
	 */
4774
	public static function create_onboarding_token() {
4775
		if ( false === ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4776
			$token = wp_generate_password( 32, false );
4777
			Jetpack_Options::update_option( 'onboarding', $token );
4778
		}
4779
4780
		return $token;
4781
	}
4782
4783
	/**
4784
	 * Remove the onboarding token
4785
	 *
4786
	 * @return bool True on success, false on failure
4787
	 */
4788
	public static function invalidate_onboarding_token() {
4789
		return Jetpack_Options::delete_option( 'onboarding' );
4790
	}
4791
4792
	/**
4793
	 * Validate an onboarding token for a specific action
4794
	 *
4795
	 * @return boolean True if token/action pair is accepted, false if not
4796
	 */
4797
	public static function validate_onboarding_token_action( $token, $action ) {
4798
		// Compare tokens, bail if tokens do not match
4799
		if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) {
4800
			return false;
4801
		}
4802
4803
		// List of valid actions we can take
4804
		$valid_actions = array(
4805
			'/jetpack/v4/settings',
4806
		);
4807
4808
		// Whitelist the action
4809
		if ( ! in_array( $action, $valid_actions ) ) {
4810
			return false;
4811
		}
4812
4813
		return true;
4814
	}
4815
4816
	/**
4817
	 * Checks to see if the URL is using SSL to connect with Jetpack
4818
	 *
4819
	 * @since 2.3.3
4820
	 * @return boolean
4821
	 */
4822
	public static function permit_ssl( $force_recheck = false ) {
4823
		// Do some fancy tests to see if ssl is being supported
4824
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4825
			$message = '';
4826
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4827
				$ssl = 0;
4828
			} else {
4829
				switch ( JETPACK_CLIENT__HTTPS ) {
4830
					case 'NEVER':
4831
						$ssl = 0;
4832
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4833
						break;
4834
					case 'ALWAYS':
4835
					case 'AUTO':
4836
					default:
4837
						$ssl = 1;
4838
						break;
4839
				}
4840
4841
				// If it's not 'NEVER', test to see
4842
				if ( $ssl ) {
4843
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4844
						$ssl = 0;
4845
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4846
					} else {
4847
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4848
						if ( is_wp_error( $response ) ) {
4849
							$ssl = 0;
4850
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4851
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4852
							$ssl = 0;
4853
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4854
						}
4855
					}
4856
				}
4857
			}
4858
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4859
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4860
		}
4861
4862
		return (bool) $ssl;
4863
	}
4864
4865
	/*
4866
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4867
	 */
4868
	public function alert_auto_ssl_fail() {
4869
		if ( ! current_user_can( 'manage_options' ) )
4870
			return;
4871
4872
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4873
		?>
4874
4875
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4876
			<div class="jp-banner__content">
4877
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4878
				<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>
4879
				<p>
4880
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4881
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4882
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4883
				</p>
4884
				<p>
4885
					<?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' ),
4886
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4887
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4888
				</p>
4889
			</div>
4890
		</div>
4891
		<style>
4892
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4893
		</style>
4894
		<script type="text/javascript">
4895
			jQuery( document ).ready( function( $ ) {
4896
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4897
					var $this = $( this );
4898
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4899
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4900
					e.preventDefault();
4901
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4902
					$.post( ajaxurl, data )
4903
					  .done( function( response ) {
4904
					  	if ( response.enabled ) {
4905
					  		$( '#jetpack-ssl-warning' ).hide();
4906
					  	} else {
4907
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4908
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4909
					  	}
4910
					  }.bind( $this ) );
4911
				} );
4912
			} );
4913
		</script>
4914
4915
		<?php
4916
	}
4917
4918
	/**
4919
	 * Returns the Jetpack XML-RPC API
4920
	 *
4921
	 * @return string
4922
	 */
4923
	public static function xmlrpc_api_url() {
4924
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4925
		return untrailingslashit( $base ) . '/xmlrpc.php';
4926
	}
4927
4928
	/**
4929
	 * Creates two secret tokens and the end of life timestamp for them.
4930
	 *
4931
	 * Note these tokens are unique per call, NOT static per site for connecting.
4932
	 *
4933
	 * @since 2.6
4934
	 * @return array
4935
	 */
4936
	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
4937
		if ( ! $user_id ) {
4938
			$user_id = get_current_user_id();
4939
		}
4940
4941
		$secret_name  = 'jetpack_' . $action . '_' . $user_id;
4942
		$secrets      = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4943
4944
		if (
4945
			isset( $secrets[ $secret_name ] ) &&
4946
			$secrets[ $secret_name ]['exp'] > time()
4947
		) {
4948
			return $secrets[ $secret_name ];
4949
		}
4950
4951
		$secret_value = array(
4952
			'secret_1'  => wp_generate_password( 32, false ),
4953
			'secret_2'  => wp_generate_password( 32, false ),
4954
			'exp'       => time() + $exp,
4955
		);
4956
4957
		$secrets[ $secret_name ] = $secret_value;
4958
4959
		Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
4960
		return $secrets[ $secret_name ];
4961
	}
4962
4963
	public static function get_secrets( $action, $user_id ) {
4964
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
4965
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4966
4967
		if ( ! isset( $secrets[ $secret_name ] ) ) {
4968
			return new WP_Error( 'verify_secrets_missing', 'Verification secrets not found' );
4969
		}
4970
4971
		if ( $secrets[ $secret_name ]['exp'] < time() ) {
4972
			self::delete_secrets( $action, $user_id );
4973
			return new WP_Error( 'verify_secrets_expired', 'Verification took too long' );
4974
		}
4975
4976
		return $secrets[ $secret_name ];
4977
	}
4978
4979
	public static function delete_secrets( $action, $user_id ) {
4980
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
4981
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4982
		if ( isset( $secrets[ $secret_name ] ) ) {
4983
			unset( $secrets[ $secret_name ] );
4984
			Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
4985
		}
4986
	}
4987
4988
	/**
4989
	 * Builds the timeout limit for queries talking with the wpcom servers.
4990
	 *
4991
	 * Based on local php max_execution_time in php.ini
4992
	 *
4993
	 * @since 2.6
4994
	 * @return int
4995
	 * @deprecated
4996
	 **/
4997
	public function get_remote_query_timeout_limit() {
4998
		_deprecated_function( __METHOD__, 'jetpack-5.4' );
4999
		return Jetpack::get_max_execution_time();
5000
	}
5001
5002
	/**
5003
	 * Builds the timeout limit for queries talking with the wpcom servers.
5004
	 *
5005
	 * Based on local php max_execution_time in php.ini
5006
	 *
5007
	 * @since 5.4
5008
	 * @return int
5009
	 **/
5010
	public static function get_max_execution_time() {
5011
		$timeout = (int) ini_get( 'max_execution_time' );
5012
5013
		// Ensure exec time set in php.ini
5014
		if ( ! $timeout ) {
5015
			$timeout = 30;
5016
		}
5017
		return $timeout;
5018
	}
5019
5020
	/**
5021
	 * Sets a minimum request timeout, and returns the current timeout
5022
	 *
5023
	 * @since 5.4
5024
	 **/
5025
	public static function set_min_time_limit( $min_timeout ) {
5026
		$timeout = self::get_max_execution_time();
5027
		if ( $timeout < $min_timeout ) {
5028
			$timeout = $min_timeout;
5029
			set_time_limit( $timeout );
5030
		}
5031
		return $timeout;
5032
	}
5033
5034
5035
	/**
5036
	 * Takes the response from the Jetpack register new site endpoint and
5037
	 * verifies it worked properly.
5038
	 *
5039
	 * @since 2.6
5040
	 * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures
5041
	 **/
5042
	public function validate_remote_register_response( $response ) {
5043
	  if ( is_wp_error( $response ) ) {
5044
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
5045
		}
5046
5047
		$code   = wp_remote_retrieve_response_code( $response );
5048
		$entity = wp_remote_retrieve_body( $response );
5049
		if ( $entity )
5050
			$registration_response = json_decode( $entity );
5051
		else
5052
			$registration_response = false;
5053
5054
		$code_type = intval( $code / 100 );
5055
		if ( 5 == $code_type ) {
5056
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5057
		} elseif ( 408 == $code ) {
5058
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5059
		} elseif ( ! empty( $registration_response->error ) ) {
5060
			if ( 'xml_rpc-32700' == $registration_response->error && ! function_exists( 'xml_parser_create' ) ) {
5061
				$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' );
5062
			} else {
5063
				$error_description = isset( $registration_response->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $registration_response->error_description ) : '';
5064
			}
5065
5066
			return new Jetpack_Error( (string) $registration_response->error, $error_description, $code );
5067
		} elseif ( 200 != $code ) {
5068
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5069
		}
5070
5071
		// Jetpack ID error block
5072
		if ( empty( $registration_response->jetpack_id ) ) {
5073
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
5074
		} elseif ( ! is_scalar( $registration_response->jetpack_id ) ) {
5075
			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 );
5076
		} elseif ( preg_match( '/[^0-9]/', $registration_response->jetpack_id ) ) {
5077
			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 );
5078
		}
5079
5080
	    return $registration_response;
5081
	}
5082
	/**
5083
	 * @return bool|WP_Error
5084
	 */
5085
	public static function register() {
5086
		JetpackTracking::record_user_event( 'jpc_register_begin' );
5087
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5088
		$secrets = Jetpack::generate_secrets( 'register' );
5089
5090 View Code Duplication
		if (
5091
			empty( $secrets['secret_1'] ) ||
5092
			empty( $secrets['secret_2'] ) ||
5093
			empty( $secrets['exp'] )
5094
		) {
5095
			return new Jetpack_Error( 'missing_secrets' );
5096
		}
5097
5098
		// better to try (and fail) to set a higher timeout than this system
5099
		// supports than to have register fail for more users than it should
5100
		$timeout = Jetpack::set_min_time_limit( 60 ) / 2;
5101
5102
		$gmt_offset = get_option( 'gmt_offset' );
5103
		if ( ! $gmt_offset ) {
5104
			$gmt_offset = 0;
5105
		}
5106
5107
		$stats_options = get_option( 'stats_options' );
5108
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
5109
5110
		$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
5111
5112
		$args = array(
5113
			'method'  => 'POST',
5114
			'body'    => array(
5115
				'siteurl'         => site_url(),
5116
				'home'            => home_url(),
5117
				'gmt_offset'      => $gmt_offset,
5118
				'timezone_string' => (string) get_option( 'timezone_string' ),
5119
				'site_name'       => (string) get_option( 'blogname' ),
5120
				'secret_1'        => $secrets['secret_1'],
5121
				'secret_2'        => $secrets['secret_2'],
5122
				'site_lang'       => get_locale(),
5123
				'timeout'         => $timeout,
5124
				'stats_id'        => $stats_id,
5125
				'state'           => get_current_user_id(),
5126
				'_ui'             => $tracks_identity['_ui'],
5127
				'_ut'             => $tracks_identity['_ut'],
5128
				'jetpack_version' => JETPACK__VERSION
5129
			),
5130
			'headers' => array(
5131
				'Accept' => 'application/json',
5132
			),
5133
			'timeout' => $timeout,
5134
		);
5135
5136
		self::apply_activation_source_to_args( $args['body'] );
5137
5138
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
5139
5140
		// Make sure the response is valid and does not contain any Jetpack errors
5141
		$registration_details = Jetpack::init()->validate_remote_register_response( $response );
5142
		if ( is_wp_error( $registration_details ) ) {
5143
			return $registration_details;
5144
		} elseif ( ! $registration_details ) {
5145
			return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) );
5146
		}
5147
5148 View Code Duplication
		if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) {
5149
			return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) );
5150
		}
5151
5152
		if ( isset( $registration_details->jetpack_public ) ) {
5153
			$jetpack_public = (int) $registration_details->jetpack_public;
5154
		} else {
5155
			$jetpack_public = false;
5156
		}
5157
5158
		Jetpack_Options::update_options(
5159
			array(
5160
				'id'         => (int)    $registration_details->jetpack_id,
5161
				'blog_token' => (string) $registration_details->jetpack_secret,
5162
				'public'     => $jetpack_public,
5163
			)
5164
		);
5165
5166
		/**
5167
		 * Fires when a site is registered on WordPress.com.
5168
		 *
5169
		 * @since 3.7.0
5170
		 *
5171
		 * @param int $json->jetpack_id Jetpack Blog ID.
5172
		 * @param string $json->jetpack_secret Jetpack Blog Token.
5173
		 * @param int|bool $jetpack_public Is the site public.
5174
		 */
5175
		do_action( 'jetpack_site_registered', $registration_details->jetpack_id, $registration_details->jetpack_secret, $jetpack_public );
5176
5177
		// Initialize Jump Start for the first and only time.
5178
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
5179
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
5180
5181
			$jetpack = Jetpack::init();
5182
5183
			$jetpack->stat( 'jumpstart', 'unique-views' );
5184
			$jetpack->do_stats( 'server_side' );
5185
		};
5186
5187
		return true;
5188
	}
5189
5190
	/**
5191
	 * If the db version is showing something other that what we've got now, bump it to current.
5192
	 *
5193
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
5194
	 */
5195
	public static function maybe_set_version_option() {
5196
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
5197
		if ( JETPACK__VERSION != $version ) {
5198
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
5199
5200
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
5201
				/** This action is documented in class.jetpack.php */
5202
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
5203
			}
5204
5205
			return true;
5206
		}
5207
		return false;
5208
	}
5209
5210
/* Client Server API */
5211
5212
	/**
5213
	 * Loads the Jetpack XML-RPC client
5214
	 */
5215
	public static function load_xml_rpc_client() {
5216
		require_once ABSPATH . WPINC . '/class-IXR.php';
5217
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
5218
	}
5219
5220
	/**
5221
	 * Resets the saved authentication state in between testing requests.
5222
	 */
5223
	public function reset_saved_auth_state() {
5224
		$this->xmlrpc_verification = null;
5225
		$this->rest_authentication_status = null;
5226
	}
5227
5228
	function verify_xml_rpc_signature() {
5229
		if ( $this->xmlrpc_verification ) {
5230
			return $this->xmlrpc_verification;
5231
		}
5232
5233
		// It's not for us
5234
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
5235
			return false;
5236
		}
5237
5238
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
5239
		if (
5240
			empty( $token_key )
5241
		||
5242
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
5243
		) {
5244
			return false;
5245
		}
5246
5247
		if ( '0' === $user_id ) {
5248
			$token_type = 'blog';
5249
			$user_id = 0;
5250
		} else {
5251
			$token_type = 'user';
5252
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
5253
				return false;
5254
			}
5255
			$user_id = (int) $user_id;
5256
5257
			$user = new WP_User( $user_id );
5258
			if ( ! $user || ! $user->exists() ) {
5259
				return false;
5260
			}
5261
		}
5262
5263
		$token = Jetpack_Data::get_access_token( $user_id );
5264
		if ( ! $token ) {
5265
			return false;
5266
		}
5267
5268
		$token_check = "$token_key.";
5269
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
5270
			return false;
5271
		}
5272
5273
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5274
5275
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5276
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
5277
			$post_data   = $_POST;
5278
			$file_hashes = array();
5279
			foreach ( $post_data as $post_data_key => $post_data_value ) {
5280
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
5281
					continue;
5282
				}
5283
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
5284
				$file_hashes[$post_data_key] = $post_data_value;
5285
			}
5286
5287
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
5288
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
5289
				$post_data[$post_data_key] = $post_data_value;
5290
			}
5291
5292
			ksort( $post_data );
5293
5294
			$body = http_build_query( stripslashes_deep( $post_data ) );
5295
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
5296
			$body = file_get_contents( 'php://input' );
5297
		} else {
5298
			$body = null;
5299
		}
5300
5301
		$signature = $jetpack_signature->sign_current_request(
5302
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
5303
		);
5304
5305
		if ( ! $signature ) {
5306
			return false;
5307
		} else if ( is_wp_error( $signature ) ) {
5308
			return $signature;
5309
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5310
			return false;
5311
		}
5312
5313
		$timestamp = (int) $_GET['timestamp'];
5314
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5315
5316
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5317
			return false;
5318
		}
5319
5320
		// Let's see if this is onboarding. In such case, use user token type and the provided user id.
5321
		if ( isset( $this->HTTP_RAW_POST_DATA ) ) {
5322
			$jpo = json_decode( $this->HTTP_RAW_POST_DATA );
5323
			if (
5324
				isset( $jpo->onboarding ) &&
5325
				isset( $jpo->onboarding->jpUser ) && isset( $jpo->onboarding->token ) &&
5326
				is_email( $jpo->onboarding->jpUser ) && ctype_alnum( $jpo->onboarding->token ) &&
5327
				isset( $_GET['rest_route'] ) &&
5328
				self::validate_onboarding_token_action( $jpo->onboarding->token, $_GET['rest_route'] )
5329
			) {
5330
				$jpUser = get_user_by( 'email', $jpo->onboarding->jpUser );
5331
				if ( is_a( $jpUser, 'WP_User' ) ) {
5332
					wp_set_current_user( $jpUser->ID );
5333
					$user_can = is_multisite()
5334
						? current_user_can_for_blog( get_current_blog_id(), 'manage_options' )
5335
						: current_user_can( 'manage_options' );
5336
					if ( $user_can ) {
5337
						$token_type = 'user';
5338
						$token->external_user_id = $jpUser->ID;
5339
					}
5340
				}
5341
			}
5342
		}
5343
5344
		$this->xmlrpc_verification = array(
5345
			'type'    => $token_type,
5346
			'user_id' => $token->external_user_id,
5347
		);
5348
5349
		return $this->xmlrpc_verification;
5350
	}
5351
5352
	/**
5353
	 * Authenticates XML-RPC and other requests from the Jetpack Server
5354
	 */
5355
	function authenticate_jetpack( $user, $username, $password ) {
5356
		if ( is_a( $user, 'WP_User' ) ) {
5357
			return $user;
5358
		}
5359
5360
		$token_details = $this->verify_xml_rpc_signature();
5361
5362
		if ( ! $token_details || is_wp_error( $token_details ) ) {
5363
			return $user;
5364
		}
5365
5366
		if ( 'user' !== $token_details['type'] ) {
5367
			return $user;
5368
		}
5369
5370
		if ( ! $token_details['user_id'] ) {
5371
			return $user;
5372
		}
5373
5374
		nocache_headers();
5375
5376
		return new WP_User( $token_details['user_id'] );
5377
	}
5378
5379
	// Authenticates requests from Jetpack server to WP REST API endpoints.
5380
	// Uses the existing XMLRPC request signing implementation.
5381
	function wp_rest_authenticate( $user ) {
5382
		if ( ! empty( $user ) ) {
5383
			// Another authentication method is in effect.
5384
			return $user;
5385
		}
5386
5387
		if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) {
5388
			// Nothing to do for this authentication method.
5389
			return null;
5390
		}
5391
5392
		if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) {
5393
			// Nothing to do for this authentication method.
5394
			return null;
5395
		}
5396
5397
		// Ensure that we always have the request body available.  At this
5398
		// point, the WP REST API code to determine the request body has not
5399
		// run yet.  That code may try to read from 'php://input' later, but
5400
		// this can only be done once per request in PHP versions prior to 5.6.
5401
		// So we will go ahead and perform this read now if needed, and save
5402
		// the request body where both the Jetpack signature verification code
5403
		// and the WP REST API code can see it.
5404
		if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) {
5405
			$GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' );
5406
		}
5407
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5408
5409
		// Only support specific request parameters that have been tested and
5410
		// are known to work with signature verification.  A different method
5411
		// can be passed to the WP REST API via the '?_method=' parameter if
5412
		// needed.
5413
		if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) {
5414
			$this->rest_authentication_status = new WP_Error(
5415
				'rest_invalid_request',
5416
				__( 'This request method is not supported.', 'jetpack' ),
5417
				array( 'status' => 400 )
5418
			);
5419
			return null;
5420
		}
5421
		if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) {
5422
			$this->rest_authentication_status = new WP_Error(
5423
				'rest_invalid_request',
5424
				__( 'This request method does not support body parameters.', 'jetpack' ),
5425
				array( 'status' => 400 )
5426
			);
5427
			return null;
5428
		}
5429
5430
		if ( ! empty( $_SERVER['CONTENT_TYPE'] ) ) {
5431
			$content_type = $_SERVER['CONTENT_TYPE'];
5432
		} elseif ( ! empty( $_SERVER['HTTP_CONTENT_TYPE'] ) ) {
5433
			$content_type = $_SERVER['HTTP_CONTENT_TYPE'];
5434
		}
5435
5436
		if (
5437
			isset( $content_type ) &&
5438
			$content_type !== 'application/x-www-form-urlencoded' &&
5439
			$content_type !== 'application/json'
5440
		) {
5441
			$this->rest_authentication_status = new WP_Error(
5442
				'rest_invalid_request',
5443
				__( 'This Content-Type is not supported.', 'jetpack' ),
5444
				array( 'status' => 400 )
5445
			);
5446
			return null;
5447
		}
5448
5449
		$verified = $this->verify_xml_rpc_signature();
5450
5451
		if ( is_wp_error( $verified ) ) {
5452
			$this->rest_authentication_status = $verified;
5453
			return null;
5454
		}
5455
5456
		if (
5457
			$verified &&
5458
			isset( $verified['type'] ) &&
5459
			'user' === $verified['type'] &&
5460
			! empty( $verified['user_id'] )
5461
		) {
5462
			// Authentication successful.
5463
			$this->rest_authentication_status = true;
5464
			return $verified['user_id'];
5465
		}
5466
5467
		// Something else went wrong.  Probably a signature error.
5468
		$this->rest_authentication_status = new WP_Error(
5469
			'rest_invalid_signature',
5470
			__( 'The request is not signed correctly.', 'jetpack' ),
5471
			array( 'status' => 400 )
5472
		);
5473
		return null;
5474
	}
5475
5476
	/**
5477
	 * Report authentication status to the WP REST API.
5478
	 *
5479
	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5480
	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5481
	 */
5482
	public function wp_rest_authentication_errors( $value ) {
5483
		if ( $value !== null ) {
5484
			return $value;
5485
		}
5486
		return $this->rest_authentication_status;
5487
	}
5488
5489
	function add_nonce( $timestamp, $nonce ) {
5490
		global $wpdb;
5491
		static $nonces_used_this_request = array();
5492
5493
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
5494
			return $nonces_used_this_request["$timestamp:$nonce"];
5495
		}
5496
5497
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
5498
		$timestamp = (int) $timestamp;
5499
		$nonce     = esc_sql( $nonce );
5500
5501
		// Raw query so we can avoid races: add_option will also update
5502
		$show_errors = $wpdb->show_errors( false );
5503
5504
		$old_nonce = $wpdb->get_row(
5505
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
5506
		);
5507
5508
		if ( is_null( $old_nonce ) ) {
5509
			$return = $wpdb->query(
5510
				$wpdb->prepare(
5511
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
5512
					"jetpack_nonce_{$timestamp}_{$nonce}",
5513
					time(),
5514
					'no'
5515
				)
5516
			);
5517
		} else {
5518
			$return = false;
5519
		}
5520
5521
		$wpdb->show_errors( $show_errors );
5522
5523
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
5524
5525
		return $return;
5526
	}
5527
5528
	/**
5529
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
5530
	 * Capture it here so we can verify the signature later.
5531
	 */
5532
	function xmlrpc_methods( $methods ) {
5533
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5534
		return $methods;
5535
	}
5536
5537
	function public_xmlrpc_methods( $methods ) {
5538
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
5539
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
5540
		}
5541
		return $methods;
5542
	}
5543
5544
	function jetpack_getOptions( $args ) {
5545
		global $wp_xmlrpc_server;
5546
5547
		$wp_xmlrpc_server->escape( $args );
5548
5549
		$username	= $args[1];
5550
		$password	= $args[2];
5551
5552
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
5553
			return $wp_xmlrpc_server->error;
5554
		}
5555
5556
		$options = array();
5557
		$user_data = $this->get_connected_user_data();
5558
		if ( is_array( $user_data ) ) {
5559
			$options['jetpack_user_id'] = array(
5560
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
5561
				'readonly'      => true,
5562
				'value'         => $user_data['ID'],
5563
			);
5564
			$options['jetpack_user_login'] = array(
5565
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
5566
				'readonly'      => true,
5567
				'value'         => $user_data['login'],
5568
			);
5569
			$options['jetpack_user_email'] = array(
5570
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
5571
				'readonly'      => true,
5572
				'value'         => $user_data['email'],
5573
			);
5574
			$options['jetpack_user_site_count'] = array(
5575
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
5576
				'readonly'      => true,
5577
				'value'         => $user_data['site_count'],
5578
			);
5579
		}
5580
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
5581
		$args = stripslashes_deep( $args );
5582
		return $wp_xmlrpc_server->wp_getOptions( $args );
5583
	}
5584
5585
	function xmlrpc_options( $options ) {
5586
		$jetpack_client_id = false;
5587
		if ( self::is_active() ) {
5588
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
5589
		}
5590
		$options['jetpack_version'] = array(
5591
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
5592
				'readonly'      => true,
5593
				'value'         => JETPACK__VERSION,
5594
		);
5595
5596
		$options['jetpack_client_id'] = array(
5597
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
5598
				'readonly'      => true,
5599
				'value'         => $jetpack_client_id,
5600
		);
5601
		return $options;
5602
	}
5603
5604
	public static function clean_nonces( $all = false ) {
5605
		global $wpdb;
5606
5607
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
5608
		$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
5609
5610
		if ( true !== $all ) {
5611
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
5612
			$sql_args[] = time() - 3600;
5613
		}
5614
5615
		$sql .= ' ORDER BY `option_id` LIMIT 100';
5616
5617
		$sql = $wpdb->prepare( $sql, $sql_args );
5618
5619
		for ( $i = 0; $i < 1000; $i++ ) {
5620
			if ( ! $wpdb->query( $sql ) ) {
5621
				break;
5622
			}
5623
		}
5624
	}
5625
5626
	/**
5627
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
5628
	 * SET: state( $key, $value );
5629
	 * GET: $value = state( $key );
5630
	 *
5631
	 * @param string $key
5632
	 * @param string $value
5633
	 * @param bool $restate private
5634
	 */
5635
	public static function state( $key = null, $value = null, $restate = false ) {
5636
		static $state = array();
5637
		static $path, $domain;
5638
		if ( ! isset( $path ) ) {
5639
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
5640
			$admin_url = Jetpack::admin_url();
5641
			$bits      = parse_url( $admin_url );
5642
5643
			if ( is_array( $bits ) ) {
5644
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
5645
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
5646
			} else {
5647
				$path = $domain = null;
5648
			}
5649
		}
5650
5651
		// Extract state from cookies and delete cookies
5652
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
5653
			$yum = $_COOKIE[ 'jetpackState' ];
5654
			unset( $_COOKIE[ 'jetpackState' ] );
5655
			foreach ( $yum as $k => $v ) {
5656
				if ( strlen( $v ) )
5657
					$state[ $k ] = $v;
5658
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
5659
			}
5660
		}
5661
5662
		if ( $restate ) {
5663
			foreach ( $state as $k => $v ) {
5664
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
5665
			}
5666
			return;
5667
		}
5668
5669
		// Get a state variable
5670
		if ( isset( $key ) && ! isset( $value ) ) {
5671
			if ( array_key_exists( $key, $state ) )
5672
				return $state[ $key ];
5673
			return null;
5674
		}
5675
5676
		// Set a state variable
5677
		if ( isset ( $key ) && isset( $value ) ) {
5678
			if( is_array( $value ) && isset( $value[0] ) ) {
5679
				$value = $value[0];
5680
			}
5681
			$state[ $key ] = $value;
5682
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
5683
		}
5684
	}
5685
5686
	public static function restate() {
5687
		Jetpack::state( null, null, true );
5688
	}
5689
5690
	public static function check_privacy( $file ) {
5691
		static $is_site_publicly_accessible = null;
5692
5693
		if ( is_null( $is_site_publicly_accessible ) ) {
5694
			$is_site_publicly_accessible = false;
5695
5696
			Jetpack::load_xml_rpc_client();
5697
			$rpc = new Jetpack_IXR_Client();
5698
5699
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
5700
			if ( $success ) {
5701
				$response = $rpc->getResponse();
5702
				if ( $response ) {
5703
					$is_site_publicly_accessible = true;
5704
				}
5705
			}
5706
5707
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
5708
		}
5709
5710
		if ( $is_site_publicly_accessible ) {
5711
			return;
5712
		}
5713
5714
		$module_slug = self::get_module_slug( $file );
5715
5716
		$privacy_checks = Jetpack::state( 'privacy_checks' );
5717
		if ( ! $privacy_checks ) {
5718
			$privacy_checks = $module_slug;
5719
		} else {
5720
			$privacy_checks .= ",$module_slug";
5721
		}
5722
5723
		Jetpack::state( 'privacy_checks', $privacy_checks );
5724
	}
5725
5726
	/**
5727
	 * Helper method for multicall XMLRPC.
5728
	 */
5729
	public static function xmlrpc_async_call() {
5730
		global $blog_id;
5731
		static $clients = array();
5732
5733
		$client_blog_id = is_multisite() ? $blog_id : 0;
5734
5735
		if ( ! isset( $clients[$client_blog_id] ) ) {
5736
			Jetpack::load_xml_rpc_client();
5737
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
5738
			if ( function_exists( 'ignore_user_abort' ) ) {
5739
				ignore_user_abort( true );
5740
			}
5741
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
5742
		}
5743
5744
		$args = func_get_args();
5745
5746
		if ( ! empty( $args[0] ) ) {
5747
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
5748
		} elseif ( is_multisite() ) {
5749
			foreach ( $clients as $client_blog_id => $client ) {
5750
				if ( ! $client_blog_id || empty( $client->calls ) ) {
5751
					continue;
5752
				}
5753
5754
				$switch_success = switch_to_blog( $client_blog_id, true );
5755
				if ( ! $switch_success ) {
5756
					continue;
5757
				}
5758
5759
				flush();
5760
				$client->query();
5761
5762
				restore_current_blog();
5763
			}
5764
		} else {
5765
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
5766
				flush();
5767
				$clients[0]->query();
5768
			}
5769
		}
5770
	}
5771
5772
	public static function staticize_subdomain( $url ) {
5773
5774
		// Extract hostname from URL
5775
		$host = parse_url( $url, PHP_URL_HOST );
5776
5777
		// Explode hostname on '.'
5778
		$exploded_host = explode( '.', $host );
5779
5780
		// Retrieve the name and TLD
5781
		if ( count( $exploded_host ) > 1 ) {
5782
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
5783
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
5784
			// Rebuild domain excluding subdomains
5785
			$domain = $name . '.' . $tld;
5786
		} else {
5787
			$domain = $host;
5788
		}
5789
		// Array of Automattic domains
5790
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
5791
5792
		// Return $url if not an Automattic domain
5793
		if ( ! in_array( $domain, $domain_whitelist ) ) {
5794
			return $url;
5795
		}
5796
5797
		if ( is_ssl() ) {
5798
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
5799
		}
5800
5801
		srand( crc32( basename( $url ) ) );
5802
		$static_counter = rand( 0, 2 );
5803
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
5804
5805
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
5806
	}
5807
5808
/* JSON API Authorization */
5809
5810
	/**
5811
	 * Handles the login action for Authorizing the JSON API
5812
	 */
5813
	function login_form_json_api_authorization() {
5814
		$this->verify_json_api_authorization_request();
5815
5816
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
5817
5818
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
5819
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
5820
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
5821
	}
5822
5823
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
5824
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
5825
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
5826
			return $url;
5827
		}
5828
5829
		$parsed_url = parse_url( $url );
5830
		$url = strtok( $url, '?' );
5831
		$url = "$url?{$_SERVER['QUERY_STRING']}";
5832
		if ( ! empty( $parsed_url['query'] ) )
5833
			$url .= "&{$parsed_url['query']}";
5834
5835
		return $url;
5836
	}
5837
5838
	// Make sure the POSTed request is handled by the same action
5839
	function preserve_action_in_login_form_for_json_api_authorization() {
5840
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
5841
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
5842
	}
5843
5844
	// If someone logs in to approve API access, store the Access Code in usermeta
5845
	function store_json_api_authorization_token( $user_login, $user ) {
5846
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
5847
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
5848
		$token = wp_generate_password( 32, false );
5849
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
5850
	}
5851
5852
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
5853
	function allow_wpcom_public_api_domain( $domains ) {
5854
		$domains[] = 'public-api.wordpress.com';
5855
		return $domains;
5856
	}
5857
5858
	// Add the Access Code details to the public-api.wordpress.com redirect
5859
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
5860
		return add_query_arg(
5861
			urlencode_deep(
5862
				array(
5863
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
5864
					'jetpack-user-id' => (int) $user->ID,
5865
					'jetpack-state'   => $this->json_api_authorization_request['state'],
5866
				)
5867
			),
5868
			$redirect_to
5869
		);
5870
	}
5871
5872
5873
	/**
5874
	 * Verifies the request by checking the signature
5875
	 *
5876
	 * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow
5877
	 * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO.
5878
	 *
5879
	 * @param null|array $environment
5880
	 */
5881
	function verify_json_api_authorization_request( $environment = null ) {
5882
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5883
5884
		$environment = is_null( $environment )
5885
			? $_REQUEST
5886
			: $environment;
5887
5888
		list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] );
5889
		$token = Jetpack_Data::get_access_token( $envUserId );
5890
		if ( ! $token || empty( $token->secret ) ) {
5891
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
5892
		}
5893
5894
		$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' );
5895
5896
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5897
5898
		if ( isset( $environment['jetpack_json_api_original_query'] ) ) {
5899
			$signature = $jetpack_signature->sign_request(
5900
				$environment['token'],
5901
				$environment['timestamp'],
5902
				$environment['nonce'],
5903
				'',
5904
				'GET',
5905
				$environment['jetpack_json_api_original_query'],
5906
				null,
5907
				true
5908
			);
5909
		} else {
5910
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
5911
		}
5912
5913
		if ( ! $signature ) {
5914
			wp_die( $die_error );
5915
		} else if ( is_wp_error( $signature ) ) {
5916
			wp_die( $die_error );
5917
		} else if ( ! hash_equals( $signature, $environment['signature'] ) ) {
5918
			if ( is_ssl() ) {
5919
				// 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
5920
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
5921
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) {
5922
					wp_die( $die_error );
5923
				}
5924
			} else {
5925
				wp_die( $die_error );
5926
			}
5927
		}
5928
5929
		$timestamp = (int) $environment['timestamp'];
5930
		$nonce     = stripslashes( (string) $environment['nonce'] );
5931
5932
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5933
			// De-nonce the nonce, at least for 5 minutes.
5934
			// 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)
5935
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5936
			if ( $old_nonce_time < time() - 300 ) {
5937
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
5938
			}
5939
		}
5940
5941
		$data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) );
5942
		$data_filters = array(
5943
			'state'        => 'opaque',
5944
			'client_id'    => 'int',
5945
			'client_title' => 'string',
5946
			'client_image' => 'url',
5947
		);
5948
5949
		foreach ( $data_filters as $key => $sanitation ) {
5950
			if ( ! isset( $data->$key ) ) {
5951
				wp_die( $die_error );
5952
			}
5953
5954
			switch ( $sanitation ) {
5955
			case 'int' :
5956
				$this->json_api_authorization_request[$key] = (int) $data->$key;
5957
				break;
5958
			case 'opaque' :
5959
				$this->json_api_authorization_request[$key] = (string) $data->$key;
5960
				break;
5961
			case 'string' :
5962
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
5963
				break;
5964
			case 'url' :
5965
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
5966
				break;
5967
			}
5968
		}
5969
5970
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5971
			wp_die( $die_error );
5972
		}
5973
	}
5974
5975
	function login_message_json_api_authorization( $message ) {
5976
		return '<p class="message">' . sprintf(
5977
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
5978
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5979
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5980
	}
5981
5982
	/**
5983
	 * Get $content_width, but with a <s>twist</s> filter.
5984
	 */
5985
	public static function get_content_width() {
5986
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5987
		/**
5988
		 * Filter the Content Width value.
5989
		 *
5990
		 * @since 2.2.3
5991
		 *
5992
		 * @param string $content_width Content Width value.
5993
		 */
5994
		return apply_filters( 'jetpack_content_width', $content_width );
5995
	}
5996
5997
	/**
5998
	 * Pings the WordPress.com Mirror Site for the specified options.
5999
	 *
6000
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
6001
	 *
6002
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
6003
	 */
6004
	public function get_cloud_site_options( $option_names ) {
6005
		$option_names = array_filter( (array) $option_names, 'is_string' );
6006
6007
		Jetpack::load_xml_rpc_client();
6008
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
6009
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
6010
		if ( $xml->isError() ) {
6011
			return array(
6012
				'error_code' => $xml->getErrorCode(),
6013
				'error_msg'  => $xml->getErrorMessage(),
6014
			);
6015
		}
6016
		$cloud_site_options = $xml->getResponse();
6017
6018
		return $cloud_site_options;
6019
	}
6020
6021
	/**
6022
	 * Checks if the site is currently in an identity crisis.
6023
	 *
6024
	 * @return array|bool Array of options that are in a crisis, or false if everything is OK.
6025
	 */
6026
	public static function check_identity_crisis() {
6027
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) {
6028
			return false;
6029
		}
6030
6031
		return Jetpack_Options::get_option( 'sync_error_idc' );
6032
	}
6033
6034
	/**
6035
	 * Checks whether the home and siteurl specifically are whitelisted
6036
	 * Written so that we don't have re-check $key and $value params every time
6037
	 * we want to check if this site is whitelisted, for example in footer.php
6038
	 *
6039
	 * @since  3.8.0
6040
	 * @return bool True = already whitelisted False = not whitelisted
6041
	 */
6042
	public static function is_staging_site() {
6043
		$is_staging = false;
6044
6045
		$known_staging = array(
6046
			'urls' => array(
6047
				'#\.staging\.wpengine\.com$#i', // WP Engine
6048
				'#\.staging\.kinsta\.com$#i',   // Kinsta.com
6049
				),
6050
			'constants' => array(
6051
				'IS_WPE_SNAPSHOT',      // WP Engine
6052
				'KINSTA_DEV_ENV',       // Kinsta.com
6053
				'WPSTAGECOACH_STAGING', // WP Stagecoach
6054
				'JETPACK_STAGING_MODE', // Generic
6055
				)
6056
			);
6057
		/**
6058
		 * Filters the flags of known staging sites.
6059
		 *
6060
		 * @since 3.9.0
6061
		 *
6062
		 * @param array $known_staging {
6063
		 *     An array of arrays that each are used to check if the current site is staging.
6064
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
6065
		 *     @type array $constants PHP constants of known staging/developement environments.
6066
		 *  }
6067
		 */
6068
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
6069
6070
		if ( isset( $known_staging['urls'] ) ) {
6071
			foreach ( $known_staging['urls'] as $url ){
6072
				if ( preg_match( $url, site_url() ) ) {
6073
					$is_staging = true;
6074
					break;
6075
				}
6076
			}
6077
		}
6078
6079
		if ( isset( $known_staging['constants'] ) ) {
6080
			foreach ( $known_staging['constants'] as $constant ) {
6081
				if ( defined( $constant ) && constant( $constant ) ) {
6082
					$is_staging = true;
6083
				}
6084
			}
6085
		}
6086
6087
		// Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode.
6088
		if ( ! $is_staging && self::validate_sync_error_idc_option() ) {
6089
			$is_staging = true;
6090
		}
6091
6092
		/**
6093
		 * Filters is_staging_site check.
6094
		 *
6095
		 * @since 3.9.0
6096
		 *
6097
		 * @param bool $is_staging If the current site is a staging site.
6098
		 */
6099
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
6100
	}
6101
6102
	/**
6103
	 * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup.
6104
	 *
6105
	 * @since 4.4.0
6106
	 * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC
6107
	 *
6108
	 * @return bool
6109
	 */
6110
	public static function validate_sync_error_idc_option() {
6111
		$is_valid = false;
6112
6113
		$idc_allowed = get_transient( 'jetpack_idc_allowed' );
6114
		if ( false === $idc_allowed ) {
6115
			$response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' );
6116
			if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) {
6117
				$json = json_decode( wp_remote_retrieve_body( $response ) );
6118
				$idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0';
6119
				$transient_duration = HOUR_IN_SECONDS;
6120
			} else {
6121
				// If the request failed for some reason, then assume IDC is allowed and set shorter transient.
6122
				$idc_allowed = '1';
6123
				$transient_duration = 5 * MINUTE_IN_SECONDS;
6124
			}
6125
6126
			set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration );
6127
		}
6128
6129
		// Is the site opted in and does the stored sync_error_idc option match what we now generate?
6130
		$sync_error = Jetpack_Options::get_option( 'sync_error_idc' );
6131
		if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) {
6132
			$local_options = self::get_sync_error_idc_option();
6133
			if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) {
6134
				$is_valid = true;
6135
			}
6136
		}
6137
6138
		/**
6139
		 * Filters whether the sync_error_idc option is valid.
6140
		 *
6141
		 * @since 4.4.0
6142
		 *
6143
		 * @param bool $is_valid If the sync_error_idc is valid or not.
6144
		 */
6145
		$is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid );
6146
6147
		if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) {
6148
			// Since the option exists, and did not validate, delete it
6149
			Jetpack_Options::delete_option( 'sync_error_idc' );
6150
		}
6151
6152
		return $is_valid;
6153
	}
6154
6155
	/**
6156
	 * Normalizes a url by doing three things:
6157
	 *  - Strips protocol
6158
	 *  - Strips www
6159
	 *  - Adds a trailing slash
6160
	 *
6161
	 * @since 4.4.0
6162
	 * @param string $url
6163
	 * @return WP_Error|string
6164
	 */
6165
	public static function normalize_url_protocol_agnostic( $url ) {
6166
		$parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) );
6167
		if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) {
6168
			return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) );
6169
		}
6170
6171
		// Strip www and protocols
6172
		$url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] );
6173
		return $url;
6174
	}
6175
6176
	/**
6177
	 * Gets the value that is to be saved in the jetpack_sync_error_idc option.
6178
	 *
6179
	 * @since 4.4.0
6180
	 * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB
6181
	 *
6182
	 * @param array $response
6183
	 * @return array Array of the local urls, wpcom urls, and error code
6184
	 */
6185
	public static function get_sync_error_idc_option( $response = array() ) {
6186
		// Since the local options will hit the database directly, store the values
6187
		// in a transient to allow for autoloading and caching on subsequent views.
6188
		$local_options = get_transient( 'jetpack_idc_local' );
6189
		if ( false === $local_options ) {
6190
			require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-functions.php';
6191
			$local_options = array(
6192
				'home'    => Jetpack_Sync_Functions::home_url(),
6193
				'siteurl' => Jetpack_Sync_Functions::site_url(),
6194
			);
6195
			set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS );
6196
		}
6197
6198
		$options = array_merge( $local_options, $response );
6199
6200
		$returned_values = array();
6201
		foreach( $options as $key => $option ) {
6202
			if ( 'error_code' === $key ) {
6203
				$returned_values[ $key ] = $option;
6204
				continue;
6205
			}
6206
6207
			if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) {
6208
				continue;
6209
			}
6210
6211
			$returned_values[ $key ] = $normalized_url;
6212
		}
6213
6214
		set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS );
6215
6216
		return $returned_values;
6217
	}
6218
6219
	/**
6220
	 * Returns the value of the jetpack_sync_idc_optin filter, or constant.
6221
	 * If set to true, the site will be put into staging mode.
6222
	 *
6223
	 * @since 4.3.2
6224
	 * @return bool
6225
	 */
6226
	public static function sync_idc_optin() {
6227
		if ( Jetpack_Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) {
6228
			$default = Jetpack_Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' );
6229
		} else {
6230
			$default = ! Jetpack_Constants::is_defined( 'SUNRISE' ) && ! is_multisite();
6231
		}
6232
6233
		/**
6234
		 * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home
6235
		 * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of
6236
		 * JETPACK_SYNC_IDC_OPTIN constant if set.
6237
		 *
6238
		 * @since 4.3.2
6239
		 *
6240
		 * @param bool $default Whether the site is opted in to IDC mitigation.
6241
		 */
6242
		return (bool) apply_filters( 'jetpack_sync_idc_optin', $default );
6243
	}
6244
6245
	/**
6246
	 * Maybe Use a .min.css stylesheet, maybe not.
6247
	 *
6248
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
6249
	 */
6250
	public static function maybe_min_asset( $url, $path, $plugin ) {
6251
		// Short out on things trying to find actual paths.
6252
		if ( ! $path || empty( $plugin ) ) {
6253
			return $url;
6254
		}
6255
6256
		$path = ltrim( $path, '/' );
6257
6258
		// Strip out the abspath.
6259
		$base = dirname( plugin_basename( $plugin ) );
6260
6261
		// Short out on non-Jetpack assets.
6262
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
6263
			return $url;
6264
		}
6265
6266
		// File name parsing.
6267
		$file              = "{$base}/{$path}";
6268
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
6269
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
6270
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
6271
		$extension         = array_shift( $file_name_parts_r );
6272
6273
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
6274
			// Already pointing at the minified version.
6275
			if ( 'min' === $file_name_parts_r[0] ) {
6276
				return $url;
6277
			}
6278
6279
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
6280
			if ( file_exists( $min_full_path ) ) {
6281
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
6282
				// If it's a CSS file, stash it so we can set the .min suffix for rtl-ing.
6283
				if ( 'css' === $extension ) {
6284
					$key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path );
6285
					self::$min_assets[ $key ] = $path;
6286
				}
6287
			}
6288
		}
6289
6290
		return $url;
6291
	}
6292
6293
	/**
6294
	 * If the asset is minified, let's flag .min as the suffix.
6295
	 *
6296
	 * Attached to `style_loader_src` filter.
6297
	 *
6298
	 * @param string $tag The tag that would link to the external asset.
6299
	 * @param string $handle The registered handle of the script in question.
6300
	 * @param string $href The url of the asset in question.
6301
	 */
6302
	public static function set_suffix_on_min( $src, $handle ) {
6303
		if ( false === strpos( $src, '.min.css' ) ) {
6304
			return $src;
6305
		}
6306
6307
		if ( ! empty( self::$min_assets ) ) {
6308
			foreach ( self::$min_assets as $file => $path ) {
6309
				if ( false !== strpos( $src, $file ) ) {
6310
					wp_style_add_data( $handle, 'suffix', '.min' );
6311
					return $src;
6312
				}
6313
			}
6314
		}
6315
6316
		return $src;
6317
	}
6318
6319
	/**
6320
	 * Maybe inlines a stylesheet.
6321
	 *
6322
	 * If you'd like to inline a stylesheet instead of printing a link to it,
6323
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
6324
	 *
6325
	 * Attached to `style_loader_tag` filter.
6326
	 *
6327
	 * @param string $tag The tag that would link to the external asset.
6328
	 * @param string $handle The registered handle of the script in question.
6329
	 *
6330
	 * @return string
6331
	 */
6332
	public static function maybe_inline_style( $tag, $handle ) {
6333
		global $wp_styles;
6334
		$item = $wp_styles->registered[ $handle ];
6335
6336
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
6337
			return $tag;
6338
		}
6339
6340
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
6341
			$href = $matches[1];
6342
			// Strip off query string
6343
			if ( $pos = strpos( $href, '?' ) ) {
6344
				$href = substr( $href, 0, $pos );
6345
			}
6346
			// Strip off fragment
6347
			if ( $pos = strpos( $href, '#' ) ) {
6348
				$href = substr( $href, 0, $pos );
6349
			}
6350
		} else {
6351
			return $tag;
6352
		}
6353
6354
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
6355
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
6356
			return $tag;
6357
		}
6358
6359
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
6360
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
6361
			// And this isn't the pass that actually deals with the RTL version...
6362
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
6363
				// Short out, as the RTL version will deal with it in a moment.
6364
				return $tag;
6365
			}
6366
		}
6367
6368
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
6369
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
6370
		if ( $css ) {
6371
			$tag = "<!-- Inline {$item->handle} -->\r\n";
6372
			if ( empty( $item->extra['after'] ) ) {
6373
				wp_add_inline_style( $handle, $css );
6374
			} else {
6375
				array_unshift( $item->extra['after'], $css );
6376
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
6377
			}
6378
		}
6379
6380
		return $tag;
6381
	}
6382
6383
	/**
6384
	 * Loads a view file from the views
6385
	 *
6386
	 * Data passed in with the $data parameter will be available in the
6387
	 * template file as $data['value']
6388
	 *
6389
	 * @param string $template - Template file to load
6390
	 * @param array $data - Any data to pass along to the template
6391
	 * @return boolean - If template file was found
6392
	 **/
6393
	public function load_view( $template, $data = array() ) {
6394
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
6395
6396
		if( file_exists( $views_dir . $template ) ) {
6397
			require_once( $views_dir . $template );
6398
			return true;
6399
		}
6400
6401
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
6402
		return false;
6403
	}
6404
6405
	/**
6406
	 * Throws warnings for deprecated hooks to be removed from Jetpack
6407
	 */
6408
	public function deprecated_hooks() {
6409
		global $wp_filter;
6410
6411
		/*
6412
		 * Format:
6413
		 * deprecated_filter_name => replacement_name
6414
		 *
6415
		 * If there is no replacement, use null for replacement_name
6416
		 */
6417
		$deprecated_list = array(
6418
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
6419
			'wpl_sharing_2014_1'                                     => null,
6420
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
6421
			'jetpack_identity_crisis_options_to_check'               => null,
6422
			'update_option_jetpack_single_user_site'                 => null,
6423
			'audio_player_default_colors'                            => null,
6424
			'add_option_jetpack_featured_images_enabled'             => null,
6425
			'add_option_jetpack_update_details'                      => null,
6426
			'add_option_jetpack_updates'                             => null,
6427
			'add_option_jetpack_network_name'                        => null,
6428
			'add_option_jetpack_network_allow_new_registrations'     => null,
6429
			'add_option_jetpack_network_add_new_users'               => null,
6430
			'add_option_jetpack_network_site_upload_space'           => null,
6431
			'add_option_jetpack_network_upload_file_types'           => null,
6432
			'add_option_jetpack_network_enable_administration_menus' => null,
6433
			'add_option_jetpack_is_multi_site'                       => null,
6434
			'add_option_jetpack_is_main_network'                     => null,
6435
			'add_option_jetpack_main_network_site'                   => null,
6436
			'jetpack_sync_all_registered_options'                    => null,
6437
			'jetpack_has_identity_crisis'                            => 'jetpack_sync_error_idc_validation',
6438
			'jetpack_is_post_mailable'                               => null,
6439
			'jetpack_seo_site_host'                                  => null,
6440
		);
6441
6442
		// This is a silly loop depth. Better way?
6443
		foreach( $deprecated_list AS $hook => $hook_alt ) {
6444
			if ( has_action( $hook ) ) {
6445
				foreach( $wp_filter[ $hook ] AS $func => $values ) {
6446
					foreach( $values AS $hooked ) {
6447
						if ( is_callable( $hooked['function'] ) ) {
6448
							$function_name = 'an anonymous function';
6449
						} else {
6450
							$function_name = $hooked['function'];
6451
						}
6452
						_deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt );
6453
					}
6454
				}
6455
			}
6456
		}
6457
	}
6458
6459
	/**
6460
	 * Converts any url in a stylesheet, to the correct absolute url.
6461
	 *
6462
	 * Considerations:
6463
	 *  - Normal, relative URLs     `feh.png`
6464
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
6465
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
6466
	 *  - Absolute URLs             `http://domain.com/feh.png`
6467
	 *  - Domain root relative URLs `/feh.png`
6468
	 *
6469
	 * @param $css string: The raw CSS -- should be read in directly from the file.
6470
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6471
	 *
6472
	 * @return mixed|string
6473
	 */
6474
	public static function absolutize_css_urls( $css, $css_file_url ) {
6475
		$pattern = '#url\((?P<path>[^)]*)\)#i';
6476
		$css_dir = dirname( $css_file_url );
6477
		$p       = parse_url( $css_dir );
6478
		$domain  = sprintf(
6479
					'%1$s//%2$s%3$s%4$s',
6480
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
6481
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
6482
					$p['host'],
6483
					isset( $p['port'] )             ? ":{$p['port']}" : ''
6484
				);
6485
6486
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
6487
			$find = $replace = array();
6488
			foreach ( $matches as $match ) {
6489
				$url = trim( $match['path'], "'\" \t" );
6490
6491
				// If this is a data url, we don't want to mess with it.
6492
				if ( 'data:' === substr( $url, 0, 5 ) ) {
6493
					continue;
6494
				}
6495
6496
				// If this is an absolute or protocol-agnostic url,
6497
				// we don't want to mess with it.
6498
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
6499
					continue;
6500
				}
6501
6502
				switch ( substr( $url, 0, 1 ) ) {
6503
					case '/':
6504
						$absolute = $domain . $url;
6505
						break;
6506
					default:
6507
						$absolute = $css_dir . '/' . $url;
6508
				}
6509
6510
				$find[]    = $match[0];
6511
				$replace[] = sprintf( 'url("%s")', $absolute );
6512
			}
6513
			$css = str_replace( $find, $replace, $css );
6514
		}
6515
6516
		return $css;
6517
	}
6518
6519
	/**
6520
	 * This methods removes all of the registered css files on the front end
6521
	 * from Jetpack in favor of using a single file. In effect "imploding"
6522
	 * all the files into one file.
6523
	 *
6524
	 * Pros:
6525
	 * - Uses only ONE css asset connection instead of 15
6526
	 * - Saves a minimum of 56k
6527
	 * - Reduces server load
6528
	 * - Reduces time to first painted byte
6529
	 *
6530
	 * Cons:
6531
	 * - Loads css for ALL modules. However all selectors are prefixed so it
6532
	 *		should not cause any issues with themes.
6533
	 * - Plugins/themes dequeuing styles no longer do anything. See
6534
	 *		jetpack_implode_frontend_css filter for a workaround
6535
	 *
6536
	 * For some situations developers may wish to disable css imploding and
6537
	 * instead operate in legacy mode where each file loads seperately and
6538
	 * can be edited individually or dequeued. This can be accomplished with
6539
	 * the following line:
6540
	 *
6541
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6542
	 *
6543
	 * @since 3.2
6544
	 **/
6545
	public function implode_frontend_css( $travis_test = false ) {
6546
		$do_implode = true;
6547
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6548
			$do_implode = false;
6549
		}
6550
6551
		/**
6552
		 * Allow CSS to be concatenated into a single jetpack.css file.
6553
		 *
6554
		 * @since 3.2.0
6555
		 *
6556
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
6557
		 */
6558
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6559
6560
		// Do not use the imploded file when default behaviour was altered through the filter
6561
		if ( ! $do_implode ) {
6562
			return;
6563
		}
6564
6565
		// We do not want to use the imploded file in dev mode, or if not connected
6566
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
6567
			if ( ! $travis_test ) {
6568
				return;
6569
			}
6570
		}
6571
6572
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
6573
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
6574
			return;
6575
		}
6576
6577
		/*
6578
		 * Now we assume Jetpack is connected and able to serve the single
6579
		 * file.
6580
		 *
6581
		 * In the future there will be a check here to serve the file locally
6582
		 * or potentially from the Jetpack CDN
6583
		 *
6584
		 * For now:
6585
		 * - Enqueue a single imploded css file
6586
		 * - Zero out the style_loader_tag for the bundled ones
6587
		 * - Be happy, drink scotch
6588
		 */
6589
6590
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6591
6592
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6593
6594
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6595
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6596
	}
6597
6598
	function concat_remove_style_loader_tag( $tag, $handle ) {
6599
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
6600
			$tag = '';
6601
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6602
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6603
			}
6604
		}
6605
6606
		return $tag;
6607
	}
6608
6609
	/*
6610
	 * Check the heartbeat data
6611
	 *
6612
	 * Organizes the heartbeat data by severity.  For example, if the site
6613
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
6614
	 *
6615
	 * Data will be added to "caution" array, if it either:
6616
	 *  - Out of date Jetpack version
6617
	 *  - Out of date WP version
6618
	 *  - Out of date PHP version
6619
	 *
6620
	 * $return array $filtered_data
6621
	 */
6622
	public static function jetpack_check_heartbeat_data() {
6623
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
6624
6625
		$good    = array();
6626
		$caution = array();
6627
		$bad     = array();
6628
6629
		foreach ( $raw_data as $stat => $value ) {
6630
6631
			// Check jetpack version
6632
			if ( 'version' == $stat ) {
6633
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
6634
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
6635
					continue;
6636
				}
6637
			}
6638
6639
			// Check WP version
6640
			if ( 'wp-version' == $stat ) {
6641
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
6642
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
6643
					continue;
6644
				}
6645
			}
6646
6647
			// Check PHP version
6648
			if ( 'php-version' == $stat ) {
6649
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
6650
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
6651
					continue;
6652
				}
6653
			}
6654
6655
			// Check ID crisis
6656
			if ( 'identitycrisis' == $stat ) {
6657
				if ( 'yes' == $value ) {
6658
					$bad[ $stat ] = $value;
6659
					continue;
6660
				}
6661
			}
6662
6663
			// The rest are good :)
6664
			$good[ $stat ] = $value;
6665
		}
6666
6667
		$filtered_data = array(
6668
			'good'    => $good,
6669
			'caution' => $caution,
6670
			'bad'     => $bad
6671
		);
6672
6673
		return $filtered_data;
6674
	}
6675
6676
6677
	/*
6678
	 * This method is used to organize all options that can be reset
6679
	 * without disconnecting Jetpack.
6680
	 *
6681
	 * It is used in class.jetpack-cli.php to reset options
6682
	 *
6683
	 * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat.
6684
	 *
6685
	 * @return array of options to delete.
6686
	 */
6687
	public static function get_jetpack_options_for_reset() {
6688
		return Jetpack_Options::get_options_for_reset();
6689
	}
6690
6691
	/**
6692
	 * Check if an option of a Jetpack module has been updated.
6693
	 *
6694
	 * If any module option has been updated before Jump Start has been dismissed,
6695
	 * update the 'jumpstart' option so we can hide Jump Start.
6696
	 *
6697
	 * @param string $option_name
6698
	 *
6699
	 * @return bool
6700
	 */
6701
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6702
		// Bail if Jump Start has already been dismissed
6703
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
6704
			return false;
6705
		}
6706
6707
		$jetpack = Jetpack::init();
6708
6709
		// Manual build of module options
6710
		$option_names = self::get_jetpack_options_for_reset();
6711
6712
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6713
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6714
6715
			//Jump start is being dismissed send data to MC Stats
6716
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6717
6718
			$jetpack->do_stats( 'server_side' );
6719
		}
6720
6721
	}
6722
6723
	/*
6724
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6725
	 * so we can bring them directly to their site in calypso.
6726
	 *
6727
	 * @param string | url
6728
	 * @return string | url without the guff
6729
	 */
6730
	public static function build_raw_urls( $url ) {
6731
		$strip_http = '/.*?:\/\//i';
6732
		$url = preg_replace( $strip_http, '', $url  );
6733
		$url = str_replace( '/', '::', $url );
6734
		return $url;
6735
	}
6736
6737
	/**
6738
	 * Stores and prints out domains to prefetch for page speed optimization.
6739
	 *
6740
	 * @param mixed $new_urls
6741
	 */
6742
	public static function dns_prefetch( $new_urls = null ) {
6743
		static $prefetch_urls = array();
6744
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6745
			echo "\r\n";
6746
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6747
				printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) );
6748
			}
6749
		} elseif ( ! empty( $new_urls ) ) {
6750
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6751
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6752
			}
6753
			foreach ( (array) $new_urls as $this_new_url ) {
6754
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6755
			}
6756
			$prefetch_urls = array_unique( $prefetch_urls );
6757
		}
6758
	}
6759
6760
	public function wp_dashboard_setup() {
6761
		if ( self::is_active() ) {
6762
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6763
		}
6764
6765
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6766
			wp_add_dashboard_widget(
6767
				'jetpack_summary_widget',
6768
				esc_html__( 'Site Stats', 'jetpack' ),
6769
				array( __CLASS__, 'dashboard_widget' )
6770
			);
6771
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6772
6773
			// If we're inactive and not in development mode, sort our box to the top.
6774
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6775
				global $wp_meta_boxes;
6776
6777
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6778
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6779
6780
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6781
			}
6782
		}
6783
	}
6784
6785
	/**
6786
	 * @param mixed $result Value for the user's option
6787
	 * @return mixed
6788
	 */
6789
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6790
		if ( ! is_array( $sorted ) ) {
6791
			return $sorted;
6792
		}
6793
6794
		foreach ( $sorted as $box_context => $ids ) {
6795
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6796
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6797
				continue;
6798
			}
6799
6800
			$ids_array = explode( ',', $ids );
6801
			$key = array_search( 'dashboard_stats', $ids_array );
6802
6803
			if ( false !== $key ) {
6804
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6805
				$ids_array[ $key ] = 'jetpack_summary_widget';
6806
				$sorted[ $box_context ] = implode( ',', $ids_array );
6807
				// We've found it, stop searching, and just return.
6808
				break;
6809
			}
6810
		}
6811
6812
		return $sorted;
6813
	}
6814
6815
	public static function dashboard_widget() {
6816
		/**
6817
		 * Fires when the dashboard is loaded.
6818
		 *
6819
		 * @since 3.4.0
6820
		 */
6821
		do_action( 'jetpack_dashboard_widget' );
6822
	}
6823
6824
	public static function dashboard_widget_footer() {
6825
		?>
6826
		<footer>
6827
6828
		<div class="protect">
6829
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6830
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6831
				<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>
6832
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6833
				<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' ); ?>">
6834
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6835
				</a>
6836
			<?php else : ?>
6837
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6838
			<?php endif; ?>
6839
		</div>
6840
6841
		<div class="akismet">
6842
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6843
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6844
				<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>
6845
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6846
				<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">
6847
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6848
				</a>
6849
			<?php else : ?>
6850
				<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>
6851
			<?php endif; ?>
6852
		</div>
6853
6854
		</footer>
6855
		<?php
6856
	}
6857
6858
	/**
6859
	 * Return string containing the Jetpack logo.
6860
	 *
6861
	 * @since 3.9.0
6862
	 *
6863
	 * @return string
6864
	 */
6865
	public static function get_jp_emblem() {
6866
		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>';
6867
	}
6868
6869
	/*
6870
	 * Adds a "blank" column in the user admin table to display indication of user connection.
6871
	 */
6872
	function jetpack_icon_user_connected( $columns ) {
6873
		$columns['user_jetpack'] = '';
6874
		return $columns;
6875
	}
6876
6877
	/*
6878
	 * Show Jetpack icon if the user is linked.
6879
	 */
6880
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6881
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
6882
			$emblem_html = sprintf(
6883
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6884
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6885
				Jetpack::get_jp_emblem()
6886
			);
6887
			return $emblem_html;
6888
		}
6889
6890
		return $val;
6891
	}
6892
6893
	/*
6894
	 * Style the Jetpack user column
6895
	 */
6896
	function jetpack_user_col_style() {
6897
		global $current_screen;
6898
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
6899
			<style>
6900
				.fixed .column-user_jetpack {
6901
					width: 21px;
6902
				}
6903
				.jp-emblem-user-admin svg {
6904
					width: 20px;
6905
					height: 20px;
6906
				}
6907
				.jp-emblem-user-admin path {
6908
					fill: #00BE28;
6909
				}
6910
			</style>
6911
		<?php }
6912
	}
6913
6914
	/**
6915
	 * Checks if Akismet is active and working.
6916
	 *
6917
	 * @since  5.1.0
6918
	 * @return bool True = Akismet available. False = Aksimet not available.
6919
	 */
6920
	public static function is_akismet_active() {
6921
		if ( method_exists( 'Akismet' , 'http_post' ) || function_exists( 'akismet_http_post' ) ) {
6922
			return true;
6923
		}
6924
		return false;
6925
	}
6926
6927
	/**
6928
	 * Checks if one or more function names is in debug_backtrace
6929
	 *
6930
	 * @param $names Mixed string name of function or array of string names of functions
6931
	 *
6932
	 * @return bool
6933
	 */
6934
	public static function is_function_in_backtrace( $names ) {
6935
		$backtrace = debug_backtrace( false );
6936
		if ( ! is_array( $names ) ) {
6937
			$names = array( $names );
6938
		}
6939
		$names_as_keys = array_flip( $names );
6940
6941
		//Do check in constant O(1) time for PHP5.5+
6942
		if ( function_exists( 'array_column' ) ) {
6943
			$backtrace_functions = array_column( $backtrace, 'function' );
6944
			$backtrace_functions_as_keys = array_flip( $backtrace_functions );
6945
			$intersection = array_intersect_key( $backtrace_functions_as_keys, $names_as_keys );
6946
			return ! empty ( $intersection );
6947
		}
6948
6949
		//Do check in linear O(n) time for < PHP5.5 ( using isset at least prevents O(n^2) )
6950
		foreach ( $backtrace as $call ) {
6951
			if ( isset( $names_as_keys[ $call['function'] ] ) ) {
6952
				return true;
6953
			}
6954
		}
6955
		return false;
6956
	}
6957
6958
	/**
6959
	 * Given a minified path, and a non-minified path, will return
6960
	 * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy.
6961
	 *
6962
	 * Both `$min_base` and `$non_min_base` are expected to be relative to the
6963
	 * root Jetpack directory.
6964
	 *
6965
	 * @since 5.6.0
6966
	 *
6967
	 * @param string $min_path
6968
	 * @param string $non_min_path
6969
	 * @return string The URL to the file
6970
	 */
6971
	public static function get_file_url_for_environment( $min_path, $non_min_path ) {
6972
		$path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) )
6973
			? $non_min_path
6974
			: $min_path;
6975
6976
		return plugins_url( $path, JETPACK__PLUGIN_FILE );
6977
	}
6978
6979
	/**
6980
	 * Checks for whether Jetpack Rewind is enabled.
6981
	 * Will return true if the state of Rewind is anything except "unavailable".
6982
	 * @return bool|int|mixed
6983
	 */
6984
	public static function is_rewind_enabled() {
6985
		if ( ! Jetpack::is_active() ) {
6986
			return false;
6987
		}
6988
6989
		$rewind_enabled = get_transient( 'jetpack_rewind_enabled' );
6990
		if ( false === $rewind_enabled ) {
6991
			jetpack_require_lib( 'class.core-rest-api-endpoints' );
6992
			$rewind_data = (array) Jetpack_Core_Json_Api_Endpoints::rewind_data();
6993
			$rewind_enabled = ( ! is_wp_error( $rewind_data )
6994
				&& ! empty( $rewind_data['state'] )
6995
				&& 'unavailable' !== $rewind_data['state'] )
6996
				? 1
6997
				: 0;
6998
6999
			set_transient( 'jetpack_rewind_enabled', $rewind_enabled, 10 * MINUTE_IN_SECONDS );
7000
		}
7001
		return $rewind_enabled;
7002
	}
7003
}
7004