Completed
Push — add/my-plan-checklist-progress ( 2f3994...33d120 )
by Jon
13:57 queued 06:37
created

class.jetpack.php (3 issues)

Upgrade to new PHP Analysis Engine

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

1
<?php
2
3
/*
4
Options:
5
jetpack_options (array)
6
	An array of options.
7
	@see Jetpack_Options::get_option_names()
8
9
jetpack_register (string)
10
	Temporary verification secrets.
11
12
jetpack_activated (int)
13
	1: the plugin was activated normally
14
	2: the plugin was activated on this site because of a network-wide activation
15
	3: the plugin was auto-installed
16
	4: the plugin was manually disconnected (but is still installed)
17
18
jetpack_active_modules (array)
19
	Array of active module slugs.
20
21
jetpack_do_activate (bool)
22
	Flag for "activating" the plugin on sites where the activation hook never fired (auto-installs)
23
*/
24
25
require_once( JETPACK__PLUGIN_DIR . '_inc/lib/class.media.php' );
26
27
class Jetpack {
28
	public $xmlrpc_server = null;
29
30
	private $xmlrpc_verification = null;
31
	private $rest_authentication_status = null;
32
33
	public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
34
35
	/**
36
	 * @var array The handles of styles that are concatenated into jetpack.css.
37
	 *
38
	 * When making changes to that list, you must also update concat_list in tools/builder/frontend-css.js.
39
	 */
40
	public $concatenated_style_handles = array(
41
		'jetpack-carousel',
42
		'grunion.css',
43
		'the-neverending-homepage',
44
		'jetpack_likes',
45
		'jetpack_related-posts',
46
		'sharedaddy',
47
		'jetpack-slideshow',
48
		'presentations',
49
		'quiz',
50
		'jetpack-subscriptions',
51
		'jetpack-responsive-videos-style',
52
		'jetpack-social-menu',
53
		'tiled-gallery',
54
		'jetpack_display_posts_widget',
55
		'gravatar-profile-widget',
56
		'goodreads-widget',
57
		'jetpack_social_media_icons_widget',
58
		'jetpack-top-posts-widget',
59
		'jetpack_image_widget',
60
		'jetpack-my-community-widget',
61
		'jetpack-authors-widget',
62
		'wordads',
63
		'eu-cookie-law-style',
64
		'flickr-widget-style',
65
		'jetpack-search-widget',
66
		'jetpack-simple-payments-widget-style',
67
		'jetpack-widget-social-icons-styles',
68
	);
69
70
	/**
71
	 * Contains all assets that have had their URL rewritten to minified versions.
72
	 *
73
	 * @var array
74
	 */
75
	static $min_assets = array();
76
77
	public $plugins_to_deactivate = array(
78
		'stats'               => array( 'stats/stats.php', 'WordPress.com Stats' ),
79
		'shortlinks'          => array( 'stats/stats.php', 'WordPress.com Stats' ),
80
		'sharedaddy'          => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
81
		'twitter-widget'      => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ),
82
		'contact-form'        => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ),
83
		'contact-form'        => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ),
84
		'custom-css'          => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ),
85
		'random-redirect'     => array( 'random-redirect/random-redirect.php', 'Random Redirect' ),
86
		'videopress'          => array( 'video/video.php', 'VideoPress' ),
87
		'widget-visibility'   => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ),
88
		'widget-visibility'   => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ),
89
		'sharedaddy'          => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ),
90
		'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ),
91
		'latex'               => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
92
	);
93
94
	static $capability_translations = array(
95
		'administrator' => 'manage_options',
96
		'editor'        => 'edit_others_posts',
97
		'author'        => 'publish_posts',
98
		'contributor'   => 'edit_posts',
99
		'subscriber'    => 'read',
100
	);
101
102
	/**
103
	 * Map of modules that have conflicts with plugins and should not be auto-activated
104
	 * if the plugins are active.  Used by filter_default_modules
105
	 *
106
	 * Plugin Authors: If you'd like to prevent a single module from auto-activating,
107
	 * change `module-slug` and add this to your plugin:
108
	 *
109
	 * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' );
110
	 * function my_jetpack_get_default_modules( $modules ) {
111
	 *     return array_diff( $modules, array( 'module-slug' ) );
112
	 * }
113
	 *
114
	 * @var array
115
	 */
116
	private $conflicting_plugins = array(
117
		'comments'          => array(
118
			'Intense Debate'                       => 'intensedebate/intensedebate.php',
119
			'Disqus'                               => 'disqus-comment-system/disqus.php',
120
			'Livefyre'                             => 'livefyre-comments/livefyre.php',
121
			'Comments Evolved for WordPress'       => 'gplus-comments/comments-evolved.php',
122
			'Google+ Comments'                     => 'google-plus-comments/google-plus-comments.php',
123
			'WP-SpamShield Anti-Spam'              => 'wp-spamshield/wp-spamshield.php',
124
		),
125
		'comment-likes' => array(
126
			'Epoch'                                => 'epoch/plugincore.php',
127
		),
128
		'contact-form'      => array(
129
			'Contact Form 7'                       => 'contact-form-7/wp-contact-form-7.php',
130
			'Gravity Forms'                        => 'gravityforms/gravityforms.php',
131
			'Contact Form Plugin'                  => 'contact-form-plugin/contact_form.php',
132
			'Easy Contact Forms'                   => 'easy-contact-forms/easy-contact-forms.php',
133
			'Fast Secure Contact Form'             => 'si-contact-form/si-contact-form.php',
134
			'Ninja Forms'                          => 'ninja-forms/ninja-forms.php',
135
		),
136
		'minileven'         => array(
137
			'WPtouch'                              => 'wptouch/wptouch.php',
138
		),
139
		'latex'             => array(
140
			'LaTeX for WordPress'                  => 'latex/latex.php',
141
			'Youngwhans Simple Latex'              => 'youngwhans-simple-latex/yw-latex.php',
142
			'Easy WP LaTeX'                        => 'easy-wp-latex-lite/easy-wp-latex-lite.php',
143
			'MathJax-LaTeX'                        => 'mathjax-latex/mathjax-latex.php',
144
			'Enable Latex'                         => 'enable-latex/enable-latex.php',
145
			'WP QuickLaTeX'                        => 'wp-quicklatex/wp-quicklatex.php',
146
		),
147
		'protect'           => array(
148
			'Limit Login Attempts'                 => 'limit-login-attempts/limit-login-attempts.php',
149
			'Captcha'                              => 'captcha/captcha.php',
150
			'Brute Force Login Protection'         => 'brute-force-login-protection/brute-force-login-protection.php',
151
			'Login Security Solution'              => 'login-security-solution/login-security-solution.php',
152
			'WPSecureOps Brute Force Protect'      => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php',
153
			'BulletProof Security'                 => 'bulletproof-security/bulletproof-security.php',
154
			'SiteGuard WP Plugin'                  => 'siteguard/siteguard.php',
155
			'Security-protection'                  => 'security-protection/security-protection.php',
156
			'Login Security'                       => 'login-security/login-security.php',
157
			'Botnet Attack Blocker'                => 'botnet-attack-blocker/botnet-attack-blocker.php',
158
			'Wordfence Security'                   => 'wordfence/wordfence.php',
159
			'All In One WP Security & Firewall'    => 'all-in-one-wp-security-and-firewall/wp-security.php',
160
			'iThemes Security'                     => 'better-wp-security/better-wp-security.php',
161
		),
162
		'random-redirect'   => array(
163
			'Random Redirect 2'                    => 'random-redirect-2/random-redirect.php',
164
		),
165
		'related-posts'     => array(
166
			'YARPP'                                => 'yet-another-related-posts-plugin/yarpp.php',
167
			'WordPress Related Posts'              => 'wordpress-23-related-posts-plugin/wp_related_posts.php',
168
			'nrelate Related Content'              => 'nrelate-related-content/nrelate-related.php',
169
			'Contextual Related Posts'             => 'contextual-related-posts/contextual-related-posts.php',
170
			'Related Posts for WordPress'          => 'microkids-related-posts/microkids-related-posts.php',
171
			'outbrain'                             => 'outbrain/outbrain.php',
172
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
173
			'Sexybookmarks'                        => 'sexybookmarks/shareaholic.php',
174
		),
175
		'sharedaddy'        => array(
176
			'AddThis'                              => 'addthis/addthis_social_widget.php',
177
			'Add To Any'                           => 'add-to-any/add-to-any.php',
178
			'ShareThis'                            => 'share-this/sharethis.php',
179
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
180
		),
181
		'seo-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
			'The SEO Framework'                    => 'autodescription/autodescription.php',
187
		),
188
		'verification-tools' => array(
189
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
190
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
191
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
192
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
193
			'The SEO Framework'                    => 'autodescription/autodescription.php',
194
		),
195
		'widget-visibility' => array(
196
			'Widget Logic'                         => 'widget-logic/widget_logic.php',
197
			'Dynamic Widgets'                      => 'dynamic-widgets/dynamic-widgets.php',
198
		),
199
		'sitemaps' => array(
200
			'Google XML Sitemaps'                  => 'google-sitemap-generator/sitemap.php',
201
			'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php',
202
			'Google XML Sitemaps for qTranslate'   => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php',
203
			'XML Sitemap & Google News feeds'      => 'xml-sitemap-feed/xml-sitemap.php',
204
			'Google Sitemap by BestWebSoft'        => 'google-sitemap-plugin/google-sitemap-plugin.php',
205
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
206
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
207
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
208
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
209
			'The SEO Framework'                    => 'autodescription/autodescription.php',
210
			'Sitemap'                              => 'sitemap/sitemap.php',
211
			'Simple Wp Sitemap'                    => 'simple-wp-sitemap/simple-wp-sitemap.php',
212
			'Simple Sitemap'                       => 'simple-sitemap/simple-sitemap.php',
213
			'XML Sitemaps'                         => 'xml-sitemaps/xml-sitemaps.php',
214
			'MSM Sitemaps'                         => 'msm-sitemap/msm-sitemap.php',
215
		),
216
		'lazy-images' => array(
217
			'Lazy Load'              => 'lazy-load/lazy-load.php',
218
			'BJ Lazy Load'           => 'bj-lazy-load/bj-lazy-load.php',
219
			'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php',
220
		),
221
	);
222
223
	/**
224
	 * Plugins for which we turn off our Facebook OG Tags implementation.
225
	 *
226
	 * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate
227
	 * Jetpack's Open Graph tags via filter when their Social Meta modules are active.
228
	 *
229
	 * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter:
230
	 * add_filter( 'jetpack_enable_open_graph', '__return_false' );
231
	 */
232
	private $open_graph_conflicting_plugins = array(
233
		'2-click-socialmedia-buttons/2-click-socialmedia-buttons.php',
234
		                                                         // 2 Click Social Media Buttons
235
		'add-link-to-facebook/add-link-to-facebook.php',         // Add Link to Facebook
236
		'add-meta-tags/add-meta-tags.php',                       // Add Meta Tags
237
		'easy-facebook-share-thumbnails/esft.php',               // Easy Facebook Share Thumbnail
238
		'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php',
239
		                                                         // Open Graph Meta Tags by Heateor
240
		'facebook/facebook.php',                                 // Facebook (official plugin)
241
		'facebook-awd/AWD_facebook.php',                         // Facebook AWD All in one
242
		'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php',
243
		                                                         // Facebook Featured Image & OG Meta Tags
244
		'facebook-meta-tags/facebook-metatags.php',              // Facebook Meta Tags
245
		'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php',
246
		                                                         // Facebook Open Graph Meta Tags for WordPress
247
		'facebook-revised-open-graph-meta-tag/index.php',        // Facebook Revised Open Graph Meta Tag
248
		'facebook-thumb-fixer/_facebook-thumb-fixer.php',        // Facebook Thumb Fixer
249
		'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php',
250
		                                                         // Fedmich's Facebook Open Graph Meta
251
		'network-publisher/networkpub.php',                      // Network Publisher
252
		'nextgen-facebook/nextgen-facebook.php',                 // NextGEN Facebook OG
253
		'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php',
254
		                                                         // NextScripts SNAP
255
		'og-tags/og-tags.php',                                   // OG Tags
256
		'opengraph/opengraph.php',                               // Open Graph
257
		'open-graph-protocol-framework/open-graph-protocol-framework.php',
258
		                                                         // Open Graph Protocol Framework
259
		'seo-facebook-comments/seofacebook.php',                 // SEO Facebook Comments
260
		'seo-ultimate/seo-ultimate.php',                         // SEO Ultimate
261
		'sexybookmarks/sexy-bookmarks.php',                      // Shareaholic
262
		'shareaholic/sexy-bookmarks.php',                        // Shareaholic
263
		'sharepress/sharepress.php',                             // SharePress
264
		'simple-facebook-connect/sfc.php',                       // Simple Facebook Connect
265
		'social-discussions/social-discussions.php',             // Social Discussions
266
		'social-sharing-toolkit/social_sharing_toolkit.php',     // Social Sharing Toolkit
267
		'socialize/socialize.php',                               // Socialize
268
		'squirrly-seo/squirrly.php',                             // SEO by SQUIRRLY™
269
		'only-tweet-like-share-and-google-1/tweet-like-plusone.php',
270
		                                                         // Tweet, Like, Google +1 and Share
271
		'wordbooker/wordbooker.php',                             // Wordbooker
272
		'wpsso/wpsso.php',                                       // WordPress Social Sharing Optimization
273
		'wp-caregiver/wp-caregiver.php',                         // WP Caregiver
274
		'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php',
275
		                                                         // WP Facebook Like Send & Open Graph Meta
276
		'wp-facebook-open-graph-protocol/wp-facebook-ogp.php',   // WP Facebook Open Graph protocol
277
		'wp-ogp/wp-ogp.php',                                     // WP-OGP
278
		'zoltonorg-social-plugin/zosp.php',                      // Zolton.org Social Plugin
279
		'wp-fb-share-like-button/wp_fb_share-like_widget.php',   // WP Facebook Like Button
280
		'open-graph-metabox/open-graph-metabox.php'              // Open Graph Metabox
281
	);
282
283
	/**
284
	 * Plugins for which we turn off our Twitter Cards Tags implementation.
285
	 */
286
	private $twitter_cards_conflicting_plugins = array(
287
	//	'twitter/twitter.php',                       // The official one handles this on its own.
288
	//	                                             // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php
289
		'eewee-twitter-card/index.php',              // Eewee Twitter Card
290
		'ig-twitter-cards/ig-twitter-cards.php',     // IG:Twitter Cards
291
		'jm-twitter-cards/jm-twitter-cards.php',     // JM Twitter Cards
292
		'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php',
293
		                                             // Pure Web Brilliant's Social Graph Twitter Cards Extension
294
		'twitter-cards/twitter-cards.php',           // Twitter Cards
295
		'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta
296
		'wp-to-twitter/wp-to-twitter.php',           // WP to Twitter
297
		'wp-twitter-cards/twitter_cards.php',        // WP Twitter Cards
298
	);
299
300
	/**
301
	 * Message to display in admin_notice
302
	 * @var string
303
	 */
304
	public $message = '';
305
306
	/**
307
	 * Error to display in admin_notice
308
	 * @var string
309
	 */
310
	public $error = '';
311
312
	/**
313
	 * Modules that need more privacy description.
314
	 * @var string
315
	 */
316
	public $privacy_checks = '';
317
318
	/**
319
	 * Stats to record once the page loads
320
	 *
321
	 * @var array
322
	 */
323
	public $stats = array();
324
325
	/**
326
	 * Jetpack_Sync object
327
	 */
328
	public $sync;
329
330
	/**
331
	 * Verified data for JSON authorization request
332
	 */
333
	public $json_api_authorization_request = array();
334
335
	/**
336
	 * @var string Transient key used to prevent multiple simultaneous plugin upgrades
337
	 */
338
	public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock';
339
340
	/**
341
	 * Holds the singleton instance of this class
342
	 * @since 2.3.3
343
	 * @var Jetpack
344
	 */
345
	static $instance = false;
346
347
	/**
348
	 * Singleton
349
	 * @static
350
	 */
351
	public static function init() {
352
		if ( ! self::$instance ) {
353
			self::$instance = new Jetpack;
354
355
			self::$instance->plugin_upgrade();
356
		}
357
358
		return self::$instance;
359
	}
360
361
	/**
362
	 * Must never be called statically
363
	 */
364
	function plugin_upgrade() {
365
		if ( Jetpack::is_active() ) {
366
			list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
367
			if ( JETPACK__VERSION != $version ) {
368
				// Prevent multiple upgrades at once - only a single process should trigger
369
				// an upgrade to avoid stampedes
370
				if ( false !== get_transient( self::$plugin_upgrade_lock_key ) ) {
371
					return;
372
				}
373
374
				// Set a short lock to prevent multiple instances of the upgrade
375
				set_transient( self::$plugin_upgrade_lock_key, 1, 10 );
376
377
				// check which active modules actually exist and remove others from active_modules list
378
				$unfiltered_modules = Jetpack::get_active_modules();
379
				$modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) );
380
				if ( array_diff( $unfiltered_modules, $modules ) ) {
381
					Jetpack::update_active_modules( $modules );
382
				}
383
384
				add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
385
386
				// Upgrade to 4.3.0
387
				if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) {
388
					Jetpack_Options::delete_option( 'identity_crisis_whitelist' );
389
				}
390
391
				// Make sure Markdown for posts gets turned back on
392
				if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) {
393
					update_option( 'wpcom_publish_posts_with_markdown', true );
394
				}
395
396
				if ( did_action( 'wp_loaded' ) ) {
397
					self::upgrade_on_load();
398
				} else {
399
					add_action(
400
						'wp_loaded',
401
						array( __CLASS__, 'upgrade_on_load' )
402
					);
403
				}
404
			}
405
		}
406
	}
407
408
	/**
409
	 * Runs upgrade routines that need to have modules loaded.
410
	 */
411
	static function upgrade_on_load() {
412
413
		// Not attempting any upgrades if jetpack_modules_loaded did not fire.
414
		// This can happen in case Jetpack has been just upgraded and is
415
		// being initialized late during the page load. In this case we wait
416
		// until the next proper admin page load with Jetpack active.
417
		if ( ! did_action( 'jetpack_modules_loaded' ) ) {
418
			delete_transient( self::$plugin_upgrade_lock_key );
419
420
			return;
421
		}
422
423
		Jetpack::maybe_set_version_option();
424
425
		if ( method_exists( 'Jetpack_Widget_Conditions', 'migrate_post_type_rules' ) ) {
426
			Jetpack_Widget_Conditions::migrate_post_type_rules();
427
		}
428
429
		if (
430
			class_exists( 'Jetpack_Sitemap_Manager' )
431
			&& version_compare( JETPACK__VERSION, '5.3', '>=' )
432
		) {
433
			do_action( 'jetpack_sitemaps_purge_data' );
434
		}
435
436
		delete_transient( self::$plugin_upgrade_lock_key );
437
	}
438
439
	static function update_active_modules( $modules ) {
440
		$current_modules = Jetpack_Options::get_option( 'active_modules', array() );
441
442
		$success = Jetpack_Options::update_option( 'active_modules', array_unique( $modules ) );
443
444
		if ( is_array( $modules ) && is_array( $current_modules ) ) {
445
			$new_active_modules = array_diff( $modules, $current_modules );
446
			foreach( $new_active_modules as $module ) {
447
				/**
448
				 * Fires when a specific module is activated.
449
				 *
450
				 * @since 1.9.0
451
				 *
452
				 * @param string $module Module slug.
453
				 * @param boolean $success whether the module was activated. @since 4.2
454
				 */
455
				do_action( 'jetpack_activate_module', $module, $success );
456
457
				/**
458
				 * Fires when a module is activated.
459
				 * The dynamic part of the filter, $module, is the module slug.
460
				 *
461
				 * @since 1.9.0
462
				 *
463
				 * @param string $module Module slug.
464
				 */
465
				do_action( "jetpack_activate_module_$module", $module );
466
			}
467
468
			$new_deactive_modules = array_diff( $current_modules, $modules );
469
			foreach( $new_deactive_modules as $module ) {
470
				/**
471
				 * Fired after a module has been deactivated.
472
				 *
473
				 * @since 4.2.0
474
				 *
475
				 * @param string $module Module slug.
476
				 * @param boolean $success whether the module was deactivated.
477
				 */
478
				do_action( 'jetpack_deactivate_module', $module, $success );
479
				/**
480
				 * Fires when a module is deactivated.
481
				 * The dynamic part of the filter, $module, is the module slug.
482
				 *
483
				 * @since 1.9.0
484
				 *
485
				 * @param string $module Module slug.
486
				 */
487
				do_action( "jetpack_deactivate_module_$module", $module );
488
			}
489
		}
490
491
		return $success;
492
	}
493
494
	static function delete_active_modules() {
495
		self::update_active_modules( array() );
496
	}
497
498
	/**
499
	 * Constructor.  Initializes WordPress hooks
500
	 */
501
	private function __construct() {
502
		/*
503
		 * Check for and alert any deprecated hooks
504
		 */
505
		add_action( 'init', array( $this, 'deprecated_hooks' ) );
506
507
		/*
508
		 * Enable enhanced handling of previewing sites in Calypso
509
		 */
510
		if ( Jetpack::is_active() ) {
511
			require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-iframe-embed.php';
512
			add_action( 'init', array( 'Jetpack_Iframe_Embed', 'init' ), 9, 0 );
513
			require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-keyring-service-helper.php';
514
			add_action( 'init', array( 'Jetpack_Keyring_Service_Helper', 'init' ), 9, 0 );
515
		}
516
517
		/*
518
		 * Load things that should only be in Network Admin.
519
		 *
520
		 * For now blow away everything else until a more full
521
		 * understanding of what is needed at the network level is
522
		 * available
523
		 */
524
		if ( is_multisite() ) {
525
			Jetpack_Network::init();
526
		}
527
528
		/**
529
		 * Prepare Gutenberg Editor functionality
530
		 */
531
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-gutenberg.php';
532
		Jetpack_Gutenberg::init();
533
		Jetpack_Gutenberg::load_independent_blocks();
534
		add_action( 'enqueue_block_editor_assets', array( 'Jetpack_Gutenberg', 'enqueue_block_editor_assets' ) );
535
536
		add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 );
537
538
		// Unlink user before deleting the user from .com
539
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
540
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
541
542
		// Alternate XML-RPC, via ?for=jetpack&jetpack=comms
543
		if ( isset( $_GET['jetpack'] ) && 'comms' == $_GET['jetpack'] && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
544
			if ( ! defined( 'XMLRPC_REQUEST' ) ) {
545
				define( 'XMLRPC_REQUEST', true );
546
			}
547
548
			add_action( 'template_redirect', array( $this, 'alternate_xmlrpc' ) );
549
550
			add_filter( 'xmlrpc_methods', array( $this, 'remove_non_jetpack_xmlrpc_methods' ), 1000 );
551
		}
552
553
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
554
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
555
556
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
557
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
558
559
			$this->require_jetpack_authentication();
560
561
			if ( Jetpack::is_active() ) {
562
				// Hack to preserve $HTTP_RAW_POST_DATA
563
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
564
565
				$signed = $this->verify_xml_rpc_signature();
566 View Code Duplication
				if ( $signed && ! is_wp_error( $signed ) ) {
567
					// The actual API methods.
568
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
569
				} else {
570
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
571
					// active Jetpack connection, so that additional users can link their account.
572
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
573
				}
574 View Code Duplication
			} else {
575
				// The bootstrap API methods.
576
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
577
				$signed = $this->verify_xml_rpc_signature();
578
				if ( $signed && ! is_wp_error( $signed ) ) {
579
					// the jetpack Provision method is available for blog-token-signed requests
580
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'provision_xmlrpc_methods' ) );
581
				}
582
			}
583
584
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
585
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
586
		} elseif (
587
			is_admin() &&
588
			isset( $_POST['action'] ) && (
589
				'jetpack_upload_file' == $_POST['action'] ||
590
				'jetpack_update_file' == $_POST['action']
591
			)
592
		) {
593
			$this->require_jetpack_authentication();
594
			$this->add_remote_request_handlers();
595
		} else {
596
			if ( Jetpack::is_active() ) {
597
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
598
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
599
			}
600
		}
601
602
		if ( Jetpack::is_active() ) {
603
			Jetpack_Heartbeat::init();
604
			if ( Jetpack::is_module_active( 'stats' ) && Jetpack::is_module_active( 'search' ) ) {
605
				require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php';
606
				Jetpack_Search_Performance_Logger::init();
607
			}
608
		}
609
610
		add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) );
611
		add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) );
612
613
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
614
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
615
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
616
		}
617
618
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
619
620
		add_action( 'admin_init', array( $this, 'admin_init' ) );
621
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
622
623
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
624
625
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
626
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
627
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
628
629
		// returns HTTPS support status
630
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
631
632
		// JITM AJAX callback function
633
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
634
635
		// Universal ajax callback for all tracking events triggered via js
636
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
637
638
		add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) );
639
640
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
641
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
642
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
643
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
644
645
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
646
647
		/**
648
		 * These actions run checks to load additional files.
649
		 * They check for external files or plugins, so they need to run as late as possible.
650
		 */
651
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
652
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
653
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
654
655
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
656
		add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2  );
657
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
658
659
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
660
		add_filter( 'profile_update', array( 'Jetpack', 'user_meta_cleanup' ) );
661
662
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
663
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
664
665
		// A filter to control all just in time messages
666
		add_filter( 'jetpack_just_in_time_msgs', '__return_true', 9 );
667
		add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9);
668
669
		// If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin.
670
		// We should make sure to only do this for front end links.
671
		if ( Jetpack::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) {
672
			add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 );
673
			add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 );
674
675
			//we'll override wp_notify_postauthor and wp_notify_moderator pluggable functions
676
			//so they point moderation links on emails to Calypso
677
			jetpack_require_lib( 'functions.wp-notify' );
678
		}
679
680
		// Update the Jetpack plan from API on heartbeats
681
		add_action( 'jetpack_heartbeat', array( 'Jetpack_Plan', 'refresh_from_wpcom' ) );
682
683
		/**
684
		 * This is the hack to concatenate all css files into one.
685
		 * For description and reasoning see the implode_frontend_css method
686
		 *
687
		 * Super late priority so we catch all the registered styles
688
		 */
689
		if( !is_admin() ) {
690
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
691
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
692
		}
693
694
		/**
695
		 * These are sync actions that we need to keep track of for jitms
696
		 */
697
		add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 );
698
699
		// Actually push the stats on shutdown.
700
		if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) {
701
			add_action( 'shutdown', array( $this, 'push_stats' ) );
702
		}
703
	}
704
705
	/**
706
	 * This is ported over from the manage module, which has been deprecated and baked in here.
707
	 *
708
	 * @param $domains
709
	 */
710
	function add_wpcom_to_allowed_redirect_hosts( $domains ) {
711
		add_filter( 'allowed_redirect_hosts', array( $this, 'allow_wpcom_domain' ) );
712
	}
713
714
	/**
715
	 * Return $domains, with 'wordpress.com' appended.
716
	 * This is ported over from the manage module, which has been deprecated and baked in here.
717
	 *
718
	 * @param $domains
719
	 * @return array
720
	 */
721
	function allow_wpcom_domain( $domains ) {
722
		if ( empty( $domains ) ) {
723
			$domains = array();
724
		}
725
		$domains[] = 'wordpress.com';
726
		return array_unique( $domains );
727
	}
728
729
	function point_edit_post_links_to_calypso( $default_url, $post_id ) {
730
		$post = get_post( $post_id );
731
732
		if ( empty( $post ) ) {
733
			return $default_url;
734
		}
735
736
		$post_type = $post->post_type;
737
738
		// Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso.
739
		// https://en.support.wordpress.com/custom-post-types/
740
		$allowed_post_types = array(
741
			'post' => 'post',
742
			'page' => 'page',
743
			'jetpack-portfolio' => 'edit/jetpack-portfolio',
744
			'jetpack-testimonial' => 'edit/jetpack-testimonial',
745
		);
746
747
		if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) {
748
			return $default_url;
749
		}
750
751
		$path_prefix = $allowed_post_types[ $post_type ];
752
753
		$site_slug  = Jetpack::build_raw_urls( get_home_url() );
754
755
		return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) );
756
	}
757
758
	function point_edit_comment_links_to_calypso( $url ) {
759
		// Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID.
760
		wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args );
