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