761
		return esc_url( sprintf( 'https://wordpress.com/comment/%s/%d',
762
			Jetpack::build_raw_urls( get_home_url() ),
763
			$query_args['amp;c']
764
		) );
765
	}
766
767
	function jetpack_track_last_sync_callback( $params ) {
768
		/**
769
		 * Filter to turn off jitm caching
770
		 *
771
		 * @since 5.4.0
772
		 *
773
		 * @param bool false Whether to cache just in time messages
774
		 */
775
		if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) {
776
			return $params;
777
		}
778
779
		if ( is_array( $params ) && isset( $params[0] ) ) {
780
			$option = $params[0];
781
			if ( 'active_plugins' === $option ) {
782
				// use the cache if we can, but not terribly important if it gets evicted
783
				set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS );
784
			}
785
		}
786
787
		return $params;
788
	}
789
790
	function jetpack_connection_banner_callback() {
791
		check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' );
792
793
		if ( isset( $_REQUEST['dismissBanner'] ) ) {
794
			Jetpack_Options::update_option( 'dismissed_connection_banner', 1 );
795
			wp_send_json_success();
796
		}
797
798
		wp_die();
799
	}
800
801
	/**
802
	 * Removes all XML-RPC methods that are not `jetpack.*`.
803
	 * Only used in our alternate XML-RPC endpoint, where we want to
804
	 * ensure that Core and other plugins' methods are not exposed.
805
	 *
806
	 * @param array $methods
807
	 * @return array filtered $methods
808
	 */
809
	function remove_non_jetpack_xmlrpc_methods( $methods ) {
810
		$jetpack_methods = array();
811
812
		foreach ( $methods as $method => $callback ) {
813
			if ( 0 === strpos( $method, 'jetpack.' ) ) {
814
				$jetpack_methods[ $method ] = $callback;
815
			}
816
		}
817
818
		return $jetpack_methods;
819
	}
820
821
	/**
822
	 * Since a lot of hosts use a hammer approach to "protecting" WordPress sites,
823
	 * and just blanket block all requests to /xmlrpc.php, or apply other overly-sensitive
824
	 * security/firewall policies, we provide our own alternate XML RPC API endpoint
825
	 * which is accessible via a different URI. Most of the below is copied directly
826
	 * from /xmlrpc.php so that we're replicating it as closely as possible.
827
	 */
828
	function alternate_xmlrpc() {
829
		// phpcs:disable PHPCompatibility.Variables.RemovedPredefinedGlobalVariables.http_raw_post_dataDeprecatedRemoved
830
		global $HTTP_RAW_POST_DATA;
831
832
		// Some browser-embedded clients send cookies. We don't want them.
833
		$_COOKIE = array();
834
835
		// A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default,
836
		// but we can do it ourself.
837
		if ( ! isset( $HTTP_RAW_POST_DATA ) ) {
838
			$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' );
839
		}
840
841
		// fix for mozBlog and other cases where '<?xml' isn't on the very first line
842
		if ( isset( $HTTP_RAW_POST_DATA ) ) {
843
			$HTTP_RAW_POST_DATA = trim( $HTTP_RAW_POST_DATA );
844
		}
845
846
		// phpcs:enable
847
848
		include_once( ABSPATH . 'wp-admin/includes/admin.php' );
849
		include_once( ABSPATH . WPINC . '/class-IXR.php' );
850
		include_once( ABSPATH . WPINC . '/class-wp-xmlrpc-server.php' );
851
852
		/**
853
		 * Filters the class used for handling XML-RPC requests.
854
		 *
855
		 * @since 3.1.0
856
		 *
857
		 * @param string $class The name of the XML-RPC server class.
858
		 */
859
		$wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' );
860
		$wp_xmlrpc_server = new $wp_xmlrpc_server_class;
861
862
		// Fire off the request
863
		nocache_headers();
864
		$wp_xmlrpc_server->serve_request();
865
866
		exit;
867
	}
868
869
	function jetpack_admin_ajax_tracks_callback() {
870
		// Check for nonce
871
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
872
			wp_die( 'Permissions check failed.' );
873
		}
874
875
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
876
			wp_die( 'No valid event name or type.' );
877
		}
878
879
		$tracks_data = array();
880
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
881
			if ( is_array( $_REQUEST['tracksEventProp'] ) ) {
882
				$tracks_data = $_REQUEST['tracksEventProp'];
883
			} else {
884
				$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
885
			}
886
		}
887
888
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
889
		wp_send_json_success();
890
		wp_die();
891
	}
892
893
	/**
894
	 * The callback for the JITM ajax requests.
895
	 */
896
	function jetpack_jitm_ajax_callback() {
897
		// Check for nonce
898
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
899
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
900
		}
901
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
902
			$module_slug = $_REQUEST['jitmModule'];
903
			Jetpack::log( 'activate', $module_slug );
904
			Jetpack::activate_module( $module_slug, false, false );
905
			Jetpack::state( 'message', 'no_message' );
906
907
			//A Jetpack module is being activated through a JITM, track it
908
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
909
			$this->do_stats( 'server_side' );
910
911
			wp_send_json_success();
912
		}
913
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
914
			// get the hide_jitm options array
915
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
916
			$module_slug = $_REQUEST['jitmModule'];
917
918
			if( ! $jetpack_hide_jitm ) {
919
				$jetpack_hide_jitm = array(
920
					$module_slug => 'hide'
921
				);
922
			} else {
923
				$jetpack_hide_jitm[$module_slug] = 'hide';
924
			}
925
926
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
927
928
			//jitm is being dismissed forever, track it
929
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
930
			$this->do_stats( 'server_side' );
931
932
			wp_send_json_success();
933
		}
934 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
935
			$module_slug = $_REQUEST['jitmModule'];
936
937
			// User went to WordPress.com, track this
938
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
939
			$this->do_stats( 'server_side' );
940
941
			wp_send_json_success();
942
		}
943 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
944
			$track = $_REQUEST['jitmModule'];
945
946
			// User is viewing JITM, track it.
947
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
948
			$this->do_stats( 'server_side' );
949
950
			wp_send_json_success();
951
		}
952
	}
953
954
	/**
955
	 * If there are any stats that need to be pushed, but haven't been, push them now.
956
	 */
957
	function push_stats() {
958
		if ( ! empty( $this->stats ) ) {
959
			$this->do_stats( 'server_side' );
960
		}
961
	}
962
963
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
964
		switch( $cap ) {
965
			case 'jetpack_connect' :
966
			case 'jetpack_reconnect' :
967
				if ( Jetpack::is_development_mode() ) {
968
					$caps = array( 'do_not_allow' );
969
					break;
970
				}
971
				/**
972
				 * Pass through. If it's not development mode, these should match disconnect.
973
				 * Let users disconnect if it's development mode, just in case things glitch.
974
				 */
975
			case 'jetpack_disconnect' :
976
				/**
977
				 * In multisite, can individual site admins manage their own connection?
978
				 *
979
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
980
				 */
981
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
982
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
983
						/**
984
						 * We need to update the option name -- it's terribly unclear which
985
						 * direction the override goes.
986
						 *
987
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
988
						 */
989
						$caps = array( 'do_not_allow' );
990
						break;
991
					}
992
				}
993
994
				$caps = array( 'manage_options' );
995
				break;
996
			case 'jetpack_manage_modules' :
997
			case 'jetpack_activate_modules' :
998
			case 'jetpack_deactivate_modules' :
999
				$caps = array( 'manage_options' );
1000
				break;
1001
			case 'jetpack_configure_modules' :
1002
				$caps = array( 'manage_options' );
1003
				break;
1004
			case 'jetpack_manage_autoupdates' :
1005
				$caps = array(
1006
					'manage_options',
1007
					'update_plugins',
1008
				);
1009
				break;
1010
			case 'jetpack_network_admin_page':
1011
			case 'jetpack_network_settings_page':
1012
				$caps = array( 'manage_network_plugins' );
1013
				break;
1014
			case 'jetpack_network_sites_page':
1015
				$caps = array( 'manage_sites' );
1016
				break;
1017
			case 'jetpack_admin_page' :
1018
				if ( Jetpack::is_development_mode() ) {
1019
					$caps = array( 'manage_options' );
1020
					break;
1021
				} else {
1022
					$caps = array( 'read' );
1023
				}
1024
				break;
1025
			case 'jetpack_connect_user' :
1026
				if ( Jetpack::is_development_mode() ) {
1027
					$caps = array( 'do_not_allow' );
1028
					break;
1029
				}
1030
				$caps = array( 'read' );
1031
				break;
1032
		}
1033
		return $caps;
1034
	}
1035
1036
	function require_jetpack_authentication() {
1037
		// Don't let anyone authenticate
1038
		$_COOKIE = array();
1039
		remove_all_filters( 'authenticate' );
1040
		remove_all_actions( 'wp_login_failed' );
1041
1042
		if ( Jetpack::is_active() ) {
1043
			// Allow Jetpack authentication
1044
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
1045
		}
1046
	}
1047
1048
	/**
1049
	 * Load language files
1050
	 * @action plugins_loaded
1051
	 */
1052
	public static function plugin_textdomain() {
1053
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
1054
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
1055
	}
1056
1057
	/**
1058
	 * Register assets for use in various modules and the Jetpack admin page.
1059
	 *
1060
	 * @uses wp_script_is, wp_register_script, plugins_url
1061
	 * @action wp_loaded
1062
	 * @return null
1063
	 */
1064
	public function register_assets() {
1065
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
1066
			wp_register_script(
1067
				'spin',
1068
				self::get_file_url_for_environment( '_inc/build/spin.min.js', '_inc/spin.js' ),
1069
				false,
1070
				'1.3'
1071
			);
1072
		}
1073
1074
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
1075
			wp_register_script(
1076
				'jquery.spin',
1077
				self::get_file_url_for_environment( '_inc/build/jquery.spin.min.js', '_inc/jquery.spin.js' ),
1078
				array( 'jquery', 'spin' ),
1079
				'1.3'
1080
			);
1081
		}
1082
1083 View Code Duplication
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
1084
			wp_register_script(
1085
				'jetpack-gallery-settings',
1086
				self::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ),
1087
				array( 'media-views' ),
1088
				'20121225'
1089
			);
1090
		}
1091
1092
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
1093
			wp_register_script(
1094
				'jetpack-twitter-timeline',
1095
				self::get_file_url_for_environment( '_inc/build/twitter-timeline.min.js', '_inc/twitter-timeline.js' ),
1096
				array( 'jquery' ),
1097
				'4.0.0',
1098
				true
1099
			);
1100
		}
1101
1102
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
1103
			wp_register_script(
1104
				'jetpack-facebook-embed',
1105
				self::get_file_url_for_environment( '_inc/build/facebook-embed.min.js', '_inc/facebook-embed.js' ),
1106
				array( 'jquery' ),
1107
				null,
1108
				true
1109
			);
1110
1111
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
1112
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
1113
			if ( ! is_numeric( $fb_app_id ) ) {
1114
				$fb_app_id = '';
1115
			}
1116
			wp_localize_script(
1117
				'jetpack-facebook-embed',
1118
				'jpfbembed',
1119
				array(
1120
					'appid' => $fb_app_id,
1121
					'locale' => $this->get_locale(),
1122
				)
1123
			);
1124
		}
1125
1126
		/**
1127
		 * As jetpack_register_genericons is by default fired off a hook,
1128
		 * the hook may have already fired by this point.
1129
		 * So, let's just trigger it manually.
1130
		 */
1131
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
1132
		jetpack_register_genericons();
1133
1134
		/**
1135
		 * Register the social logos
1136
		 */
1137
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
1138
		jetpack_register_social_logos();
1139
1140 View Code Duplication
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
1141
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
1142
	}
1143
1144
	/**
1145
	 * Guess locale from language code.
1146
	 *
1147
	 * @param string $lang Language code.
1148
	 * @return string|bool
1149
	 */
1150 View Code Duplication
	function guess_locale_from_lang( $lang ) {
1151
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
1152
			return 'en_US';
1153
		}
1154
1155
		if ( ! class_exists( 'GP_Locales' ) ) {
1156
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
1157
				return false;
1158
			}
1159
1160
			require JETPACK__GLOTPRESS_LOCALES_PATH;
1161
		}
1162
1163
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
1164
			// WP.com: get_locale() returns 'it'
1165
			$locale = GP_Locales::by_slug( $lang );
1166
		} else {
1167
			// Jetpack: get_locale() returns 'it_IT';
1168
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
1169
		}
1170
1171
		if ( ! $locale ) {
1172
			return false;
1173
		}
1174
1175
		if ( empty( $locale->facebook_locale ) ) {
1176
			if ( empty( $locale->wp_locale ) ) {
1177
				return false;
1178
			} else {
1179
				// Facebook SDK is smart enough to fall back to en_US if a
1180
				// locale isn't supported. Since supported Facebook locales
1181
				// can fall out of sync, we'll attempt to use the known
1182
				// wp_locale value and rely on said fallback.
1183
				return $locale->wp_locale;
1184
			}
1185
		}
1186
1187
		return $locale->facebook_locale;
1188
	}
1189
1190
	/**
1191
	 * Get the locale.
1192
	 *
1193
	 * @return string|bool
1194
	 */
1195
	function get_locale() {
1196
		$locale = $this->guess_locale_from_lang( get_locale() );
1197
1198
		if ( ! $locale ) {
1199
			$locale = 'en_US';
1200
		}
1201
1202
		return $locale;
1203
	}
1204
1205
	/**
1206
	 * Device Pixels support
1207
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
1208
	 */
1209
	function devicepx() {
1210
		if ( Jetpack::is_active() && ! Jetpack_AMP_Support::is_amp_request() ) {
1211
			wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true );
1212
		}
1213
	}
1214
1215
	/**
1216
	 * Return the network_site_url so that .com knows what network this site is a part of.
1217
	 * @param  bool $option
1218
	 * @return string
1219
	 */
1220
	public function jetpack_main_network_site_option( $option ) {
1221
		return network_site_url();
1222
	}
1223
	/**
1224
	 * Network Name.
1225
	 */
1226
	static function network_name( $option = null ) {
1227
		global $current_site;
1228
		return $current_site->site_name;
1229
	}
1230
	/**
1231
	 * Does the network allow new user and site registrations.
1232
	 * @return string
1233
	 */
1234
	static function network_allow_new_registrations( $option = null ) {
1235
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
1236
	}
1237
	/**
1238
	 * Does the network allow admins to add new users.
1239
	 * @return boolian
1240
	 */
1241
	static function network_add_new_users( $option = null ) {
1242
		return (bool) get_site_option( 'add_new_users' );
1243
	}
1244
	/**
1245
	 * File upload psace left per site in MB.
1246
	 *  -1 means NO LIMIT.
1247
	 * @return number
1248
	 */
1249
	static function network_site_upload_space( $option = null ) {
1250
		// value in MB
1251
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
1252
	}
1253
1254
	/**
1255
	 * Network allowed file types.
1256
	 * @return string
1257
	 */
1258
	static function network_upload_file_types( $option = null ) {
1259
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1260
	}
1261
1262
	/**
1263
	 * Maximum file upload size set by the network.
1264
	 * @return number
1265
	 */
1266
	static function network_max_upload_file_size( $option = null ) {
1267
		// value in KB
1268
		return get_site_option( 'fileupload_maxk', 300 );
1269
	}
1270
1271
	/**
1272
	 * Lets us know if a site allows admins to manage the network.
1273
	 * @return array
1274
	 */
1275
	static function network_enable_administration_menus( $option = null ) {
1276
		return get_site_option( 'menu_items' );
1277
	}
1278
1279
	/**
1280
	 * If a user has been promoted to or demoted from admin, we need to clear the
1281
	 * jetpack_other_linked_admins transient.
1282
	 *
1283
	 * @since 4.3.2
1284
	 * @since 4.4.0  $old_roles is null by default and if it's not passed, the transient is cleared.
1285
	 *
1286
	 * @param int    $user_id   The user ID whose role changed.
1287
	 * @param string $role      The new role.
1288
	 * @param array  $old_roles An array of the user's previous roles.
1289
	 */
1290
	function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) {
1291
		if ( 'administrator' == $role
1292
			|| ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) )
1293
			|| is_null( $old_roles )
1294
		) {
1295
			delete_transient( 'jetpack_other_linked_admins' );
1296
		}
1297
	}
1298
1299
	/**
1300
	 * Checks to see if there are any other users available to become primary
1301
	 * Users must both:
1302
	 * - Be linked to wpcom
1303
	 * - Be an admin
1304
	 *
1305
	 * @return mixed False if no other users are linked, Int if there are.
1306
	 */
1307
	static function get_other_linked_admins() {
1308
		$other_linked_users = get_transient( 'jetpack_other_linked_admins' );
1309
1310
		if ( false === $other_linked_users ) {
1311
			$admins = get_users( array( 'role' => 'administrator' ) );
1312
			if ( count( $admins ) > 1 ) {
1313
				$available = array();
1314
				foreach ( $admins as $admin ) {
1315
					if ( Jetpack::is_user_connected( $admin->ID ) ) {
1316
						$available[] = $admin->ID;
1317
					}
1318
				}
1319
1320
				$count_connected_admins = count( $available );
1321
				if ( count( $available ) > 1 ) {
1322
					$other_linked_users = $count_connected_admins;
1323
				} else {
1324
					$other_linked_users = 0;
1325
				}
1326
			} else {
1327
				$other_linked_users = 0;
1328
			}
1329
1330
			set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS );
1331
		}
1332
1333
		return ( 0 === $other_linked_users ) ? false : $other_linked_users;
1334
	}
1335
1336
	/**
1337
	 * Return whether we are dealing with a multi network setup or not.
1338
	 * The reason we are type casting this is because we want to avoid the situation where
1339
	 * the result is false since when is_main_network_option return false it cases
1340
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
1341
	 * database which could be set to anything as opposed to what this function returns.
1342
	 * @param  bool  $option
1343
	 *
1344
	 * @return boolean
1345
	 */
1346
	public function is_main_network_option( $option ) {
1347
		// return '1' or ''
1348
		return (string) (bool) Jetpack::is_multi_network();
1349
	}
1350
1351
	/**
1352
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1353
	 *
1354
	 * @param  string  $option
1355
	 * @return boolean
1356
	 */
1357
	public function is_multisite( $option ) {
1358
		return (string) (bool) is_multisite();
1359
	}
1360
1361
	/**
1362
	 * Implemented since there is no core is multi network function
1363
	 * Right now there is no way to tell if we which network is the dominant network on the system
1364
	 *
1365
	 * @since  3.3
1366
	 * @return boolean
1367
	 */
1368
	public static function is_multi_network() {
1369
		global  $wpdb;
1370
1371
		// if we don't have a multi site setup no need to do any more
1372
		if ( ! is_multisite() ) {
1373
			return false;
1374
		}
1375
1376
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
1377
		if ( $num_sites > 1 ) {
1378
			return true;
1379
		} else {
1380
			return false;
1381
		}
1382
	}
1383
1384
	/**
1385
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
1386
	 * @return null
1387
	 */
1388
	function update_jetpack_main_network_site_option() {
1389
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1390
	}
1391
	/**
1392
	 * Triggered after a user updates the network settings via Network Settings Admin Page
1393
	 *
1394
	 */
1395
	function update_jetpack_network_settings() {
1396
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1397
		// Only sync this info for the main network site.
1398
	}
1399
1400
	/**
1401
	 * Get back if the current site is single user site.
1402
	 *
1403
	 * @return bool
1404
	 */
1405
	public static function is_single_user_site() {
1406
		global $wpdb;
1407
1408 View Code Duplication
		if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) {
1409
			$some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" );
1410
			set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS );
1411
		}
1412
		return 1 === (int) $some_users;
1413
	}
1414
1415
	/**
1416
	 * Returns true if the site has file write access false otherwise.
1417
	 * @return string ( '1' | '0' )
1418
	 **/
1419
	public static function file_system_write_access() {
1420
		if ( ! function_exists( 'get_filesystem_method' ) ) {
1421
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
1422
		}
1423
1424
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1425
1426
		$filesystem_method = get_filesystem_method();
1427
		if ( $filesystem_method === 'direct' ) {
1428
			return 1;
1429
		}
1430
1431
		ob_start();
1432
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1433
		ob_end_clean();
1434
		if ( $filesystem_credentials_are_stored ) {
1435
			return 1;
1436
		}
1437
		return 0;
1438
	}
1439
1440
	/**
1441
	 * Finds out if a site is using a version control system.
1442
	 * @return string ( '1' | '0' )
1443
	 **/
1444
	public static function is_version_controlled() {
1445
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' );
1446
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1447
	}
1448
1449
	/**
1450
	 * Determines whether the current theme supports featured images or not.
1451
	 * @return string ( '1' | '0' )
1452
	 */
1453
	public static function featured_images_enabled() {
1454
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1455
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1456
	}
1457
1458
	/**
1459
	 * Wrapper for core's get_avatar_url().  This one is deprecated.
1460
	 *
1461
	 * @deprecated 4.7 use get_avatar_url instead.
1462
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
1463
	 * @param int $size Size of the avatar image
1464
	 * @param string $default URL to a default image to use if no avatar is available
1465
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
1466
	 *
1467
	 * @return array
1468
	 */
1469
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
1470
		_deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' );
1471
		return get_avatar_url( $id_or_email, array(
1472
			'size' => $size,
1473
			'default' => $default,
1474
			'force_default' => $force_display,
1475
		) );
1476
	}
1477
1478
	/**
1479
	 * jetpack_updates is saved in the following schema:
1480
	 *
1481
	 * array (
1482
	 *      'plugins'                       => (int) Number of plugin updates available.
1483
	 *      'themes'                        => (int) Number of theme updates available.
1484
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1485
	 *      'translations'                  => (int) Number of translation updates available.
1486
	 *      'total'                         => (int) Total of all available updates.
1487
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1488
	 * )
1489
	 * @return array
1490
	 */
1491
	public static function get_updates() {
1492
		$update_data = wp_get_update_data();
1493
1494
		// Stores the individual update counts as well as the total count.
1495
		if ( isset( $update_data['counts'] ) ) {
1496
			$updates = $update_data['counts'];
1497
		}
1498
1499
		// If we need to update WordPress core, let's find the latest version number.
1500 View Code Duplication
		if ( ! empty( $updates['wordpress'] ) ) {
1501
			$cur = get_preferred_from_update_core();
1502
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1503
				$updates['wp_update_version'] = $cur->current;
1504
			}
1505
		}
1506
		return isset( $updates ) ? $updates : array();
1507
	}
1508
1509
	public static function get_update_details() {
1510
		$update_details = array(
1511
			'update_core' => get_site_transient( 'update_core' ),
1512
			'update_plugins' => get_site_transient( 'update_plugins' ),
1513
			'update_themes' => get_site_transient( 'update_themes' ),
1514
		);
1515
		return $update_details;
1516
	}
1517
1518
	public static function refresh_update_data() {
1519
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1520
1521
	}
1522
1523
	public static function refresh_theme_data() {
1524
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1525
	}
1526
1527
	/**
1528
	 * Is Jetpack active?
1529
	 */
1530
	public static function is_active() {
1531
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1532
	}
1533
1534
	/**
1535
	 * Make an API call to WordPress.com for plan status
1536
	 *
1537
	 * @deprecated 7.2.0 Use Jetpack_Plan::refresh_from_wpcom.
1538
	 *
1539
	 * @return bool True if plan is updated, false if no update
1540
	 */
1541
	public static function refresh_active_plan_from_wpcom() {
1542
		_deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::refresh_from_wpcom' );
1543
		return Jetpack_Plan::refresh_from_wpcom();
1544
	}
1545
1546
	/**
1547
	 * Get the plan that this Jetpack site is currently using
1548
	 *
1549
	 * @deprecated 7.2.0 Use Jetpack_Plan::get.
1550
	 * @return array Active Jetpack plan details.
1551
	 */
1552
	public static function get_active_plan() {
1553
		_deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::get' );
1554
		return Jetpack_Plan::get();
1555
	}
1556
1557
	/**
1558
	 * Determine whether the active plan supports a particular feature
1559
	 *
1560
	 * @deprecated 7.2.0 Use Jetpack_Plan::supports.
1561
	 * @return bool True if plan supports feature, false if not.
1562
	 */
1563
	public static function active_plan_supports( $feature ) {
1564
		_deprecated_function( __METHOD__, 'jetpack-7.2.0', 'Jetpack_Plan::supports' );
1565
		return Jetpack_Plan::supports( $feature );
1566
	}
1567
1568
	/**
1569
	 * Is Jetpack in development (offline) mode?
1570
	 */
1571
	public static function is_development_mode() {
1572
		$development_mode = false;
1573
1574
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1575
			$development_mode = JETPACK_DEV_DEBUG;
1576
		} elseif ( $site_url = site_url() ) {
1577
			$development_mode = false === strpos( $site_url, '.' );
1578
		}
1579
1580
		/**
1581
		 * Filters Jetpack's development mode.
1582
		 *
1583
		 * @see https://jetpack.com/support/development-mode/
1584
		 *
1585
		 * @since 2.2.1
1586
		 *
1587
		 * @param bool $development_mode Is Jetpack's development mode active.
1588
		 */
1589
		$development_mode = ( bool ) apply_filters( 'jetpack_development_mode', $development_mode );
1590
		return $development_mode;
1591
	}
1592
1593
	/**
1594
	 * Whether the site is currently onboarding or not.
1595
	 * A site is considered as being onboarded if it currently has an onboarding token.
1596
	 *
1597
	 * @since 5.8
1598
	 *
1599
	 * @access public
1600
	 * @static
1601
	 *
1602
	 * @return bool True if the site is currently onboarding, false otherwise
1603
	 */
1604
	public static function is_onboarding() {
1605
		return Jetpack_Options::get_option( 'onboarding' ) !== false;
1606
	}
1607
1608
	/**
1609
	 * Determines reason for Jetpack development mode.
1610
	 */
1611
	public static function development_mode_trigger_text() {
1612
		if ( ! Jetpack::is_development_mode() ) {
1613
			return __( 'Jetpack is not in Development Mode.', 'jetpack' );
1614
		}
1615
1616
		if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1617
			$notice =  __( 'The JETPACK_DEV_DEBUG constant is defined in wp-config.php or elsewhere.', 'jetpack' );
1618
		} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1619
			$notice = __( 'The site URL lacking a dot (e.g. http://localhost).', 'jetpack' );
1620
		} else {
1621
			$notice = __( 'The jetpack_development_mode filter is set to true.', 'jetpack' );
1622
		}
1623
1624
		return $notice;
1625
1626
	}
1627
	/**
1628
	* Get Jetpack development mode notice text and notice class.
1629
	*
1630
	* Mirrors the checks made in Jetpack::is_development_mode
1631
	*
1632
	*/
1633
	public static function show_development_mode_notice() {
1634 View Code Duplication
		if ( Jetpack::is_development_mode() ) {
1635
			$notice = sprintf(
1636
			/* translators: %s is a URL */
1637
				__( 'In <a href="%s" target="_blank">Development Mode</a>:', 'jetpack' ),
1638
				'https://jetpack.com/support/development-mode/'
1639
			);
1640
1641
			$notice .= ' ' . Jetpack::development_mode_trigger_text();
1642
1643
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1644
		}
1645
1646
		// Throw up a notice if using a development version and as for feedback.
1647
		if ( Jetpack::is_development_version() ) {
1648
			/* translators: %s is a URL */
1649
			$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/' );
1650
1651
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1652
		}
1653
		// Throw up a notice if using staging mode
1654
		if ( Jetpack::is_staging_site() ) {
1655
			/* translators: %s is a URL */
1656
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1657
1658
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1659
		}
1660
	}
1661
1662
	/**
1663
	 * Whether Jetpack's version maps to a public release, or a development version.
1664
	 */
1665
	public static function is_development_version() {
1666
		/**
1667
		 * Allows filtering whether this is a development version of Jetpack.
1668
		 *
1669
		 * This filter is especially useful for tests.
1670
		 *
1671
		 * @since 4.3.0
1672
		 *
1673
		 * @param bool $development_version Is this a develoment version of Jetpack?
1674
		 */
1675
		return (bool) apply_filters(
1676
			'jetpack_development_version',
1677
			! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) )
1678
		);
1679
	}
1680
1681
	/**
1682
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1683
	 */
1684
	public static function is_user_connected( $user_id = false ) {
1685
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1686
		if ( ! $user_id ) {
1687
			return false;
1688
		}
1689
1690
		return (bool) Jetpack_Data::get_access_token( $user_id );
1691
	}
1692
1693
	/**
1694
	 * Get the wpcom user data of the current|specified connected user.
1695
	 */
1696
	public static function get_connected_user_data( $user_id = null ) {
1697
		if ( ! $user_id ) {
1698
			$user_id = get_current_user_id();
1699
		}
1700
1701
		$transient_key = "jetpack_connected_user_data_$user_id";
1702
1703
		if ( $cached_user_data = get_transient( $transient_key ) ) {
1704
			return $cached_user_data;
1705
		}
1706
1707
		Jetpack::load_xml_rpc_client();
1708
		$xml = new Jetpack_IXR_Client( array(
1709
			'user_id' => $user_id,
1710
		) );
1711
		$xml->query( 'wpcom.getUser' );
1712
		if ( ! $xml->isError() ) {
1713
			$user_data = $xml->getResponse();
1714
			set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS );
1715
			return $user_data;
1716
		}
1717
1718
		return false;
1719
	}
1720
1721
	/**
1722
	 * Get the wpcom email of the current|specified connected user.
1723
	 */
1724 View Code Duplication
	public static function get_connected_user_email( $user_id = null ) {
1725
		if ( ! $user_id ) {
1726
			$user_id = get_current_user_id();
1727
		}
1728
		Jetpack::load_xml_rpc_client();
1729
		$xml = new Jetpack_IXR_Client( array(
1730
			'user_id' => $user_id,
1731
		) );
1732
		$xml->query( 'wpcom.getUserEmail' );
1733
		if ( ! $xml->isError() ) {
1734
			return $xml->getResponse();
1735
		}
1736
		return false;
1737
	}
1738
1739
	/**
1740
	 * Get the wpcom email of the master user.
1741
	 */
1742
	public static function get_master_user_email() {
1743
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1744
		if ( $master_user_id ) {
1745
			return self::get_connected_user_email( $master_user_id );
1746
		}
1747
		return '';
1748
	}
1749
1750
	function current_user_is_connection_owner() {
1751
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1752
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1753
	}
1754
1755
	/**
1756
	 * Gets current user IP address.
1757
	 *
1758
	 * @param  bool $check_all_headers Check all headers? Default is `false`.
1759
	 *
1760
	 * @return string                  Current user IP address.
1761
	 */
1762
	public static function current_user_ip( $check_all_headers = false ) {
1763
		if ( $check_all_headers ) {
1764
			foreach ( array(
1765
				'HTTP_CF_CONNECTING_IP',
1766
				'HTTP_CLIENT_IP',
1767
				'HTTP_X_FORWARDED_FOR',
1768
				'HTTP_X_FORWARDED',
1769
				'HTTP_X_CLUSTER_CLIENT_IP',
1770
				'HTTP_FORWARDED_FOR',
1771
				'HTTP_FORWARDED',
1772
				'HTTP_VIA',
1773
			) as $key ) {
1774
				if ( ! empty( $_SERVER[ $key ] ) ) {
1775
					return $_SERVER[ $key ];
1776
				}
1777
			}
1778
		}
1779
1780
		return ! empty( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : '';
1781
	}
1782
1783
	/**
1784
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1785
	 */
1786
	function extra_oembed_providers() {
1787
		// Cloudup: https://dev.cloudup.com/#oembed
1788
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1789
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1790
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1791
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1792
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1793
		wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true );
1794
	}
1795
1796
	/**
1797
	 * Synchronize connected user role changes
1798
	 */
1799
	function user_role_change( $user_id ) {
1800
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' );
1801
		Jetpack_Sync_Users::user_role_change( $user_id );
1802
	}
1803
1804
	/**
1805
	 * Loads the currently active modules.
1806
	 */
1807
	public static function load_modules() {
1808
		if (
1809
			! self::is_active()
1810
			&& ! self::is_development_mode()
1811
			&& ! self::is_onboarding()
1812
			&& (
1813
				! is_multisite()
1814
				|| ! get_site_option( 'jetpack_protect_active' )
1815
			)
1816
		) {
1817
			return;
1818
		}
1819
1820
		$version = Jetpack_Options::get_option( 'version' );
1821 View Code Duplication
		if ( ! $version ) {
1822
			$version = $old_version = JETPACK__VERSION . ':' . time();
1823
			/** This action is documented in class.jetpack.php */
1824
			do_action( 'updating_jetpack_version', $version, false );
1825
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1826
		}
1827
		list( $version ) = explode( ':', $version );
1828
1829
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1830
1831
		$modules_data = array();
1832
1833
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1834
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1835
			$updated_modules = array();
1836
			foreach ( $modules as $module ) {
1837
				$modules_data[ $module ] = Jetpack::get_module( $module );
1838
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1839
					continue;
1840
				}
1841
1842
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1843
					continue;
1844
				}
1845
1846
				$updated_modules[] = $module;
1847
			}
1848
1849
			$modules = array_diff( $modules, $updated_modules );
1850
		}
1851
1852
		$is_development_mode = Jetpack::is_development_mode();
1853
1854
		foreach ( $modules as $index => $module ) {
1855
			// If we're in dev mode, disable modules requiring a connection
1856
			if ( $is_development_mode ) {
1857
				// Prime the pump if we need to
1858
				if ( empty( $modules_data[ $module ] ) ) {
1859
					$modules_data[ $module ] = Jetpack::get_module( $module );
1860
				}
1861
				// If the module requires a connection, but we're in local mode, don't include it.
1862
				if ( $modules_data[ $module ]['requires_connection'] ) {
1863
					continue;
1864
				}
1865
			}
1866
1867
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1868
				continue;
1869
			}
1870
1871
			if ( ! include_once( Jetpack::get_module_path( $module ) ) ) {
1872
				unset( $modules[ $index ] );
1873
				self::update_active_modules( array_values( $modules ) );
1874
				continue;
1875
			}
1876
1877
			/**
1878
			 * Fires when a specific module is loaded.
1879
			 * The dynamic part of the hook, $module, is the module slug.
1880
			 *
1881
			 * @since 1.1.0
1882
			 */
1883
			do_action( 'jetpack_module_loaded_' . $module );
1884
		}
1885
1886
		/**
1887
		 * Fires when all the modules are loaded.
1888
		 *
1889
		 * @since 1.1.0
1890
		 */
1891
		do_action( 'jetpack_modules_loaded' );
1892
1893
		// 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.
1894
		require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1895
	}
1896
1897
	/**
1898
	 * Check if Jetpack's REST API compat file should be included
1899
	 * @action plugins_loaded
1900
	 * @return null
1901
	 */
1902
	public function check_rest_api_compat() {
1903
		/**
1904
		 * Filters the list of REST API compat files to be included.
1905
		 *
1906
		 * @since 2.2.5
1907
		 *
1908
		 * @param array $args Array of REST API compat files to include.
1909
		 */
1910
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1911
1912
		if ( function_exists( 'bbpress' ) )
1913
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1914
1915
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1916
			require_once $_jetpack_rest_api_compat_include;
1917
	}
1918
1919
	/**
1920
	 * Gets all plugins currently active in values, regardless of whether they're
1921
	 * traditionally activated or network activated.
1922
	 *
1923
	 * @todo Store the result in core's object cache maybe?
1924
	 */
1925
	public static function get_active_plugins() {
1926
		$active_plugins = (array) get_option( 'active_plugins', array() );
1927
1928
		if ( is_multisite() ) {
1929
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1930
			// whereas active_plugins stores them in the values.
1931
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1932
			if ( $network_plugins ) {
1933
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1934
			}
1935
		}
1936
1937
		sort( $active_plugins );
1938
1939
		return array_unique( $active_plugins );
1940
	}
1941
1942
	/**
1943
	 * Gets and parses additional plugin data to send with the heartbeat data
1944
	 *
1945
	 * @since 3.8.1
1946
	 *
1947
	 * @return array Array of plugin data
1948
	 */
1949
	public static function get_parsed_plugin_data() {
1950
		if ( ! function_exists( 'get_plugins' ) ) {
1951
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1952
		}
1953
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1954
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1955
		$active_plugins = Jetpack::get_active_plugins();
1956
1957
		$plugins = array();
1958
		foreach ( $all_plugins as $path => $plugin_data ) {
1959
			$plugins[ $path ] = array(
1960
					'is_active' => in_array( $path, $active_plugins ),
1961
					'file'      => $path,
1962
					'name'      => $plugin_data['Name'],
1963
					'version'   => $plugin_data['Version'],
1964
					'author'    => $plugin_data['Author'],
1965
			);
1966
		}
1967
1968
		return $plugins;
1969
	}
1970
1971
	/**
1972
	 * Gets and parses theme data to send with the heartbeat data
1973
	 *
1974
	 * @since 3.8.1
1975
	 *
1976
	 * @return array Array of theme data
1977
	 */
1978
	public static function get_parsed_theme_data() {
1979
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1980
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1981
1982
		$themes = array();
1983
		foreach ( $all_themes as $slug => $theme_data ) {
1984
			$theme_headers = array();
1985
			foreach ( $header_keys as $header_key ) {
1986
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
1987
			}
1988
1989
			$themes[ $slug ] = array(
1990
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
1991
					'slug' => $slug,
1992
					'theme_root' => $theme_data->get_theme_root_uri(),
1993
					'parent' => $theme_data->parent(),
1994
					'headers' => $theme_headers
1995
			);
1996
		}
1997
1998
		return $themes;
1999
	}
2000
2001
	/**
2002
	 * Checks whether a specific plugin is active.
2003
	 *
2004
	 * We don't want to store these in a static variable, in case
2005
	 * there are switch_to_blog() calls involved.
2006
	 */
2007
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
2008
		return in_array( $plugin, self::get_active_plugins() );
2009
	}
2010
2011
	/**
2012
	 * Check if Jetpack's Open Graph tags should be used.
2013
	 * If certain plugins are active, Jetpack's og tags are suppressed.
2014
	 *
2015
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
2016
	 * @action plugins_loaded
2017
	 * @return null
2018
	 */
2019
	public function check_open_graph() {
2020
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
2021
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
2022
		}
2023
2024
		$active_plugins = self::get_active_plugins();
2025
2026
		if ( ! empty( $active_plugins ) ) {
2027
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
2028
				if ( in_array( $plugin, $active_plugins ) ) {
2029
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
2030
					break;
2031
				}
2032
			}
2033
		}
2034
2035
		/**
2036
		 * Allow the addition of Open Graph Meta Tags to all pages.
2037
		 *
2038
		 * @since 2.0.3
2039
		 *
2040
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
2041
		 */
2042
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
2043
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
2044
		}
2045
	}
2046
2047
	/**
2048
	 * Check if Jetpack's Twitter tags should be used.
2049
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
2050
	 *
2051
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
2052
	 * @action plugins_loaded
2053
	 * @return null
2054
	 */
2055
	public function check_twitter_tags() {
2056
2057
		$active_plugins = self::get_active_plugins();
2058
2059
		if ( ! empty( $active_plugins ) ) {
2060
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
2061
				if ( in_array( $plugin, $active_plugins ) ) {
2062
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
2063
					break;
2064
				}
2065
			}
2066
		}
2067
2068
		/**
2069
		 * Allow Twitter Card Meta tags to be disabled.
2070
		 *
2071
		 * @since 2.6.0
2072
		 *
2073
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
2074
		 */
2075
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
2076
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
2077
		}
2078
	}
2079
2080
	/**
2081
	 * Allows plugins to submit security reports.
2082
 	 *
2083
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
2084
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
2085
	 * @param array   $args         See definitions above
2086
	 */
2087
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
2088
		_deprecated_function( __FUNCTION__, 'jetpack-4.2', null );
2089
	}
2090
2091
/* Jetpack Options API */
2092
2093
	public static function get_option_names( $type = 'compact' ) {
2094
		return Jetpack_Options::get_option_names( $type );
2095
	}
2096
2097
	/**
2098
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
2099
 	 *
2100
	 * @param string $name    Option name
2101
	 * @param mixed  $default (optional)
2102
	 */
2103
	public static function get_option( $name, $default = false ) {
2104
		return Jetpack_Options::get_option( $name, $default );
2105
	}
2106
2107
	/**
2108
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
2109
 	 *
2110
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
2111
	 * @param string $name  Option name
2112
	 * @param mixed  $value Option value
2113
	 */
2114
	public static function update_option( $name, $value ) {
2115
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
2116
		return Jetpack_Options::update_option( $name, $value );
2117
	}
2118
2119
	/**
2120
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
2121
 	 *
2122
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
2123
	 * @param array $array array( option name => option value, ... )
2124
	 */
2125
	public static function update_options( $array ) {
2126
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
2127
		return Jetpack_Options::update_options( $array );
2128
	}
2129
2130
	/**
2131
	 * Deletes the given option.  May be passed multiple option names as an array.
2132
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
2133
	 *
2134
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
2135
	 * @param string|array $names
2136
	 */
2137
	public static function delete_option( $names ) {
2138
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
2139
		return Jetpack_Options::delete_option( $names );
2140
	}
2141
2142
	/**
2143
	 * Enters a user token into the user_tokens option
2144
	 *
2145
	 * @param int $user_id
2146
	 * @param string $token
2147
	 * return bool
2148
	 */
2149
	public static function update_user_token( $user_id, $token, $is_master_user ) {
2150
		// not designed for concurrent updates
2151
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
2152
		if ( ! is_array( $user_tokens ) )
2153
			$user_tokens = array();
2154
		$user_tokens[$user_id] = $token;
2155
		if ( $is_master_user ) {
2156
			$master_user = $user_id;
2157
			$options     = compact( 'user_tokens', 'master_user' );
2158
		} else {
2159
			$options = compact( 'user_tokens' );
2160
		}
2161
		return Jetpack_Options::update_options( $options );
2162
	}
2163
2164
	/**
2165
	 * Returns an array of all PHP files in the specified absolute path.
2166
	 * Equivalent to glob( "$absolute_path/*.php" ).
2167
	 *
2168
	 * @param string $absolute_path The absolute path of the directory to search.
2169
	 * @return array Array of absolute paths to the PHP files.
2170
	 */
2171
	public static function glob_php( $absolute_path ) {
2172
		if ( function_exists( 'glob' ) ) {
2173
			return glob( "$absolute_path/*.php" );
2174
		}
2175
2176
		$absolute_path = untrailingslashit( $absolute_path );
2177
		$files = array();
2178
		if ( ! $dir = @opendir( $absolute_path ) ) {
2179
			return $files;
2180
		}
2181
2182
		while ( false !== $file = readdir( $dir ) ) {
2183
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
2184
				continue;
2185
			}
2186
2187
			$file = "$absolute_path/$file";
2188
2189
			if ( ! is_file( $file ) ) {
2190
				continue;
2191
			}
2192
2193
			$files[] = $file;
2194
		}
2195
2196
		closedir( $dir );
2197
2198
		return $files;
2199
	}
2200
2201
	public static function activate_new_modules( $redirect = false ) {
2202
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
2203
			return;
2204
		}
2205
2206
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
2207 View Code Duplication
		if ( ! $jetpack_old_version ) {
2208
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
2209
			/** This action is documented in class.jetpack.php */
2210
			do_action( 'updating_jetpack_version', $version, false );
2211
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2212
		}
2213
2214
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
2215
2216
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
2217
			return;
2218
		}
2219
2220
		$active_modules     = Jetpack::get_active_modules();
2221
		$reactivate_modules = array();
2222
		foreach ( $active_modules as $active_module ) {
2223
			$module = Jetpack::get_module( $active_module );
2224
			if ( ! isset( $module['changed'] ) ) {
2225
				continue;
2226
			}
2227
2228
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
2229
				continue;
2230
			}
2231
2232
			$reactivate_modules[] = $active_module;
2233
			Jetpack::deactivate_module( $active_module );
2234
		}
2235
2236
		$new_version = JETPACK__VERSION . ':' . time();
2237
		/** This action is documented in class.jetpack.php */
2238
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
2239
		Jetpack_Options::update_options(
2240
			array(
2241
				'version'     => $new_version,
2242
				'old_version' => $jetpack_old_version,
2243
			)
2244
		);
2245
2246
		Jetpack::state( 'message', 'modules_activated' );
2247
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
2248
2249
		if ( $redirect ) {
2250
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
2251
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
2252
				$page = $_GET['page'];
2253
			}
2254
2255
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
2256
			exit;
2257
		}
2258
	}
2259
2260
	/**
2261
	 * List available Jetpack modules. Simply lists .php files in /modules/.
2262
	 * Make sure to tuck away module "library" files in a sub-directory.
2263
	 */
2264
	public static function get_available_modules( $min_version = false, $max_version = false ) {
2265
		static $modules = null;
2266
2267
		if ( ! isset( $modules ) ) {
2268
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
2269
			// Use the cache if we're on the front-end and it's available...
2270
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
2271
				$modules = $available_modules_option[ JETPACK__VERSION ];
2272
			} else {
2273
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
2274
2275
				$modules = array();
2276
2277
				foreach ( $files as $file ) {
2278
					if ( ! $headers = Jetpack::get_module( $file ) ) {
2279
						continue;
2280
					}
2281
2282
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
2283
				}
2284
2285
				Jetpack_Options::update_option( 'available_modules', array(
2286
					JETPACK__VERSION => $modules,
2287
				) );
2288
			}
2289
		}
2290
2291
		/**
2292
		 * Filters the array of modules available to be activated.
2293
		 *
2294
		 * @since 2.4.0
2295
		 *
2296
		 * @param array $modules Array of available modules.
2297
		 * @param string $min_version Minimum version number required to use modules.
2298
		 * @param string $max_version Maximum version number required to use modules.
2299
		 */
2300
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
2301
2302
		if ( ! $min_version && ! $max_version ) {
2303
			return array_keys( $mods );
2304
		}
2305
2306
		$r = array();
2307
		foreach ( $mods as $slug => $introduced ) {
2308
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
2309
				continue;
2310
			}
2311
2312
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
2313
				continue;
2314
			}
2315
2316
			$r[] = $slug;
2317
		}
2318
2319
		return $r;
2320
	}
2321
2322
	/**
2323
	 * Default modules loaded on activation.
2324
	 */
2325
	public static function get_default_modules( $min_version = false, $max_version = false ) {
2326
		$return = array();
2327
2328
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
2329
			$module_data = Jetpack::get_module( $module );
2330
2331
			switch ( strtolower( $module_data['auto_activate'] ) ) {
2332
				case 'yes' :
2333
					$return[] = $module;
2334
					break;
2335
				case 'public' :
2336
					if ( Jetpack_Options::get_option( 'public' ) ) {
2337
						$return[] = $module;
2338
					}
2339
					break;
2340
				case 'no' :
2341
				default :
2342
					break;
2343
			}
2344
		}
2345
		/**
2346
		 * Filters the array of default modules.
2347
		 *
2348
		 * @since 2.5.0
2349
		 *
2350
		 * @param array $return Array of default modules.
2351
		 * @param string $min_version Minimum version number required to use modules.
2352
		 * @param string $max_version Maximum version number required to use modules.
2353
		 */
2354
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
2355
	}
2356
2357
	/**
2358
	 * Checks activated modules during auto-activation to determine
2359
	 * if any of those modules are being deprecated.  If so, close
2360
	 * them out, and add any replacement modules.
2361
	 *
2362
	 * Runs at priority 99 by default.
2363
	 *
2364
	 * This is run late, so that it can still activate a module if
2365
	 * the new module is a replacement for another that the user
2366
	 * currently has active, even if something at the normal priority
2367
	 * would kibosh everything.
2368
	 *
2369
	 * @since 2.6
2370
	 * @uses jetpack_get_default_modules filter
2371
	 * @param array $modules
2372
	 * @return array
2373
	 */
2374
	function handle_deprecated_modules( $modules ) {
2375
		$deprecated_modules = array(
2376
			'debug'            => null,  // Closed out and moved to the debugger library.
2377
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2378
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
2379
		);
2380
2381
		// Don't activate SSO if they never completed activating WPCC.
2382
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
2383
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
2384
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
2385
				$deprecated_modules['wpcc'] = null;
2386
			}
2387
		}
2388
2389
		foreach ( $deprecated_modules as $module => $replacement ) {
2390
			if ( Jetpack::is_module_active( $module ) ) {
2391
				self::deactivate_module( $module );
2392
				if ( $replacement ) {
2393
					$modules[] = $replacement;
2394
				}
2395
			}
2396
		}
2397
2398
		return array_unique( $modules );
2399
	}
2400
2401
	/**
2402
	 * Checks activated plugins during auto-activation to determine
2403
	 * if any of those plugins are in the list with a corresponding module
2404
	 * that is not compatible with the plugin. The module will not be allowed
2405
	 * to auto-activate.
2406
	 *
2407
	 * @since 2.6
2408
	 * @uses jetpack_get_default_modules filter
2409
	 * @param array $modules
2410
	 * @return array
2411
	 */
2412
	function filter_default_modules( $modules ) {
2413
2414
		$active_plugins = self::get_active_plugins();
2415
2416
		if ( ! empty( $active_plugins ) ) {
2417
2418
			// For each module we'd like to auto-activate...
2419
			foreach ( $modules as $key => $module ) {
2420
				// If there are potential conflicts for it...
2421
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
2422
					// For each potential conflict...
2423
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
2424
						// If that conflicting plugin is active...
2425
						if ( in_array( $plugin, $active_plugins ) ) {
2426
							// Remove that item from being auto-activated.
2427
							unset( $modules[ $key ] );
2428
						}
2429
					}
2430
				}
2431
			}
2432
		}
2433
2434
		return $modules;
2435
	}
2436
2437
	/**
2438
	 * Extract a module's slug from its full path.
2439
	 */
2440
	public static function get_module_slug( $file ) {
2441
		return str_replace( '.php', '', basename( $file ) );
2442
	}
2443
2444
	/**
2445
	 * Generate a module's path from its slug.
2446
	 */
2447
	public static function get_module_path( $slug ) {
2448
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
2449
	}
2450
2451
	/**
2452
	 * Load module data from module file. Headers differ from WordPress
2453
	 * plugin headers to avoid them being identified as standalone
2454
	 * plugins on the WordPress plugins page.
2455
	 */
2456
	public static function get_module( $module ) {
2457
		$headers = array(
2458
			'name'                      => 'Module Name',
2459
			'description'               => 'Module Description',
2460
			'jumpstart_desc'            => 'Jumpstart Description',
2461
			'sort'                      => 'Sort Order',
2462
			'recommendation_order'      => 'Recommendation Order',
2463
			'introduced'                => 'First Introduced',
2464
			'changed'                   => 'Major Changes In',
2465
			'deactivate'                => 'Deactivate',
2466
			'free'                      => 'Free',
2467
			'requires_connection'       => 'Requires Connection',
2468
			'auto_activate'             => 'Auto Activate',
2469
			'module_tags'               => 'Module Tags',
2470
			'feature'                   => 'Feature',
2471
			'additional_search_queries' => 'Additional Search Queries',
2472
			'plan_classes'              => 'Plans',
2473
		);
2474
2475
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
2476
2477
		$mod = Jetpack::get_file_data( $file, $headers );
2478
		if ( empty( $mod['name'] ) ) {
2479
			return false;
2480
		}
2481
2482
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
2483
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
2484
		$mod['deactivate']              = empty( $mod['deactivate'] );
2485
		$mod['free']                    = empty( $mod['free'] );
2486
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
2487
2488
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
2489
			$mod['auto_activate'] = 'No';
2490
		} else {
2491
			$mod['auto_activate'] = (string) $mod['auto_activate'];
2492
		}
2493
2494
		if ( $mod['module_tags'] ) {
2495
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
2496
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
2497
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
2498
		} else {
2499
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2500
		}
2501
2502 View Code Duplication
		if ( $mod['plan_classes'] ) {
2503
			$mod['plan_classes'] = explode( ',', $mod['plan_classes'] );
2504
			$mod['plan_classes'] = array_map( 'strtolower', array_map( 'trim', $mod['plan_classes'] ) );
2505
		} else {
2506
			$mod['plan_classes'] = array( 'free' );
2507
		}
2508
2509 View Code Duplication
		if ( $mod['feature'] ) {
2510
			$mod['feature'] = explode( ',', $mod['feature'] );
2511
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2512
		} else {
2513
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2514
		}
2515
2516
		/**
2517
		 * Filters the feature array on a module.
2518
		 *
2519
		 * This filter allows you to control where each module is filtered: Recommended,
2520
		 * Jumpstart, and the default "Other" listing.
2521
		 *
2522
		 * @since 3.5.0
2523
		 *
2524
		 * @param array   $mod['feature'] The areas to feature this module:
2525
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2526
		 *     'Recommended' shows on the main Jetpack admin screen.
2527
		 *     'Other' should be the default if no other value is in the array.
2528
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2529
		 * @param array   $mod All the currently assembled module data.
2530
		 */
2531
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2532
2533
		/**
2534
		 * Filter the returned data about a module.
2535
		 *
2536
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2537
		 * so please be careful.
2538
		 *
2539
		 * @since 3.6.0
2540
		 *
2541
		 * @param array   $mod    The details of the requested module.
2542
		 * @param string  $module The slug of the module, e.g. sharedaddy
2543
		 * @param string  $file   The path to the module source file.
2544
		 */
2545
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2546
	}
2547
2548
	/**
2549
	 * Like core's get_file_data implementation, but caches the result.
2550
	 */
2551
	public static function get_file_data( $file, $headers ) {
2552
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2553
		$file_name = basename( $file );
2554
2555
		$cache_key = 'jetpack_file_data_' . JETPACK__VERSION;
2556
2557
		$file_data_option = get_transient( $cache_key );
2558
2559
		if ( false === $file_data_option ) {
2560
			$file_data_option = array();
2561
		}
2562
2563
		$key           = md5( $file_name . serialize( $headers ) );
2564
		$refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2565
2566
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2567
		if ( ! $refresh_cache && isset( $file_data_option[ $key ] ) ) {
2568
			return $file_data_option[ $key ];
2569
		}
2570
2571
		$data = get_file_data( $file, $headers );
2572
2573
		$file_data_option[ $key ] = $data;
2574
2575
		set_transient( $cache_key, $file_data_option, 29 * DAY_IN_SECONDS );
2576
2577
		return $data;
2578
	}
2579
2580
2581
	/**
2582
	 * Return translated module tag.
2583
	 *
2584
	 * @param string $tag Tag as it appears in each module heading.
2585
	 *
2586
	 * @return mixed
2587
	 */
2588
	public static function translate_module_tag( $tag ) {
2589
		return jetpack_get_module_i18n_tag( $tag );
2590
	}
2591
2592
	/**
2593
	 * Get i18n strings as a JSON-encoded string
2594
	 *
2595
	 * @return string The locale as JSON
2596
	 */
2597
	public static function get_i18n_data_json() {
2598
2599
		// WordPress 5.0 uses md5 hashes of file paths to associate translation
2600
		// JSON files with the file they should be included for. This is an md5
2601
		// of '_inc/build/admin.js'.
2602
		$path_md5 = '1bac79e646a8bf4081a5011ab72d5807';
2603
2604
		$i18n_json =
2605
				   JETPACK__PLUGIN_DIR
2606
				   . 'languages/json/jetpack-'
2607
				   . get_user_locale()
2608
				   . '-'
2609
				   . $path_md5
2610
				   . '.json';
2611
2612
		if ( is_file( $i18n_json ) && is_readable( $i18n_json ) ) {
2613
			$locale_data = @file_get_contents( $i18n_json );
2614
			if ( $locale_data ) {
2615
				return $locale_data;
2616
			}
2617
		}
2618
2619
		// Return valid empty Jed locale
2620
		return '{ "locale_data": { "messages": { "": {} } } }';
2621
	}
2622
2623
	/**
2624
	 * Add locale data setup to wp-i18n
2625
	 *
2626
	 * Any Jetpack script that depends on wp-i18n should use this method to set up the locale.
2627
	 *
2628
	 * The locale setup depends on an adding inline script. This is error-prone and could easily
2629
	 * result in multiple additions of the same script when exactly 0 or 1 is desireable.
2630
	 *
2631
	 * This method provides a safe way to request the setup multiple times but add the script at
2632
	 * most once.
2633
	 *
2634
	 * @since 6.7.0
2635
	 *
2636
	 * @return void
2637
	 */
2638
	public static function setup_wp_i18n_locale_data() {
2639
		static $script_added = false;
2640
		if ( ! $script_added ) {
2641
			$script_added = true;
2642
			wp_add_inline_script(
2643
				'wp-i18n',
2644
				'wp.i18n.setLocaleData( ' . Jetpack::get_i18n_data_json() . ', \'jetpack\' );'
2645
			);
2646
		}
2647
	}
2648
2649
	/**
2650
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2651
	 *
2652
	 * @since 3.9.2
2653
	 *
2654
	 * @param array $modules
2655
	 *
2656
	 * @return string|void
2657
	 */
2658
	public static function get_translated_modules( $modules ) {
2659
		foreach ( $modules as $index => $module ) {
2660
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2661
			if ( isset( $module['name'] ) ) {
2662
				$modules[ $index ]['name'] = $i18n_module['name'];
2663
			}
2664
			if ( isset( $module['description'] ) ) {
2665
				$modules[ $index ]['description'] = $i18n_module['description'];
2666
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2667
			}
2668
		}
2669
		return $modules;
2670
	}
2671
2672
	/**
2673
	 * Get a list of activated modules as an array of module slugs.
2674
	 */
2675
	public static function get_active_modules() {
2676
		$active = Jetpack_Options::get_option( 'active_modules' );
2677
2678
		if ( ! is_array( $active ) ) {
2679
			$active = array();
2680
		}
2681
2682
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2683
			$active[] = 'vaultpress';
2684
		} else {
2685
			$active = array_diff( $active, array( 'vaultpress' ) );
2686
		}
2687
2688
		//If protect is active on the main site of a multisite, it should be active on all sites.
2689
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2690
			$active[] = 'protect';
2691
		}
2692
2693
		/**
2694
		 * Allow filtering of the active modules.
2695
		 *
2696
		 * Gives theme and plugin developers the power to alter the modules that
2697
		 * are activated on the fly.
2698
		 *
2699
		 * @since 5.8.0
2700
		 *
2701
		 * @param array $active Array of active module slugs.
2702
		 */
2703
		$active = apply_filters( 'jetpack_active_modules', $active );
2704
2705
		return array_unique( $active );
2706
	}
2707
2708
	/**
2709
	 * Check whether or not a Jetpack module is active.
2710
	 *
2711
	 * @param string $module The slug of a Jetpack module.
2712
	 * @return bool
2713
	 *
2714
	 * @static
2715
	 */
2716
	public static function is_module_active( $module ) {
2717
		return in_array( $module, self::get_active_modules() );
2718
	}
2719
2720
	public static function is_module( $module ) {
2721
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2722
	}
2723
2724
	/**
2725
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2726
	 *
2727
	 * @param bool $catch True to start catching, False to stop.
2728
	 *
2729
	 * @static
2730
	 */
2731
	public static function catch_errors( $catch ) {
2732
		static $display_errors, $error_reporting;
2733
2734
		if ( $catch ) {
2735
			$display_errors  = @ini_set( 'display_errors', 1 );
2736
			$error_reporting = @error_reporting( E_ALL );
2737
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2738
		} else {
2739
			@ini_set( 'display_errors', $display_errors );
2740
			@error_reporting( $error_reporting );
2741
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2742
		}
2743
	}
2744
2745
	/**
2746
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2747
	 */
2748
	public static function catch_errors_on_shutdown() {
2749
		Jetpack::state( 'php_errors', self::alias_directories( ob_get_clean() ) );
2750
	}
2751
2752
	/**
2753
	 * Rewrite any string to make paths easier to read.
2754
	 *
2755
	 * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR
2756
	 * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR.
2757
	 *
2758
	 * @param $string
2759
	 * @return mixed
2760
	 */
2761
	public static function alias_directories( $string ) {
2762
		// ABSPATH has a trailing slash.
2763
		$string = str_replace( ABSPATH, 'ABSPATH/', $string );
2764
		// WP_CONTENT_DIR does not have a trailing slash.
2765
		$string = str_replace( WP_CONTENT_DIR, 'WP_CONTENT_DIR', $string );
2766
2767
		return $string;
2768
	}
2769
2770
	public static function activate_default_modules(
2771
		$min_version = false,
2772
		$max_version = false,
2773
		$other_modules = array(),
2774
		$redirect = true,
2775
		$send_state_messages = true
2776
	) {
2777
		$jetpack = Jetpack::init();
2778
2779
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2780
		$modules = array_merge( $other_modules, $modules );
2781
2782
		// Look for standalone plugins and disable if active.
2783
2784
		$to_deactivate = array();
2785
		foreach ( $modules as $module ) {
2786
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2787
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2788
			}
2789
		}
2790
2791
		$deactivated = array();
2792
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2793
			list( $probable_file, $probable_title ) = $deactivate_me;
2794
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2795
				$deactivated[] = $module;
2796
			}
2797
		}
2798
2799
		if ( $deactivated && $redirect ) {
2800
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2801
2802
			$url = add_query_arg(
2803
				array(
2804
					'action'   => 'activate_default_modules',
2805
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2806
				),
2807
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2808
			);
2809
			wp_safe_redirect( $url );
2810
			exit;
2811
		}
2812
2813
		/**
2814
		 * Fires before default modules are activated.
2815
		 *
2816
		 * @since 1.9.0
2817
		 *
2818
		 * @param string $min_version Minimum version number required to use modules.
2819
		 * @param string $max_version Maximum version number required to use modules.
2820
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2821
		 */
2822
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2823
2824
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2825
		if ( $send_state_messages ) {
2826
			Jetpack::restate();
2827
			Jetpack::catch_errors( true );
2828
		}
2829
2830
		$active = Jetpack::get_active_modules();
2831
2832
		foreach ( $modules as $module ) {
2833
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2834
				$active[] = $module;
2835
				self::update_active_modules( $active );
2836
				continue;
2837
			}
2838
2839
			if ( $send_state_messages && in_array( $module, $active ) ) {
2840
				$module_info = Jetpack::get_module( $module );
2841 View Code Duplication
				if ( ! $module_info['deactivate'] ) {
2842
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2843
					if ( $active_state = Jetpack::state( $state ) ) {
2844
						$active_state = explode( ',', $active_state );
2845
					} else {
2846
						$active_state = array();
2847
					}
2848
					$active_state[] = $module;
2849
					Jetpack::state( $state, implode( ',', $active_state ) );
2850
				}
2851
				continue;
2852
			}
2853
2854
			$file = Jetpack::get_module_path( $module );
2855
			if ( ! file_exists( $file ) ) {
2856
				continue;
2857
			}
2858
2859
			// we'll override this later if the plugin can be included without fatal error
2860
			if ( $redirect ) {
2861
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2862
			}
2863
2864
			if ( $send_state_messages ) {
2865
				Jetpack::state( 'error', 'module_activation_failed' );
2866
				Jetpack::state( 'module', $module );
2867
			}
2868
2869
			ob_start();
2870
			require_once $file;
2871
2872
			$active[] = $module;
2873
2874 View Code Duplication
			if ( $send_state_messages ) {
2875
2876
				$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2877
				if ( $active_state = Jetpack::state( $state ) ) {
2878
					$active_state = explode( ',', $active_state );
2879
				} else {
2880
					$active_state = array();
2881
				}
2882
				$active_state[] = $module;
2883
				Jetpack::state( $state, implode( ',', $active_state ) );
2884
			}
2885
2886
			Jetpack::update_active_modules( $active );
2887
2888
			ob_end_clean();
2889
		}
2890
2891
		if ( $send_state_messages ) {
2892
			Jetpack::state( 'error', false );
0 ignored issues
show
false is of type boolean, but the function expects a string|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2893
			Jetpack::state( 'module', false );
0 ignored issues
show
false is of type boolean, but the function expects a string|null.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2894
		}
2895
2896
		Jetpack::catch_errors( false );
2897
		/**
2898
		 * Fires when default modules are activated.
2899
		 *
2900
		 * @since 1.9.0
2901
		 *
2902
		 * @param string $min_version Minimum version number required to use modules.
2903
		 * @param string $max_version Maximum version number required to use modules.
2904
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2905
		 */
2906
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2907
	}
2908
2909
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2910
		/**
2911
		 * Fires before a module is activated.
2912
		 *
2913
		 * @since 2.6.0
2914
		 *
2915
		 * @param string $module Module slug.
2916
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2917
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2918
		 */
2919
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2920
2921
		$jetpack = Jetpack::init();
2922
2923
		if ( ! strlen( $module ) )
2924
			return false;
2925
2926
		if ( ! Jetpack::is_module( $module ) )
2927
			return false;
2928
2929
		// If it's already active, then don't do it again
2930
		$active = Jetpack::get_active_modules();
2931
		foreach ( $active as $act ) {
2932
			if ( $act == $module )
2933
				return true;
2934
		}
2935
2936
		$module_data = Jetpack::get_module( $module );
2937
2938
		if ( ! Jetpack::is_active() ) {
2939
			if ( ! Jetpack::is_development_mode() && ! Jetpack::is_onboarding() )
2940
				return false;
2941
2942
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2943
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2944
				return false;
2945
		}
2946
2947
		// Check and see if the old plugin is active
2948
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2949
			// Deactivate the old plugin
2950
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2951
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2952
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2953
				Jetpack::state( 'deactivated_plugins', $module );
2954
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2955
				exit;
2956
			}
2957
		}
2958
2959
		// Protect won't work with mis-configured IPs
2960
		if ( 'protect' === $module ) {
2961
			include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php';
2962
			if ( ! jetpack_protect_get_ip() ) {
2963
				Jetpack::state( 'message', 'protect_misconfigured_ip' );
2964
				return false;
2965
			}
2966
		}
2967
2968
		if ( ! Jetpack_Plan::supports( $module ) ) {
2969
			return false;
2970
		}
2971
2972
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2973
		Jetpack::state( 'module', $module );
2974
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2975
2976
		Jetpack::catch_errors( true );
2977
		ob_start();
2978
		require Jetpack::get_module_path( $module );
2979
		/** This action is documented in class.jetpack.php */
2980
		do_action( 'jetpack_activate_module', $module );
2981
		$active[] = $module;
2982
		Jetpack::update_active_modules( $active );
2983
2984
		Jetpack::state( 'error', false ); // the override
2985
		ob_end_clean();
2986
		Jetpack::catch_errors( false );
2987
2988
		if ( $redirect ) {
2989
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2990
		}
2991
		if ( $exit ) {
2992
			exit;
2993
		}
2994
		return true;
2995
	}
2996
2997
	function activate_module_actions( $module ) {
2998
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
2999
	}
3000
3001
	public static function deactivate_module( $module ) {
3002
		/**
3003
		 * Fires when a module is deactivated.
3004
		 *
3005
		 * @since 1.9.0
3006
		 *
3007
		 * @param string $module Module slug.
3008
		 */
3009
		do_action( 'jetpack_pre_deactivate_module', $module );
3010
3011
		$jetpack = Jetpack::init();
3012
3013
		$active = Jetpack::get_active_modules();
3014
		$new    = array_filter( array_diff( $active, (array) $module ) );
3015
3016
		return self::update_active_modules( $new );
3017
	}
3018
3019
	public static function enable_module_configurable( $module ) {
3020
		$module = Jetpack::get_module_slug( $module );
3021
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
3022
	}
3023
3024
	/**
3025
	 * Composes a module configure URL. It uses Jetpack settings search as default value
3026
	 * It is possible to redefine resulting URL by using "jetpack_module_configuration_url_$module" filter
3027
	 *
3028
	 * @param string $module Module slug
3029
	 * @return string $url module configuration URL
3030
	 */
3031
	public static function module_configuration_url( $module ) {
3032
		$module = Jetpack::get_module_slug( $module );
3033
		$default_url =  Jetpack::admin_url() . "#/settings?term=$module";
3034
		/**
3035
		 * Allows to modify configure_url of specific module to be able to redirect to some custom location.
3036
		 *
3037
		 * @since 6.9.0
3038
		 *
3039
		 * @param string $default_url Default url, which redirects to jetpack settings page.
3040
		 */
3041
		$url = apply_filters( 'jetpack_module_configuration_url_' . $module, $default_url );
3042
3043
		return $url;
3044
	}
3045
3046
/* Installation */
3047
	public static function bail_on_activation( $message, $deactivate = true ) {
3048
?>
3049
<!doctype html>
3050
<html>
3051
<head>
3052
<meta charset="<?php bloginfo( 'charset' ); ?>">
3053
<style>
3054
* {
3055
	text-align: center;
3056
	margin: 0;
3057
	padding: 0;
3058
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
3059
}
3060
p {
3061
	margin-top: 1em;
3062
	font-size: 18px;
3063
}
3064
</style>
3065
<body>
3066
<p><?php echo esc_html( $message ); ?></p>
3067
</body>
3068
</html>
3069
<?php
3070
		if ( $deactivate ) {
3071
			$plugins = get_option( 'active_plugins' );
3072
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
3073
			$update  = false;
3074
			foreach ( $plugins as $i => $plugin ) {
3075
				if ( $plugin === $jetpack ) {
3076
					$plugins[$i] = false;
3077
					$update = true;
3078
				}
3079
			}
3080
3081
			if ( $update ) {
3082
				update_option( 'active_plugins', array_filter( $plugins ) );
3083
			}
3084
		}
3085
		exit;
3086
	}
3087
3088
	/**
3089
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
3090
	 * @static
3091
	 */
3092
	public static function plugin_activation( $network_wide ) {
3093
		Jetpack_Options::update_option( 'activated', 1 );
3094
3095
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
3096
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
3097
		}
3098
3099
		if ( $network_wide )
3100
			Jetpack::state( 'network_nag', true );
3101
3102
		// For firing one-off events (notices) immediately after activation
3103
		set_transient( 'activated_jetpack', true, .1 * MINUTE_IN_SECONDS );
3104
3105
		update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) );
3106
3107
		Jetpack::plugin_initialize();
3108
	}
3109
3110
	public static function get_activation_source( $referer_url ) {
3111
3112
		if ( defined( 'WP_CLI' ) && WP_CLI ) {
3113
			return array( 'wp-cli', null );
3114
		}
3115
3116
		$referer = parse_url( $referer_url );
3117
3118
		$source_type = 'unknown';
3119
		$source_query = null;
3120
3121
		if ( ! is_array( $referer ) ) {
3122
			return array( $source_type, $source_query );
3123
		}
3124
3125
		$plugins_path = parse_url( admin_url( 'plugins.php' ), PHP_URL_PATH );
3126
		$plugins_install_path = parse_url( admin_url( 'plugin-install.php' ), PHP_URL_PATH );// /wp-admin/plugin-install.php
3127
3128
		if ( isset( $referer['query'] ) ) {
3129
			parse_str( $referer['query'], $query_parts );
3130
		} else {
3131
			$query_parts = array();
3132
		}
3133
3134
		if ( $plugins_path === $referer['path'] ) {
3135
			$source_type = 'list';
3136
		} elseif ( $plugins_install_path === $referer['path'] ) {
3137
			$tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured';
3138
			switch( $tab ) {
3139
				case 'popular':
3140
					$source_type = 'popular';
3141
					break;
3142
				case 'recommended':
3143
					$source_type = 'recommended';
3144
					break;
3145
				case 'favorites':
3146
					$source_type = 'favorites';
3147
					break;
3148
				case 'search':
3149
					$source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' );
3150
					$source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null;
3151
					break;
3152
				default:
3153
					$source_type = 'featured';
3154
			}
3155
		}
3156
3157
		return array( $source_type, $source_query );
3158
	}
3159
3160
	/**
3161
	 * Runs before bumping version numbers up to a new version
3162
	 * @param  string $version    Version:timestamp
3163
	 * @param  string $old_version Old Version:timestamp or false if not set yet.
3164
	 * @return null              [description]
3165
	 */
3166
	public static function do_version_bump( $version, $old_version ) {
3167
		if ( ! $old_version ) { // For new sites
3168
			// There used to be stuff here, but this seems like it might  be useful to someone in the future...
3169
		}
3170
	}
3171
3172
	/**
3173
	 * Sets the internal version number and activation state.
3174
	 * @static
3175
	 */
3176
	public static function plugin_initialize() {
3177
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
3178
			Jetpack_Options::update_option( 'activated', 2 );
3179
		}
3180
3181 View Code Duplication
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
3182
			$version = $old_version = JETPACK__VERSION . ':' . time();
3183
			/** This action is documented in class.jetpack.php */
3184
			do_action( 'updating_jetpack_version', $version, false );
3185
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
3186
		}
3187
3188
		Jetpack::load_modules();
3189
3190
		Jetpack_Options::delete_option( 'do_activate' );
3191
		Jetpack_Options::delete_option( 'dismissed_connection_banner' );
3192
	}
3193
3194
	/**
3195
	 * Removes all connection options
3196
	 * @static
3197
	 */
3198
	public static function plugin_deactivation( ) {
3199
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
3200
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
3201
			Jetpack_Network::init()->deactivate();
3202
		} else {
3203
			Jetpack::disconnect( false );
3204
			//Jetpack_Heartbeat::init()->deactivate();
3205
		}
3206
	}
3207
3208
	/**
3209
	 * Disconnects from the Jetpack servers.
3210
	 * Forgets all connection details and tells the Jetpack servers to do the same.
3211
	 * @static
3212
	 */
3213
	public static function disconnect( $update_activated_state = true ) {
3214
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
3215
		Jetpack::clean_nonces( true );
3216
3217
		// If the site is in an IDC because sync is not allowed,
3218
		// let's make sure to not disconnect the production site.
3219
		if ( ! self::validate_sync_error_idc_option() ) {
3220
			JetpackTracking::record_user_event( 'disconnect_site', array() );
3221
			Jetpack::load_xml_rpc_client();
3222
			$xml = new Jetpack_IXR_Client();
3223
			$xml->query( 'jetpack.deregister' );
3224
		}
3225
3226
		Jetpack_Options::delete_option(
3227
			array(
3228
				'blog_token',
3229
				'user_token',
3230
				'user_tokens',
3231
				'master_user',
3232
				'time_diff',
3233
				'fallback_no_verify_ssl_certs',
3234
			)
3235
		);
3236
3237
		Jetpack_IDC::clear_all_idc_options();
3238
		Jetpack_Options::delete_raw_option( 'jetpack_secrets' );
3239
3240
		if ( $update_activated_state ) {
3241
			Jetpack_Options::update_option( 'activated', 4 );
3242
		}
3243
3244
		if ( $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ) ) {
3245
			// Check then record unique disconnection if site has never been disconnected previously
3246
			if ( - 1 == $jetpack_unique_connection['disconnected'] ) {
3247
				$jetpack_unique_connection['disconnected'] = 1;
3248
			} else {
3249
				if ( 0 == $jetpack_unique_connection['disconnected'] ) {
3250
					//track unique disconnect
3251
					$jetpack = Jetpack::init();
3252
3253
					$jetpack->stat( 'connections', 'unique-disconnect' );
3254
					$jetpack->do_stats( 'server_side' );
3255
				}
3256
				// increment number of times disconnected
3257
				$jetpack_unique_connection['disconnected'] += 1;
3258
			}
3259
3260
			Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
3261
		}
3262
3263
		// Delete cached connected user data
3264
		$transient_key = "jetpack_connected_user_data_" . get_current_user_id();
3265
		delete_transient( $transient_key );
3266
3267
		// Delete all the sync related data. Since it could be taking up space.
3268
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-sender.php';
3269
		Jetpack_Sync_Sender::get_instance()->uninstall();
3270
3271
		// Disable the Heartbeat cron
3272
		Jetpack_Heartbeat::init()->deactivate();
3273
	}
3274
3275
	/**
3276
	 * Unlinks the current user from the linked WordPress.com user
3277
	 */
3278
	public static function unlink_user( $user_id = null ) {
3279
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
3280
			return false;
3281
3282
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
3283
3284
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
3285
			return false;
3286
3287
		if ( ! isset( $tokens[ $user_id ] ) )
3288
			return false;
3289
3290
		Jetpack::load_xml_rpc_client();
3291
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
3292
		$xml->query( 'jetpack.unlink_user', $user_id );
3293
3294
		unset( $tokens[ $user_id ] );
3295
3296
		Jetpack_Options::update_option( 'user_tokens', $tokens );
3297
3298
		/**
3299
		 * Fires after the current user has been unlinked from WordPress.com.
3300
		 *
3301
		 * @since 4.1.0
3302
		 *
3303
		 * @param int $user_id The current user's ID.
3304
		 */
3305
		do_action( 'jetpack_unlinked_user', $user_id );
3306
3307
		return true;
3308
	}
3309
3310
	/**
3311
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
3312
	 */
3313
	public static function try_registration() {
3314
		// The user has agreed to the TOS at some point by now.
3315
		Jetpack_Options::update_option( 'tos_agreed', true );
3316
3317
		// Let's get some testing in beta versions and such.
3318
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
3319
			// Before attempting to connect, let's make sure that the domains are viable.
3320
			$domains_to_check = array_unique( array(
3321
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
3322
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
3323
			) );
3324
			foreach ( $domains_to_check as $domain ) {
3325
				$result = Jetpack_Data::is_usable_domain( $domain );
3326
				if ( is_wp_error( $result ) ) {
3327
					return $result;
3328
				}
3329
			}
3330
		}
3331
3332
		$result = Jetpack::register();
3333
3334
		// If there was an error with registration and the site was not registered, record this so we can show a message.
3335
		if ( ! $result || is_wp_error( $result ) ) {
3336
			return $result;
3337
		} else {
3338
			return true;
3339
		}
3340
	}
3341
3342
	/**
3343
	 * Tracking an internal event log. Try not to put too much chaff in here.
3344
	 *
3345
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
3346
	 */
3347
	public static function log( $code, $data = null ) {
3348
		// only grab the latest 200 entries
3349
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
3350
3351
		// Append our event to the log
3352
		$log_entry = array(
3353
			'time'    => time(),
3354
			'user_id' => get_current_user_id(),
3355
			'blog_id' => Jetpack_Options::get_option( 'id' ),
3356
			'code'    => $code,
3357
		);
3358
		// Don't bother storing it unless we've got some.
3359
		if ( ! is_null( $data ) ) {
3360
			$log_entry['data'] = $data;
3361
		}
3362
		$log[] = $log_entry;
3363
3364
		// Try add_option first, to make sure it's not autoloaded.
3365
		// @todo: Add an add_option method to Jetpack_Options
3366
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
3367
			Jetpack_Options::update_option( 'log', $log );
3368
		}
3369
3370
		/**
3371
		 * Fires when Jetpack logs an internal event.
3372
		 *
3373
		 * @since 3.0.0
3374
		 *
3375
		 * @param array $log_entry {
3376
		 *	Array of details about the log entry.
3377
		 *
3378
		 *	@param string time Time of the event.
3379
		 *	@param int user_id ID of the user who trigerred the event.
3380
		 *	@param int blog_id Jetpack Blog ID.
3381
		 *	@param string code Unique name for the event.
3382
		 *	@param string data Data about the event.
3383
		 * }
3384
		 */
3385
		do_action( 'jetpack_log_entry', $log_entry );
3386
	}
3387
3388
	/**
3389
	 * Get the internal event log.
3390
	 *
3391
	 * @param $event (string) - only return the specific log events
3392
	 * @param $num   (int)    - get specific number of latest results, limited to 200
3393
	 *
3394
	 * @return array of log events || WP_Error for invalid params
3395
	 */
3396
	public static function get_log( $event = false, $num = false ) {
3397
		if ( $event && ! is_string( $event ) ) {
3398
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
3399
		}
3400
3401
		if ( $num && ! is_numeric( $num ) ) {
3402
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
3403
		}
3404
3405
		$entire_log = Jetpack_Options::get_option( 'log', array() );
3406
3407
		// If nothing set - act as it did before, otherwise let's start customizing the output
3408
		if ( ! $num && ! $event ) {
3409
			return $entire_log;
3410
		} else {
3411
			$entire_log = array_reverse( $entire_log );
3412
		}
3413
3414
		$custom_log_output = array();
3415
3416
		if ( $event ) {
3417
			foreach ( $entire_log as $log_event ) {
3418
				if ( $event == $log_event[ 'code' ] ) {
3419
					$custom_log_output[] = $log_event;
3420
				}
3421
			}
3422
		} else {
3423
			$custom_log_output = $entire_log;
3424
		}
3425
3426
		if ( $num ) {
3427
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
3428
		}
3429
3430
		return $custom_log_output;
3431
	}
3432
3433
	/**
3434
	 * Log modification of important settings.
3435
	 */
3436
	public static function log_settings_change( $option, $old_value, $value ) {
3437
		switch( $option ) {
3438
			case 'jetpack_sync_non_public_post_stati':
3439
				self::log( $option, $value );
3440
				break;
3441
		}
3442
	}
3443
3444
	/**
3445
	 * Return stat data for WPCOM sync
3446
	 */
3447
	public static function get_stat_data( $encode = true, $extended = true ) {
3448
		$data = Jetpack_Heartbeat::generate_stats_array();
3449
3450
		if ( $extended ) {
3451
			$additional_data = self::get_additional_stat_data();
3452
			$data = array_merge( $data, $additional_data );
3453
		}
3454
3455
		if ( $encode ) {
3456
			return json_encode( $data );
3457
		}
3458
3459
		return $data;
3460
	}
3461
3462
	/**
3463
	 * Get additional stat data to sync to WPCOM
3464
	 */
3465
	public static function get_additional_stat_data( $prefix = '' ) {
3466
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
0 ignored issues
show
Coding Style Comprehensibility introduced by
$return was never initialized. Although not strictly required by PHP, it is generally a good practice to add $return = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
3467
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
3468
		$return["{$prefix}users"]          = (int) Jetpack::get_site_user_count();
3469
		$return["{$prefix}site-count"]     = 0;
3470
3471
		if ( function_exists( 'get_blog_count' ) ) {
3472
			$return["{$prefix}site-count"] = get_blog_count();
3473
		}
3474
		return $return;
3475
	}
3476
3477
	private static function get_site_user_count() {
3478
		global $wpdb;
3479
3480
		if ( function_exists( 'wp_is_large_network' ) ) {
3481
			if ( wp_is_large_network( 'users' ) ) {
3482
				return -1; // Not a real value but should tell us that we are dealing with a large network.
3483
			}
3484
		}
3485 View Code Duplication
		if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) {
3486
			// It wasn't there, so regenerate the data and save the transient
3487
			$user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" );
3488
			set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS );
3489
		}
3490
		return $user_count;
3491
	}
3492
3493
	/* Admin Pages */
3494
3495
	function admin_init() {
3496
		// If the plugin is not connected, display a connect message.
3497
		if (
3498
			// the plugin was auto-activated and needs its candy
3499
			Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' )
3500
		||
3501
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
3502
			! Jetpack_Options::get_option( 'activated' )
3503
		) {
3504
			Jetpack::plugin_initialize();
3505
		}
3506
3507
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
3508
			Jetpack_Connection_Banner::init();
3509
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
3510
			// Upgrade: 1.1 -> 1.1.1
3511
			// Check and see if host can verify the Jetpack servers' SSL certificate
3512
			$args = array();
3513
			Jetpack_Client::_wp_remote_request(
3514
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
3515
				$args,
3516
				true
3517
			);
3518
		}
3519
3520
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
3521
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
3522
		}
3523
3524
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
3525
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
3526
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
3527
3528
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
3529
			// Artificially throw errors in certain whitelisted cases during plugin activation
3530
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
3531
		}
3532
3533
		// Add custom column in wp-admin/users.php to show whether user is linked.
3534
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
3535
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
3536
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
3537
	}
3538
3539
	function admin_body_class( $admin_body_class = '' ) {
3540
		$classes = explode( ' ', trim( $admin_body_class ) );
3541
3542
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
3543
3544
		$admin_body_class = implode( ' ', array_unique( $classes ) );
3545
		return " $admin_body_class ";
3546
	}
3547
3548
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
3549
		return $admin_body_class . ' jetpack-pagestyles ';
3550
	}
3551
3552
	/**
3553
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
3554
	 * This function artificially throws errors for such cases (whitelisted).
3555
	 *
3556
	 * @param string $plugin The activated plugin.
3557
	 */
3558
	function throw_error_on_activate_plugin( $plugin ) {
3559
		$active_modules = Jetpack::get_active_modules();
3560
3561
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
3562
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
3563
			$throw = false;
3564
3565
			// Try and make sure it really was the stats plugin
3566
			if ( ! class_exists( 'ReflectionFunction' ) ) {
3567
				if ( 'stats.php' == basename( $plugin ) ) {
3568
					$throw = true;
3569
				}
3570
			} else {
3571
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
3572
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
3573
					$throw = true;
3574
				}
3575
			}
3576
3577
			if ( $throw ) {
3578
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
3579
			}
3580
		}
3581
	}
3582
3583
	function intercept_plugin_error_scrape_init() {
3584
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
3585
	}
3586
3587
	function intercept_plugin_error_scrape( $action, $result ) {
3588
		if ( ! $result ) {
3589
			return;
3590
		}
3591
3592
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
3593
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
3594
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
3595
			}
3596
		}
3597
	}
3598
3599
	function add_remote_request_handlers() {
3600
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
3601
		add_action( 'wp_ajax_nopriv_jetpack_update_file', array( $this, 'remote_request_handlers' ) );
3602
	}
3603
3604
	function remote_request_handlers() {
3605
		$action = current_filter();
3606
3607
		switch ( current_filter() ) {
3608
		case 'wp_ajax_nopriv_jetpack_upload_file' :
3609
			$response = $this->upload_handler();
3610
			break;
3611
3612
		case 'wp_ajax_nopriv_jetpack_update_file' :
3613
			$response = $this->upload_handler( true );
3614
			break;
3615
		default :
3616
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
3617
			break;
3618
		}
3619
3620
		if ( ! $response ) {
3621
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
3622
		}
3623
3624
		if ( is_wp_error( $response ) ) {
3625
			$status_code       = $response->get_error_data();
3626
			$error             = $response->get_error_code();
3627
			$error_description = $response->get_error_message();
3628
3629
			if ( ! is_int( $status_code ) ) {
3630
				$status_code = 400;
3631
			}
3632
3633
			status_header( $status_code );
3634
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
3635
		}
3636
3637
		status_header( 200 );
3638
		if ( true === $response ) {
3639
			exit;
3640
		}
3641
3642
		die( json_encode( (object) $response ) );
3643
	}
3644
3645
	/**
3646
	 * Uploads a file gotten from the global $_FILES.
3647
	 * If `$update_media_item` is true and `post_id` is defined
3648
	 * the attachment file of the media item (gotten through of the post_id)
3649
	 * will be updated instead of add a new one.
3650
	 *
3651
	 * @param  boolean $update_media_item - update media attachment
3652
	 * @return array - An array describing the uploadind files process
3653
	 */
3654
	function upload_handler( $update_media_item = false ) {
3655
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
3656
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
3657
		}
3658
3659
		$user = wp_authenticate( '', '' );
3660
		if ( ! $user || is_wp_error( $user ) ) {
3661
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
3662
		}
3663
3664
		wp_set_current_user( $user->ID );
3665
3666
		if ( ! current_user_can( 'upload_files' ) ) {
3667
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
3668
		}
3669
3670
		if ( empty( $_FILES ) ) {
3671
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3672
		}
3673
3674
		foreach ( array_keys( $_FILES ) as $files_key ) {
3675
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3676
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3677
			}
3678
		}
3679
3680
		$media_keys = array_keys( $_FILES['media'] );
3681
3682
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3683
		if ( ! $token || is_wp_error( $token ) ) {
3684
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3685
		}
3686
3687
		$uploaded_files = array();
3688
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3689
		unset( $GLOBALS['post'] );
3690
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3691
			$file = array();
3692
			foreach ( $media_keys as $media_key ) {
3693
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3694
			}
3695
3696
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3697
3698
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3699
			if ( $hmac_provided !== $hmac_file ) {
3700
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3701
				continue;
3702
			}
3703
3704
			$_FILES['.jetpack.upload.'] = $file;
3705
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3706
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3707
				$post_id = 0;
3708
			}
3709
3710
			if ( $update_media_item ) {
3711
				if ( ! isset( $post_id ) || $post_id === 0 ) {
3712
					return new Jetpack_Error( 'invalid_input', 'Media ID must be defined.', 400 );
3713
				}
3714
3715
				$media_array = $_FILES['media'];
3716
3717
				$file_array['name'] = $media_array['name'][0];
3718
				$file_array['type'] = $media_array['type'][0];
3719
				$file_array['tmp_name'] = $media_array['tmp_name'][0];
3720
				$file_array['error'] = $media_array['error'][0];
3721
				$file_array['size'] = $media_array['size'][0];
3722
3723
				$edited_media_item = Jetpack_Media::edit_media_file( $post_id, $file_array );
3724
3725
				if ( is_wp_error( $edited_media_item ) ) {
3726
					return $edited_media_item;
3727
				}
3728
3729
				$response = (object) array(
3730
					'id'   => (string) $post_id,
3731
					'file' => (string) $edited_media_item->post_title,
3732
					'url'  => (string) wp_get_attachment_url( $post_id ),
3733
					'type' => (string) $edited_media_item->post_mime_type,
3734
					'meta' => (array) wp_get_attachment_metadata( $post_id ),
3735
				);
3736
3737
				return (array) array( $response );
3738
			}
3739
3740
			$attachment_id = media_handle_upload(
3741
				'.jetpack.upload.',
3742
				$post_id,
3743
				array(),
3744
				array(
3745
					'action' => 'jetpack_upload_file',
3746
				)
3747
			);
3748
3749
			if ( ! $attachment_id ) {
3750
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3751
			} elseif ( is_wp_error( $attachment_id ) ) {
3752
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3753
			} else {
3754
				$attachment = get_post( $attachment_id );
3755
				$uploaded_files[$index] = (object) array(
3756
					'id'   => (string) $attachment_id,
3757
					'file' => $attachment->post_title,
3758
					'url'  => wp_get_attachment_url( $attachment_id ),
3759
					'type' => $attachment->post_mime_type,
3760
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3761
				);
3762
				// Zip files uploads are not supported unless they are done for installation purposed
3763
				// lets delete them in case something goes wrong in this whole process
3764
				if ( 'application/zip' === $attachment->post_mime_type ) {
3765
					// Schedule a cleanup for 2 hours from now in case of failed install.
3766
					wp_schedule_single_event( time() + 2 * HOUR_IN_SECONDS, 'upgrader_scheduled_cleanup', array( $attachment_id ) );
3767
				}
3768
			}
3769
		}
3770
		if ( ! is_null( $global_post ) ) {
3771
			$GLOBALS['post'] = $global_post;
3772
		}
3773
3774
		return $uploaded_files;
3775
	}
3776
3777
	/**
3778
	 * Add help to the Jetpack page
3779
	 *
3780
	 * @since Jetpack (1.2.3)
3781
	 * @return false if not the Jetpack page
3782
	 */
3783
	function admin_help() {
3784
		$current_screen = get_current_screen();
3785
3786
		// Overview
3787
		$current_screen->add_help_tab(
3788
			array(
3789
				'id'		=> 'home',
3790
				'title'		=> __( 'Home', 'jetpack' ),
3791
				'content'	=>
3792
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3793
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3794
					'<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>',
3795
			)
3796
		);
3797
3798
		// Screen Content
3799
		if ( current_user_can( 'manage_options' ) ) {
3800
			$current_screen->add_help_tab(
3801
				array(
3802
					'id'		=> 'settings',
3803
					'title'		=> __( 'Settings', 'jetpack' ),
3804
					'content'	=>
3805
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3806
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3807
						'<ol>' .
3808
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3809
							'<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>' .
3810
						'</ol>' .
3811
						'<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>'
3812
				)
3813
			);
3814
		}
3815
3816
		// Help Sidebar
3817
		$current_screen->set_help_sidebar(
3818
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3819
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3820
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3821
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3822
		);
3823
	}
3824
3825
	function admin_menu_css() {
3826
		wp_enqueue_style( 'jetpack-icons' );
3827
	}
3828
3829
	function admin_menu_order() {
3830
		return true;
3831
	}
3832
3833 View Code Duplication
	function jetpack_menu_order( $menu_order ) {
3834
		$jp_menu_order = array();
3835
3836
		foreach ( $menu_order as $index => $item ) {
3837
			if ( $item != 'jetpack' ) {
3838
				$jp_menu_order[] = $item;
3839
			}
3840
3841
			if ( $index == 0 ) {
3842
				$jp_menu_order[] = 'jetpack';
3843
			}
3844
		}
3845
3846
		return $jp_menu_order;
3847
	}
3848
3849
	function admin_banner_styles() {
3850
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3851
3852
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
3853
			wp_register_style(
3854
				'jetpack-dops-style',
3855
				plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ),
3856
				array(),
3857
				JETPACK__VERSION
3858
			);
3859
		}
3860
3861
		wp_enqueue_style(
3862
			'jetpack',
3863
			plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ),
3864
			array( 'jetpack-dops-style' ),
3865
			 JETPACK__VERSION . '-20121016'
3866
		);
3867
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3868
		wp_style_add_data( 'jetpack', 'suffix', $min );
3869
	}
3870
3871
	function plugin_action_links( $actions ) {
3872
3873
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), 'Jetpack' ) );
3874
3875
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3876
			return array_merge(
3877
				$jetpack_home,
3878
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack#/settings' ), __( 'Settings', 'jetpack' ) ) ),
3879
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3880
				$actions
3881
				);
3882
			}
3883
3884
		return array_merge( $jetpack_home, $actions );
3885
	}
3886
3887
	/*
3888
	 * Registration flow:
3889
	 * 1 - ::admin_page_load() action=register
3890
	 * 2 - ::try_registration()
3891
	 * 3 - ::register()
3892
	 *     - Creates jetpack_register option containing two secrets and a timestamp
3893
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
3894
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
3895
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
3896
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
3897
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
3898
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
3899
	 *       jetpack_id, jetpack_secret, jetpack_public
3900
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
3901
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
3902
	 * 5 - user logs in with WP.com account
3903
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
3904
	 *		- Jetpack_Client_Server::authorize()
3905
	 *		- Jetpack_Client_Server::get_token()
3906
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
3907
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
3908
	 *			- which responds with access_token, token_type, scope
3909
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
3910
	 *		- Jetpack::activate_default_modules()
3911
	 *     		- Deactivates deprecated plugins
3912
	 *     		- Activates all default modules
3913
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
3914
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
3915
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
3916
	 *     Done!
3917
	 */
3918
3919
	/**
3920
	 * Handles the page load events for the Jetpack admin page
3921
	 */
3922
	function admin_page_load() {
3923
		$error = false;
3924
3925
		// Make sure we have the right body class to hook stylings for subpages off of.
3926
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
3927
3928
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
3929
			// Should only be used in intermediate redirects to preserve state across redirects
3930
			Jetpack::restate();
3931
		}
3932
3933
		if ( isset( $_GET['connect_url_redirect'] ) ) {
3934
			// @todo: Add validation against a known whitelist
3935
			$from = ! empty( $_GET['from'] ) ? $_GET['from'] : 'iframe';
3936
			// User clicked in the iframe to link their accounts
3937
			if ( ! Jetpack::is_user_connected() ) {
3938
				$redirect = ! empty( $_GET['redirect_after_auth'] ) ? $_GET['redirect_after_auth'] : false;
3939
3940
				add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
3941
				$connect_url = $this->build_connect_url( true, $redirect, $from );
3942
				remove_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
3943
3944
				if ( isset( $_GET['notes_iframe'] ) )
3945
					$connect_url .= '&notes_iframe';
3946
				wp_redirect( $connect_url );
3947
				exit;
3948
			} else {
3949
				if ( ! isset( $_GET['calypso_env'] ) ) {
3950
					Jetpack::state( 'message', 'already_authorized' );
3951
					wp_safe_redirect( Jetpack::admin_url() );
3952
					exit;
3953
				} else {
3954
					$connect_url = $this->build_connect_url( true, false, $from );
3955
					$connect_url .= '&already_authorized=true';
3956
					wp_redirect( $connect_url );
3957
					exit;
3958
				}
3959
			}
3960
		}
3961
3962
3963
		if ( isset( $_GET['action'] ) ) {
3964
			switch ( $_GET['action'] ) {
3965
			case 'authorize':
3966
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
3967
					Jetpack::state( 'message', 'already_authorized' );
3968
					wp_safe_redirect( Jetpack::admin_url() );
3969
					exit;
3970
				}
3971
				Jetpack::log( 'authorize' );
3972
				$client_server = new Jetpack_Client_Server;
3973
				$client_server->client_authorize();
3974
				exit;
3975
			case 'register' :
3976
				if ( ! current_user_can( 'jetpack_connect' ) ) {
3977
					$error = 'cheatin';
3978
					break;
3979
				}
3980
				check_admin_referer( 'jetpack-register' );
3981
				Jetpack::log( 'register' );
3982
				Jetpack::maybe_set_version_option();
3983
				$registered = Jetpack::try_registration();
3984
				if ( is_wp_error( $registered ) ) {
3985
					$error = $registered->get_error_code();
3986
					Jetpack::state( 'error', $error );
3987
					Jetpack::state( 'error', $registered->get_error_message() );
3988
					JetpackTracking::record_user_event( 'jpc_register_fail', array(
3989
						'error_code' => $error,
3990
						'error_message' => $registered->get_error_message()
3991
					) );
3992
					break;
3993
				}
3994
3995
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
3996
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : false;
3997
3998
				JetpackTracking::record_user_event( 'jpc_register_success', array(
3999
					'from' => $from
4000
				) );
4001
4002
				$url = $this->build_connect_url( true, $redirect, $from );
4003
4004
				if ( ! empty( $_GET['onboarding'] ) ) {
4005
					$url = add_query_arg( 'onboarding', $_GET['onboarding'], $url );
4006
				}
4007
4008
				if ( ! empty( $_GET['auth_approved'] ) && 'true' === $_GET['auth_approved'] ) {
4009
					$url = add_query_arg( 'auth_approved', 'true', $url );
4010
				}
4011
4012
				wp_redirect( $url );
4013
				exit;
4014
			case 'activate' :
4015
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
4016
					$error = 'cheatin';
4017
					break;
4018
				}
4019
4020
				$module = stripslashes( $_GET['module'] );
4021
				check_admin_referer( "jetpack_activate-$module" );
4022
				Jetpack::log( 'activate', $module );
4023
				if ( ! Jetpack::activate_module( $module ) ) {
4024
					Jetpack::state( 'error', sprintf( __( 'Could not activate %s', 'jetpack' ), $module ) );
4025
				}
4026
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
4027
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4028
				exit;
4029
			case 'activate_default_modules' :
4030
				check_admin_referer( 'activate_default_modules' );
4031
				Jetpack::log( 'activate_default_modules' );
4032
				Jetpack::restate();
4033
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
4034
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
4035
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
4036
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
4037
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4038
				exit;
4039
			case 'disconnect' :
4040
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
4041
					$error = 'cheatin';
4042
					break;
4043
				}
4044
4045
				check_admin_referer( 'jetpack-disconnect' );
4046
				Jetpack::log( 'disconnect' );
4047
				Jetpack::disconnect();
4048
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
4049
				exit;
4050
			case 'reconnect' :
4051
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
4052
					$error = 'cheatin';
4053
					break;
4054
				}
4055
4056
				check_admin_referer( 'jetpack-reconnect' );
4057
				Jetpack::log( 'reconnect' );
4058
				$this->disconnect();
4059
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
4060
				exit;
4061 View Code Duplication
			case 'deactivate' :
4062
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
4063
					$error = 'cheatin';
4064
					break;
4065
				}
4066
4067
				$modules = stripslashes( $_GET['module'] );
4068
				check_admin_referer( "jetpack_deactivate-$modules" );
4069
				foreach ( explode( ',', $modules ) as $module ) {
4070
					Jetpack::log( 'deactivate', $module );
4071
					Jetpack::deactivate_module( $module );
4072
					Jetpack::state( 'message', 'module_deactivated' );
4073
				}
4074
				Jetpack::state( 'module', $modules );
4075
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4076
				exit;
4077
			case 'unlink' :
4078
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
4079
				check_admin_referer( 'jetpack-unlink' );
4080
				Jetpack::log( 'unlink' );
4081
				$this->unlink_user();
4082
				Jetpack::state( 'message', 'unlinked' );
4083
				if ( 'sub-unlink' == $redirect ) {
4084
					wp_safe_redirect( admin_url() );
4085
				} else {
4086
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
4087
				}
4088
				exit;
4089
			case 'onboard' :
4090
				if ( ! current_user_can( 'manage_options' ) ) {
4091
					wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4092
				} else {
4093
					Jetpack::create_onboarding_token();
4094
					$url = $this->build_connect_url( true );
4095
4096
					if ( false !== ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4097
						$url = add_query_arg( 'onboarding', $token, $url );
4098
					}
4099
4100
					$calypso_env = $this->get_calypso_env();
4101
					if ( ! empty( $calypso_env ) ) {
4102
						$url = add_query_arg( 'calypso_env', $calypso_env, $url );
4103
					}
4104
4105
					wp_redirect( $url );
4106
					exit;
4107
				}
4108
				exit;
4109
			default:
4110
				/**
4111
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
4112
				 *
4113
				 * @since 2.6.0
4114
				 *
4115
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
4116
				 */
4117
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
4118
			}
4119
		}
4120
4121
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
4122
			self::activate_new_modules( true );
4123
		}
4124
4125
		$message_code = Jetpack::state( 'message' );
4126
		if ( Jetpack::state( 'optin-manage' ) ) {
4127
			$activated_manage = $message_code;
4128
			$message_code = 'jetpack-manage';
4129
		}
4130
4131
		switch ( $message_code ) {
4132
		case 'jetpack-manage':
4133
			$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>';
4134
			if ( $activated_manage ) {
4135
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
4136
			}
4137
			break;
4138
4139
		}
4140
4141
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
4142
4143
		if ( ! empty( $deactivated_plugins ) ) {
4144
			$deactivated_plugins = explode( ',', $deactivated_plugins );
4145
			$deactivated_titles  = array();
4146
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
4147
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
4148
					continue;
4149
				}
4150
4151
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
4152
			}
4153
4154
			if ( $deactivated_titles ) {
4155
				if ( $this->message ) {
4156
					$this->message .= "<br /><br />\n";
4157
				}
4158
4159
				$this->message .= wp_sprintf(
4160
					_n(
4161
						'Jetpack contains the most recent version of the old %l plugin.',
4162
						'Jetpack contains the most recent versions of the old %l plugins.',
4163
						count( $deactivated_titles ),
4164
						'jetpack'
4165
					),
4166
					$deactivated_titles
4167
				);
4168
4169
				$this->message .= "<br />\n";
4170
4171
				$this->message .= _n(
4172
					'The old version has been deactivated and can be removed from your site.',
4173
					'The old versions have been deactivated and can be removed from your site.',
4174
					count( $deactivated_titles ),
4175
					'jetpack'
4176
				);
4177
			}
4178
		}
4179
4180
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
4181
4182
		if ( $this->message || $this->error || $this->privacy_checks ) {
4183
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
4184
		}
4185
4186
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
4187
	}
4188
4189
	function admin_notices() {
4190
4191
		if ( $this->error ) {
4192
?>
4193
<div id="message" class="jetpack-message jetpack-err">
4194
	<div class="squeezer">
4195
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
4196
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
4197
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
4198
<?php	endif; ?>
4199
	</div>
4200
</div>
4201
<?php
4202
		}
4203
4204
		if ( $this->message ) {
4205
?>
4206
<div id="message" class="jetpack-message">
4207
	<div class="squeezer">
4208
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
4209
	</div>
4210
</div>
4211
<?php
4212
		}
4213
4214
		if ( $this->privacy_checks ) :
4215
			$module_names = $module_slugs = array();
4216
4217
			$privacy_checks = explode( ',', $this->privacy_checks );
4218
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
4219
			foreach ( $privacy_checks as $module_slug ) {
4220
				$module = Jetpack::get_module( $module_slug );
4221
				if ( ! $module ) {
4222
					continue;
4223
				}
4224
4225
				$module_slugs[] = $module_slug;
4226
				$module_names[] = "<strong>{$module['name']}</strong>";
4227
			}
4228
4229
			$module_slugs = join( ',', $module_slugs );
4230
?>
4231
<div id="message" class="jetpack-message jetpack-err">
4232
	<div class="squeezer">
4233
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
4234
		<p><?php
4235
			echo wp_kses(
4236
				wptexturize(
4237
					wp_sprintf(
4238
						_nx(
4239
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
4240
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
4241
							count( $privacy_checks ),
4242
							'%l = list of Jetpack module/feature names',
4243
							'jetpack'
4244
						),
4245
						$module_names
4246
					)
4247
				),
4248
				array( 'strong' => true )
4249
			);
4250
4251
			echo "\n<br />\n";
4252
4253
			echo wp_kses(
4254
				sprintf(
4255
					_nx(
4256
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
4257
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
4258
						count( $privacy_checks ),
4259
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
4260
						'jetpack'
4261
					),
4262
					wp_nonce_url(
4263
						Jetpack::admin_url(
4264
							array(
4265
								'page'   => 'jetpack',
4266
								'action' => 'deactivate',
4267
								'module' => urlencode( $module_slugs ),
4268
							)
4269
						),
4270
						"jetpack_deactivate-$module_slugs"
4271
					),
4272
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
4273
				),
4274
				array( 'a' => array( 'href' => true, 'title' => true ) )
4275
			);
4276
		?></p>
4277
	</div>
4278
</div>
4279
<?php endif;
4280
	}
4281
4282
	/**
4283
	 * Record a stat for later output.  This will only currently output in the admin_footer.
4284
	 */
4285
	function stat( $group, $detail ) {
4286
		if ( ! isset( $this->stats[ $group ] ) )
4287
			$this->stats[ $group ] = array();
4288
		$this->stats[ $group ][] = $detail;
4289
	}
4290
4291
	/**
4292
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
4293
	 */
4294
	function do_stats( $method = '' ) {
4295
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
4296
			foreach ( $this->stats as $group => $stats ) {
4297
				if ( is_array( $stats ) && count( $stats ) ) {
4298
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
4299
					if ( 'server_side' === $method ) {
4300
						self::do_server_side_stat( $args );
4301
					} else {
4302
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
4303
					}
4304
				}
4305
				unset( $this->stats[ $group ] );
4306
			}
4307
		}
4308
	}
4309
4310
	/**
4311
	 * Runs stats code for a one-off, server-side.
4312
	 *
4313
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
4314
	 *
4315
	 * @return bool If it worked.
4316
	 */
4317
	static function do_server_side_stat( $args ) {
4318
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
4319
		if ( is_wp_error( $response ) )
4320
			return false;
4321
4322
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
4323
			return false;
4324
4325
		return true;
4326
	}
4327
4328
	/**
4329
	 * Builds the stats url.
4330
	 *
4331
	 * @param $args array|string The arguments to append to the URL.
4332
	 *
4333
	 * @return string The URL to be pinged.
4334
	 */
4335
	static function build_stats_url( $args ) {
4336
		$defaults = array(
4337
			'v'    => 'wpcom2',
4338
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
4339
		);
4340
		$args     = wp_parse_args( $args, $defaults );
4341
		/**
4342
		 * Filter the URL used as the Stats tracking pixel.
4343
		 *
4344
		 * @since 2.3.2
4345
		 *
4346
		 * @param string $url Base URL used as the Stats tracking pixel.
4347
		 */
4348
		$base_url = apply_filters(
4349
			'jetpack_stats_base_url',
4350
			'https://pixel.wp.com/g.gif'
4351
		);
4352
		$url      = add_query_arg( $args, $base_url );
4353
		return $url;
4354
	}
4355
4356
	static function translate_current_user_to_role() {
4357
		foreach ( self::$capability_translations as $role => $cap ) {
4358
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
4359
				return $role;
4360
			}
4361
		}
4362
4363
		return false;
4364
	}
4365
4366
	static function translate_user_to_role( $user ) {
4367
		foreach ( self::$capability_translations as $role => $cap ) {
4368
			if ( user_can( $user, $role ) || user_can( $user, $cap ) ) {
4369
				return $role;
4370
			}
4371
		}
4372
4373
		return false;
4374
    }
4375
4376
	static function translate_role_to_cap( $role ) {
4377
		if ( ! isset( self::$capability_translations[$role] ) ) {
4378
			return false;
4379
		}
4380
4381
		return self::$capability_translations[$role];
4382
	}
4383
4384
	static function sign_role( $role, $user_id = null ) {
4385
		if ( empty( $user_id ) ) {
4386
			$user_id = (int) get_current_user_id();
4387
		}
4388
4389
		if ( ! $user_id  ) {
4390
			return false;
4391
		}
4392
4393
		$token = Jetpack_Data::get_access_token();
4394
		if ( ! $token || is_wp_error( $token ) ) {
4395
			return false;
4396
		}
4397
4398
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
4399
	}
4400
4401
4402
	/**
4403
	 * Builds a URL to the Jetpack connection auth page
4404
	 *
4405
	 * @since 3.9.5
4406
	 *
4407
	 * @param bool $raw If true, URL will not be escaped.
4408
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
4409
	 *                              If string, will be a custom redirect.
4410
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
4411
	 * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0
4412
	 *
4413
	 * @return string Connect URL
4414
	 */
4415
	function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) {
4416
		$site_id = Jetpack_Options::get_option( 'id' );
4417
		$token = Jetpack_Options::get_option( 'blog_token' );
4418
4419
		if ( $register || ! $token || ! $site_id ) {
4420
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4421
4422
			if ( ! empty( $redirect ) ) {
4423
				$url = add_query_arg(
4424
					'redirect',
4425
					urlencode( wp_validate_redirect( esc_url_raw( $redirect ) ) ),
4426
					$url
4427
				);
4428
			}
4429
4430
			if( is_network_admin() ) {
4431
				$url = add_query_arg( 'is_multisite', network_admin_url( 'admin.php?page=jetpack-settings' ), $url );
4432
			}
4433
		} else {
4434
4435
			// Let's check the existing blog token to see if we need to re-register. We only check once per minute
4436
			// because otherwise this logic can get us in to a loop.
4437
			$last_connect_url_check = intval( Jetpack_Options::get_raw_option( 'jetpack_last_connect_url_check' ) );
4438
			if ( ! $last_connect_url_check || ( time() - $last_connect_url_check ) > MINUTE_IN_SECONDS ) {
4439
				Jetpack_Options::update_raw_option( 'jetpack_last_connect_url_check', time() );
4440
4441
				$response = Jetpack_Client::wpcom_json_api_request_as_blog(
4442
					sprintf( '/sites/%d', $site_id ) .'?force=wpcom',
4443
					'1.1'
4444
				);
4445
4446
				if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
4447
					// Generating a register URL instead to refresh the existing token
4448
					return $this->build_connect_url( $raw, $redirect, $from, true );
4449
				}
4450
			}
4451
4452
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
4453
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4454
			}
4455
4456
			$role = self::translate_current_user_to_role();
4457
			$signed_role = self::sign_role( $role );
4458
4459
			$user = wp_get_current_user();
4460
4461
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4462
			$redirect = $redirect
4463
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4464
				: $jetpack_admin_page;
4465
4466
			if( isset( $_REQUEST['is_multisite'] ) ) {
4467
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4468
			}
4469
4470
			$secrets = Jetpack::generate_secrets( 'authorize', false, 2 * HOUR_IN_SECONDS );
4471
4472
			/**
4473
			 * Filter the type of authorization.
4474
			 * 'calypso' completes authorization on wordpress.com/jetpack/connect
4475
			 * while 'jetpack' ( or any other value ) completes the authorization at jetpack.wordpress.com.
4476
			 *
4477
			 * @since 4.3.3
4478
			 *
4479
			 * @param string $auth_type Defaults to 'calypso', can also be 'jetpack'.
4480
			 */
4481
			$auth_type = apply_filters( 'jetpack_auth_type', 'calypso' );
4482
4483
			$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
4484
4485
			$args = urlencode_deep(
4486
				array(
4487
					'response_type' => 'code',
4488
					'client_id'     => Jetpack_Options::get_option( 'id' ),
4489
					'redirect_uri'  => add_query_arg(
4490
						array(
4491
							'action'   => 'authorize',
4492
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
4493
							'redirect' => urlencode( $redirect ),
4494
						),
4495
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
4496
					),
4497
					'state'         => $user->ID,
4498
					'scope'         => $signed_role,
4499
					'user_email'    => $user->user_email,
4500
					'user_login'    => $user->user_login,
4501
					'is_active'     => Jetpack::is_active(),
4502
					'jp_version'    => JETPACK__VERSION,
4503
					'auth_type'     => $auth_type,
4504
					'secret'        => $secrets['secret_1'],
4505
					'locale'        => ( isset( $gp_locale ) && isset( $gp_locale->slug ) ) ? $gp_locale->slug : '',
4506
					'blogname'      => get_option( 'blogname' ),
4507
					'site_url'      => site_url(),
4508
					'home_url'      => home_url(),
4509
					'site_icon'     => get_site_icon_url(),
4510
					'site_lang'     => get_locale(),
4511
					'_ui'           => $tracks_identity['_ui'],
4512
					'_ut'           => $tracks_identity['_ut'],
4513
					'site_created'  => Jetpack::get_assumed_site_creation_date(),
4514
				)
4515
			);
4516
4517
			self::apply_activation_source_to_args( $args );
4518
4519
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
4520
		}
4521
4522
		if ( $from ) {
4523
			$url = add_query_arg( 'from', $from, $url );
4524
		}
4525
4526
		// Ensure that class to get the affiliate code is loaded
4527
		if ( ! class_exists( 'Jetpack_Affiliate' ) ) {
4528
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-affiliate.php';
4529
		}
4530
		// Get affiliate code and add it to the URL
4531
		$url = Jetpack_Affiliate::init()->add_code_as_query_arg( $url );
4532
4533
		$calypso_env = $this->get_calypso_env();
4534
4535
		if ( ! empty( $calypso_env ) ) {
4536
			$url = add_query_arg( 'calypso_env', $calypso_env, $url );
4537
		}
4538
4539
		return $raw ? $url : esc_url( $url );
4540
	}
4541
4542
	/**
4543
	 * Get our assumed site creation date.
4544
	 * Calculated based on the earlier date of either:
4545
	 * - Earliest admin user registration date.
4546
	 * - Earliest date of post of any post type.
4547
	 *
4548
	 * @since 7.2.0
4549
	 *
4550
	 * @return string Assumed site creation date and time.
4551
	 */
4552
	public static function get_assumed_site_creation_date() {
4553
		$earliest_registered_users = get_users( array(
4554
			'role'    => 'administrator',
4555
			'orderby' => 'user_registered',
4556
			'order'   => 'ASC',
4557
			'fields'  => array( 'user_registered' ),
4558
			'number'  => 1,
4559
		) );
4560
		$earliest_registration_date = $earliest_registered_users[0]->user_registered;
4561
4562
		$earliest_posts = get_posts( array(
4563
			'posts_per_page' => 1,
4564
			'post_type'      => 'any',
4565
			'post_status'    => 'any',
4566
			'orderby'        => 'date',
4567
			'order'          => 'ASC',
4568
		) );
4569
4570
		// If there are no posts at all, we'll count only on user registration date.
4571
		if ( $earliest_posts ) {
4572
			$earliest_post_date = $earliest_posts[0]->post_date;
4573
		} else {
4574
			$earliest_post_date = PHP_INT_MAX;
4575
		}
4576
4577
		return min( $earliest_registration_date, $earliest_post_date );
4578
	}
4579
4580
	public static function apply_activation_source_to_args( &$args ) {
4581
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4582
4583
		if ( $activation_source_name ) {
4584
			$args['_as'] = urlencode( $activation_source_name );
4585
		}
4586
4587
		if ( $activation_source_keyword ) {
4588
			$args['_ak'] = urlencode( $activation_source_keyword );
4589
		}
4590
	}
4591
4592
	function build_reconnect_url( $raw = false ) {
4593
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
4594
		return $raw ? $url : esc_url( $url );
4595
	}
4596
4597
	public static function admin_url( $args = null ) {
4598
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
4599
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
4600
		return $url;
4601
	}
4602
4603
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4604
		$actionurl = str_replace( '&amp;', '&', $actionurl );
4605
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
4606
	}
4607
4608
	function dismiss_jetpack_notice() {
4609
4610
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
4611
			return;
4612
		}
4613
4614
		switch( $_GET['jetpack-notice'] ) {
4615
			case 'dismiss':
4616
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
4617
4618
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
4619
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
4620
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
4621
				}
4622
				break;
4623
			case 'jetpack-protect-multisite-opt-out':
4624
4625
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
4626
					// Don't show the banner again
4627
4628
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
4629
					// redirect back to the page that had the notice
4630
					if ( wp_get_referer() ) {
4631
						wp_safe_redirect( wp_get_referer() );
4632
					} else {
4633
						// Take me to Jetpack
4634
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4635
					}
4636
				}
4637
				break;
4638
		}
4639
	}
4640
4641
	public static function sort_modules( $a, $b ) {
4642
		if ( $a['sort'] == $b['sort'] )
4643
			return 0;
4644
4645
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4646
	}
4647
4648
	function ajax_recheck_ssl() {
4649
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4650
		$result = Jetpack::permit_ssl( true );
4651
		wp_send_json( array(
4652
			'enabled' => $result,
4653
			'message' => get_transient( 'jetpack_https_test_message' )
4654
		) );
4655
	}
4656
4657
/* Client API */
4658
4659
	/**
4660
	 * Returns the requested Jetpack API URL
4661
	 *
4662
	 * @return string
4663
	 */
4664
	public static function api_url( $relative_url ) {
4665
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4666
	}
4667
4668
	/**
4669
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4670
	 */
4671
	public static function fix_url_for_bad_hosts( $url ) {
4672
		if ( 0 !== strpos( $url, 'https://' ) ) {
4673
			return $url;
4674
		}
4675
4676
		switch ( JETPACK_CLIENT__HTTPS ) {
4677
			case 'ALWAYS' :
4678
				return $url;
4679
			case 'NEVER' :
4680
				return set_url_scheme( $url, 'http' );
4681
			// default : case 'AUTO' :
4682
		}
4683
4684
		// we now return the unmodified SSL URL by default, as a security precaution
4685
		return $url;
4686
	}
4687
4688
	/**
4689
	 * Create a random secret for validating onboarding payload
4690
	 *
4691
	 * @return string Secret token
4692
	 */
4693
	public static function create_onboarding_token() {
4694
		if ( false === ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4695
			$token = wp_generate_password( 32, false );
4696
			Jetpack_Options::update_option( 'onboarding', $token );
4697
		}
4698
4699
		return $token;
4700
	}
4701
4702
	/**
4703
	 * Remove the onboarding token
4704
	 *
4705
	 * @return bool True on success, false on failure
4706
	 */
4707
	public static function invalidate_onboarding_token() {
4708
		return Jetpack_Options::delete_option( 'onboarding' );
4709
	}
4710
4711
	/**
4712
	 * Validate an onboarding token for a specific action
4713
	 *
4714
	 * @return boolean True if token/action pair is accepted, false if not
4715
	 */
4716
	public static function validate_onboarding_token_action( $token, $action ) {
4717
		// Compare tokens, bail if tokens do not match
4718
		if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) {
4719
			return false;
4720
		}
4721
4722
		// List of valid actions we can take
4723
		$valid_actions = array(
4724
			'/jetpack/v4/settings',
4725
		);
4726
4727
		// Whitelist the action
4728
		if ( ! in_array( $action, $valid_actions ) ) {
4729
			return false;
4730
		}
4731
4732
		return true;
4733
	}
4734
4735
	/**
4736
	 * Checks to see if the URL is using SSL to connect with Jetpack
4737
	 *
4738
	 * @since 2.3.3
4739
	 * @return boolean
4740
	 */
4741
	public static function permit_ssl( $force_recheck = false ) {
4742
		// Do some fancy tests to see if ssl is being supported
4743
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4744
			$message = '';
4745
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4746
				$ssl = 0;
4747
			} else {
4748
				switch ( JETPACK_CLIENT__HTTPS ) {
4749
					case 'NEVER':
4750
						$ssl = 0;
4751
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4752
						break;
4753
					case 'ALWAYS':
4754
					case 'AUTO':
4755
					default:
4756
						$ssl = 1;
4757
						break;
4758
				}
4759
4760
				// If it's not 'NEVER', test to see
4761
				if ( $ssl ) {
4762
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4763
						$ssl = 0;
4764
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4765
					} else {
4766
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4767
						if ( is_wp_error( $response ) ) {
4768
							$ssl = 0;
4769
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4770
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4771
							$ssl = 0;
4772
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4773
						}
4774
					}
4775
				}
4776
			}
4777
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4778
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4779
		}
4780
4781
		return (bool) $ssl;
4782
	}
4783
4784
	/*
4785
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4786
	 */
4787
	public function alert_auto_ssl_fail() {
4788
		if ( ! current_user_can( 'manage_options' ) )
4789
			return;
4790
4791
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4792
		?>
4793
4794
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4795
			<div class="jp-banner__content">
4796
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4797
				<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>
4798
				<p>
4799
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4800
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4801
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4802
				</p>
4803
				<p>
4804
					<?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' ),
4805
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4806
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4807
				</p>
4808
			</div>
4809
		</div>
4810
		<style>
4811
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4812
		</style>
4813
		<script type="text/javascript">
4814
			jQuery( document ).ready( function( $ ) {
4815
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4816
					var $this = $( this );
4817
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4818
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4819
					e.preventDefault();
4820
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4821
					$.post( ajaxurl, data )
4822
					  .done( function( response ) {
4823
					  	if ( response.enabled ) {
4824
					  		$( '#jetpack-ssl-warning' ).hide();
4825
					  	} else {
4826
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4827
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4828
					  	}
4829
					  }.bind( $this ) );
4830
				} );
4831
			} );
4832
		</script>
4833
4834
		<?php
4835
	}
4836
4837
	/**
4838
	 * Returns the Jetpack XML-RPC API
4839
	 *
4840
	 * @return string
4841
	 */
4842
	public static function xmlrpc_api_url() {
4843
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4844
		return untrailingslashit( $base ) . '/xmlrpc.php';
4845
	}
4846
4847
	/**
4848
	 * Creates two secret tokens and the end of life timestamp for them.
4849
	 *
4850
	 * Note these tokens are unique per call, NOT static per site for connecting.
4851
	 *
4852
	 * @since 2.6
4853
	 * @return array
4854
	 */
4855
	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
4856
		if ( ! $user_id ) {
4857
			$user_id = get_current_user_id();
4858
		}
4859
4860
		$secret_name  = 'jetpack_' . $action . '_' . $user_id;
4861
		$secrets      = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4862
4863
		if (
4864
			isset( $secrets[ $secret_name ] ) &&
4865
			$secrets[ $secret_name ]['exp'] > time()
4866
		) {
4867
			return $secrets[ $secret_name ];
4868
		}
4869
4870
		$secret_value = array(
4871
			'secret_1'  => wp_generate_password( 32, false ),
4872
			'secret_2'  => wp_generate_password( 32, false ),
4873
			'exp'       => time() + $exp,
4874
		);
4875
4876
		$secrets[ $secret_name ] = $secret_value;
4877
4878
		Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
4879
		return $secrets[ $secret_name ];
4880
	}
4881
4882
	public static function get_secrets( $action, $user_id ) {
4883
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
4884
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4885
4886
		if ( ! isset( $secrets[ $secret_name ] ) ) {
4887
			return new WP_Error( 'verify_secrets_missing', 'Verification secrets not found' );
4888
		}
4889
4890
		if ( $secrets[ $secret_name ]['exp'] < time() ) {
4891
			self::delete_secrets( $action, $user_id );
4892
			return new WP_Error( 'verify_secrets_expired', 'Verification took too long' );
4893
		}
4894
4895
		return $secrets[ $secret_name ];
4896
	}
4897
4898
	public static function delete_secrets( $action, $user_id ) {
4899
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
4900
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
4901
		if ( isset( $secrets[ $secret_name ] ) ) {
4902
			unset( $secrets[ $secret_name ] );
4903
			Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
4904
		}
4905
	}
4906
4907
	/**
4908
	 * Builds the timeout limit for queries talking with the wpcom servers.
4909
	 *
4910
	 * Based on local php max_execution_time in php.ini
4911
	 *
4912
	 * @since 2.6
4913
	 * @return int
4914
	 * @deprecated
4915
	 **/
4916
	public function get_remote_query_timeout_limit() {
4917
		_deprecated_function( __METHOD__, 'jetpack-5.4' );
4918
		return Jetpack::get_max_execution_time();
4919
	}
4920
4921
	/**
4922
	 * Builds the timeout limit for queries talking with the wpcom servers.
4923
	 *
4924
	 * Based on local php max_execution_time in php.ini
4925
	 *
4926
	 * @since 5.4
4927
	 * @return int
4928
	 **/
4929
	public static function get_max_execution_time() {
4930
		$timeout = (int) ini_get( 'max_execution_time' );
4931
4932
		// Ensure exec time set in php.ini
4933
		if ( ! $timeout ) {
4934
			$timeout = 30;
4935
		}
4936
		return $timeout;
4937
	}
4938
4939
	/**
4940
	 * Sets a minimum request timeout, and returns the current timeout
4941
	 *
4942
	 * @since 5.4
4943
	 **/
4944
	public static function set_min_time_limit( $min_timeout ) {
4945
		$timeout = self::get_max_execution_time();
4946
		if ( $timeout < $min_timeout ) {
4947
			$timeout = $min_timeout;
4948
			set_time_limit( $timeout );
4949
		}
4950
		return $timeout;
4951
	}
4952
4953
4954
	/**
4955
	 * Takes the response from the Jetpack register new site endpoint and
4956
	 * verifies it worked properly.
4957
	 *
4958
	 * @since 2.6
4959
	 * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures
4960
	 **/
4961
	public function validate_remote_register_response( $response ) {
4962
	  if ( is_wp_error( $response ) ) {
4963
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
4964
		}
4965
4966
		$code   = wp_remote_retrieve_response_code( $response );
4967
		$entity = wp_remote_retrieve_body( $response );
4968
		if ( $entity )
4969
			$registration_response = json_decode( $entity );
4970
		else
4971
			$registration_response = false;
4972
4973
		$code_type = intval( $code / 100 );
4974
		if ( 5 == $code_type ) {
4975
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4976
		} elseif ( 408 == $code ) {
4977
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4978
		} elseif ( ! empty( $registration_response->error ) ) {
4979
			if ( 'xml_rpc-32700' == $registration_response->error && ! function_exists( 'xml_parser_create' ) ) {
4980
				$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' );
4981
			} else {
4982
				$error_description = isset( $registration_response->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $registration_response->error_description ) : '';
4983
			}
4984
4985
			return new Jetpack_Error( (string) $registration_response->error, $error_description, $code );
4986
		} elseif ( 200 != $code ) {
4987
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4988
		}
4989
4990
		// Jetpack ID error block
4991
		if ( empty( $registration_response->jetpack_id ) ) {
4992
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
4993
		} elseif ( ! is_scalar( $registration_response->jetpack_id ) ) {
4994
			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 );
4995
		} elseif ( preg_match( '/[^0-9]/', $registration_response->jetpack_id ) ) {
4996
			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 );
4997
		}
4998
4999
	    return $registration_response;
5000
	}
5001
	/**
5002
	 * @return bool|WP_Error
5003
	 */
5004
	public static function register() {
5005
		JetpackTracking::record_user_event( 'jpc_register_begin' );
5006
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5007
		$secrets = Jetpack::generate_secrets( 'register' );
5008
5009 View Code Duplication
		if (
5010
			empty( $secrets['secret_1'] ) ||
5011
			empty( $secrets['secret_2'] ) ||
5012
			empty( $secrets['exp'] )
5013
		) {
5014
			return new Jetpack_Error( 'missing_secrets' );
5015
		}
5016
5017
		// better to try (and fail) to set a higher timeout than this system
5018
		// supports than to have register fail for more users than it should
5019
		$timeout = Jetpack::set_min_time_limit( 60 ) / 2;
5020
5021
		$gmt_offset = get_option( 'gmt_offset' );
5022
		if ( ! $gmt_offset ) {
5023
			$gmt_offset = 0;
5024
		}
5025
5026
		$stats_options = get_option( 'stats_options' );
5027
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
5028
5029
		$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
5030
5031
		$args = array(
5032
			'method'  => 'POST',
5033
			'body'    => array(
5034
				'siteurl'         => site_url(),
5035
				'home'            => home_url(),
5036
				'gmt_offset'      => $gmt_offset,
5037
				'timezone_string' => (string) get_option( 'timezone_string' ),
5038
				'site_name'       => (string) get_option( 'blogname' ),
5039
				'secret_1'        => $secrets['secret_1'],
5040
				'secret_2'        => $secrets['secret_2'],
5041
				'site_lang'       => get_locale(),
5042
				'timeout'         => $timeout,
5043
				'stats_id'        => $stats_id,
5044
				'state'           => get_current_user_id(),
5045
				'_ui'             => $tracks_identity['_ui'],
5046
				'_ut'             => $tracks_identity['_ut'],
5047
				'site_created'    => Jetpack::get_assumed_site_creation_date(),
5048
				'jetpack_version' => JETPACK__VERSION
5049
			),
5050
			'headers' => array(
5051
				'Accept' => 'application/json',
5052
			),
5053
			'timeout' => $timeout,
5054
		);
5055
5056
		self::apply_activation_source_to_args( $args['body'] );
5057
5058
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
5059
5060
		// Make sure the response is valid and does not contain any Jetpack errors
5061
		$registration_details = Jetpack::init()->validate_remote_register_response( $response );
5062
		if ( is_wp_error( $registration_details ) ) {
5063
			return $registration_details;
5064
		} elseif ( ! $registration_details ) {
5065
			return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) );
5066
		}
5067
5068 View Code Duplication
		if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) {
5069
			return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) );
5070
		}
5071
5072
		if ( isset( $registration_details->jetpack_public ) ) {
5073
			$jetpack_public = (int) $registration_details->jetpack_public;
5074
		} else {
5075
			$jetpack_public = false;
5076
		}
5077
5078
		Jetpack_Options::update_options(
5079
			array(
5080
				'id'         => (int)    $registration_details->jetpack_id,
5081
				'blog_token' => (string) $registration_details->jetpack_secret,
5082
				'public'     => $jetpack_public,
5083
			)
5084
		);
5085
5086
		/**
5087
		 * Fires when a site is registered on WordPress.com.
5088
		 *
5089
		 * @since 3.7.0
5090
		 *
5091
		 * @param int $json->jetpack_id Jetpack Blog ID.
5092
		 * @param string $json->jetpack_secret Jetpack Blog Token.
5093
		 * @param int|bool $jetpack_public Is the site public.
5094
		 */
5095
		do_action( 'jetpack_site_registered', $registration_details->jetpack_id, $registration_details->jetpack_secret, $jetpack_public );
5096
5097
		// Initialize Jump Start for the first and only time.
5098
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
5099
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
5100
5101
			$jetpack = Jetpack::init();
5102
5103
			$jetpack->stat( 'jumpstart', 'unique-views' );
5104
			$jetpack->do_stats( 'server_side' );
5105
		};
5106
5107
		return true;
5108
	}
5109
5110
	/**
5111
	 * If the db version is showing something other that what we've got now, bump it to current.
5112
	 *
5113
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
5114
	 */
5115
	public static function maybe_set_version_option() {
5116
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
5117
		if ( JETPACK__VERSION != $version ) {
5118
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
5119
5120
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
5121
				/** This action is documented in class.jetpack.php */
5122
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
5123
			}
5124
5125
			return true;
5126
		}
5127
		return false;
5128
	}
5129
5130
/* Client Server API */
5131
5132
	/**
5133
	 * Loads the Jetpack XML-RPC client
5134
	 */
5135
	public static function load_xml_rpc_client() {
5136
		require_once ABSPATH . WPINC . '/class-IXR.php';
5137
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
5138
	}
5139
5140
	/**
5141
	 * Resets the saved authentication state in between testing requests.
5142
	 */
5143
	public function reset_saved_auth_state() {
5144
		$this->xmlrpc_verification = null;
5145
		$this->rest_authentication_status = null;
5146
	}
5147
5148
	function verify_xml_rpc_signature() {
5149
		if ( $this->xmlrpc_verification ) {
5150
			return $this->xmlrpc_verification;
5151
		}
5152
5153
		// It's not for us
5154
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
5155
			return false;
5156
		}
5157
5158
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
5159
		if (
5160
			empty( $token_key )
5161
		||
5162
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
5163
		) {
5164
			return false;
5165
		}
5166
5167
		if ( '0' === $user_id ) {
5168
			$token_type = 'blog';
5169
			$user_id = 0;
5170
		} else {
5171
			$token_type = 'user';
5172
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
5173
				return false;
5174
			}
5175
			$user_id = (int) $user_id;
5176
5177
			$user = new WP_User( $user_id );
5178
			if ( ! $user || ! $user->exists() ) {
5179
				return false;
5180
			}
5181
		}
5182
5183
		$token = Jetpack_Data::get_access_token( $user_id );
5184
		if ( ! $token ) {
5185
			return false;
5186
		}
5187
5188
		$token_check = "$token_key.";
5189
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
5190
			return false;
5191
		}
5192
5193
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5194
5195
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5196
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
5197
			$post_data   = $_POST;
5198
			$file_hashes = array();
5199
			foreach ( $post_data as $post_data_key => $post_data_value ) {
5200
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
5201
					continue;
5202
				}
5203
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
5204
				$file_hashes[$post_data_key] = $post_data_value;
5205
			}
5206
5207
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
5208
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
5209
				$post_data[$post_data_key] = $post_data_value;
5210
			}
5211
5212
			ksort( $post_data );
5213
5214
			$body = http_build_query( stripslashes_deep( $post_data ) );
5215
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
5216
			$body = file_get_contents( 'php://input' );
5217
		} else {
5218
			$body = null;
5219
		}
5220
5221
		$signature = $jetpack_signature->sign_current_request(
5222
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
5223
		);
5224
5225
		if ( ! $signature ) {
5226
			return false;
5227
		} else if ( is_wp_error( $signature ) ) {
5228
			return $signature;
5229
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5230
			return false;
5231
		}
5232
5233
		$timestamp = (int) $_GET['timestamp'];
5234
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5235
5236
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5237
			return false;
5238
		}
5239
5240
		// Let's see if this is onboarding. In such case, use user token type and the provided user id.
5241
		if ( isset( $this->HTTP_RAW_POST_DATA ) || ! empty( $_GET['onboarding'] ) ) {
5242
			if ( ! empty( $_GET['onboarding'] ) ) {
5243
				$jpo = $_GET;
5244
			} else {
5245
				$jpo = json_decode( $this->HTTP_RAW_POST_DATA, true );
5246
			}
5247
5248
			$jpo_token = ! empty( $jpo['onboarding']['token'] ) ? $jpo['onboarding']['token'] : null;
5249
			$jpo_user = ! empty( $jpo['onboarding']['jpUser'] ) ? $jpo['onboarding']['jpUser'] : null;
5250
5251
			if (
5252
				isset( $jpo_user ) && isset( $jpo_token ) &&
5253
				is_email( $jpo_user ) && ctype_alnum( $jpo_token ) &&
5254
				isset( $_GET['rest_route'] ) &&
5255
				self::validate_onboarding_token_action( $jpo_token, $_GET['rest_route'] )
5256
			) {
5257
				$jpUser = get_user_by( 'email', $jpo_user );
5258
				if ( is_a( $jpUser, 'WP_User' ) ) {
5259
					wp_set_current_user( $jpUser->ID );
5260
					$user_can = is_multisite()
5261
						? current_user_can_for_blog( get_current_blog_id(), 'manage_options' )
5262
						: current_user_can( 'manage_options' );
5263
					if ( $user_can ) {
5264
						$token_type = 'user';
5265
						$token->external_user_id = $jpUser->ID;
5266
					}
5267
				}
5268
			}
5269
		}
5270
5271
		$this->xmlrpc_verification = array(
5272
			'type'    => $token_type,
5273
			'user_id' => $token->external_user_id,
5274
		);
5275
5276
		return $this->xmlrpc_verification;
5277
	}
5278
5279
	/**
5280
	 * Authenticates XML-RPC and other requests from the Jetpack Server
5281
	 */
5282
	function authenticate_jetpack( $user, $username, $password ) {
5283
		if ( is_a( $user, 'WP_User' ) ) {
5284
			return $user;
5285
		}
5286
5287
		$token_details = $this->verify_xml_rpc_signature();
5288
5289
		if ( ! $token_details || is_wp_error( $token_details ) ) {
5290
			return $user;
5291
		}
5292
5293
		if ( 'user' !== $token_details['type'] ) {
5294
			return $user;
5295
		}
5296
5297
		if ( ! $token_details['user_id'] ) {
5298
			return $user;
5299
		}
5300
5301
		nocache_headers();
5302
5303
		return new WP_User( $token_details['user_id'] );
5304
	}
5305
5306
	// Authenticates requests from Jetpack server to WP REST API endpoints.
5307
	// Uses the existing XMLRPC request signing implementation.
5308
	function wp_rest_authenticate( $user ) {
5309
		if ( ! empty( $user ) ) {
5310
			// Another authentication method is in effect.
5311
			return $user;
5312
		}
5313
5314
		if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) {
5315
			// Nothing to do for this authentication method.
5316
			return null;
5317
		}
5318
5319
		if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) {
5320
			// Nothing to do for this authentication method.
5321
			return null;
5322
		}
5323
5324
		// Ensure that we always have the request body available.  At this
5325
		// point, the WP REST API code to determine the request body has not
5326
		// run yet.  That code may try to read from 'php://input' later, but
5327
		// this can only be done once per request in PHP versions prior to 5.6.
5328
		// So we will go ahead and perform this read now if needed, and save
5329
		// the request body where both the Jetpack signature verification code
5330
		// and the WP REST API code can see it.
5331
		if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) {
5332
			$GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' );
5333
		}
5334
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5335
5336
		// Only support specific request parameters that have been tested and
5337
		// are known to work with signature verification.  A different method
5338
		// can be passed to the WP REST API via the '?_method=' parameter if
5339
		// needed.
5340
		if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) {
5341
			$this->rest_authentication_status = new WP_Error(
5342
				'rest_invalid_request',
5343
				__( 'This request method is not supported.', 'jetpack' ),
5344
				array( 'status' => 400 )
5345
			);
5346
			return null;
5347
		}
5348
		if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) {
5349
			$this->rest_authentication_status = new WP_Error(
5350
				'rest_invalid_request',
5351
				__( 'This request method does not support body parameters.', 'jetpack' ),
5352
				array( 'status' => 400 )
5353
			);
5354
			return null;
5355
		}
5356
5357
		$verified = $this->verify_xml_rpc_signature();
5358
5359
		if ( is_wp_error( $verified ) ) {
5360
			$this->rest_authentication_status = $verified;
5361
			return null;
5362
		}
5363
5364
		if (
5365
			$verified &&
5366
			isset( $verified['type'] ) &&
5367
			'user' === $verified['type'] &&
5368
			! empty( $verified['user_id'] )
5369
		) {
5370
			// Authentication successful.
5371
			$this->rest_authentication_status = true;
5372
			return $verified['user_id'];
5373
		}
5374
5375
		// Something else went wrong.  Probably a signature error.
5376
		$this->rest_authentication_status = new WP_Error(
5377
			'rest_invalid_signature',
5378
			__( 'The request is not signed correctly.', 'jetpack' ),
5379
			array( 'status' => 400 )
5380
		);
5381
		return null;
5382
	}
5383
5384
	/**
5385
	 * Report authentication status to the WP REST API.
5386
	 *
5387
	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5388
	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5389
	 */
5390
	public function wp_rest_authentication_errors( $value ) {
5391
		if ( $value !== null ) {
5392
			return $value;
5393
		}
5394
		return $this->rest_authentication_status;
5395
	}
5396
5397
	function add_nonce( $timestamp, $nonce ) {
5398
		global $wpdb;
5399
		static $nonces_used_this_request = array();
5400
5401
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
5402
			return $nonces_used_this_request["$timestamp:$nonce"];
5403
		}
5404
5405
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
5406
		$timestamp = (int) $timestamp;
5407
		$nonce     = esc_sql( $nonce );
5408
5409
		// Raw query so we can avoid races: add_option will also update
5410
		$show_errors = $wpdb->show_errors( false );
5411
5412
		$old_nonce = $wpdb->get_row(
5413
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
5414
		);
5415
5416
		if ( is_null( $old_nonce ) ) {
5417
			$return = $wpdb->query(
5418
				$wpdb->prepare(
5419
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
5420
					"jetpack_nonce_{$timestamp}_{$nonce}",
5421
					time(),
5422
					'no'
5423
				)
5424
			);
5425
		} else {
5426
			$return = false;
5427
		}
5428
5429
		$wpdb->show_errors( $show_errors );
5430
5431
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
5432
5433
		return $return;
5434
	}
5435
5436
	/**
5437
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
5438
	 * Capture it here so we can verify the signature later.
5439
	 */
5440
	function xmlrpc_methods( $methods ) {
5441
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5442
		return $methods;
5443
	}
5444
5445
	function public_xmlrpc_methods( $methods ) {
5446
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
5447
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
5448
		}
5449
		return $methods;
5450
	}
5451
5452
	function jetpack_getOptions( $args ) {
5453
		global $wp_xmlrpc_server;
5454
5455
		$wp_xmlrpc_server->escape( $args );
5456
5457
		$username	= $args[1];
5458
		$password	= $args[2];
5459
5460
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
5461
			return $wp_xmlrpc_server->error;
5462
		}
5463
5464
		$options = array();
5465
		$user_data = $this->get_connected_user_data();
5466
		if ( is_array( $user_data ) ) {
5467
			$options['jetpack_user_id'] = array(
5468
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
5469
				'readonly'      => true,
5470
				'value'         => $user_data['ID'],
5471
			);
5472
			$options['jetpack_user_login'] = array(
5473
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
5474
				'readonly'      => true,
5475
				'value'         => $user_data['login'],
5476
			);
5477
			$options['jetpack_user_email'] = array(
5478
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
5479
				'readonly'      => true,
5480
				'value'         => $user_data['email'],
5481
			);
5482
			$options['jetpack_user_site_count'] = array(
5483
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
5484
				'readonly'      => true,
5485
				'value'         => $user_data['site_count'],
5486
			);
5487
		}
5488
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
5489
		$args = stripslashes_deep( $args );
5490
		return $wp_xmlrpc_server->wp_getOptions( $args );
5491
	}
5492
5493
	function xmlrpc_options( $options ) {
5494
		$jetpack_client_id = false;
5495
		if ( self::is_active() ) {
5496
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
5497
		}
5498
		$options['jetpack_version'] = array(
5499
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
5500
				'readonly'      => true,
5501
				'value'         => JETPACK__VERSION,
5502
		);
5503
5504
		$options['jetpack_client_id'] = array(
5505
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
5506
				'readonly'      => true,
5507
				'value'         => $jetpack_client_id,
5508
		);
5509
		return $options;
5510
	}
5511
5512
	public static function clean_nonces( $all = false ) {
5513
		global $wpdb;
5514
5515
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
5516
		$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
5517
5518
		if ( true !== $all ) {
5519
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
5520
			$sql_args[] = time() - 3600;
5521
		}
5522
5523
		$sql .= ' ORDER BY `option_id` LIMIT 100';
5524
5525
		$sql = $wpdb->prepare( $sql, $sql_args );
5526
5527
		for ( $i = 0; $i < 1000; $i++ ) {
5528
			if ( ! $wpdb->query( $sql ) ) {
5529
				break;
5530
			}
5531
		}
5532
	}
5533
5534
	/**
5535
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
5536
	 * SET: state( $key, $value );
5537
	 * GET: $value = state( $key );
5538
	 *
5539
	 * @param string $key
5540
	 * @param string $value
5541
	 * @param bool $restate private
5542
	 */
5543
	public static function state( $key = null, $value = null, $restate = false ) {
5544
		static $state = array();
5545
		static $path, $domain;
5546
		if ( ! isset( $path ) ) {
5547
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
5548
			$admin_url = Jetpack::admin_url();
5549
			$bits      = wp_parse_url( $admin_url );
5550
5551
			if ( is_array( $bits ) ) {
5552
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
5553
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
5554
			} else {
5555
				$path = $domain = null;
5556
			}
5557
		}
5558
5559
		// Extract state from cookies and delete cookies
5560
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
5561
			$yum = $_COOKIE[ 'jetpackState' ];
5562
			unset( $_COOKIE[ 'jetpackState' ] );
5563
			foreach ( $yum as $k => $v ) {
5564
				if ( strlen( $v ) )
5565
					$state[ $k ] = $v;
5566
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
5567
			}
5568
		}
5569
5570
		if ( $restate ) {
5571
			foreach ( $state as $k => $v ) {
5572
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
5573
			}
5574
			return;
5575
		}
5576
5577
		// Get a state variable
5578
		if ( isset( $key ) && ! isset( $value ) ) {
5579
			if ( array_key_exists( $key, $state ) )
5580
				return $state[ $key ];
5581
			return null;
5582
		}
5583
5584
		// Set a state variable
5585
		if ( isset ( $key ) && isset( $value ) ) {
5586
			if( is_array( $value ) && isset( $value[0] ) ) {
5587
				$value = $value[0];
5588
			}
5589
			$state[ $key ] = $value;
5590
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
5591
		}
5592
	}
5593
5594
	public static function restate() {
5595
		Jetpack::state( null, null, true );
5596
	}
5597
5598
	public static function check_privacy( $file ) {
5599
		static $is_site_publicly_accessible = null;
5600
5601
		if ( is_null( $is_site_publicly_accessible ) ) {
5602
			$is_site_publicly_accessible = false;
5603
5604
			Jetpack::load_xml_rpc_client();
5605
			$rpc = new Jetpack_IXR_Client();
5606
5607
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
5608
			if ( $success ) {
5609
				$response = $rpc->getResponse();
5610
				if ( $response ) {
5611
					$is_site_publicly_accessible = true;
5612
				}
5613
			}
5614
5615
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
5616
		}
5617
5618
		if ( $is_site_publicly_accessible ) {
5619
			return;
5620
		}
5621
5622
		$module_slug = self::get_module_slug( $file );
5623
5624
		$privacy_checks = Jetpack::state( 'privacy_checks' );
5625
		if ( ! $privacy_checks ) {
5626
			$privacy_checks = $module_slug;
5627
		} else {
5628
			$privacy_checks .= ",$module_slug";
5629
		}
5630
5631
		Jetpack::state( 'privacy_checks', $privacy_checks );
5632
	}
5633
5634
	/**
5635
	 * Helper method for multicall XMLRPC.
5636
	 */
5637
	public static function xmlrpc_async_call() {
5638
		global $blog_id;
5639
		static $clients = array();
5640
5641
		$client_blog_id = is_multisite() ? $blog_id : 0;
5642
5643
		if ( ! isset( $clients[$client_blog_id] ) ) {
5644
			Jetpack::load_xml_rpc_client();
5645
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
5646
			if ( function_exists( 'ignore_user_abort' ) ) {
5647
				ignore_user_abort( true );
5648
			}
5649
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
5650
		}
5651
5652
		$args = func_get_args();
5653
5654
		if ( ! empty( $args[0] ) ) {
5655
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
5656
		} elseif ( is_multisite() ) {
5657
			foreach ( $clients as $client_blog_id => $client ) {
5658
				if ( ! $client_blog_id || empty( $client->calls ) ) {
5659
					continue;
5660
				}
5661
5662
				$switch_success = switch_to_blog( $client_blog_id, true );
5663
				if ( ! $switch_success ) {
5664
					continue;
5665
				}
5666
5667
				flush();
5668
				$client->query();
5669
5670
				restore_current_blog();
5671
			}
5672
		} else {
5673
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
5674
				flush();
5675
				$clients[0]->query();
5676
			}
5677
		}
5678
	}
5679
5680
	public static function staticize_subdomain( $url ) {
5681
5682
		// Extract hostname from URL
5683
		$host = parse_url( $url, PHP_URL_HOST );
5684
5685
		// Explode hostname on '.'
5686
		$exploded_host = explode( '.', $host );
5687
5688
		// Retrieve the name and TLD
5689
		if ( count( $exploded_host ) > 1 ) {
5690
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
5691
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
5692
			// Rebuild domain excluding subdomains
5693
			$domain = $name . '.' . $tld;
5694
		} else {
5695
			$domain = $host;
5696
		}
5697
		// Array of Automattic domains
5698
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
5699
5700
		// Return $url if not an Automattic domain
5701
		if ( ! in_array( $domain, $domain_whitelist ) ) {
5702
			return $url;
5703
		}
5704
5705
		if ( is_ssl() ) {
5706
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
5707
		}
5708
5709
		srand( crc32( basename( $url ) ) );
5710
		$static_counter = rand( 0, 2 );
5711
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
5712
5713
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
5714
	}
5715
5716
/* JSON API Authorization */
5717
5718
	/**
5719
	 * Handles the login action for Authorizing the JSON API
5720
	 */
5721
	function login_form_json_api_authorization() {
5722
		$this->verify_json_api_authorization_request();
5723
5724
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
5725
5726
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
5727
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
5728
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
5729
	}
5730
5731
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
5732
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
5733
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
5734
			return $url;
5735
		}
5736
5737
		$parsed_url = parse_url( $url );
5738
		$url = strtok( $url, '?' );
5739
		$url = "$url?{$_SERVER['QUERY_STRING']}";
5740
		if ( ! empty( $parsed_url['query'] ) )
5741
			$url .= "&{$parsed_url['query']}";
5742
5743
		return $url;
5744
	}
5745
5746
	// Make sure the POSTed request is handled by the same action
5747
	function preserve_action_in_login_form_for_json_api_authorization() {
5748
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
5749
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
5750
	}
5751
5752
	// If someone logs in to approve API access, store the Access Code in usermeta
5753
	function store_json_api_authorization_token( $user_login, $user ) {
5754
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
5755
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
5756
		$token = wp_generate_password( 32, false );
5757
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
5758
	}
5759
5760
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
5761
	function allow_wpcom_public_api_domain( $domains ) {
5762
		$domains[] = 'public-api.wordpress.com';
5763
		return $domains;
5764
	}
5765
5766
	static function is_redirect_encoded( $redirect_url ) {
5767
		return preg_match( '/https?%3A%2F%2F/i', $redirect_url ) > 0;
5768
	}
5769
5770
	// Add all wordpress.com environments to the safe redirect whitelist
5771
	function allow_wpcom_environments( $domains ) {
5772
		$domains[] = 'wordpress.com';
5773
		$domains[] = 'wpcalypso.wordpress.com';
5774
		$domains[] = 'horizon.wordpress.com';
5775
		$domains[] = 'calypso.localhost';
5776
		return $domains;
5777
	}
5778
5779
	// Add the Access Code details to the public-api.wordpress.com redirect
5780
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
5781
		return add_query_arg(
5782
			urlencode_deep(
5783
				array(
5784
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
5785
					'jetpack-user-id' => (int) $user->ID,
5786
					'jetpack-state'   => $this->json_api_authorization_request['state'],
5787
				)
5788
			),
5789
			$redirect_to
5790
		);
5791
	}
5792
5793
5794
	/**
5795
	 * Verifies the request by checking the signature
5796
	 *
5797
	 * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow
5798
	 * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO.
5799
	 *
5800
	 * @param null|array $environment
5801
	 */
5802
	function verify_json_api_authorization_request( $environment = null ) {
5803
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5804
5805
		$environment = is_null( $environment )
5806
			? $_REQUEST
5807
			: $environment;
5808
5809
		list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] );
5810
		$token = Jetpack_Data::get_access_token( $envUserId );
5811
		if ( ! $token || empty( $token->secret ) ) {
5812
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
5813
		}
5814
5815
		$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' );
5816
5817
		// Host has encoded the request URL, probably as a result of a bad http => https redirect
5818
		if ( Jetpack::is_redirect_encoded( $_GET['redirect_to'] ) ) {
5819
			JetpackTracking::record_user_event( 'error_double_encode' );
5820
5821
			$die_error = sprintf(
5822
				/* translators: %s is a URL */
5823
				__( 'Your site is incorrectly double-encoding redirects from http to https. This is preventing Jetpack from authenticating your connection. Please visit our <a href="%s">support page</a> for details about how to resolve this.', 'jetpack' ),
5824
				'https://jetpack.com/support/double-encoding/'
5825
			);
5826
		}
5827
5828
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5829
5830
		if ( isset( $environment['jetpack_json_api_original_query'] ) ) {
5831
			$signature = $jetpack_signature->sign_request(
5832
				$environment['token'],
5833
				$environment['timestamp'],
5834
				$environment['nonce'],
5835
				'',
5836
				'GET',
5837
				$environment['jetpack_json_api_original_query'],
5838
				null,
5839
				true
5840
			);
5841
		} else {
5842
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
5843
		}
5844
5845
		if ( ! $signature ) {
5846
			wp_die( $die_error );
5847
		} else if ( is_wp_error( $signature ) ) {
5848
			wp_die( $die_error );
5849
		} else if ( ! hash_equals( $signature, $environment['signature'] ) ) {
5850
			if ( is_ssl() ) {
5851
				// 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
5852
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
5853
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) {
5854
					wp_die( $die_error );
5855
				}
5856
			} else {
5857
				wp_die( $die_error );
5858
			}
5859
		}
5860
5861
		$timestamp = (int) $environment['timestamp'];
5862
		$nonce     = stripslashes( (string) $environment['nonce'] );
5863
5864
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5865
			// De-nonce the nonce, at least for 5 minutes.
5866
			// 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)
5867
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5868
			if ( $old_nonce_time < time() - 300 ) {
5869
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
5870
			}
5871
		}
5872
5873
		$data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) );
5874
		$data_filters = array(
5875
			'state'        => 'opaque',
5876
			'client_id'    => 'int',
5877
			'client_title' => 'string',
5878
			'client_image' => 'url',
5879
		);
5880
5881
		foreach ( $data_filters as $key => $sanitation ) {
5882
			if ( ! isset( $data->$key ) ) {
5883
				wp_die( $die_error );
5884
			}
5885
5886
			switch ( $sanitation ) {
5887
			case 'int' :
5888
				$this->json_api_authorization_request[$key] = (int) $data->$key;
5889
				break;
5890
			case 'opaque' :
5891
				$this->json_api_authorization_request[$key] = (string) $data->$key;
5892
				break;
5893
			case 'string' :
5894
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
5895
				break;
5896
			case 'url' :
5897
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
5898
				break;
5899
			}
5900
		}
5901
5902
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5903
			wp_die( $die_error );
5904
		}
5905
	}
5906
5907
	function login_message_json_api_authorization( $message ) {
5908
		return '<p class="message">' . sprintf(
5909
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
5910
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5911
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5912
	}
5913
5914
	/**
5915
	 * Get $content_width, but with a <s>twist</s> filter.
5916
	 */
5917
	public static function get_content_width() {
5918
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5919
		/**
5920
		 * Filter the Content Width value.
5921
		 *
5922
		 * @since 2.2.3
5923
		 *
5924
		 * @param string $content_width Content Width value.
5925
		 */
5926
		return apply_filters( 'jetpack_content_width', $content_width );
5927
	}
5928
5929
	/**
5930
	 * Pings the WordPress.com Mirror Site for the specified options.
5931
	 *
5932
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
5933
	 *
5934
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
5935
	 */
5936
	public function get_cloud_site_options( $option_names ) {
5937
		$option_names = array_filter( (array) $option_names, 'is_string' );
5938
5939
		Jetpack::load_xml_rpc_client();
5940
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5941
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
5942
		if ( $xml->isError() ) {
5943
			return array(
5944
				'error_code' => $xml->getErrorCode(),
5945
				'error_msg'  => $xml->getErrorMessage(),
5946
			);
5947
		}
5948
		$cloud_site_options = $xml->getResponse();
5949
5950
		return $cloud_site_options;
5951
	}
5952
5953
	/**
5954
	 * Checks if the site is currently in an identity crisis.
5955
	 *
5956
	 * @return array|bool Array of options that are in a crisis, or false if everything is OK.
5957
	 */
5958
	public static function check_identity_crisis() {
5959
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) {
5960
			return false;
5961
		}
5962
5963
		return Jetpack_Options::get_option( 'sync_error_idc' );
5964
	}
5965
5966
	/**
5967
	 * Checks whether the home and siteurl specifically are whitelisted
5968
	 * Written so that we don't have re-check $key and $value params every time
5969
	 * we want to check if this site is whitelisted, for example in footer.php
5970
	 *
5971
	 * @since  3.8.0
5972
	 * @return bool True = already whitelisted False = not whitelisted
5973
	 */
5974
	public static function is_staging_site() {
5975
		$is_staging = false;
5976
5977
		$known_staging = array(
5978
			'urls' => array(
5979
				'#\.staging\.wpengine\.com$#i', // WP Engine
5980
				'#\.staging\.kinsta\.com$#i',   // Kinsta.com
5981
				),
5982
			'constants' => array(
5983
				'IS_WPE_SNAPSHOT',      // WP Engine
5984
				'KINSTA_DEV_ENV',       // Kinsta.com
5985
				'WPSTAGECOACH_STAGING', // WP Stagecoach
5986
				'JETPACK_STAGING_MODE', // Generic
5987
				)
5988
			);
5989
		/**
5990
		 * Filters the flags of known staging sites.
5991
		 *
5992
		 * @since 3.9.0
5993
		 *
5994
		 * @param array $known_staging {
5995
		 *     An array of arrays that each are used to check if the current site is staging.
5996
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
5997
		 *     @type array $constants PHP constants of known staging/developement environments.
5998
		 *  }
5999
		 */
6000
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
6001
6002
		if ( isset( $known_staging['urls'] ) ) {
6003
			foreach ( $known_staging['urls'] as $url ){
6004
				if ( preg_match( $url, site_url() ) ) {
6005
					$is_staging = true;
6006
					break;
6007
				}
6008
			}
6009
		}
6010
6011
		if ( isset( $known_staging['constants'] ) ) {
6012
			foreach ( $known_staging['constants'] as $constant ) {
6013
				if ( defined( $constant ) && constant( $constant ) ) {
6014
					$is_staging = true;
6015
				}
6016
			}
6017
		}
6018
6019
		// Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode.
6020
		if ( ! $is_staging && self::validate_sync_error_idc_option() ) {
6021
			$is_staging = true;
6022
		}
6023
6024
		/**
6025
		 * Filters is_staging_site check.
6026
		 *
6027
		 * @since 3.9.0
6028
		 *
6029
		 * @param bool $is_staging If the current site is a staging site.
6030
		 */
6031
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
6032
	}
6033
6034
	/**
6035
	 * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup.
6036
	 *
6037
	 * @since 4.4.0
6038
	 * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC
6039
	 *
6040
	 * @return bool
6041
	 */
6042
	public static function validate_sync_error_idc_option() {
6043
		$is_valid = false;
6044
6045
		$idc_allowed = get_transient( 'jetpack_idc_allowed' );
6046
		if ( false === $idc_allowed ) {
6047
			$response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' );
6048
			if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) {
6049
				$json = json_decode( wp_remote_retrieve_body( $response ) );
6050
				$idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0';
6051
				$transient_duration = HOUR_IN_SECONDS;
6052
			} else {
6053
				// If the request failed for some reason, then assume IDC is allowed and set shorter transient.
6054
				$idc_allowed = '1';
6055
				$transient_duration = 5 * MINUTE_IN_SECONDS;
6056
			}
6057
6058
			set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration );
6059
		}
6060
6061
		// Is the site opted in and does the stored sync_error_idc option match what we now generate?
6062
		$sync_error = Jetpack_Options::get_option( 'sync_error_idc' );
6063
		if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) {
6064
			$local_options = self::get_sync_error_idc_option();
6065
			if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) {
6066
				$is_valid = true;
6067
			}
6068
		}
6069
6070
		/**
6071
		 * Filters whether the sync_error_idc option is valid.
6072
		 *
6073
		 * @since 4.4.0
6074
		 *
6075
		 * @param bool $is_valid If the sync_error_idc is valid or not.
6076
		 */
6077
		$is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid );
6078
6079
		if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) {
6080
			// Since the option exists, and did not validate, delete it
6081
			Jetpack_Options::delete_option( 'sync_error_idc' );
6082
		}
6083
6084
		return $is_valid;
6085
	}
6086
6087
	/**
6088
	 * Normalizes a url by doing three things:
6089
	 *  - Strips protocol
6090
	 *  - Strips www
6091
	 *  - Adds a trailing slash
6092
	 *
6093
	 * @since 4.4.0
6094
	 * @param string $url
6095
	 * @return WP_Error|string
6096
	 */
6097
	public static function normalize_url_protocol_agnostic( $url ) {
6098
		$parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) );
6099
		if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) {
6100
			return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) );
6101
		}
6102
6103
		// Strip www and protocols
6104
		$url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] );
6105
		return $url;
6106
	}
6107
6108
	/**
6109
	 * Gets the value that is to be saved in the jetpack_sync_error_idc option.
6110
	 *
6111
	 * @since 4.4.0
6112
	 * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB
6113
	 *
6114
	 * @param array $response
6115
	 * @return array Array of the local urls, wpcom urls, and error code
6116
	 */
6117
	public static function get_sync_error_idc_option( $response = array() ) {
6118
		// Since the local options will hit the database directly, store the values
6119
		// in a transient to allow for autoloading and caching on subsequent views.
6120
		$local_options = get_transient( 'jetpack_idc_local' );
6121
		if ( false === $local_options ) {
6122
			require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-functions.php';
6123
			$local_options = array(
6124
				'home'    => Jetpack_Sync_Functions::home_url(),
6125
				'siteurl' => Jetpack_Sync_Functions::site_url(),
6126
			);
6127
			set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS );
6128
		}
6129
6130
		$options = array_merge( $local_options, $response );
6131
6132
		$returned_values = array();
6133
		foreach( $options as $key => $option ) {
6134
			if ( 'error_code' === $key ) {
6135
				$returned_values[ $key ] = $option;
6136
				continue;
6137
			}
6138
6139
			if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) {
6140
				continue;
6141
			}
6142
6143
			$returned_values[ $key ] = $normalized_url;
6144
		}
6145
6146
		set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS );
6147
6148
		return $returned_values;
6149
	}
6150
6151
	/**
6152
	 * Returns the value of the jetpack_sync_idc_optin filter, or constant.
6153
	 * If set to true, the site will be put into staging mode.
6154
	 *
6155
	 * @since 4.3.2
6156
	 * @return bool
6157
	 */
6158
	public static function sync_idc_optin() {
6159
		if ( Jetpack_Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) {
6160
			$default = Jetpack_Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' );
6161
		} else {
6162
			$default = ! Jetpack_Constants::is_defined( 'SUNRISE' ) && ! is_multisite();
6163
		}
6164
6165
		/**
6166
		 * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home
6167
		 * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of
6168
		 * JETPACK_SYNC_IDC_OPTIN constant if set.
6169
		 *
6170
		 * @since 4.3.2
6171
		 *
6172
		 * @param bool $default Whether the site is opted in to IDC mitigation.
6173
		 */
6174
		return (bool) apply_filters( 'jetpack_sync_idc_optin', $default );
6175
	}
6176
6177
	/**
6178
	 * Maybe Use a .min.css stylesheet, maybe not.
6179
	 *
6180
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
6181
	 */
6182
	public static function maybe_min_asset( $url, $path, $plugin ) {
6183
		// Short out on things trying to find actual paths.
6184
		if ( ! $path || empty( $plugin ) ) {
6185
			return $url;
6186
		}
6187
6188
		$path = ltrim( $path, '/' );
6189
6190
		// Strip out the abspath.
6191
		$base = dirname( plugin_basename( $plugin ) );
6192
6193
		// Short out on non-Jetpack assets.
6194
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
6195
			return $url;
6196
		}
6197
6198
		// File name parsing.
6199
		$file              = "{$base}/{$path}";
6200
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
6201
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
6202
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
6203
		$extension         = array_shift( $file_name_parts_r );
6204
6205
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
6206
			// Already pointing at the minified version.
6207
			if ( 'min' === $file_name_parts_r[0] ) {
6208
				return $url;
6209
			}
6210
6211
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
6212
			if ( file_exists( $min_full_path ) ) {
6213
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
6214
				// If it's a CSS file, stash it so we can set the .min suffix for rtl-ing.
6215
				if ( 'css' === $extension ) {
6216
					$key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path );
6217
					self::$min_assets[ $key ] = $path;
6218
				}
6219
			}
6220
		}
6221
6222
		return $url;
6223
	}
6224
6225
	/**
6226
	 * If the asset is minified, let's flag .min as the suffix.
6227
	 *
6228
	 * Attached to `style_loader_src` filter.
6229
	 *
6230
	 * @param string $tag The tag that would link to the external asset.
6231
	 * @param string $handle The registered handle of the script in question.
6232
	 * @param string $href The url of the asset in question.
6233
	 */
6234
	public static function set_suffix_on_min( $src, $handle ) {
6235
		if ( false === strpos( $src, '.min.css' ) ) {
6236
			return $src;
6237
		}
6238
6239
		if ( ! empty( self::$min_assets ) ) {
6240
			foreach ( self::$min_assets as $file => $path ) {
6241
				if ( false !== strpos( $src, $file ) ) {
6242
					wp_style_add_data( $handle, 'suffix', '.min' );
6243
					return $src;
6244
				}
6245
			}
6246
		}
6247
6248
		return $src;
6249
	}
6250
6251
	/**
6252
	 * Maybe inlines a stylesheet.
6253
	 *
6254
	 * If you'd like to inline a stylesheet instead of printing a link to it,
6255
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
6256
	 *
6257
	 * Attached to `style_loader_tag` filter.
6258
	 *
6259
	 * @param string $tag The tag that would link to the external asset.
6260
	 * @param string $handle The registered handle of the script in question.
6261
	 *
6262
	 * @return string
6263
	 */
6264
	public static function maybe_inline_style( $tag, $handle ) {
6265
		global $wp_styles;
6266
		$item = $wp_styles->registered[ $handle ];
6267
6268
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
6269
			return $tag;
6270
		}
6271
6272
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
6273
			$href = $matches[1];
6274
			// Strip off query string
6275
			if ( $pos = strpos( $href, '?' ) ) {
6276
				$href = substr( $href, 0, $pos );
6277
			}
6278
			// Strip off fragment
6279
			if ( $pos = strpos( $href, '#' ) ) {
6280
				$href = substr( $href, 0, $pos );
6281
			}
6282
		} else {
6283
			return $tag;
6284
		}
6285
6286
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
6287
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
6288
			return $tag;
6289
		}
6290
6291
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
6292
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
6293
			// And this isn't the pass that actually deals with the RTL version...
6294
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
6295
				// Short out, as the RTL version will deal with it in a moment.
6296
				return $tag;
6297
			}
6298
		}
6299
6300
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
6301
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
6302
		if ( $css ) {
6303
			$tag = "<!-- Inline {$item->handle} -->\r\n";
6304
			if ( empty( $item->extra['after'] ) ) {
6305
				wp_add_inline_style( $handle, $css );
6306
			} else {
6307
				array_unshift( $item->extra['after'], $css );
6308
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
6309
			}
6310
		}
6311
6312
		return $tag;
6313
	}
6314
6315
	/**
6316
	 * Loads a view file from the views
6317
	 *
6318
	 * Data passed in with the $data parameter will be available in the
6319
	 * template file as $data['value']
6320
	 *
6321
	 * @param string $template - Template file to load
6322
	 * @param array $data - Any data to pass along to the template
6323
	 * @return boolean - If template file was found
6324
	 **/
6325
	public function load_view( $template, $data = array() ) {
6326
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
6327
6328
		if( file_exists( $views_dir . $template ) ) {
6329
			require_once( $views_dir . $template );
6330
			return true;
6331
		}
6332
6333
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
6334
		return false;
6335
	}
6336
6337
	/**
6338
	 * Throws warnings for deprecated hooks to be removed from Jetpack
6339
	 */
6340
	public function deprecated_hooks() {
6341
		global $wp_filter;
6342
6343
		/*
6344
		 * Format:
6345
		 * deprecated_filter_name => replacement_name
6346
		 *
6347
		 * If there is no replacement, use null for replacement_name
6348
		 */
6349
		$deprecated_list = array(
6350
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
6351
			'wpl_sharing_2014_1'                                     => null,
6352
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
6353
			'jetpack_identity_crisis_options_to_check'               => null,
6354
			'update_option_jetpack_single_user_site'                 => null,
6355
			'audio_player_default_colors'                            => null,
6356
			'add_option_jetpack_featured_images_enabled'             => null,
6357
			'add_option_jetpack_update_details'                      => null,
6358
			'add_option_jetpack_updates'                             => null,
6359
			'add_option_jetpack_network_name'                        => null,
6360
			'add_option_jetpack_network_allow_new_registrations'     => null,
6361
			'add_option_jetpack_network_add_new_users'               => null,
6362
			'add_option_jetpack_network_site_upload_space'           => null,
6363
			'add_option_jetpack_network_upload_file_types'           => null,
6364
			'add_option_jetpack_network_enable_administration_menus' => null,
6365
			'add_option_jetpack_is_multi_site'                       => null,
6366
			'add_option_jetpack_is_main_network'                     => null,
6367
			'add_option_jetpack_main_network_site'                   => null,
6368
			'jetpack_sync_all_registered_options'                    => null,
6369
			'jetpack_has_identity_crisis'                            => 'jetpack_sync_error_idc_validation',
6370
			'jetpack_is_post_mailable'                               => null,
6371
			'jetpack_seo_site_host'                                  => null,
6372
			'jetpack_installed_plugin'                               => 'jetpack_plugin_installed',
6373
			'jetpack_holiday_snow_option_name'                       => null,
6374
			'jetpack_holiday_chance_of_snow'                         => null,
6375
			'jetpack_holiday_snow_js_url'                            => null,
6376
			'jetpack_is_holiday_snow_season'                         => null,
6377
			'jetpack_holiday_snow_option_updated'                    => null,
6378
			'jetpack_holiday_snowing'                                => null,
6379
			'jetpack_sso_auth_cookie_expirtation'                    => 'jetpack_sso_auth_cookie_expiration',
6380
			'jetpack_cache_plans'                                    => null,
6381
			'jetpack_updated_theme'                                  => 'jetpack_updated_themes',
6382
			'jetpack_lazy_images_skip_image_with_atttributes'        => 'jetpack_lazy_images_skip_image_with_attributes',
6383
			'jetpack_enable_site_verification'                       => null,
6384
			'can_display_jetpack_manage_notice'                      => null,
6385
			// Removed in Jetpack 7.3.0
6386
			'atd_load_scripts'                                       => null,
6387
			'atd_http_post_timeout'                                  => null,
6388
			'atd_http_post_error'                                    => null,
6389
			'atd_service_domain'                                     => null,
6390
		);
6391
6392
		// This is a silly loop depth. Better way?
6393
		foreach( $deprecated_list AS $hook => $hook_alt ) {
6394
			if ( has_action( $hook ) ) {
6395
				foreach( $wp_filter[ $hook ] AS $func => $values ) {
6396
					foreach( $values AS $hooked ) {
6397
						if ( is_callable( $hooked['function'] ) ) {
6398
							$function_name = 'an anonymous function';
6399
						} else {
6400
							$function_name = $hooked['function'];
6401
						}
6402
						_deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt );
6403
					}
6404
				}
6405
			}
6406
		}
6407
	}
6408
6409
	/**
6410
	 * Converts any url in a stylesheet, to the correct absolute url.
6411
	 *
6412
	 * Considerations:
6413
	 *  - Normal, relative URLs     `feh.png`
6414
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
6415
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
6416
	 *  - Absolute URLs             `http://domain.com/feh.png`
6417
	 *  - Domain root relative URLs `/feh.png`
6418
	 *
6419
	 * @param $css string: The raw CSS -- should be read in directly from the file.
6420
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6421
	 *
6422
	 * @return mixed|string
6423
	 */
6424
	public static function absolutize_css_urls( $css, $css_file_url ) {
6425
		$pattern = '#url\((?P<path>[^)]*)\)#i';
6426
		$css_dir = dirname( $css_file_url );
6427
		$p       = parse_url( $css_dir );
6428
		$domain  = sprintf(
6429
					'%1$s//%2$s%3$s%4$s',
6430
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
6431
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
6432
					$p['host'],
6433
					isset( $p['port'] )             ? ":{$p['port']}" : ''
6434
				);
6435
6436
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
6437
			$find = $replace = array();
6438
			foreach ( $matches as $match ) {
6439
				$url = trim( $match['path'], "'\" \t" );
6440
6441
				// If this is a data url, we don't want to mess with it.
6442
				if ( 'data:' === substr( $url, 0, 5 ) ) {
6443
					continue;
6444
				}
6445
6446
				// If this is an absolute or protocol-agnostic url,
6447
				// we don't want to mess with it.
6448
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
6449
					continue;
6450
				}
6451
6452
				switch ( substr( $url, 0, 1 ) ) {
6453
					case '/':
6454
						$absolute = $domain . $url;
6455
						break;
6456
					default:
6457
						$absolute = $css_dir . '/' . $url;
6458
				}
6459
6460
				$find[]    = $match[0];
6461
				$replace[] = sprintf( 'url("%s")', $absolute );
6462
			}
6463
			$css = str_replace( $find, $replace, $css );
6464
		}
6465
6466
		return $css;
6467
	}
6468
6469
	/**
6470
	 * This methods removes all of the registered css files on the front end
6471
	 * from Jetpack in favor of using a single file. In effect "imploding"
6472
	 * all the files into one file.
6473
	 *
6474
	 * Pros:
6475
	 * - Uses only ONE css asset connection instead of 15
6476
	 * - Saves a minimum of 56k
6477
	 * - Reduces server load
6478
	 * - Reduces time to first painted byte
6479
	 *
6480
	 * Cons:
6481
	 * - Loads css for ALL modules. However all selectors are prefixed so it
6482
	 *		should not cause any issues with themes.
6483
	 * - Plugins/themes dequeuing styles no longer do anything. See
6484
	 *		jetpack_implode_frontend_css filter for a workaround
6485
	 *
6486
	 * For some situations developers may wish to disable css imploding and
6487
	 * instead operate in legacy mode where each file loads seperately and
6488
	 * can be edited individually or dequeued. This can be accomplished with
6489
	 * the following line:
6490
	 *
6491
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6492
	 *
6493
	 * @since 3.2
6494
	 **/
6495
	public function implode_frontend_css( $travis_test = false ) {
6496
		$do_implode = true;
6497
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6498
			$do_implode = false;
6499
		}
6500
6501
		// Do not implode CSS when the page loads via the AMP plugin.
6502
		if ( Jetpack_AMP_Support::is_amp_request() ) {
6503
			$do_implode = false;
6504
		}
6505
6506
		/**
6507
		 * Allow CSS to be concatenated into a single jetpack.css file.
6508
		 *
6509
		 * @since 3.2.0
6510
		 *
6511
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
6512
		 */
6513
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6514
6515
		// Do not use the imploded file when default behavior was altered through the filter
6516
		if ( ! $do_implode ) {
6517
			return;
6518
		}
6519
6520
		// We do not want to use the imploded file in dev mode, or if not connected
6521
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
6522
			if ( ! $travis_test ) {
6523
				return;
6524
			}
6525
		}
6526
6527
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
6528
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
6529
			return;
6530
		}
6531
6532
		/*
6533
		 * Now we assume Jetpack is connected and able to serve the single
6534
		 * file.
6535
		 *
6536
		 * In the future there will be a check here to serve the file locally
6537
		 * or potentially from the Jetpack CDN
6538
		 *
6539
		 * For now:
6540
		 * - Enqueue a single imploded css file
6541
		 * - Zero out the style_loader_tag for the bundled ones
6542
		 * - Be happy, drink scotch
6543
		 */
6544
6545
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6546
6547
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6548
6549
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6550
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6551
	}
6552
6553
	function concat_remove_style_loader_tag( $tag, $handle ) {
6554
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
6555
			$tag = '';
6556
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6557
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6558
			}
6559
		}
6560
6561
		return $tag;
6562
	}
6563
6564
	/*
6565
	 * Check the heartbeat data
6566
	 *
6567
	 * Organizes the heartbeat data by severity.  For example, if the site
6568
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
6569
	 *
6570
	 * Data will be added to "caution" array, if it either:
6571
	 *  - Out of date Jetpack version
6572
	 *  - Out of date WP version
6573
	 *  - Out of date PHP version
6574
	 *
6575
	 * $return array $filtered_data
6576
	 */
6577
	public static function jetpack_check_heartbeat_data() {
6578
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
6579
6580
		$good    = array();
6581
		$caution = array();
6582
		$bad     = array();
6583
6584
		foreach ( $raw_data as $stat => $value ) {
6585
6586
			// Check jetpack version
6587
			if ( 'version' == $stat ) {
6588
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
6589
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
6590
					continue;
6591
				}
6592
			}
6593
6594
			// Check WP version
6595
			if ( 'wp-version' == $stat ) {
6596
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
6597
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
6598
					continue;
6599
				}
6600
			}
6601
6602
			// Check PHP version
6603
			if ( 'php-version' == $stat ) {
6604
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
6605
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
6606
					continue;
6607
				}
6608
			}
6609
6610
			// Check ID crisis
6611
			if ( 'identitycrisis' == $stat ) {
6612
				if ( 'yes' == $value ) {
6613
					$bad[ $stat ] = $value;
6614
					continue;
6615
				}
6616
			}
6617
6618
			// The rest are good :)
6619
			$good[ $stat ] = $value;
6620
		}
6621
6622
		$filtered_data = array(
6623
			'good'    => $good,
6624
			'caution' => $caution,
6625
			'bad'     => $bad
6626
		);
6627
6628
		return $filtered_data;
6629
	}
6630
6631
6632
	/*
6633
	 * This method is used to organize all options that can be reset
6634
	 * without disconnecting Jetpack.
6635
	 *
6636
	 * It is used in class.jetpack-cli.php to reset options
6637
	 *
6638
	 * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat.
6639
	 *
6640
	 * @return array of options to delete.
6641
	 */
6642
	public static function get_jetpack_options_for_reset() {
6643
		return Jetpack_Options::get_options_for_reset();
6644
	}
6645
6646
	/*
6647
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6648
	 * so we can bring them directly to their site in calypso.
6649
	 *
6650
	 * @param string | url
6651
	 * @return string | url without the guff
6652
	 */
6653
	public static function build_raw_urls( $url ) {
6654
		$strip_http = '/.*?:\/\//i';
6655
		$url = preg_replace( $strip_http, '', $url  );
6656
		$url = str_replace( '/', '::', $url );
6657
		return $url;
6658
	}
6659
6660
	/**
6661
	 * Stores and prints out domains to prefetch for page speed optimization.
6662
	 *
6663
	 * @param mixed $new_urls
6664
	 */
6665
	public static function dns_prefetch( $new_urls = null ) {
6666
		static $prefetch_urls = array();
6667
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6668
			echo "\r\n";
6669
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6670
				printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) );
6671
			}
6672
		} elseif ( ! empty( $new_urls ) ) {
6673
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6674
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6675
			}
6676
			foreach ( (array) $new_urls as $this_new_url ) {
6677
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6678
			}
6679
			$prefetch_urls = array_unique( $prefetch_urls );
6680
		}
6681
	}
6682
6683
	public function wp_dashboard_setup() {
6684
		if ( self::is_active() ) {
6685
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6686
		}
6687
6688
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6689
			$widget_title = sprintf(
6690
				wp_kses(
6691
					/* translators: Placeholder is a Jetpack logo. */
6692
					__( 'Stats <span>by %s</span>', 'jetpack' ),
6693
					array( 'span' => array() )
6694
				),
6695
				Jetpack::get_jp_emblem( true )
6696
			);
6697
6698
			wp_add_dashboard_widget(
6699
				'jetpack_summary_widget',
6700
				$widget_title,
6701
				array( __CLASS__, 'dashboard_widget' )
6702
			);
6703
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6704
6705
			// If we're inactive and not in development mode, sort our box to the top.
6706
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6707
				global $wp_meta_boxes;
6708
6709
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6710
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6711
6712
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6713
			}
6714
		}
6715
	}
6716
6717
	/**
6718
	 * @param mixed $result Value for the user's option
6719
	 * @return mixed
6720
	 */
6721
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6722
		if ( ! is_array( $sorted ) ) {
6723
			return $sorted;
6724
		}
6725
6726
		foreach ( $sorted as $box_context => $ids ) {
6727
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6728
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6729
				continue;
6730
			}
6731
6732
			$ids_array = explode( ',', $ids );
6733
			$key = array_search( 'dashboard_stats', $ids_array );
6734
6735
			if ( false !== $key ) {
6736
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6737
				$ids_array[ $key ] = 'jetpack_summary_widget';
6738
				$sorted[ $box_context ] = implode( ',', $ids_array );
6739
				// We've found it, stop searching, and just return.
6740
				break;
6741
			}
6742
		}
6743
6744
		return $sorted;
6745
	}
6746
6747
	public static function dashboard_widget() {
6748
		/**
6749
		 * Fires when the dashboard is loaded.
6750
		 *
6751
		 * @since 3.4.0
6752
		 */
6753
		do_action( 'jetpack_dashboard_widget' );
6754
	}
6755
6756
	public static function dashboard_widget_footer() {
6757
		?>
6758
		<footer>
6759
6760
		<div class="protect">
6761
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6762
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6763
				<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>
6764
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6765
				<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' ); ?>">
6766
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6767
				</a>
6768
			<?php else : ?>
6769
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6770
			<?php endif; ?>
6771
		</div>
6772
6773
		<div class="akismet">
6774
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6775
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6776
				<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>
6777
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6778
				<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">
6779
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6780
				</a>
6781
			<?php else : ?>
6782
				<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>
6783
			<?php endif; ?>
6784
		</div>
6785
6786
		</footer>
6787
		<?php
6788
	}
6789
6790
	/**
6791
	 * Return string containing the Jetpack logo.
6792
	 *
6793
	 * @since 3.9.0
6794
	 *
6795
	 * @param bool $logotype Should we use the full logotype (logo + text). Default to false.
6796
	 *
6797
	 * @return string
6798
	 */
6799
	public static function get_jp_emblem( $logotype = false ) {
6800
		$logo = '<path fill="#00BE28" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16c8.8,0,16-7.2,16-16S24.8,0,16,0z M15.2,18.7h-8l8-15.5V18.7z M16.8,28.8 V13.3h8L16.8,28.8z"/>';
6801
		$text = '
6802
<path d="M41.3,26.6c-0.5-0.7-0.9-1.4-1.3-2.1c2.3-1.4,3-2.5,3-4.6V8h-3V6h6v13.4C46,22.8,45,24.8,41.3,26.6z" />
6803
<path d="M65,18.4c0,1.1,0.8,1.3,1.4,1.3c0.5,0,2-0.2,2.6-0.4v2.1c-0.9,0.3-2.5,0.5-3.7,0.5c-1.5,0-3.2-0.5-3.2-3.1V12H60v-2h2.1V7.1 H65V10h4v2h-4V18.4z" />
6804
<path d="M71,10h3v1.3c1.1-0.8,1.9-1.3,3.3-1.3c2.5,0,4.5,1.8,4.5,5.6s-2.2,6.3-5.8,6.3c-0.9,0-1.3-0.1-2-0.3V28h-3V10z M76.5,12.3 c-0.8,0-1.6,0.4-2.5,1.2v5.9c0.6,0.1,0.9,0.2,1.8,0.2c2,0,3.2-1.3,3.2-3.9C79,13.4,78.1,12.3,76.5,12.3z" />
6805
<path d="M93,22h-3v-1.5c-0.9,0.7-1.9,1.5-3.5,1.5c-1.5,0-3.1-1.1-3.1-3.2c0-2.9,2.5-3.4,4.2-3.7l2.4-0.3v-0.3c0-1.5-0.5-2.3-2-2.3 c-0.7,0-2.3,0.5-3.7,1.1L84,11c1.2-0.4,3-1,4.4-1c2.7,0,4.6,1.4,4.6,4.7L93,22z M90,16.4l-2.2,0.4c-0.7,0.1-1.4,0.5-1.4,1.6 c0,0.9,0.5,1.4,1.3,1.4s1.5-0.5,2.3-1V16.4z" />
6806
<path d="M104.5,21.3c-1.1,0.4-2.2,0.6-3.5,0.6c-4.2,0-5.9-2.4-5.9-5.9c0-3.7,2.3-6,6.1-6c1.4,0,2.3,0.2,3.2,0.5V13 c-0.8-0.3-2-0.6-3.2-0.6c-1.7,0-3.2,0.9-3.2,3.6c0,2.9,1.5,3.8,3.3,3.8c0.9,0,1.9-0.2,3.2-0.7V21.3z" />
6807
<path d="M110,15.2c0.2-0.3,0.2-0.8,3.8-5.2h3.7l-4.6,5.7l5,6.3h-3.7l-4.2-5.8V22h-3V6h3V15.2z" />
6808
<path d="M58.5,21.3c-1.5,0.5-2.7,0.6-4.2,0.6c-3.6,0-5.8-1.8-5.8-6c0-3.1,1.9-5.9,5.5-5.9s4.9,2.5,4.9,4.9c0,0.8,0,1.5-0.1,2h-7.3 c0.1,2.5,1.5,2.8,3.6,2.8c1.1,0,2.2-0.3,3.4-0.7C58.5,19,58.5,21.3,58.5,21.3z M56,15c0-1.4-0.5-2.9-2-2.9c-1.4,0-2.3,1.3-2.4,2.9 C51.6,15,56,15,56,15z" />
6809
		';
6810
6811
		return sprintf(
6812
			'<svg id="jetpack-logo__icon" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 %1$s 32">%2$s</svg>',
6813
			( true === $logotype ? '118' : '32' ),
6814
			( true === $logotype ? $logo . $text : $logo )
6815
		);
6816
	}
6817
6818
	/*
6819
	 * Adds a "blank" column in the user admin table to display indication of user connection.
6820
	 */
6821
	function jetpack_icon_user_connected( $columns ) {
6822
		$columns['user_jetpack'] = '';
6823
		return $columns;
6824
	}
6825
6826
	/*
6827
	 * Show Jetpack icon if the user is linked.
6828
	 */
6829
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6830
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
6831
			$emblem_html = sprintf(
6832
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6833
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6834
				Jetpack::get_jp_emblem()
6835
			);
6836
			return $emblem_html;
6837
		}
6838
6839
		return $val;
6840
	}
6841
6842
	/*
6843
	 * Style the Jetpack user column
6844
	 */
6845
	function jetpack_user_col_style() {
6846
		global $current_screen;
6847
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
6848
			<style>
6849
				.fixed .column-user_jetpack {
6850
					width: 21px;
6851
				}
6852
				.jp-emblem-user-admin svg {
6853
					width: 20px;
6854
					height: 20px;
6855
				}
6856
				.jp-emblem-user-admin path {
6857
					fill: #00BE28;
6858
				}
6859
			</style>
6860
		<?php }
6861
	}
6862
6863
	/**
6864
	 * Checks if Akismet is active and working.
6865
	 *
6866
	 * We dropped support for Akismet 3.0 with Jetpack 6.1.1 while introducing a check for an Akismet valid key
6867
	 * that implied usage of methods present since more recent version.
6868
	 * See https://github.com/Automattic/jetpack/pull/9585
6869
	 *
6870
	 * @since  5.1.0
6871
	 *
6872
	 * @return bool True = Akismet available. False = Aksimet not available.
6873
	 */
6874
	public static function is_akismet_active() {
6875
		static $status = null;
6876
6877
		if ( ! is_null( $status ) ) {
6878
			return $status;
6879
		}
6880
6881
		// Check if a modern version of Akismet is active.
6882
		if ( ! method_exists( 'Akismet', 'http_post' ) ) {
6883
			$status = false;
6884
			return $status;
6885
		}
6886
6887
		// Make sure there is a key known to Akismet at all before verifying key.
6888
		$akismet_key = Akismet::get_api_key();
6889
		if ( ! $akismet_key ) {
6890
			$status = false;
6891
			return $status;
6892
		}
6893
6894
		// Possible values: valid, invalid, failure via Akismet. false if no status is cached.
6895
		$akismet_key_state = get_transient( 'jetpack_akismet_key_is_valid' );
6896
6897
		// Do not used the cache result in wp-admin or REST API requests if the key isn't valid, in case someone is actively renewing, etc.
6898
		$recheck = ( is_admin() || ( defined( 'REST_REQUEST' ) && REST_REQUEST ) ) && 'valid' !== $akismet_key_state;
6899
		// We cache the result of the Akismet key verification for ten minutes.
6900
		if ( ! $akismet_key_state || $recheck ) {
6901
			$akismet_key_state = Akismet::verify_key( $akismet_key );
6902
			set_transient( 'jetpack_akismet_key_is_valid', $akismet_key_state, 10 * MINUTE_IN_SECONDS );
6903
		}
6904
6905
		$status = 'valid' === $akismet_key_state;
6906
6907
		return $status;
6908
	}
6909
6910
	/**
6911
	 * Checks if one or more function names is in debug_backtrace
6912
	 *
6913
	 * @param $names Mixed string name of function or array of string names of functions
6914
	 *
6915
	 * @return bool
6916
	 */
6917
	public static function is_function_in_backtrace( $names ) {
6918
		$backtrace = debug_backtrace( false ); // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.debug_backtrace_optionsFound
6919
		if ( ! is_array( $names ) ) {
6920
			$names = array( $names );
6921
		}
6922
		$names_as_keys = array_flip( $names );
6923
6924
		//Do check in constant O(1) time for PHP5.5+
6925
		if ( function_exists( 'array_column' ) ) {
6926
			$backtrace_functions = array_column( $backtrace, 'function' ); // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.array_columnFound
6927
			$backtrace_functions_as_keys = array_flip( $backtrace_functions );
6928
			$intersection = array_intersect_key( $backtrace_functions_as_keys, $names_as_keys );
6929
			return ! empty ( $intersection );
6930
		}
6931
6932
		//Do check in linear O(n) time for < PHP5.5 ( using isset at least prevents O(n^2) )
6933
		foreach ( $backtrace as $call ) {
6934
			if ( isset( $names_as_keys[ $call['function'] ] ) ) {
6935
				return true;
6936
			}
6937
		}
6938
		return false;
6939
	}
6940
6941
	/**
6942
	 * Given a minified path, and a non-minified path, will return
6943
	 * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy.
6944
	 *
6945
	 * Both `$min_base` and `$non_min_base` are expected to be relative to the
6946
	 * root Jetpack directory.
6947
	 *
6948
	 * @since 5.6.0
6949
	 *
6950
	 * @param string $min_path
6951
	 * @param string $non_min_path
6952
	 * @return string The URL to the file
6953
	 */
6954
	public static function get_file_url_for_environment( $min_path, $non_min_path ) {
6955
		$path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) )
6956
			? $non_min_path
6957
			: $min_path;
6958
6959
		return plugins_url( $path, JETPACK__PLUGIN_FILE );
6960
	}
6961
6962
	/**
6963
	 * Checks for whether Jetpack Backup & Scan is enabled.
6964
	 * Will return true if the state of Backup & Scan is anything except "unavailable".
6965
	 * @return bool|int|mixed
6966
	 */
6967
	public static function is_rewind_enabled() {
6968
		if ( ! Jetpack::is_active() ) {
6969
			return false;
6970
		}
6971
6972
		$rewind_enabled = get_transient( 'jetpack_rewind_enabled' );
6973
		if ( false === $rewind_enabled ) {
6974
			jetpack_require_lib( 'class.core-rest-api-endpoints' );
6975
			$rewind_data = (array) Jetpack_Core_Json_Api_Endpoints::rewind_data();
6976
			$rewind_enabled = ( ! is_wp_error( $rewind_data )
6977
				&& ! empty( $rewind_data['state'] )
6978
				&& 'active' === $rewind_data['state'] )
6979
				? 1
6980
				: 0;
6981
6982
			set_transient( 'jetpack_rewind_enabled', $rewind_enabled, 10 * MINUTE_IN_SECONDS );
6983
		}
6984
		return $rewind_enabled;
6985
	}
6986
6987
	/**
6988
	 * Return Calypso environment value; used for developing Jetpack and pairing
6989
	 * it with different Calypso enrionments, such as localhost.
6990
	 *
6991
	 * @since 7.4.0
6992
	 *
6993
	 * @return string Calypso environment
6994
	 */
6995
	public static function get_calypso_env() {
6996
		if ( isset( $_GET['calypso_env'] ) ) {
6997
			return sanitize_key( $_GET['calypso_env'] );
6998
		}
6999
7000
		if ( getenv( 'CALYPSO_ENV' ) ) {
7001
			return sanitize_key( getenv( 'CALYPSO_ENV' ) );
7002
		}
7003
7004
		if ( defined( 'CALYPSO_ENV' ) && CALYPSO_ENV ) {
7005
			return sanitize_key( CALYPSO_ENV );
7006
		}
7007
7008
		return '';
7009
	}
7010
7011
	/**
7012
	 * Checks whether or not TOS has been agreed upon.
7013
	 * Will return true if a user has clicked to register, or is already connected.
7014
	 */
7015
	public static function jetpack_tos_agreed() {
7016
		return Jetpack_Options::get_option( 'tos_agreed' ) || Jetpack::is_active();
7017
	}
7018
7019
	/**
7020
	 * Handles activating default modules as well general cleanup for the new connection.
7021
	 *
7022
	 * @param boolean $activate_sso                 Whether to activate the SSO module when activating default modules.
7023
	 * @param boolean $redirect_on_activation_error Whether to redirect on activation error.
7024
	 * @param boolean $send_state_messages          Whether to send state messages.
7025
	 * @return void
7026
	 */
7027
	public static function handle_post_authorization_actions(
7028
		$activate_sso = false,
7029
		$redirect_on_activation_error = false,
7030
		$send_state_messages = true
7031
	) {
7032
		$other_modules = $activate_sso
7033
			? array( 'sso' )
7034
			: array();
7035
7036
		if ( $active_modules = Jetpack_Options::get_option( 'active_modules' ) ) {
7037
			Jetpack::delete_active_modules();
7038
7039
			Jetpack::activate_default_modules( 999, 1, array_merge( $active_modules, $other_modules ), $redirect_on_activation_error, $send_state_messages );
7040
		} else {
7041
			Jetpack::activate_default_modules( false, false, $other_modules, $redirect_on_activation_error, $send_state_messages );
7042
		}
7043
7044
		// Since this is a fresh connection, be sure to clear out IDC options
7045
		Jetpack_IDC::clear_all_idc_options();
7046
		Jetpack_Options::delete_raw_option( 'jetpack_last_connect_url_check' );
7047
7048
		// Start nonce cleaner
7049
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
7050
		wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
7051
7052
		if ( $send_state_messages ) {
7053
			Jetpack::state( 'message', 'authorized' );
7054
		}
7055
	}
7056
7057
	/**
7058
	 * Returns a boolean for whether backups UI should be displayed or not.
7059
	 *
7060
	 * @return bool Should backups UI be displayed?
7061
	 */
7062
	public static function show_backups_ui() {
7063
		/**
7064
		 * Whether UI for backups should be displayed.
7065
		 *
7066
		 * @since 6.5.0
7067
		 *
7068
		 * @param bool $show_backups Should UI for backups be displayed? True by default.
7069
		 */
7070
		return Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) || apply_filters( 'jetpack_show_backups', true );
7071
	}
7072
7073
	/*
7074
	 * Deprecated manage functions
7075
	 */
7076
	function prepare_manage_jetpack_notice() {
7077
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7078
	}
7079
	function manage_activate_screen() {
7080
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7081
	}
7082
	function admin_jetpack_manage_notice() {
7083
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7084
	}
7085
	function opt_out_jetpack_manage_url() {
7086
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7087
	}
7088
	function opt_in_jetpack_manage_url() {
7089
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7090
	}
7091
	function opt_in_jetpack_manage_notice() {
7092
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7093
	}
7094
	function can_display_jetpack_manage_notice() {
7095
		_deprecated_function( __METHOD__, 'jetpack-7.3' );
7096
	}
7097
7098
	/**
7099
	 * Clean leftoveruser meta.
7100
	 *
7101
	 * Delete Jetpack-related user meta when it is no longer needed.
7102
	 *
7103
	 * @since 7.3.0
7104
	 *
7105
	 * @param int $user_id User ID being updated.
7106
	 */
7107
	public static function user_meta_cleanup( $user_id ) {
7108
		$meta_keys = array(
7109
			// AtD removed from Jetpack 7.3
7110
			'AtD_options',
7111
			'AtD_check_when',
7112
			'AtD_guess_lang',
7113
			'AtD_ignored_phrases',
7114
		);
7115
7116
		foreach ( $meta_keys as $meta_key ) {
7117
			if ( get_user_meta( $user_id, $meta_key ) ) {
7118
				delete_user_meta( $user_id, $meta_key );
7119
			}
7120
		}
7121
	}
7122
}
7123