Completed
Push — kraftbj-patch-5 ( c43ab3 )
by
unknown
08:45
created

Jetpack::verify_xml_rpc_signature()   F

Complexity

Conditions 38
Paths 327

Size

Total Lines 130
Code Lines 84

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 38
eloc 84
nc 327
nop 0
dl 0
loc 130
rs 3.3583
c 0
b 0
f 0

How to fix   Long Method    Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
/*
4
Options:
5
jetpack_options (array)
6
	An array of options.
7
	@see Jetpack_Options::get_option_names()
8
9
jetpack_register (string)
10
	Temporary verification secrets.
11
12
jetpack_activated (int)
13
	1: the plugin was activated normally
14
	2: the plugin was activated on this site because of a network-wide activation
15
	3: the plugin was auto-installed
16
	4: the plugin was manually disconnected (but is still installed)
17
18
jetpack_active_modules (array)
19
	Array of active module slugs.
20
21
jetpack_do_activate (bool)
22
	Flag for "activating" the plugin on sites where the activation hook never fired (auto-installs)
23
*/
24
25
require_once( JETPACK__PLUGIN_DIR . '_inc/lib/class.media.php' );
26
27
class Jetpack {
28
	public $xmlrpc_server = null;
29
30
	private $xmlrpc_verification = null;
31
	private $rest_authentication_status = null;
32
33
	public $HTTP_RAW_POST_DATA = null; // copy of $GLOBALS['HTTP_RAW_POST_DATA']
34
35
	/**
36
	 * @var array The handles of styles that are concatenated into jetpack.css
37
	 */
38
	public $concatenated_style_handles = array(
39
		'jetpack-carousel',
40
		'grunion.css',
41
		'the-neverending-homepage',
42
		'jetpack_likes',
43
		'jetpack_related-posts',
44
		'sharedaddy',
45
		'jetpack-slideshow',
46
		'presentations',
47
		'jetpack-subscriptions',
48
		'jetpack-responsive-videos-style',
49
		'jetpack-social-menu',
50
		'tiled-gallery',
51
		'jetpack_display_posts_widget',
52
		'gravatar-profile-widget',
53
		'goodreads-widget',
54
		'jetpack_social_media_icons_widget',
55
		'jetpack-top-posts-widget',
56
		'jetpack_image_widget',
57
		'jetpack-my-community-widget',
58
		'wordads',
59
		'eu-cookie-law-style',
60
		'flickr-widget-style',
61
		'jetpack-search-widget'
62
	);
63
64
	/**
65
	 * Contains all assets that have had their URL rewritten to minified versions.
66
	 *
67
	 * @var array
68
	 */
69
	static $min_assets = array();
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $min_assets.

The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using

class A {
    var $property;
}

the property is implicitly global.

To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.

Loading history...
70
71
	public $plugins_to_deactivate = array(
72
		'stats'               => array( 'stats/stats.php', 'WordPress.com Stats' ),
73
		'shortlinks'          => array( 'stats/stats.php', 'WordPress.com Stats' ),
74
		'sharedaddy'          => array( 'sharedaddy/sharedaddy.php', 'Sharedaddy' ),
75
		'twitter-widget'      => array( 'wickett-twitter-widget/wickett-twitter-widget.php', 'Wickett Twitter Widget' ),
76
		'after-the-deadline'  => array( 'after-the-deadline/after-the-deadline.php', 'After The Deadline' ),
77
		'contact-form'        => array( 'grunion-contact-form/grunion-contact-form.php', 'Grunion Contact Form' ),
78
		'contact-form'        => array( 'mullet/mullet-contact-form.php', 'Mullet Contact Form' ),
79
		'custom-css'          => array( 'safecss/safecss.php', 'WordPress.com Custom CSS' ),
80
		'random-redirect'     => array( 'random-redirect/random-redirect.php', 'Random Redirect' ),
81
		'videopress'          => array( 'video/video.php', 'VideoPress' ),
82
		'widget-visibility'   => array( 'jetpack-widget-visibility/widget-visibility.php', 'Jetpack Widget Visibility' ),
83
		'widget-visibility'   => array( 'widget-visibility-without-jetpack/widget-visibility-without-jetpack.php', 'Widget Visibility Without Jetpack' ),
84
		'sharedaddy'          => array( 'jetpack-sharing/sharedaddy.php', 'Jetpack Sharing' ),
85
		'gravatar-hovercards' => array( 'jetpack-gravatar-hovercards/gravatar-hovercards.php', 'Jetpack Gravatar Hovercards' ),
86
		'latex'               => array( 'wp-latex/wp-latex.php', 'WP LaTeX' )
87
	);
88
89
	static $capability_translations = array(
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $capability_translations.

The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using

class A {
    var $property;
}

the property is implicitly global.

To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.

Loading history...
90
		'administrator' => 'manage_options',
91
		'editor'        => 'edit_others_posts',
92
		'author'        => 'publish_posts',
93
		'contributor'   => 'edit_posts',
94
		'subscriber'    => 'read',
95
	);
96
97
	/**
98
	 * Map of modules that have conflicts with plugins and should not be auto-activated
99
	 * if the plugins are active.  Used by filter_default_modules
100
	 *
101
	 * Plugin Authors: If you'd like to prevent a single module from auto-activating,
102
	 * change `module-slug` and add this to your plugin:
103
	 *
104
	 * add_filter( 'jetpack_get_default_modules', 'my_jetpack_get_default_modules' );
105
	 * function my_jetpack_get_default_modules( $modules ) {
106
	 *     return array_diff( $modules, array( 'module-slug' ) );
107
	 * }
108
	 *
109
	 * @var array
110
	 */
111
	private $conflicting_plugins = array(
112
		'comments'          => array(
113
			'Intense Debate'                       => 'intensedebate/intensedebate.php',
114
			'Disqus'                               => 'disqus-comment-system/disqus.php',
115
			'Livefyre'                             => 'livefyre-comments/livefyre.php',
116
			'Comments Evolved for WordPress'       => 'gplus-comments/comments-evolved.php',
117
			'Google+ Comments'                     => 'google-plus-comments/google-plus-comments.php',
118
			'WP-SpamShield Anti-Spam'              => 'wp-spamshield/wp-spamshield.php',
119
		),
120
		'comment-likes' => array(
121
			'Epoch'                                => 'epoch/plugincore.php',
122
		),
123
		'contact-form'      => array(
124
			'Contact Form 7'                       => 'contact-form-7/wp-contact-form-7.php',
125
			'Gravity Forms'                        => 'gravityforms/gravityforms.php',
126
			'Contact Form Plugin'                  => 'contact-form-plugin/contact_form.php',
127
			'Easy Contact Forms'                   => 'easy-contact-forms/easy-contact-forms.php',
128
			'Fast Secure Contact Form'             => 'si-contact-form/si-contact-form.php',
129
			'Ninja Forms'                          => 'ninja-forms/ninja-forms.php',
130
		),
131
		'minileven'         => array(
132
			'WPtouch'                              => 'wptouch/wptouch.php',
133
		),
134
		'latex'             => array(
135
			'LaTeX for WordPress'                  => 'latex/latex.php',
136
			'Youngwhans Simple Latex'              => 'youngwhans-simple-latex/yw-latex.php',
137
			'Easy WP LaTeX'                        => 'easy-wp-latex-lite/easy-wp-latex-lite.php',
138
			'MathJax-LaTeX'                        => 'mathjax-latex/mathjax-latex.php',
139
			'Enable Latex'                         => 'enable-latex/enable-latex.php',
140
			'WP QuickLaTeX'                        => 'wp-quicklatex/wp-quicklatex.php',
141
		),
142
		'protect'           => array(
143
			'Limit Login Attempts'                 => 'limit-login-attempts/limit-login-attempts.php',
144
			'Captcha'                              => 'captcha/captcha.php',
145
			'Brute Force Login Protection'         => 'brute-force-login-protection/brute-force-login-protection.php',
146
			'Login Security Solution'              => 'login-security-solution/login-security-solution.php',
147
			'WPSecureOps Brute Force Protect'      => 'wpsecureops-bruteforce-protect/wpsecureops-bruteforce-protect.php',
148
			'BulletProof Security'                 => 'bulletproof-security/bulletproof-security.php',
149
			'SiteGuard WP Plugin'                  => 'siteguard/siteguard.php',
150
			'Security-protection'                  => 'security-protection/security-protection.php',
151
			'Login Security'                       => 'login-security/login-security.php',
152
			'Botnet Attack Blocker'                => 'botnet-attack-blocker/botnet-attack-blocker.php',
153
			'Wordfence Security'                   => 'wordfence/wordfence.php',
154
			'All In One WP Security & Firewall'    => 'all-in-one-wp-security-and-firewall/wp-security.php',
155
			'iThemes Security'                     => 'better-wp-security/better-wp-security.php',
156
		),
157
		'random-redirect'   => array(
158
			'Random Redirect 2'                    => 'random-redirect-2/random-redirect.php',
159
		),
160
		'related-posts'     => array(
161
			'YARPP'                                => 'yet-another-related-posts-plugin/yarpp.php',
162
			'WordPress Related Posts'              => 'wordpress-23-related-posts-plugin/wp_related_posts.php',
163
			'nrelate Related Content'              => 'nrelate-related-content/nrelate-related.php',
164
			'Contextual Related Posts'             => 'contextual-related-posts/contextual-related-posts.php',
165
			'Related Posts for WordPress'          => 'microkids-related-posts/microkids-related-posts.php',
166
			'outbrain'                             => 'outbrain/outbrain.php',
167
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
168
			'Sexybookmarks'                        => 'sexybookmarks/shareaholic.php',
169
		),
170
		'sharedaddy'        => array(
171
			'AddThis'                              => 'addthis/addthis_social_widget.php',
172
			'Add To Any'                           => 'add-to-any/add-to-any.php',
173
			'ShareThis'                            => 'share-this/sharethis.php',
174
			'Shareaholic'                          => 'shareaholic/shareaholic.php',
175
		),
176
		'seo-tools' => array(
177
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
178
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
179
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
180
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
181
		),
182
		'verification-tools' => array(
183
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
184
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
185
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
186
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
187
		),
188
		'widget-visibility' => array(
189
			'Widget Logic'                         => 'widget-logic/widget_logic.php',
190
			'Dynamic Widgets'                      => 'dynamic-widgets/dynamic-widgets.php',
191
		),
192
		'sitemaps' => array(
193
			'Google XML Sitemaps'                  => 'google-sitemap-generator/sitemap.php',
194
			'Better WordPress Google XML Sitemaps' => 'bwp-google-xml-sitemaps/bwp-simple-gxs.php',
195
			'Google XML Sitemaps for qTranslate'   => 'google-xml-sitemaps-v3-for-qtranslate/sitemap.php',
196
			'XML Sitemap & Google News feeds'      => 'xml-sitemap-feed/xml-sitemap.php',
197
			'Google Sitemap by BestWebSoft'        => 'google-sitemap-plugin/google-sitemap-plugin.php',
198
			'WordPress SEO by Yoast'               => 'wordpress-seo/wp-seo.php',
199
			'WordPress SEO Premium by Yoast'       => 'wordpress-seo-premium/wp-seo-premium.php',
200
			'All in One SEO Pack'                  => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
201
			'All in One SEO Pack Pro'              => 'all-in-one-seo-pack-pro/all_in_one_seo_pack.php',
202
			'Sitemap'                              => 'sitemap/sitemap.php',
203
			'Simple Wp Sitemap'                    => 'simple-wp-sitemap/simple-wp-sitemap.php',
204
			'Simple Sitemap'                       => 'simple-sitemap/simple-sitemap.php',
205
			'XML Sitemaps'                         => 'xml-sitemaps/xml-sitemaps.php',
206
			'MSM Sitemaps'                         => 'msm-sitemap/msm-sitemap.php',
207
		),
208
		'lazy-images' => array(
209
			'Lazy Load'              => 'lazy-load/lazy-load.php',
210
			'BJ Lazy Load'           => 'bj-lazy-load/bj-lazy-load.php',
211
			'Lazy Load by WP Rocket' => 'rocket-lazy-load/rocket-lazy-load.php',
212
		),
213
	);
214
215
	/**
216
	 * Plugins for which we turn off our Facebook OG Tags implementation.
217
	 *
218
	 * Note: All in One SEO Pack, All in one SEO Pack Pro, WordPress SEO by Yoast, and WordPress SEO Premium by Yoast automatically deactivate
219
	 * Jetpack's Open Graph tags via filter when their Social Meta modules are active.
220
	 *
221
	 * Plugin authors: If you'd like to prevent Jetpack's Open Graph tag generation in your plugin, you can do so via this filter:
222
	 * add_filter( 'jetpack_enable_open_graph', '__return_false' );
223
	 */
224
	private $open_graph_conflicting_plugins = array(
225
		'2-click-socialmedia-buttons/2-click-socialmedia-buttons.php',
226
		                                                         // 2 Click Social Media Buttons
227
		'add-link-to-facebook/add-link-to-facebook.php',         // Add Link to Facebook
228
		'add-meta-tags/add-meta-tags.php',                       // Add Meta Tags
229
		'autodescription/autodescription.php',                   // The SEO Framework
230
		'easy-facebook-share-thumbnails/esft.php',               // Easy Facebook Share Thumbnail
231
		'heateor-open-graph-meta-tags/heateor-open-graph-meta-tags.php',
232
		                                                         // Open Graph Meta Tags by Heateor
233
		'facebook/facebook.php',                                 // Facebook (official plugin)
234
		'facebook-awd/AWD_facebook.php',                         // Facebook AWD All in one
235
		'facebook-featured-image-and-open-graph-meta-tags/fb-featured-image.php',
236
		                                                         // Facebook Featured Image & OG Meta Tags
237
		'facebook-meta-tags/facebook-metatags.php',              // Facebook Meta Tags
238
		'wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php',
239
		                                                         // Facebook Open Graph Meta Tags for WordPress
240
		'facebook-revised-open-graph-meta-tag/index.php',        // Facebook Revised Open Graph Meta Tag
241
		'facebook-thumb-fixer/_facebook-thumb-fixer.php',        // Facebook Thumb Fixer
242
		'facebook-and-digg-thumbnail-generator/facebook-and-digg-thumbnail-generator.php',
243
		                                                         // Fedmich's Facebook Open Graph Meta
244
		'network-publisher/networkpub.php',                      // Network Publisher
245
		'nextgen-facebook/nextgen-facebook.php',                 // NextGEN Facebook OG
246
		'social-networks-auto-poster-facebook-twitter-g/NextScripts_SNAP.php',
247
		                                                         // NextScripts SNAP
248
		'og-tags/og-tags.php',                                   // OG Tags
249
		'opengraph/opengraph.php',                               // Open Graph
250
		'open-graph-protocol-framework/open-graph-protocol-framework.php',
251
		                                                         // Open Graph Protocol Framework
252
		'seo-facebook-comments/seofacebook.php',                 // SEO Facebook Comments
253
		'seo-ultimate/seo-ultimate.php',                         // SEO Ultimate
254
		'sexybookmarks/sexy-bookmarks.php',                      // Shareaholic
255
		'shareaholic/sexy-bookmarks.php',                        // Shareaholic
256
		'sharepress/sharepress.php',                             // SharePress
257
		'simple-facebook-connect/sfc.php',                       // Simple Facebook Connect
258
		'social-discussions/social-discussions.php',             // Social Discussions
259
		'social-sharing-toolkit/social_sharing_toolkit.php',     // Social Sharing Toolkit
260
		'socialize/socialize.php',                               // Socialize
261
		'squirrly-seo/squirrly.php',                             // SEO by SQUIRRLY™
262
		'only-tweet-like-share-and-google-1/tweet-like-plusone.php',
263
		                                                         // Tweet, Like, Google +1 and Share
264
		'wordbooker/wordbooker.php',                             // Wordbooker
265
		'wpsso/wpsso.php',                                       // WordPress Social Sharing Optimization
266
		'wp-caregiver/wp-caregiver.php',                         // WP Caregiver
267
		'wp-facebook-like-send-open-graph-meta/wp-facebook-like-send-open-graph-meta.php',
268
		                                                         // WP Facebook Like Send & Open Graph Meta
269
		'wp-facebook-open-graph-protocol/wp-facebook-ogp.php',   // WP Facebook Open Graph protocol
270
		'wp-ogp/wp-ogp.php',                                     // WP-OGP
271
		'zoltonorg-social-plugin/zosp.php',                      // Zolton.org Social Plugin
272
		'wp-fb-share-like-button/wp_fb_share-like_widget.php',   // WP Facebook Like Button
273
		'open-graph-metabox/open-graph-metabox.php'              // Open Graph Metabox
274
	);
275
276
	/**
277
	 * Plugins for which we turn off our Twitter Cards Tags implementation.
278
	 */
279
	private $twitter_cards_conflicting_plugins = array(
280
	//	'twitter/twitter.php',                       // The official one handles this on its own.
281
	//	                                             // https://github.com/twitter/wordpress/blob/master/src/Twitter/WordPress/Cards/Compatibility.php
282
		'eewee-twitter-card/index.php',              // Eewee Twitter Card
283
		'ig-twitter-cards/ig-twitter-cards.php',     // IG:Twitter Cards
284
		'jm-twitter-cards/jm-twitter-cards.php',     // JM Twitter Cards
285
		'kevinjohn-gallagher-pure-web-brilliants-social-graph-twitter-cards-extention/kevinjohn_gallagher___social_graph_twitter_output.php',
286
		                                             // Pure Web Brilliant's Social Graph Twitter Cards Extension
287
		'twitter-cards/twitter-cards.php',           // Twitter Cards
288
		'twitter-cards-meta/twitter-cards-meta.php', // Twitter Cards Meta
289
		'wp-twitter-cards/twitter_cards.php',        // WP Twitter Cards
290
	);
291
292
	/**
293
	 * Message to display in admin_notice
294
	 * @var string
295
	 */
296
	public $message = '';
297
298
	/**
299
	 * Error to display in admin_notice
300
	 * @var string
301
	 */
302
	public $error = '';
303
304
	/**
305
	 * Modules that need more privacy description.
306
	 * @var string
307
	 */
308
	public $privacy_checks = '';
309
310
	/**
311
	 * Stats to record once the page loads
312
	 *
313
	 * @var array
314
	 */
315
	public $stats = array();
316
317
	/**
318
	 * Jetpack_Sync object
319
	 */
320
	public $sync;
321
322
	/**
323
	 * Verified data for JSON authorization request
324
	 */
325
	public $json_api_authorization_request = array();
326
327
	/**
328
	 * @var string Transient key used to prevent multiple simultaneous plugin upgrades
329
	 */
330
	public static $plugin_upgrade_lock_key = 'jetpack_upgrade_lock';
331
332
	/**
333
	 * Holds the singleton instance of this class
334
	 * @since 2.3.3
335
	 * @var Jetpack
336
	 */
337
	static $instance = false;
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $instance.

The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using

class A {
    var $property;
}

the property is implicitly global.

To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.

Loading history...
338
339
	/**
340
	 * Singleton
341
	 * @static
342
	 */
343
	public static function init() {
344
		if ( ! self::$instance ) {
345
			self::$instance = new Jetpack;
346
347
			self::$instance->plugin_upgrade();
348
		}
349
350
		return self::$instance;
351
	}
352
353
	/**
354
	 * Must never be called statically
355
	 */
356
	function plugin_upgrade() {
357
		if ( Jetpack::is_active() ) {
358
			list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
359
			if ( JETPACK__VERSION != $version ) {
360
				// Prevent multiple upgrades at once - only a single process should trigger
361
				// an upgrade to avoid stampedes
362
				if ( false !== get_transient( self::$plugin_upgrade_lock_key ) ) {
363
					return;
364
				}
365
366
				// Set a short lock to prevent multiple instances of the upgrade
367
				set_transient( self::$plugin_upgrade_lock_key, 1, 10 );
368
369
				// check which active modules actually exist and remove others from active_modules list
370
				$unfiltered_modules = Jetpack::get_active_modules();
371
				$modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) );
372
				if ( array_diff( $unfiltered_modules, $modules ) ) {
373
					Jetpack::update_active_modules( $modules );
374
				}
375
376
				add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
377
378
				// Upgrade to 4.3.0
379
				if ( Jetpack_Options::get_option( 'identity_crisis_whitelist' ) ) {
380
					Jetpack_Options::delete_option( 'identity_crisis_whitelist' );
381
				}
382
383
				// Make sure Markdown for posts gets turned back on
384
				if ( ! get_option( 'wpcom_publish_posts_with_markdown' ) ) {
385
					update_option( 'wpcom_publish_posts_with_markdown', true );
386
				}
387
388
				if ( did_action( 'wp_loaded' ) ) {
389
					self::upgrade_on_load();
390
				} else {
391
					add_action(
392
						'wp_loaded',
393
						array( __CLASS__, 'upgrade_on_load' )
394
					);
395
				}
396
			}
397
		}
398
	}
399
400
	/**
401
	 * Runs upgrade routines that need to have modules loaded.
402
	 */
403
	static function upgrade_on_load() {
404
405
		// Not attempting any upgrades if jetpack_modules_loaded did not fire.
406
		// This can happen in case Jetpack has been just upgraded and is
407
		// being initialized late during the page load. In this case we wait
408
		// until the next proper admin page load with Jetpack active.
409
		if ( ! did_action( 'jetpack_modules_loaded' ) ) {
410
			delete_transient( self::$plugin_upgrade_lock_key );
411
412
			return;
413
		}
414
415
		Jetpack::maybe_set_version_option();
416
417
		if ( class_exists( 'Jetpack_Widget_Conditions' ) ) {
418
			Jetpack_Widget_Conditions::migrate_post_type_rules();
419
		}
420
421
		if (
422
			class_exists( 'Jetpack_Sitemap_Manager' )
423
			&& version_compare( JETPACK__VERSION, '5.3', '>=' )
424
		) {
425
			do_action( 'jetpack_sitemaps_purge_data' );
426
		}
427
428
		delete_transient( self::$plugin_upgrade_lock_key );
429
	}
430
431
	static function activate_manage( ) {
432
		if ( did_action( 'init' ) || current_filter() == 'init' ) {
433
			self::activate_module( 'manage', false, false );
434
		} else if ( !  has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) {
435
			add_action( 'init', array( __CLASS__, 'activate_manage' ) );
436
		}
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
		}
514
515
		/*
516
		 * Load things that should only be in Network Admin.
517
		 *
518
		 * For now blow away everything else until a more full
519
		 * understanding of what is needed at the network level is
520
		 * available
521
		 */
522
		if( is_multisite() ) {
523
			Jetpack_Network::init();
524
		}
525
526
		add_action( 'set_user_role', array( $this, 'maybe_clear_other_linked_admins_transient' ), 10, 3 );
527
528
		// Unlink user before deleting the user from .com
529
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
530
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
531
532
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
533
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
534
535
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
536
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
537
538
			$this->require_jetpack_authentication();
539
540
			if ( Jetpack::is_active() ) {
541
				// Hack to preserve $HTTP_RAW_POST_DATA
542
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
543
544
				$signed = $this->verify_xml_rpc_signature();
545
				if ( $signed && ! is_wp_error( $signed ) ) {
546
					// The actual API methods.
547
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
548
				} else {
549
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
550
					// active Jetpack connection, so that additional users can link their account.
551
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
552
				}
553
			} else {
554
				// The bootstrap API methods.
555
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
556
			}
557
558
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
559
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
560
		} elseif (
561
			is_admin() &&
562
			isset( $_POST['action'] ) && (
563
				'jetpack_upload_file' == $_POST['action'] ||
564
				'jetpack_update_file' == $_POST['action']
565
			)
566
		) {
567
			$this->require_jetpack_authentication();
568
			$this->add_remote_request_handlers();
569
		} else {
570
			if ( Jetpack::is_active() ) {
571
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
572
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
573
			}
574
		}
575
576
		if ( Jetpack::is_active() ) {
577
			Jetpack_Heartbeat::init();
578
			require_once JETPACK__PLUGIN_DIR . '_inc/lib/class.jetpack-search-performance-logger.php';
579
			Jetpack_Search_Performance_Logger::init();
580
		}
581
582
		add_filter( 'determine_current_user', array( $this, 'wp_rest_authenticate' ) );
583
		add_filter( 'rest_authentication_errors', array( $this, 'wp_rest_authentication_errors' ) );
584
585
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
586
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
587
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
588
		}
589
590
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
591
592
		add_action( 'admin_init', array( $this, 'admin_init' ) );
593
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
594
595
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
596
597
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
598
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
599
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
600
601
		// returns HTTPS support status
602
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
603
604
		// If any module option is updated before Jump Start is dismissed, hide Jump Start.
605
		add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
606
607
		// JITM AJAX callback function
608
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
609
610
		// Universal ajax callback for all tracking events triggered via js
611
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
612
613
		add_action( 'wp_ajax_jetpack_connection_banner', array( $this, 'jetpack_connection_banner_callback' ) );
614
615
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
616
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
617
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
618
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
619
620
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
621
622
		/**
623
		 * These actions run checks to load additional files.
624
		 * They check for external files or plugins, so they need to run as late as possible.
625
		 */
626
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
627
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
628
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
629
630
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
631
		add_action( 'style_loader_src', array( 'Jetpack', 'set_suffix_on_min' ), 10, 2  );
632
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
633
634
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
635
636
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
637
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
638
639
		// A filter to control all just in time messages
640
		add_filter( 'jetpack_just_in_time_msgs', '__return_true', 9 );
641
		add_filter( 'jetpack_just_in_time_msg_cache', '__return_true', 9);
642
643
		// If enabled, point edit post, page, and comment links to Calypso instead of WP-Admin.
644
		// We should make sure to only do this for front end links.
645
		if ( Jetpack::get_option( 'edit_links_calypso_redirect' ) && ! is_admin() ) {
646
			add_filter( 'get_edit_post_link', array( $this, 'point_edit_post_links_to_calypso' ), 1, 2 );
647
			add_filter( 'get_edit_comment_link', array( $this, 'point_edit_comment_links_to_calypso' ), 1 );
648
649
			//we'll override wp_notify_postauthor and wp_notify_moderator pluggable functions
650
			//so they point moderation links on emails to Calypso
651
			jetpack_require_lib( 'functions.wp-notify' );
652
		}
653
654
		// Update the Jetpack plan from API on heartbeats
655
		add_action( 'jetpack_heartbeat', array( $this, 'refresh_active_plan_from_wpcom' ) );
656
657
		/**
658
		 * This is the hack to concatinate all css files into one.
659
		 * For description and reasoning see the implode_frontend_css method
660
		 *
661
		 * Super late priority so we catch all the registered styles
662
		 */
663
		if( !is_admin() ) {
664
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
665
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
666
		}
667
668
		/**
669
		 * These are sync actions that we need to keep track of for jitms
670
		 */
671
		add_filter( 'jetpack_sync_before_send_updated_option', array( $this, 'jetpack_track_last_sync_callback' ), 99 );
672
673
		// Actually push the stats on shutdown.
674
		if ( ! has_action( 'shutdown', array( $this, 'push_stats' ) ) ) {
675
			add_action( 'shutdown', array( $this, 'push_stats' ) );
676
		}
677
	}
678
679
	function point_edit_post_links_to_calypso( $default_url, $post_id ) {
680
		$post = get_post( $post_id );
681
682
		if ( empty( $post ) ) {
683
			return $default_url;
684
		}
685
686
		$post_type = $post->post_type;
687
688
		// Mapping the allowed CPTs on WordPress.com to corresponding paths in Calypso.
689
		// https://en.support.wordpress.com/custom-post-types/
690
		$allowed_post_types = array(
691
			'post' => 'post',
692
			'page' => 'page',
693
			'jetpack-portfolio' => 'edit/jetpack-portfolio',
694
			'jetpack-testimonial' => 'edit/jetpack-testimonial',
695
		);
696
697
		if ( ! in_array( $post_type, array_keys( $allowed_post_types ) ) ) {
698
			return $default_url;
699
		}
700
701
		$path_prefix = $allowed_post_types[ $post_type ];
702
703
		$site_slug  = Jetpack::build_raw_urls( get_home_url() );
0 ignored issues
show
Coding Style introduced by
Equals sign not aligned correctly; expected 1 space but found 2 spaces

This check looks for improperly formatted assignments.

Every assignment must have exactly one space before and one space after the equals operator.

To illustrate:

$a = "a";
$ab = "ab";
$abc = "abc";

will have no issues, while

$a   = "a";
$ab  = "ab";
$abc = "abc";

will report issues in lines 1 and 2.

Loading history...
704
705
		return esc_url( sprintf( 'https://wordpress.com/%s/%s/%d', $path_prefix, $site_slug, $post_id ) );
706
	}
707
708
	function point_edit_comment_links_to_calypso( $url ) {
709
		// Take the `query` key value from the URL, and parse its parts to the $query_args. `amp;c` matches the comment ID.
710
		wp_parse_str( wp_parse_url( $url, PHP_URL_QUERY ), $query_args );
711
		return esc_url( sprintf( 'https://wordpress.com/comment/%s/%d',
712
			Jetpack::build_raw_urls( get_home_url() ),
713
			$query_args['amp;c']
714
		) );
715
	}
716
717
	function jetpack_track_last_sync_callback( $params ) {
718
		/**
719
		 * Filter to turn off jitm caching
720
		 *
721
		 * @since 5.4.0
722
		 *
723
		 * @param bool false Whether to cache just in time messages
724
		 */
725
		if ( ! apply_filters( 'jetpack_just_in_time_msg_cache', false ) ) {
726
			return $params;
727
		}
728
729
		if ( is_array( $params ) && isset( $params[0] ) ) {
730
			$option = $params[0];
731
			if ( 'active_plugins' === $option ) {
732
				// use the cache if we can, but not terribly important if it gets evicted
733
				set_transient( 'jetpack_last_plugin_sync', time(), HOUR_IN_SECONDS );
734
			}
735
		}
736
737
		return $params;
738
	}
739
740
	function jetpack_connection_banner_callback() {
741
		check_ajax_referer( 'jp-connection-banner-nonce', 'nonce' );
742
743
		if ( isset( $_REQUEST['dismissBanner'] ) ) {
744
			Jetpack_Options::update_option( 'dismissed_connection_banner', 1 );
745
			wp_send_json_success();
746
		}
747
748
		wp_die();
749
	}
750
751
	function jetpack_admin_ajax_tracks_callback() {
752
		// Check for nonce
753
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
754
			wp_die( 'Permissions check failed.' );
755
		}
756
757
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
758
			wp_die( 'No valid event name or type.' );
759
		}
760
761
		$tracks_data = array();
762
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
763
			if ( is_array( $_REQUEST['tracksEventProp'] ) ) {
764
				$tracks_data = $_REQUEST['tracksEventProp'];
765
			} else {
766
				$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
767
			}
768
		}
769
770
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
771
		wp_send_json_success();
772
		wp_die();
773
	}
774
775
	/**
776
	 * The callback for the JITM ajax requests.
777
	 */
778
	function jetpack_jitm_ajax_callback() {
779
		// Check for nonce
780
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
781
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
782
		}
783
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
784
			$module_slug = $_REQUEST['jitmModule'];
785
			Jetpack::log( 'activate', $module_slug );
786
			Jetpack::activate_module( $module_slug, false, false );
787
			Jetpack::state( 'message', 'no_message' );
788
789
			//A Jetpack module is being activated through a JITM, track it
790
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
791
			$this->do_stats( 'server_side' );
792
793
			wp_send_json_success();
794
		}
795
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
796
			// get the hide_jitm options array
797
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
798
			$module_slug = $_REQUEST['jitmModule'];
799
800
			if( ! $jetpack_hide_jitm ) {
801
				$jetpack_hide_jitm = array(
802
					$module_slug => 'hide'
803
				);
804
			} else {
805
				$jetpack_hide_jitm[$module_slug] = 'hide';
806
			}
807
808
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
809
810
			//jitm is being dismissed forever, track it
811
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
812
			$this->do_stats( 'server_side' );
813
814
			wp_send_json_success();
815
		}
816
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
817
			$module_slug = $_REQUEST['jitmModule'];
818
819
			// User went to WordPress.com, track this
820
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
821
			$this->do_stats( 'server_side' );
822
823
			wp_send_json_success();
824
		}
825
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
826
			$track = $_REQUEST['jitmModule'];
827
828
			// User is viewing JITM, track it.
829
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
830
			$this->do_stats( 'server_side' );
831
832
			wp_send_json_success();
833
		}
834
	}
835
836
	/**
837
	 * If there are any stats that need to be pushed, but haven't been, push them now.
838
	 */
839
	function push_stats() {
840
		if ( ! empty( $this->stats ) ) {
841
			$this->do_stats( 'server_side' );
842
		}
843
	}
844
845
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
846
		switch( $cap ) {
847
			case 'jetpack_connect' :
848
			case 'jetpack_reconnect' :
0 ignored issues
show
Coding Style introduced by
There must be a comment when fall-through is intentional in a non-empty case body
Loading history...
849
				if ( Jetpack::is_development_mode() ) {
850
					$caps = array( 'do_not_allow' );
851
					break;
852
				}
853
				/**
854
				 * Pass through. If it's not development mode, these should match disconnect.
855
				 * Let users disconnect if it's development mode, just in case things glitch.
856
				 */
857
			case 'jetpack_disconnect' :
858
				/**
859
				 * In multisite, can individual site admins manage their own connection?
860
				 *
861
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
862
				 */
863
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
864
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
865
						/**
866
						 * We need to update the option name -- it's terribly unclear which
867
						 * direction the override goes.
868
						 *
869
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
870
						 */
871
						$caps = array( 'do_not_allow' );
872
						break;
873
					}
874
				}
875
876
				$caps = array( 'manage_options' );
877
				break;
878
			case 'jetpack_manage_modules' :
879
			case 'jetpack_activate_modules' :
880
			case 'jetpack_deactivate_modules' :
881
				$caps = array( 'manage_options' );
882
				break;
883
			case 'jetpack_configure_modules' :
884
				$caps = array( 'manage_options' );
885
				break;
886
			case 'jetpack_network_admin_page':
887
			case 'jetpack_network_settings_page':
888
				$caps = array( 'manage_network_plugins' );
889
				break;
890
			case 'jetpack_network_sites_page':
891
				$caps = array( 'manage_sites' );
892
				break;
893
			case 'jetpack_admin_page' :
894
				if ( Jetpack::is_development_mode() ) {
895
					$caps = array( 'manage_options' );
896
					break;
897
				} else {
898
					$caps = array( 'read' );
899
				}
900
				break;
901
			case 'jetpack_connect_user' :
902
				if ( Jetpack::is_development_mode() ) {
903
					$caps = array( 'do_not_allow' );
904
					break;
905
				}
906
				$caps = array( 'read' );
907
				break;
908
		}
909
		return $caps;
910
	}
911
912
	function require_jetpack_authentication() {
913
		// Don't let anyone authenticate
914
		$_COOKIE = array();
915
		remove_all_filters( 'authenticate' );
916
		remove_all_actions( 'wp_login_failed' );
917
918
		if ( Jetpack::is_active() ) {
919
			// Allow Jetpack authentication
920
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
921
		}
922
	}
923
924
	/**
925
	 * Load language files
926
	 * @action plugins_loaded
927
	 */
928
	public static function plugin_textdomain() {
929
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
930
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
931
	}
932
933
	/**
934
	 * Register assets for use in various modules and the Jetpack admin page.
935
	 *
936
	 * @uses wp_script_is, wp_register_script, plugins_url
937
	 * @action wp_loaded
938
	 * @return null
939
	 */
940
	public function register_assets() {
941
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
942
			wp_register_script(
943
				'spin',
944
				self::get_file_url_for_environment( '_inc/build/spin.min.js', '_inc/spin.js' ),
945
				false,
946
				'1.3'
947
			);
948
		}
949
950
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
951
			wp_register_script(
952
				'jquery.spin',
953
				self::get_file_url_for_environment( '_inc/build/jquery.spin.min.js', '_inc/jquery.spin.js' ),
954
				array( 'jquery', 'spin' ),
955
				'1.3'
956
			);
957
		}
958
959
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
960
			wp_register_script(
961
				'jetpack-gallery-settings',
962
				self::get_file_url_for_environment( '_inc/build/gallery-settings.min.js', '_inc/gallery-settings.js' ),
963
				array( 'media-views' ),
964
				'20121225'
965
			);
966
		}
967
968
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
969
			wp_register_script(
970
				'jetpack-twitter-timeline',
971
				self::get_file_url_for_environment( '_inc/build/twitter-timeline.min.js', '_inc/twitter-timeline.js' ),
972
				array( 'jquery' ),
973
				'4.0.0',
974
				true
975
			);
976
		}
977
978
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
979
			wp_register_script(
980
				'jetpack-facebook-embed',
981
				self::get_file_url_for_environment( '_inc/build/facebook-embed.min.js', '_inc/facebook-embed.js' ),
982
				array( 'jquery' ),
983
				null,
984
				true
985
			);
986
987
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
988
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
989
			if ( ! is_numeric( $fb_app_id ) ) {
990
				$fb_app_id = '';
991
			}
992
			wp_localize_script(
993
				'jetpack-facebook-embed',
994
				'jpfbembed',
995
				array(
996
					'appid' => $fb_app_id,
997
					'locale' => $this->get_locale(),
998
				)
999
			);
1000
		}
1001
1002
		/**
1003
		 * As jetpack_register_genericons is by default fired off a hook,
1004
		 * the hook may have already fired by this point.
1005
		 * So, let's just trigger it manually.
1006
		 */
1007
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
1008
		jetpack_register_genericons();
1009
1010
		/**
1011
		 * Register the social logos
1012
		 */
1013
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
1014
		jetpack_register_social_logos();
1015
1016
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
1017
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
1018
	}
1019
1020
	/**
1021
	 * Guess locale from language code.
1022
	 *
1023
	 * @param string $lang Language code.
1024
	 * @return string|bool
1025
	 */
1026
	function guess_locale_from_lang( $lang ) {
1027
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
1028
			return 'en_US';
1029
		}
1030
1031
		if ( ! class_exists( 'GP_Locales' ) ) {
1032
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
1033
				return false;
1034
			}
1035
1036
			require JETPACK__GLOTPRESS_LOCALES_PATH;
1037
		}
1038
1039
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
1040
			// WP.com: get_locale() returns 'it'
1041
			$locale = GP_Locales::by_slug( $lang );
1042
		} else {
1043
			// Jetpack: get_locale() returns 'it_IT';
1044
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
1045
		}
1046
1047
		if ( ! $locale ) {
1048
			return false;
1049
		}
1050
1051
		if ( empty( $locale->facebook_locale ) ) {
1052
			if ( empty( $locale->wp_locale ) ) {
1053
				return false;
1054
			} else {
1055
				// Facebook SDK is smart enough to fall back to en_US if a
1056
				// locale isn't supported. Since supported Facebook locales
1057
				// can fall out of sync, we'll attempt to use the known
1058
				// wp_locale value and rely on said fallback.
1059
				return $locale->wp_locale;
1060
			}
1061
		}
1062
1063
		return $locale->facebook_locale;
1064
	}
1065
1066
	/**
1067
	 * Get the locale.
1068
	 *
1069
	 * @return string|bool
1070
	 */
1071
	function get_locale() {
1072
		$locale = $this->guess_locale_from_lang( get_locale() );
1073
1074
		if ( ! $locale ) {
1075
			$locale = 'en_US';
1076
		}
1077
1078
		return $locale;
1079
	}
1080
1081
	/**
1082
	 * Device Pixels support
1083
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
1084
	 */
1085
	function devicepx() {
1086
		if ( Jetpack::is_active() ) {
1087
			wp_enqueue_script( 'devicepx', 'https://s0.wp.com/wp-content/js/devicepx-jetpack.js', array(), gmdate( 'oW' ), true );
1088
		}
1089
	}
1090
1091
	/**
1092
	 * Return the network_site_url so that .com knows what network this site is a part of.
1093
	 * @param  bool $option
1094
	 * @return string
1095
	 */
1096
	public function jetpack_main_network_site_option( $option ) {
1097
		return network_site_url();
1098
	}
1099
	/**
1100
	 * Network Name.
1101
	 */
1102
	static function network_name( $option = null ) {
1103
		global $current_site;
1104
		return $current_site->site_name;
1105
	}
1106
	/**
1107
	 * Does the network allow new user and site registrations.
1108
	 * @return string
1109
	 */
1110
	static function network_allow_new_registrations( $option = null ) {
1111
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
1112
	}
1113
	/**
1114
	 * Does the network allow admins to add new users.
1115
	 * @return boolian
1116
	 */
1117
	static function network_add_new_users( $option = null ) {
1118
		return (bool) get_site_option( 'add_new_users' );
1119
	}
1120
	/**
1121
	 * File upload psace left per site in MB.
1122
	 *  -1 means NO LIMIT.
1123
	 * @return number
1124
	 */
1125
	static function network_site_upload_space( $option = null ) {
1126
		// value in MB
1127
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
1128
	}
1129
1130
	/**
1131
	 * Network allowed file types.
1132
	 * @return string
1133
	 */
1134
	static function network_upload_file_types( $option = null ) {
1135
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1136
	}
1137
1138
	/**
1139
	 * Maximum file upload size set by the network.
1140
	 * @return number
1141
	 */
1142
	static function network_max_upload_file_size( $option = null ) {
1143
		// value in KB
1144
		return get_site_option( 'fileupload_maxk', 300 );
1145
	}
1146
1147
	/**
1148
	 * Lets us know if a site allows admins to manage the network.
1149
	 * @return array
1150
	 */
1151
	static function network_enable_administration_menus( $option = null ) {
1152
		return get_site_option( 'menu_items' );
1153
	}
1154
1155
	/**
1156
	 * If a user has been promoted to or demoted from admin, we need to clear the
1157
	 * jetpack_other_linked_admins transient.
1158
	 *
1159
	 * @since 4.3.2
1160
	 * @since 4.4.0  $old_roles is null by default and if it's not passed, the transient is cleared.
1161
	 *
1162
	 * @param int    $user_id   The user ID whose role changed.
1163
	 * @param string $role      The new role.
1164
	 * @param array  $old_roles An array of the user's previous roles.
1165
	 */
1166
	function maybe_clear_other_linked_admins_transient( $user_id, $role, $old_roles = null ) {
1167
		if ( 'administrator' == $role
1168
			|| ( is_array( $old_roles ) && in_array( 'administrator', $old_roles ) )
1169
			|| is_null( $old_roles )
1170
		) {
1171
			delete_transient( 'jetpack_other_linked_admins' );
1172
		}
1173
	}
1174
1175
	/**
1176
	 * Checks to see if there are any other users available to become primary
1177
	 * Users must both:
1178
	 * - Be linked to wpcom
1179
	 * - Be an admin
1180
	 *
1181
	 * @return mixed False if no other users are linked, Int if there are.
1182
	 */
1183
	static function get_other_linked_admins() {
1184
		$other_linked_users = get_transient( 'jetpack_other_linked_admins' );
1185
1186
		if ( false === $other_linked_users ) {
1187
			$admins = get_users( array( 'role' => 'administrator' ) );
1188
			if ( count( $admins ) > 1 ) {
1189
				$available = array();
1190
				foreach ( $admins as $admin ) {
1191
					if ( Jetpack::is_user_connected( $admin->ID ) ) {
1192
						$available[] = $admin->ID;
1193
					}
1194
				}
1195
1196
				$count_connected_admins = count( $available );
1197
				if ( count( $available ) > 1 ) {
1198
					$other_linked_users = $count_connected_admins;
1199
				} else {
1200
					$other_linked_users = 0;
1201
				}
1202
			} else {
1203
				$other_linked_users = 0;
1204
			}
1205
1206
			set_transient( 'jetpack_other_linked_admins', $other_linked_users, HOUR_IN_SECONDS );
1207
		}
1208
1209
		return ( 0 === $other_linked_users ) ? false : $other_linked_users;
1210
	}
1211
1212
	/**
1213
	 * Return whether we are dealing with a multi network setup or not.
1214
	 * The reason we are type casting this is because we want to avoid the situation where
1215
	 * the result is false since when is_main_network_option return false it cases
1216
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
1217
	 * database which could be set to anything as opposed to what this function returns.
1218
	 * @param  bool  $option
1219
	 *
1220
	 * @return boolean
1221
	 */
1222
	public function is_main_network_option( $option ) {
1223
		// return '1' or ''
1224
		return (string) (bool) Jetpack::is_multi_network();
1225
	}
1226
1227
	/**
1228
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1229
	 *
1230
	 * @param  string  $option
1231
	 * @return boolean
1232
	 */
1233
	public function is_multisite( $option ) {
1234
		return (string) (bool) is_multisite();
1235
	}
1236
1237
	/**
1238
	 * Implemented since there is no core is multi network function
1239
	 * Right now there is no way to tell if we which network is the dominant network on the system
1240
	 *
1241
	 * @since  3.3
1242
	 * @return boolean
1243
	 */
1244
	public static function is_multi_network() {
1245
		global  $wpdb;
1246
1247
		// if we don't have a multi site setup no need to do any more
1248
		if ( ! is_multisite() ) {
1249
			return false;
1250
		}
1251
1252
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
1253
		if ( $num_sites > 1 ) {
1254
			return true;
1255
		} else {
1256
			return false;
1257
		}
1258
	}
1259
1260
	/**
1261
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
1262
	 * @return null
1263
	 */
1264
	function update_jetpack_main_network_site_option() {
1265
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1266
	}
1267
	/**
1268
	 * Triggered after a user updates the network settings via Network Settings Admin Page
1269
	 *
1270
	 */
1271
	function update_jetpack_network_settings() {
1272
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1273
		// Only sync this info for the main network site.
1274
	}
1275
1276
	/**
1277
	 * Get back if the current site is single user site.
1278
	 *
1279
	 * @return bool
1280
	 */
1281
	public static function is_single_user_site() {
1282
		global $wpdb;
1283
1284
		if ( false === ( $some_users = get_transient( 'jetpack_is_single_user' ) ) ) {
1285
			$some_users = $wpdb->get_var( "SELECT COUNT(*) FROM (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities' LIMIT 2) AS someusers" );
1286
			set_transient( 'jetpack_is_single_user', (int) $some_users, 12 * HOUR_IN_SECONDS );
1287
		}
1288
		return 1 === (int) $some_users;
1289
	}
1290
1291
	/**
1292
	 * Returns true if the site has file write access false otherwise.
1293
	 * @return string ( '1' | '0' )
1294
	 **/
1295
	public static function file_system_write_access() {
1296
		if ( ! function_exists( 'get_filesystem_method' ) ) {
1297
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
1298
		}
1299
1300
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1301
1302
		$filesystem_method = get_filesystem_method();
1303
		if ( $filesystem_method === 'direct' ) {
1304
			return 1;
1305
		}
1306
1307
		ob_start();
1308
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1309
		ob_end_clean();
1310
		if ( $filesystem_credentials_are_stored ) {
1311
			return 1;
1312
		}
1313
		return 0;
1314
	}
1315
1316
	/**
1317
	 * Finds out if a site is using a version control system.
1318
	 * @return string ( '1' | '0' )
1319
	 **/
1320
	public static function is_version_controlled() {
1321
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Functions::is_version_controlled' );
1322
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1323
	}
1324
1325
	/**
1326
	 * Determines whether the current theme supports featured images or not.
1327
	 * @return string ( '1' | '0' )
1328
	 */
1329
	public static function featured_images_enabled() {
1330
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1331
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1332
	}
1333
1334
	/**
1335
	 * Wrapper for core's get_avatar_url().  This one is deprecated.
1336
	 *
1337
	 * @deprecated 4.7 use get_avatar_url instead.
1338
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
1339
	 * @param int $size Size of the avatar image
1340
	 * @param string $default URL to a default image to use if no avatar is available
1341
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
1342
	 *
1343
	 * @return array
1344
	 */
1345
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
1346
		_deprecated_function( __METHOD__, 'jetpack-4.7', 'get_avatar_url' );
1347
		return get_avatar_url( $id_or_email, array(
1348
			'size' => $size,
1349
			'default' => $default,
1350
			'force_default' => $force_display,
1351
		) );
1352
	}
1353
1354
	/**
1355
	 * jetpack_updates is saved in the following schema:
1356
	 *
1357
	 * array (
1358
	 *      'plugins'                       => (int) Number of plugin updates available.
1359
	 *      'themes'                        => (int) Number of theme updates available.
1360
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1361
	 *      'translations'                  => (int) Number of translation updates available.
1362
	 *      'total'                         => (int) Total of all available updates.
1363
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1364
	 * )
1365
	 * @return array
1366
	 */
1367
	public static function get_updates() {
1368
		$update_data = wp_get_update_data();
1369
1370
		// Stores the individual update counts as well as the total count.
1371
		if ( isset( $update_data['counts'] ) ) {
1372
			$updates = $update_data['counts'];
1373
		}
1374
1375
		// If we need to update WordPress core, let's find the latest version number.
1376
		if ( ! empty( $updates['wordpress'] ) ) {
1377
			$cur = get_preferred_from_update_core();
1378
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1379
				$updates['wp_update_version'] = $cur->current;
1380
			}
1381
		}
1382
		return isset( $updates ) ? $updates : array();
1383
	}
1384
1385
	public static function get_update_details() {
1386
		$update_details = array(
1387
			'update_core' => get_site_transient( 'update_core' ),
1388
			'update_plugins' => get_site_transient( 'update_plugins' ),
1389
			'update_themes' => get_site_transient( 'update_themes' ),
1390
		);
1391
		return $update_details;
1392
	}
1393
1394
	public static function refresh_update_data() {
1395
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1396
1397
	}
1398
1399
	public static function refresh_theme_data() {
1400
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
1401
	}
1402
1403
	/**
1404
	 * Is Jetpack active?
1405
	 */
1406
	public static function is_active() {
1407
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1408
	}
1409
1410
	/**
1411
	 * Make an API call to WordPress.com for plan status
1412
	 *
1413
	 * @uses Jetpack_Options::get_option()
1414
	 * @uses Jetpack_Client::wpcom_json_api_request_as_blog()
1415
	 * @uses update_option()
1416
	 *
1417
	 * @access public
1418
	 * @static
1419
	 *
1420
	 * @return bool True if plan is updated, false if no update
1421
	 */
1422
	public static function refresh_active_plan_from_wpcom() {
1423
		// Make the API request
1424
		$request = sprintf( '/sites/%d', Jetpack_Options::get_option( 'id' ) );
1425
		$response = Jetpack_Client::wpcom_json_api_request_as_blog( $request, '1.1' );
1426
1427
		// Bail if there was an error or malformed response
1428
		if ( is_wp_error( $response ) || ! is_array( $response ) || ! isset( $response['body'] ) ) {
1429
			return false;
1430
		}
1431
1432
		// Decode the results
1433
		$results = json_decode( $response['body'], true );
1434
1435
		// Bail if there were no results or plan details returned
1436
		if ( ! is_array( $results ) || ! isset( $results['plan'] ) ) {
1437
			return false;
1438
		}
1439
1440
		// Store the option and return true if updated
1441
		return update_option( 'jetpack_active_plan', $results['plan'] );
1442
	}
1443
1444
	/**
1445
	 * Get the plan that this Jetpack site is currently using
1446
	 *
1447
	 * @uses get_option()
1448
	 *
1449
	 * @access public
1450
	 * @static
1451
	 *
1452
	 * @return array Active Jetpack plan details
1453
	 */
1454
	public static function get_active_plan() {
1455
		global $active_plan_cache;
1456
1457
		// this can be expensive to compute so we cache for the duration of a request
1458
		if ( $active_plan_cache ) {
1459
			return $active_plan_cache;
1460
		}
1461
1462
		$plan = get_option( 'jetpack_active_plan', array() );
1463
1464
		// Set the default options
1465
		if ( empty( $plan ) || ( isset( $plan['product_slug'] ) && 'jetpack_free' === $plan['product_slug'] ) ) {
1466
			$plan = wp_parse_args( $plan, array(
1467
				'product_slug' => 'jetpack_free',
1468
				'supports'     => array(),
1469
				'class'        => 'free',
1470
			) );
1471
		}
1472
1473
		$supports = array();
1474
1475
		// Define what paid modules are supported by personal plans
1476
		$personal_plans = array(
1477
			'jetpack_personal',
1478
			'jetpack_personal_monthly',
1479
			'personal-bundle',
1480
		);
1481
1482
		if ( in_array( $plan['product_slug'], $personal_plans ) ) {
1483
			// special support value, not a module but a separate plugin
1484
			$supports[] = 'akismet';
1485
			$plan['class'] = 'personal';
1486
		}
1487
1488
		// Define what paid modules are supported by premium plans
1489
		$premium_plans = array(
1490
			'jetpack_premium',
1491
			'jetpack_premium_monthly',
1492
			'value_bundle',
1493
		);
1494
1495
		if ( in_array( $plan['product_slug'], $premium_plans ) ) {
1496
			$supports[] = 'akismet';
1497
			$supports[] = 'vaultpress';
1498
			$plan['class'] = 'premium';
1499
		}
1500
1501
		// Define what paid modules are supported by professional plans
1502
		$business_plans = array(
1503
			'jetpack_business',
1504
			'jetpack_business_monthly',
1505
			'business-bundle',
1506
			'vip',
1507
		);
1508
1509
		if ( in_array( $plan['product_slug'], $business_plans ) ) {
1510
			$supports[] = 'akismet';
1511
			$supports[] = 'vaultpress';
1512
			$plan['class'] = 'business';
1513
		}
1514
1515
		// get available features
1516
		foreach ( self::get_available_modules() as $module_slug ) {
1517
			$module = self::get_module( $module_slug );
1518
			if ( ! isset( $module ) || ! is_array( $module ) {
0 ignored issues
show
Bug introduced by
Avoid IF statements that are always true or false
Loading history...
1519
				continue;
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_CONTINUE
Loading history...
1520
			}
1521
			if ( in_array( 'free', $module['plan_classes'] ) || in_array( $plan['class'], $module['plan_classes'] ) ) {
1522
				$supports[] = $module_slug;
1523
			}
1524
		}
1525
1526
		$plan['supports'] = $supports;
1527
1528
		$active_plan_cache = $plan;
1529
1530
		return $plan;
1531
	}
1532
1533
	/**
1534
	 * Determine whether the active plan supports a particular feature
1535
	 *
1536
	 * @uses Jetpack::get_active_plan()
1537
	 *
1538
	 * @access public
1539
	 * @static
1540
	 *
1541
	 * @return bool True if plan supports feature, false if not
1542
	 */
1543
	public static function active_plan_supports( $feature ) {
1544
		$plan = Jetpack::get_active_plan();
1545
1546
		if ( in_array( $feature, $plan['supports'] ) ) {
1547
			return true;
1548
		}
1549
1550
		return false;
1551
	}
1552
1553
	/**
1554
	 * Is Jetpack in development (offline) mode?
1555
	 */
1556
	public static function is_development_mode() {
1557
		$development_mode = false;
1558
1559
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1560
			$development_mode = JETPACK_DEV_DEBUG;
1561
		} elseif ( $site_url = site_url() ) {
1562
			$development_mode = false === strpos( $site_url, '.' );
1563
		}
1564
1565
		/**
1566
		 * Filters Jetpack's development mode.
1567
		 *
1568
		 * @see https://jetpack.com/support/development-mode/
1569
		 *
1570
		 * @since 2.2.1
1571
		 *
1572
		 * @param bool $development_mode Is Jetpack's development mode active.
1573
		 */
1574
		return apply_filters( 'jetpack_development_mode', $development_mode );
1575
	}
1576
1577
	/**
1578
	 * Whether the site is currently onboarding or not.
1579
	 * A site is considered as being onboarded if it currently has an onboarding token.
1580
	 *
1581
	 * @since 5.8
1582
	 *
1583
	 * @access public
1584
	 * @static
1585
	 *
1586
	 * @return bool True if the site is currently onboarding, false otherwise
1587
	 */
1588
	public static function is_onboarding() {
1589
		return Jetpack_Options::get_option( 'onboarding' ) !== false;
1590
	}
1591
1592
	/**
1593
	* Get Jetpack development mode notice text and notice class.
1594
	*
1595
	* Mirrors the checks made in Jetpack::is_development_mode
1596
	*
1597
	*/
1598
	public static function show_development_mode_notice() {
1599
		if ( Jetpack::is_development_mode() ) {
1600
			if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1601
				$notice = sprintf(
1602
					/* translators: %s is a URL */
1603
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1604
					'https://jetpack.com/support/development-mode/'
1605
				);
1606
			} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1607
				$notice = sprintf(
1608
					/* translators: %s is a URL */
1609
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1610
					'https://jetpack.com/support/development-mode/'
1611
				);
1612
			} else {
1613
				$notice = sprintf(
1614
					/* translators: %s is a URL */
1615
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1616
					'https://jetpack.com/support/development-mode/'
1617
				);
1618
			}
1619
1620
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1621
		}
1622
1623
		// Throw up a notice if using a development version and as for feedback.
1624
		if ( Jetpack::is_development_version() ) {
1625
			/* translators: %s is a URL */
1626
			$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/' );
1627
1628
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1629
		}
1630
		// Throw up a notice if using staging mode
1631
		if ( Jetpack::is_staging_site() ) {
1632
			/* translators: %s is a URL */
1633
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1634
1635
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1636
		}
1637
	}
1638
1639
	/**
1640
	 * Whether Jetpack's version maps to a public release, or a development version.
1641
	 */
1642
	public static function is_development_version() {
1643
		/**
1644
		 * Allows filtering whether this is a development version of Jetpack.
1645
		 *
1646
		 * This filter is especially useful for tests.
1647
		 *
1648
		 * @since 4.3.0
1649
		 *
1650
		 * @param bool $development_version Is this a develoment version of Jetpack?
1651
		 */
1652
		return (bool) apply_filters(
1653
			'jetpack_development_version',
1654
			! preg_match( '/^\d+(\.\d+)+$/', Jetpack_Constants::get_constant( 'JETPACK__VERSION' ) )
1655
		);
1656
	}
1657
1658
	/**
1659
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1660
	 */
1661
	public static function is_user_connected( $user_id = false ) {
1662
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1663
		if ( ! $user_id ) {
1664
			return false;
1665
		}
1666
1667
		return (bool) Jetpack_Data::get_access_token( $user_id );
1668
	}
1669
1670
	/**
1671
	 * Get the wpcom user data of the current|specified connected user.
1672
	 */
1673
	public static function get_connected_user_data( $user_id = null ) {
1674
		if ( ! $user_id ) {
1675
			$user_id = get_current_user_id();
1676
		}
1677
1678
		$transient_key = "jetpack_connected_user_data_$user_id";
1679
1680
		if ( $cached_user_data = get_transient( $transient_key ) ) {
1681
			return $cached_user_data;
1682
		}
1683
1684
		Jetpack::load_xml_rpc_client();
1685
		$xml = new Jetpack_IXR_Client( array(
1686
			'user_id' => $user_id,
1687
		) );
1688
		$xml->query( 'wpcom.getUser' );
1689
		if ( ! $xml->isError() ) {
1690
			$user_data = $xml->getResponse();
1691
			set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS );
1692
			return $user_data;
1693
		}
1694
1695
		return false;
1696
	}
1697
1698
	/**
1699
	 * Get the wpcom email of the current|specified connected user.
1700
	 */
1701
	public static function get_connected_user_email( $user_id = null ) {
1702
		if ( ! $user_id ) {
1703
			$user_id = get_current_user_id();
1704
		}
1705
		Jetpack::load_xml_rpc_client();
1706
		$xml = new Jetpack_IXR_Client( array(
1707
			'user_id' => $user_id,
1708
		) );
1709
		$xml->query( 'wpcom.getUserEmail' );
1710
		if ( ! $xml->isError() ) {
1711
			return $xml->getResponse();
1712
		}
1713
		return false;
1714
	}
1715
1716
	/**
1717
	 * Get the wpcom email of the master user.
1718
	 */
1719
	public static function get_master_user_email() {
1720
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1721
		if ( $master_user_id ) {
1722
			return self::get_connected_user_email( $master_user_id );
1723
		}
1724
		return '';
1725
	}
1726
1727
	function current_user_is_connection_owner() {
1728
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1729
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1730
	}
1731
1732
	/**
1733
	 * Gets current user IP address.
1734
	 *
1735
	 * @param  bool $check_all_headers Check all headers? Default is `false`.
1736
	 *
1737
	 * @return string                  Current user IP address.
1738
	 */
1739
	public static function current_user_ip( $check_all_headers = false ) {
1740
		if ( $check_all_headers ) {
1741
			foreach ( array(
1742
				'HTTP_CF_CONNECTING_IP',
1743
				'HTTP_CLIENT_IP',
1744
				'HTTP_X_FORWARDED_FOR',
1745
				'HTTP_X_FORWARDED',
1746
				'HTTP_X_CLUSTER_CLIENT_IP',
1747
				'HTTP_FORWARDED_FOR',
1748
				'HTTP_FORWARDED',
1749
				'HTTP_VIA',
1750
			) as $key ) {
1751
				if ( ! empty( $_SERVER[ $key ] ) ) {
1752
					return $_SERVER[ $key ];
1753
				}
1754
			}
1755
		}
1756
1757
		return ! empty( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : '';
1758
	}
1759
1760
	/**
1761
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1762
	 */
1763
	function extra_oembed_providers() {
1764
		// Cloudup: https://dev.cloudup.com/#oembed
1765
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1766
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1767
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1768
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1769
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1770
		wp_oembed_add_provider( '#https?://(www\.)?icloud\.com/keynote/.*#i', 'https://iwmb.icloud.com/iwmb/oembed', true );
1771
	}
1772
1773
	/**
1774
	 * Synchronize connected user role changes
1775
	 */
1776
	function user_role_change( $user_id ) {
1777
		_deprecated_function( __METHOD__, 'jetpack-4.2', 'Jetpack_Sync_Users::user_role_change()' );
1778
		Jetpack_Sync_Users::user_role_change( $user_id );
1779
	}
1780
1781
	/**
1782
	 * Loads the currently active modules.
1783
	 */
1784
	public static function load_modules() {
1785
		if (
1786
			! self::is_active()
1787
			&& ! self::is_development_mode()
1788
			&& ! self::is_onboarding()
1789
			&& (
1790
				! is_multisite()
1791
				|| ! get_site_option( 'jetpack_protect_active' )
1792
			)
1793
		) {
1794
			return;
1795
		}
1796
1797
		$version = Jetpack_Options::get_option( 'version' );
1798
		if ( ! $version ) {
1799
			$version = $old_version = JETPACK__VERSION . ':' . time();
1800
			/** This action is documented in class.jetpack.php */
1801
			do_action( 'updating_jetpack_version', $version, false );
1802
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1803
		}
1804
		list( $version ) = explode( ':', $version );
1805
1806
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1807
1808
		$modules_data = array();
1809
1810
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1811
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1812
			$updated_modules = array();
1813
			foreach ( $modules as $module ) {
1814
				$modules_data[ $module ] = Jetpack::get_module( $module );
1815
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1816
					continue;
1817
				}
1818
1819
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1820
					continue;
1821
				}
1822
1823
				$updated_modules[] = $module;
1824
			}
1825
1826
			$modules = array_diff( $modules, $updated_modules );
1827
		}
1828
1829
		$is_development_mode = Jetpack::is_development_mode();
1830
1831
		foreach ( $modules as $index => $module ) {
1832
			// If we're in dev mode, disable modules requiring a connection
1833
			if ( $is_development_mode ) {
1834
				// Prime the pump if we need to
1835
				if ( empty( $modules_data[ $module ] ) ) {
1836
					$modules_data[ $module ] = Jetpack::get_module( $module );
1837
				}
1838
				// If the module requires a connection, but we're in local mode, don't include it.
1839
				if ( $modules_data[ $module ]['requires_connection'] ) {
1840
					continue;
1841
				}
1842
			}
1843
1844
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1845
				continue;
1846
			}
1847
1848
			if ( ! include_once( Jetpack::get_module_path( $module ) ) ) {
1849
				unset( $modules[ $index ] );
1850
				self::update_active_modules( array_values( $modules ) );
1851
				continue;
1852
			}
1853
1854
			/**
1855
			 * Fires when a specific module is loaded.
1856
			 * The dynamic part of the hook, $module, is the module slug.
1857
			 *
1858
			 * @since 1.1.0
1859
			 */
1860
			do_action( 'jetpack_module_loaded_' . $module );
1861
		}
1862
1863
		/**
1864
		 * Fires when all the modules are loaded.
1865
		 *
1866
		 * @since 1.1.0
1867
		 */
1868
		do_action( 'jetpack_modules_loaded' );
1869
1870
		// 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.
1871
		require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1872
	}
1873
1874
	/**
1875
	 * Check if Jetpack's REST API compat file should be included
1876
	 * @action plugins_loaded
1877
	 * @return null
1878
	 */
1879
	public function check_rest_api_compat() {
1880
		/**
1881
		 * Filters the list of REST API compat files to be included.
1882
		 *
1883
		 * @since 2.2.5
1884
		 *
1885
		 * @param array $args Array of REST API compat files to include.
1886
		 */
1887
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1888
1889
		if ( function_exists( 'bbpress' ) )
1890
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1891
1892
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1893
			require_once $_jetpack_rest_api_compat_include;
1894
	}
1895
1896
	/**
1897
	 * Gets all plugins currently active in values, regardless of whether they're
1898
	 * traditionally activated or network activated.
1899
	 *
1900
	 * @todo Store the result in core's object cache maybe?
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

This check looks TODO comments that have been left in the code.

``TODO``s show that something is left unfinished and should be attended to.

Loading history...
1901
	 */
1902
	public static function get_active_plugins() {
1903
		$active_plugins = (array) get_option( 'active_plugins', array() );
1904
1905
		if ( is_multisite() ) {
1906
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1907
			// whereas active_plugins stores them in the values.
1908
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1909
			if ( $network_plugins ) {
1910
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1911
			}
1912
		}
1913
1914
		sort( $active_plugins );
1915
1916
		return array_unique( $active_plugins );
1917
	}
1918
1919
	/**
1920
	 * Gets and parses additional plugin data to send with the heartbeat data
1921
	 *
1922
	 * @since 3.8.1
1923
	 *
1924
	 * @return array Array of plugin data
1925
	 */
1926
	public static function get_parsed_plugin_data() {
1927
		if ( ! function_exists( 'get_plugins' ) ) {
1928
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1929
		}
1930
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1931
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1932
		$active_plugins = Jetpack::get_active_plugins();
1933
1934
		$plugins = array();
1935
		foreach ( $all_plugins as $path => $plugin_data ) {
1936
			$plugins[ $path ] = array(
1937
					'is_active' => in_array( $path, $active_plugins ),
1938
					'file'      => $path,
1939
					'name'      => $plugin_data['Name'],
1940
					'version'   => $plugin_data['Version'],
1941
					'author'    => $plugin_data['Author'],
1942
			);
1943
		}
1944
1945
		return $plugins;
1946
	}
1947
1948
	/**
1949
	 * Gets and parses theme data to send with the heartbeat data
1950
	 *
1951
	 * @since 3.8.1
1952
	 *
1953
	 * @return array Array of theme data
1954
	 */
1955
	public static function get_parsed_theme_data() {
1956
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1957
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1958
1959
		$themes = array();
1960
		foreach ( $all_themes as $slug => $theme_data ) {
1961
			$theme_headers = array();
1962
			foreach ( $header_keys as $header_key ) {
1963
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
1964
			}
1965
1966
			$themes[ $slug ] = array(
1967
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
1968
					'slug' => $slug,
1969
					'theme_root' => $theme_data->get_theme_root_uri(),
1970
					'parent' => $theme_data->parent(),
1971
					'headers' => $theme_headers
1972
			);
1973
		}
1974
1975
		return $themes;
1976
	}
1977
1978
	/**
1979
	 * Checks whether a specific plugin is active.
1980
	 *
1981
	 * We don't want to store these in a static variable, in case
1982
	 * there are switch_to_blog() calls involved.
1983
	 */
1984
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
1985
		return in_array( $plugin, self::get_active_plugins() );
1986
	}
1987
1988
	/**
1989
	 * Check if Jetpack's Open Graph tags should be used.
1990
	 * If certain plugins are active, Jetpack's og tags are suppressed.
1991
	 *
1992
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1993
	 * @action plugins_loaded
1994
	 * @return null
1995
	 */
1996
	public function check_open_graph() {
1997
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
1998
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
1999
		}
2000
2001
		$active_plugins = self::get_active_plugins();
2002
2003
		if ( ! empty( $active_plugins ) ) {
2004
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
2005
				if ( in_array( $plugin, $active_plugins ) ) {
2006
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
2007
					break;
2008
				}
2009
			}
2010
		}
2011
2012
		/**
2013
		 * Allow the addition of Open Graph Meta Tags to all pages.
2014
		 *
2015
		 * @since 2.0.3
2016
		 *
2017
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
2018
		 */
2019
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
2020
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
2021
		}
2022
	}
2023
2024
	/**
2025
	 * Check if Jetpack's Twitter tags should be used.
2026
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
2027
	 *
2028
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
2029
	 * @action plugins_loaded
2030
	 * @return null
2031
	 */
2032
	public function check_twitter_tags() {
2033
2034
		$active_plugins = self::get_active_plugins();
2035
2036
		if ( ! empty( $active_plugins ) ) {
2037
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
2038
				if ( in_array( $plugin, $active_plugins ) ) {
2039
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
2040
					break;
2041
				}
2042
			}
2043
		}
2044
2045
		/**
2046
		 * Allow Twitter Card Meta tags to be disabled.
2047
		 *
2048
		 * @since 2.6.0
2049
		 *
2050
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
2051
		 */
2052
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
2053
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
2054
		}
2055
	}
2056
2057
	/**
2058
	 * Allows plugins to submit security reports.
2059
 	 *
2060
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
2061
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
2062
	 * @param array   $args         See definitions above
2063
	 */
2064
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
2065
		_deprecated_function( __FUNCTION__, 'jetpack-4.2', null );
2066
	}
2067
2068
/* Jetpack Options API */
2069
2070
	public static function get_option_names( $type = 'compact' ) {
2071
		return Jetpack_Options::get_option_names( $type );
2072
	}
2073
2074
	/**
2075
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
2076
 	 *
2077
	 * @param string $name    Option name
2078
	 * @param mixed  $default (optional)
2079
	 */
2080
	public static function get_option( $name, $default = false ) {
2081
		return Jetpack_Options::get_option( $name, $default );
2082
	}
2083
2084
	/**
2085
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
2086
 	 *
2087
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
2088
	 * @param string $name  Option name
2089
	 * @param mixed  $value Option value
2090
	 */
2091
	public static function update_option( $name, $value ) {
2092
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
2093
		return Jetpack_Options::update_option( $name, $value );
2094
	}
2095
2096
	/**
2097
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
2098
 	 *
2099
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
2100
	 * @param array $array array( option name => option value, ... )
2101
	 */
2102
	public static function update_options( $array ) {
2103
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
2104
		return Jetpack_Options::update_options( $array );
2105
	}
2106
2107
	/**
2108
	 * Deletes the given option.  May be passed multiple option names as an array.
2109
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
2110
	 *
2111
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
2112
	 * @param string|array $names
2113
	 */
2114
	public static function delete_option( $names ) {
2115
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
2116
		return Jetpack_Options::delete_option( $names );
2117
	}
2118
2119
	/**
2120
	 * Enters a user token into the user_tokens option
2121
	 *
2122
	 * @param int $user_id
2123
	 * @param string $token
2124
	 * return bool
2125
	 */
2126
	public static function update_user_token( $user_id, $token, $is_master_user ) {
2127
		// not designed for concurrent updates
2128
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
2129
		if ( ! is_array( $user_tokens ) )
2130
			$user_tokens = array();
2131
		$user_tokens[$user_id] = $token;
2132
		if ( $is_master_user ) {
2133
			$master_user = $user_id;
2134
			$options     = compact( 'user_tokens', 'master_user' );
2135
		} else {
2136
			$options = compact( 'user_tokens' );
2137
		}
2138
		return Jetpack_Options::update_options( $options );
2139
	}
2140
2141
	/**
2142
	 * Returns an array of all PHP files in the specified absolute path.
2143
	 * Equivalent to glob( "$absolute_path/*.php" ).
2144
	 *
2145
	 * @param string $absolute_path The absolute path of the directory to search.
2146
	 * @return array Array of absolute paths to the PHP files.
2147
	 */
2148
	public static function glob_php( $absolute_path ) {
2149
		if ( function_exists( 'glob' ) ) {
2150
			return glob( "$absolute_path/*.php" );
2151
		}
2152
2153
		$absolute_path = untrailingslashit( $absolute_path );
2154
		$files = array();
2155
		if ( ! $dir = @opendir( $absolute_path ) ) {
2156
			return $files;
2157
		}
2158
2159
		while ( false !== $file = readdir( $dir ) ) {
2160
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
2161
				continue;
2162
			}
2163
2164
			$file = "$absolute_path/$file";
2165
2166
			if ( ! is_file( $file ) ) {
2167
				continue;
2168
			}
2169
2170
			$files[] = $file;
2171
		}
2172
2173
		closedir( $dir );
2174
2175
		return $files;
2176
	}
2177
2178
	public static function activate_new_modules( $redirect = false ) {
2179
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
2180
			return;
2181
		}
2182
2183
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
2184
		if ( ! $jetpack_old_version ) {
2185
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
2186
			/** This action is documented in class.jetpack.php */
2187
			do_action( 'updating_jetpack_version', $version, false );
2188
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2189
		}
2190
2191
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
2192
2193
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
2194
			return;
2195
		}
2196
2197
		$active_modules     = Jetpack::get_active_modules();
2198
		$reactivate_modules = array();
2199
		foreach ( $active_modules as $active_module ) {
2200
			$module = Jetpack::get_module( $active_module );
2201
			if ( ! isset( $module['changed'] ) ) {
2202
				continue;
2203
			}
2204
2205
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
2206
				continue;
2207
			}
2208
2209
			$reactivate_modules[] = $active_module;
2210
			Jetpack::deactivate_module( $active_module );
2211
		}
2212
2213
		$new_version = JETPACK__VERSION . ':' . time();
2214
		/** This action is documented in class.jetpack.php */
2215
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
2216
		Jetpack_Options::update_options(
2217
			array(
2218
				'version'     => $new_version,
2219
				'old_version' => $jetpack_old_version,
2220
			)
2221
		);
2222
2223
		Jetpack::state( 'message', 'modules_activated' );
2224
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
2225
2226
		if ( $redirect ) {
2227
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
2228
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
2229
				$page = $_GET['page'];
2230
			}
2231
2232
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
2233
			exit;
2234
		}
2235
	}
2236
2237
	/**
2238
	 * List available Jetpack modules. Simply lists .php files in /modules/.
2239
	 * Make sure to tuck away module "library" files in a sub-directory.
2240
	 */
2241
	public static function get_available_modules( $min_version = false, $max_version = false ) {
2242
		static $modules = null;
2243
2244
		if ( ! isset( $modules ) ) {
2245
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
2246
			// Use the cache if we're on the front-end and it's available...
2247
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
2248
				$modules = $available_modules_option[ JETPACK__VERSION ];
2249
			} else {
2250
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
2251
2252
				$modules = array();
2253
2254
				foreach ( $files as $file ) {
2255
					if ( ! $headers = Jetpack::get_module( $file ) ) {
2256
						continue;
2257
					}
2258
2259
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
2260
				}
2261
2262
				Jetpack_Options::update_option( 'available_modules', array(
2263
					JETPACK__VERSION => $modules,
2264
				) );
2265
			}
2266
		}
2267
2268
		/**
2269
		 * Filters the array of modules available to be activated.
2270
		 *
2271
		 * @since 2.4.0
2272
		 *
2273
		 * @param array $modules Array of available modules.
2274
		 * @param string $min_version Minimum version number required to use modules.
2275
		 * @param string $max_version Maximum version number required to use modules.
2276
		 */
2277
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
2278
2279
		if ( ! $min_version && ! $max_version ) {
2280
			return array_keys( $mods );
2281
		}
2282
2283
		$r = array();
2284
		foreach ( $mods as $slug => $introduced ) {
2285
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
2286
				continue;
2287
			}
2288
2289
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
2290
				continue;
2291
			}
2292
2293
			$r[] = $slug;
2294
		}
2295
2296
		return $r;
2297
	}
2298
2299
	/**
2300
	 * Default modules loaded on activation.
2301
	 */
2302
	public static function get_default_modules( $min_version = false, $max_version = false ) {
2303
		$return = array();
2304
2305
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
2306
			$module_data = Jetpack::get_module( $module );
2307
2308
			switch ( strtolower( $module_data['auto_activate'] ) ) {
2309
				case 'yes' :
2310
					$return[] = $module;
2311
					break;
2312
				case 'public' :
2313
					if ( Jetpack_Options::get_option( 'public' ) ) {
2314
						$return[] = $module;
2315
					}
2316
					break;
2317
				case 'no' :
2318
				default :
0 ignored issues
show
Coding Style introduced by
There must be no space before the colon in a DEFAULT statement

As per the PSR-2 coding standard, there must not be a space in front of the colon in the default statement.

switch ($expr) {
    default : //wrong
        doSomething();
        break;
}

switch ($expr) {
    default: //right
        doSomething();
        break;
}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
2319
					break;
2320
			}
2321
		}
2322
		/**
2323
		 * Filters the array of default modules.
2324
		 *
2325
		 * @since 2.5.0
2326
		 *
2327
		 * @param array $return Array of default modules.
2328
		 * @param string $min_version Minimum version number required to use modules.
2329
		 * @param string $max_version Maximum version number required to use modules.
2330
		 */
2331
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
2332
	}
2333
2334
	/**
2335
	 * Checks activated modules during auto-activation to determine
2336
	 * if any of those modules are being deprecated.  If so, close
2337
	 * them out, and add any replacement modules.
2338
	 *
2339
	 * Runs at priority 99 by default.
2340
	 *
2341
	 * This is run late, so that it can still activate a module if
2342
	 * the new module is a replacement for another that the user
2343
	 * currently has active, even if something at the normal priority
2344
	 * would kibosh everything.
2345
	 *
2346
	 * @since 2.6
2347
	 * @uses jetpack_get_default_modules filter
2348
	 * @param array $modules
2349
	 * @return array
2350
	 */
2351
	function handle_deprecated_modules( $modules ) {
2352
		$deprecated_modules = array(
2353
			'debug'            => null,  // Closed out and moved to ./class.jetpack-debugger.php
2354
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2355
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
2356
		);
2357
2358
		// Don't activate SSO if they never completed activating WPCC.
2359
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
2360
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
2361
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
2362
				$deprecated_modules['wpcc'] = null;
2363
			}
2364
		}
2365
2366
		foreach ( $deprecated_modules as $module => $replacement ) {
2367
			if ( Jetpack::is_module_active( $module ) ) {
2368
				self::deactivate_module( $module );
2369
				if ( $replacement ) {
2370
					$modules[] = $replacement;
2371
				}
2372
			}
2373
		}
2374
2375
		return array_unique( $modules );
2376
	}
2377
2378
	/**
2379
	 * Checks activated plugins during auto-activation to determine
2380
	 * if any of those plugins are in the list with a corresponding module
2381
	 * that is not compatible with the plugin. The module will not be allowed
2382
	 * to auto-activate.
2383
	 *
2384
	 * @since 2.6
2385
	 * @uses jetpack_get_default_modules filter
2386
	 * @param array $modules
2387
	 * @return array
2388
	 */
2389
	function filter_default_modules( $modules ) {
2390
2391
		$active_plugins = self::get_active_plugins();
2392
2393
		if ( ! empty( $active_plugins ) ) {
2394
2395
			// For each module we'd like to auto-activate...
2396
			foreach ( $modules as $key => $module ) {
2397
				// If there are potential conflicts for it...
2398
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
2399
					// For each potential conflict...
2400
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
2401
						// If that conflicting plugin is active...
2402
						if ( in_array( $plugin, $active_plugins ) ) {
2403
							// Remove that item from being auto-activated.
2404
							unset( $modules[ $key ] );
2405
						}
2406
					}
2407
				}
2408
			}
2409
		}
2410
2411
		return $modules;
2412
	}
2413
2414
	/**
2415
	 * Extract a module's slug from its full path.
2416
	 */
2417
	public static function get_module_slug( $file ) {
2418
		return str_replace( '.php', '', basename( $file ) );
2419
	}
2420
2421
	/**
2422
	 * Generate a module's path from its slug.
2423
	 */
2424
	public static function get_module_path( $slug ) {
2425
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
2426
	}
2427
2428
	/**
2429
	 * Load module data from module file. Headers differ from WordPress
2430
	 * plugin headers to avoid them being identified as standalone
2431
	 * plugins on the WordPress plugins page.
2432
	 */
2433
	public static function get_module( $module ) {
2434
		$headers = array(
2435
			'name'                      => 'Module Name',
2436
			'description'               => 'Module Description',
2437
			'jumpstart_desc'            => 'Jumpstart Description',
2438
			'sort'                      => 'Sort Order',
2439
			'recommendation_order'      => 'Recommendation Order',
2440
			'introduced'                => 'First Introduced',
2441
			'changed'                   => 'Major Changes In',
2442
			'deactivate'                => 'Deactivate',
2443
			'free'                      => 'Free',
2444
			'requires_connection'       => 'Requires Connection',
2445
			'auto_activate'             => 'Auto Activate',
2446
			'module_tags'               => 'Module Tags',
2447
			'feature'                   => 'Feature',
2448
			'additional_search_queries' => 'Additional Search Queries',
2449
			'plan_classes'              => 'Plans',
2450
		);
2451
2452
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
2453
2454
		$mod = Jetpack::get_file_data( $file, $headers );
2455
		if ( empty( $mod['name'] ) ) {
2456
			return false;
2457
		}
2458
2459
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
2460
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
2461
		$mod['deactivate']              = empty( $mod['deactivate'] );
2462
		$mod['free']                    = empty( $mod['free'] );
2463
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
2464
2465
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
2466
			$mod['auto_activate'] = 'No';
2467
		} else {
2468
			$mod['auto_activate'] = (string) $mod['auto_activate'];
2469
		}
2470
2471
		if ( $mod['module_tags'] ) {
2472
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
2473
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
2474
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
2475
		} else {
2476
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2477
		}
2478
2479
		if ( $mod['plan_classes'] ) {
2480
			$mod['plan_classes'] = explode( ',', $mod['plan_classes'] );
2481
			$mod['plan_classes'] = array_map( 'strtolower', array_map( 'trim', $mod['plan_classes'] ) );
2482
		} else {
2483
			$mod['plan_classes'] = array( 'free' );
2484
		}
2485
2486
		if ( $mod['feature'] ) {
2487
			$mod['feature'] = explode( ',', $mod['feature'] );
2488
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2489
		} else {
2490
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2491
		}
2492
2493
		/**
2494
		 * Filters the feature array on a module.
2495
		 *
2496
		 * This filter allows you to control where each module is filtered: Recommended,
2497
		 * Jumpstart, and the default "Other" listing.
2498
		 *
2499
		 * @since 3.5.0
2500
		 *
2501
		 * @param array   $mod['feature'] The areas to feature this module:
2502
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2503
		 *     'Recommended' shows on the main Jetpack admin screen.
2504
		 *     'Other' should be the default if no other value is in the array.
2505
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2506
		 * @param array   $mod All the currently assembled module data.
2507
		 */
2508
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2509
2510
		/**
2511
		 * Filter the returned data about a module.
2512
		 *
2513
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2514
		 * so please be careful.
2515
		 *
2516
		 * @since 3.6.0
2517
		 *
2518
		 * @param array   $mod    The details of the requested module.
2519
		 * @param string  $module The slug of the module, e.g. sharedaddy
2520
		 * @param string  $file   The path to the module source file.
2521
		 */
2522
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2523
	}
2524
2525
	/**
2526
	 * Like core's get_file_data implementation, but caches the result.
2527
	 */
2528
	public static function get_file_data( $file, $headers ) {
2529
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2530
		$file_name = basename( $file );
2531
2532
		$cache_key = 'jetpack_file_data_' . JETPACK__VERSION;
2533
2534
		$file_data_option = get_transient( $cache_key );
2535
2536
		if ( false === $file_data_option ) {
2537
			$file_data_option = array();
2538
		}
2539
2540
		$key           = md5( $file_name . serialize( $headers ) );
2541
		$refresh_cache = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2542
2543
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2544
		if ( ! $refresh_cache && isset( $file_data_option[ $key ] ) ) {
2545
			return $file_data_option[ $key ];
2546
		}
2547
2548
		$data = get_file_data( $file, $headers );
2549
2550
		$file_data_option[ $key ] = $data;
2551
2552
		set_transient( $cache_key, $file_data_option, 29 * DAY_IN_SECONDS );
2553
2554
		return $data;
2555
	}
2556
2557
2558
	/**
2559
	 * Return translated module tag.
2560
	 *
2561
	 * @param string $tag Tag as it appears in each module heading.
2562
	 *
2563
	 * @return mixed
2564
	 */
2565
	public static function translate_module_tag( $tag ) {
2566
		return jetpack_get_module_i18n_tag( $tag );
2567
	}
2568
2569
	/**
2570
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2571
	 *
2572
	 * @since 3.9.2
2573
	 *
2574
	 * @param array $modules
2575
	 *
2576
	 * @return string|void
2577
	 */
2578
	public static function get_translated_modules( $modules ) {
2579
		foreach ( $modules as $index => $module ) {
2580
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2581
			if ( isset( $module['name'] ) ) {
2582
				$modules[ $index ]['name'] = $i18n_module['name'];
2583
			}
2584
			if ( isset( $module['description'] ) ) {
2585
				$modules[ $index ]['description'] = $i18n_module['description'];
2586
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2587
			}
2588
		}
2589
		return $modules;
2590
	}
2591
2592
	/**
2593
	 * Get a list of activated modules as an array of module slugs.
2594
	 */
2595
	public static function get_active_modules() {
2596
		$active = Jetpack_Options::get_option( 'active_modules' );
2597
2598
		if ( ! is_array( $active ) ) {
2599
			$active = array();
2600
		}
2601
2602
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2603
			$active[] = 'vaultpress';
2604
		} else {
2605
			$active = array_diff( $active, array( 'vaultpress' ) );
2606
		}
2607
2608
		//If protect is active on the main site of a multisite, it should be active on all sites.
2609
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2610
			$active[] = 'protect';
2611
		}
2612
2613
		/**
2614
		 * Allow filtering of the active modules.
2615
		 *
2616
		 * Gives theme and plugin developers the power to alter the modules that
2617
		 * are activated on the fly.
2618
		 *
2619
		 * @since 5.8.0
2620
		 *
2621
		 * @param array $active Array of active module slugs.
2622
		 */
2623
		$active = apply_filters( 'jetpack_active_modules', $active );
2624
2625
		return array_unique( $active );
2626
	}
2627
2628
	/**
2629
	 * Check whether or not a Jetpack module is active.
2630
	 *
2631
	 * @param string $module The slug of a Jetpack module.
2632
	 * @return bool
2633
	 *
2634
	 * @static
2635
	 */
2636
	public static function is_module_active( $module ) {
2637
		return in_array( $module, self::get_active_modules() );
2638
	}
2639
2640
	public static function is_module( $module ) {
2641
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2642
	}
2643
2644
	/**
2645
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2646
	 *
2647
	 * @param bool $catch True to start catching, False to stop.
2648
	 *
2649
	 * @static
2650
	 */
2651
	public static function catch_errors( $catch ) {
2652
		static $display_errors, $error_reporting;
2653
2654
		if ( $catch ) {
2655
			$display_errors  = @ini_set( 'display_errors', 1 );
2656
			$error_reporting = @error_reporting( E_ALL );
2657
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2658
		} else {
2659
			@ini_set( 'display_errors', $display_errors );
2660
			@error_reporting( $error_reporting );
2661
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2662
		}
2663
	}
2664
2665
	/**
2666
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2667
	 */
2668
	public static function catch_errors_on_shutdown() {
2669
		Jetpack::state( 'php_errors', self::alias_directories( ob_get_clean() ) );
2670
	}
2671
2672
	/**
2673
	 * Rewrite any string to make paths easier to read.
2674
	 *
2675
	 * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR
2676
	 * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR.
2677
	 *
2678
	 * @param $string
2679
	 * @return mixed
2680
	 */
2681
	public static function alias_directories( $string ) {
2682
		// ABSPATH has a trailing slash.
2683
		$string = str_replace( ABSPATH, 'ABSPATH/', $string );
2684
		// WP_CONTENT_DIR does not have a trailing slash.
2685
		$string = str_replace( WP_CONTENT_DIR, 'WP_CONTENT_DIR', $string );
2686
2687
		return $string;
2688
	}
2689
2690
	public static function activate_default_modules(
2691
		$min_version = false,
2692
		$max_version = false,
2693
		$other_modules = array(),
2694
		$redirect = true,
2695
		$send_state_messages = true
2696
	) {
2697
		$jetpack = Jetpack::init();
2698
2699
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2700
		$modules = array_merge( $other_modules, $modules );
2701
2702
		// Look for standalone plugins and disable if active.
2703
2704
		$to_deactivate = array();
2705
		foreach ( $modules as $module ) {
2706
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2707
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2708
			}
2709
		}
2710
2711
		$deactivated = array();
2712
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2713
			list( $probable_file, $probable_title ) = $deactivate_me;
2714
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2715
				$deactivated[] = $module;
2716
			}
2717
		}
2718
2719
		if ( $deactivated && $redirect ) {
2720
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2721
2722
			$url = add_query_arg(
2723
				array(
2724
					'action'   => 'activate_default_modules',
2725
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2726
				),
2727
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2728
			);
2729
			wp_safe_redirect( $url );
2730
			exit;
2731
		}
2732
2733
		/**
2734
		 * Fires before default modules are activated.
2735
		 *
2736
		 * @since 1.9.0
2737
		 *
2738
		 * @param string $min_version Minimum version number required to use modules.
2739
		 * @param string $max_version Maximum version number required to use modules.
2740
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2741
		 */
2742
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2743
2744
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2745
		Jetpack::restate();
2746
		Jetpack::catch_errors( true );
2747
2748
		$active = Jetpack::get_active_modules();
2749
2750
		foreach ( $modules as $module ) {
2751
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2752
				$active[] = $module;
2753
				self::update_active_modules( $active );
2754
				continue;
2755
			}
2756
2757
			if ( $send_state_messages && in_array( $module, $active ) ) {
2758
				$module_info = Jetpack::get_module( $module );
2759
				if ( ! $module_info['deactivate'] ) {
2760
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2761
					if ( $active_state = Jetpack::state( $state ) ) {
2762
						$active_state = explode( ',', $active_state );
2763
					} else {
2764
						$active_state = array();
2765
					}
2766
					$active_state[] = $module;
2767
					Jetpack::state( $state, implode( ',', $active_state ) );
2768
				}
2769
				continue;
2770
			}
2771
2772
			$file = Jetpack::get_module_path( $module );
2773
			if ( ! file_exists( $file ) ) {
2774
				continue;
2775
			}
2776
2777
			// we'll override this later if the plugin can be included without fatal error
2778
			if ( $redirect ) {
2779
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2780
			}
2781
2782
			if ( $send_state_messages ) {
2783
				Jetpack::state( 'error', 'module_activation_failed' );
2784
				Jetpack::state( 'module', $module );
2785
			}
2786
2787
			ob_start();
2788
			require $file;
2789
2790
			$active[] = $module;
2791
2792
			if ( $send_state_messages ) {
2793
2794
				$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
0 ignored issues
show
Coding Style introduced by
Equals sign not aligned correctly; expected 1 space but found 4 spaces

This check looks for improperly formatted assignments.

Every assignment must have exactly one space before and one space after the equals operator.

To illustrate:

$a = "a";
$ab = "ab";
$abc = "abc";

will have no issues, while

$a   = "a";
$ab  = "ab";
$abc = "abc";

will report issues in lines 1 and 2.

Loading history...
2795
				if ( $active_state = Jetpack::state( $state ) ) {
2796
					$active_state = explode( ',', $active_state );
2797
				} else {
2798
					$active_state = array();
2799
				}
2800
				$active_state[] = $module;
2801
				Jetpack::state( $state, implode( ',', $active_state ) );
2802
			}
2803
2804
			Jetpack::update_active_modules( $active );
2805
2806
			ob_end_clean();
2807
		}
2808
2809
		if ( $send_state_messages ) {
2810
			Jetpack::state( 'error', false );
2811
			Jetpack::state( 'module', false );
2812
		}
2813
2814
		Jetpack::catch_errors( false );
2815
		/**
2816
		 * Fires when default modules are activated.
2817
		 *
2818
		 * @since 1.9.0
2819
		 *
2820
		 * @param string $min_version Minimum version number required to use modules.
2821
		 * @param string $max_version Maximum version number required to use modules.
2822
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2823
		 */
2824
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2825
	}
2826
2827
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2828
		/**
2829
		 * Fires before a module is activated.
2830
		 *
2831
		 * @since 2.6.0
2832
		 *
2833
		 * @param string $module Module slug.
2834
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2835
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2836
		 */
2837
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2838
2839
		$jetpack = Jetpack::init();
2840
2841
		if ( ! strlen( $module ) )
2842
			return false;
2843
2844
		if ( ! Jetpack::is_module( $module ) )
2845
			return false;
2846
2847
		// If it's already active, then don't do it again
2848
		$active = Jetpack::get_active_modules();
2849
		foreach ( $active as $act ) {
2850
			if ( $act == $module )
2851
				return true;
2852
		}
2853
2854
		$module_data = Jetpack::get_module( $module );
2855
2856
		if ( ! Jetpack::is_active() ) {
2857
			if ( ! Jetpack::is_development_mode() && ! Jetpack::is_onboarding() )
2858
				return false;
2859
2860
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2861
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2862
				return false;
2863
		}
2864
2865
		// Check and see if the old plugin is active
2866
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2867
			// Deactivate the old plugin
2868
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2869
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2870
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2871
				Jetpack::state( 'deactivated_plugins', $module );
2872
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2873
				exit;
2874
			}
2875
		}
2876
2877
		// Protect won't work with mis-configured IPs
2878
		if ( 'protect' === $module ) {
2879
			include_once JETPACK__PLUGIN_DIR . 'modules/protect/shared-functions.php';
2880
			if ( ! jetpack_protect_get_ip() ) {
2881
				Jetpack::state( 'message', 'protect_misconfigured_ip' );
2882
				return false;
2883
			}
2884
		}
2885
2886
		$plan = Jetpack::get_active_plan();
2887
2888
		if ( ! in_array( $module, $plan['supports'] ) ) {
2889
			return false;
2890
		}
2891
2892
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2893
		Jetpack::state( 'module', $module );
2894
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2895
2896
		Jetpack::catch_errors( true );
2897
		ob_start();
2898
		require Jetpack::get_module_path( $module );
2899
		/** This action is documented in class.jetpack.php */
2900
		do_action( 'jetpack_activate_module', $module );
2901
		$active[] = $module;
2902
		Jetpack::update_active_modules( $active );
2903
2904
		Jetpack::state( 'error', false ); // the override
2905
		ob_end_clean();
2906
		Jetpack::catch_errors( false );
2907
2908
		// A flag for Jump Start so it's not shown again. Only set if it hasn't been yet.
2909
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2910
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2911
2912
			//Jump start is being dismissed send data to MC Stats
2913
			$jetpack->stat( 'jumpstart', 'manual,'.$module );
2914
2915
			$jetpack->do_stats( 'server_side' );
2916
		}
2917
2918
		if ( $redirect ) {
2919
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2920
		}
2921
		if ( $exit ) {
2922
			exit;
2923
		}
2924
		return true;
2925
	}
2926
2927
	function activate_module_actions( $module ) {
2928
		_deprecated_function( __METHOD__, 'jetpack-4.2' );
2929
	}
2930
2931
	public static function deactivate_module( $module ) {
2932
		/**
2933
		 * Fires when a module is deactivated.
2934
		 *
2935
		 * @since 1.9.0
2936
		 *
2937
		 * @param string $module Module slug.
2938
		 */
2939
		do_action( 'jetpack_pre_deactivate_module', $module );
2940
2941
		$jetpack = Jetpack::init();
2942
2943
		$active = Jetpack::get_active_modules();
2944
		$new    = array_filter( array_diff( $active, (array) $module ) );
2945
2946
		// A flag for Jump Start so it's not shown again.
2947
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2948
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2949
2950
			//Jump start is being dismissed send data to MC Stats
2951
			$jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module );
2952
2953
			$jetpack->do_stats( 'server_side' );
2954
		}
2955
2956
		return self::update_active_modules( $new );
2957
	}
2958
2959
	public static function enable_module_configurable( $module ) {
2960
		$module = Jetpack::get_module_slug( $module );
2961
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
2962
	}
2963
2964
	public static function module_configuration_url( $module ) {
2965
		$module = Jetpack::get_module_slug( $module );
2966
		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2967
	}
2968
2969
	public static function module_configuration_load( $module, $method ) {
2970
		$module = Jetpack::get_module_slug( $module );
2971
		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2972
	}
2973
2974
	public static function module_configuration_head( $module, $method ) {
2975
		$module = Jetpack::get_module_slug( $module );
2976
		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2977
	}
2978
2979
	public static function module_configuration_screen( $module, $method ) {
2980
		$module = Jetpack::get_module_slug( $module );
2981
		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2982
	}
2983
2984
	public static function module_configuration_activation_screen( $module, $method ) {
2985
		$module = Jetpack::get_module_slug( $module );
2986
		add_action( 'display_activate_module_setting_' . $module, $method );
2987
	}
2988
2989
/* Installation */
2990
2991
	public static function bail_on_activation( $message, $deactivate = true ) {
2992
?>
2993
<!doctype html>
2994
<html>
2995
<head>
2996
<meta charset="<?php bloginfo( 'charset' ); ?>">
2997
<style>
2998
* {
2999
	text-align: center;
3000
	margin: 0;
3001
	padding: 0;
3002
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
3003
}
3004
p {
3005
	margin-top: 1em;
3006
	font-size: 18px;
3007
}
3008
</style>
3009
<body>
3010
<p><?php echo esc_html( $message ); ?></p>
3011
</body>
3012
</html>
3013
<?php
3014
		if ( $deactivate ) {
3015
			$plugins = get_option( 'active_plugins' );
3016
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
3017
			$update  = false;
3018
			foreach ( $plugins as $i => $plugin ) {
3019
				if ( $plugin === $jetpack ) {
3020
					$plugins[$i] = false;
3021
					$update = true;
3022
				}
3023
			}
3024
3025
			if ( $update ) {
3026
				update_option( 'active_plugins', array_filter( $plugins ) );
3027
			}
3028
		}
3029
		exit;
3030
	}
3031
3032
	/**
3033
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
3034
	 * @static
3035
	 */
3036
	public static function plugin_activation( $network_wide ) {
3037
		Jetpack_Options::update_option( 'activated', 1 );
3038
3039
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
3040
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
3041
		}
3042
3043
		if ( $network_wide )
3044
			Jetpack::state( 'network_nag', true );
3045
3046
		// For firing one-off events (notices) immediately after activation
3047
		set_transient( 'activated_jetpack', true, .1 * MINUTE_IN_SECONDS );
3048
3049
		update_option( 'jetpack_activation_source', self::get_activation_source( wp_get_referer() ) );
3050
3051
		Jetpack::plugin_initialize();
3052
	}
3053
3054
	public static function get_activation_source( $referer_url ) {
3055
3056
		if ( defined( 'WP_CLI' ) && WP_CLI ) {
3057
			return array( 'wp-cli', null );
3058
		}
3059
3060
		$referer = parse_url( $referer_url );
3061
3062
		$source_type = 'unknown';
3063
		$source_query = null;
3064
3065
		if ( ! is_array( $referer ) ) {
3066
			return array( $source_type, $source_query );
3067
		}
3068
3069
		$plugins_path = parse_url( admin_url( 'plugins.php' ), PHP_URL_PATH );
3070
		$plugins_install_path = parse_url( admin_url( 'plugin-install.php' ), PHP_URL_PATH );// /wp-admin/plugin-install.php
3071
3072
		if ( isset( $referer['query'] ) ) {
3073
			parse_str( $referer['query'], $query_parts );
3074
		} else {
3075
			$query_parts = array();
3076
		}
3077
3078
		if ( $plugins_path === $referer['path'] ) {
3079
			$source_type = 'list';
3080
		} elseif ( $plugins_install_path === $referer['path'] ) {
3081
			$tab = isset( $query_parts['tab'] ) ? $query_parts['tab'] : 'featured';
3082
			switch( $tab ) {
3083
				case 'popular':
3084
					$source_type = 'popular';
3085
					break;
3086
				case 'recommended':
3087
					$source_type = 'recommended';
3088
					break;
3089
				case 'favorites':
3090
					$source_type = 'favorites';
3091
					break;
3092
				case 'search':
3093
					$source_type = 'search-' . ( isset( $query_parts['type'] ) ? $query_parts['type'] : 'term' );
3094
					$source_query = isset( $query_parts['s'] ) ? $query_parts['s'] : null;
3095
					break;
3096
				default:
3097
					$source_type = 'featured';
3098
			}
3099
		}
3100
3101
		return array( $source_type, $source_query );
3102
	}
3103
3104
	/**
3105
	 * Runs before bumping version numbers up to a new version
3106
	 * @param  string $version    Version:timestamp
3107
	 * @param  string $old_version Old Version:timestamp or false if not set yet.
3108
	 * @return null              [description]
3109
	 */
3110
	public static function do_version_bump( $version, $old_version ) {
3111
3112
		if ( ! $old_version ) { // For new sites
3113
			// Setting up jetpack manage
3114
			Jetpack::activate_manage();
3115
		}
3116
	}
3117
3118
	/**
3119
	 * Sets the internal version number and activation state.
3120
	 * @static
3121
	 */
3122
	public static function plugin_initialize() {
3123
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
3124
			Jetpack_Options::update_option( 'activated', 2 );
3125
		}
3126
3127
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
3128
			$version = $old_version = JETPACK__VERSION . ':' . time();
3129
			/** This action is documented in class.jetpack.php */
3130
			do_action( 'updating_jetpack_version', $version, false );
3131
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
3132
		}
3133
3134
		Jetpack::load_modules();
3135
3136
		Jetpack_Options::delete_option( 'do_activate' );
3137
		Jetpack_Options::delete_option( 'dismissed_connection_banner' );
3138
	}
3139
3140
	/**
3141
	 * Removes all connection options
3142
	 * @static
3143
	 */
3144
	public static function plugin_deactivation( ) {
3145
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
3146
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
3147
			Jetpack_Network::init()->deactivate();
3148
		} else {
3149
			Jetpack::disconnect( false );
3150
			//Jetpack_Heartbeat::init()->deactivate();
3151
		}
3152
	}
3153
3154
	/**
3155
	 * Disconnects from the Jetpack servers.
3156
	 * Forgets all connection details and tells the Jetpack servers to do the same.
3157
	 * @static
3158
	 */
3159
	public static function disconnect( $update_activated_state = true ) {
3160
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
3161
		Jetpack::clean_nonces( true );
3162
3163
		// If the site is in an IDC because sync is not allowed,
3164
		// let's make sure to not disconnect the production site.
3165
		if ( ! self::validate_sync_error_idc_option() ) {
3166
			JetpackTracking::record_user_event( 'disconnect_site', array() );
3167
			Jetpack::load_xml_rpc_client();
3168
			$xml = new Jetpack_IXR_Client();
3169
			$xml->query( 'jetpack.deregister' );
3170
		}
3171
3172
		Jetpack_Options::delete_option(
3173
			array(
3174
				'blog_token',
3175
				'user_token',
3176
				'user_tokens',
3177
				'master_user',
3178
				'time_diff',
3179
				'fallback_no_verify_ssl_certs',
3180
			)
3181
		);
3182
3183
		Jetpack_IDC::clear_all_idc_options();
3184
		Jetpack_Options::delete_raw_option( 'jetpack_secrets' );
3185
3186
		if ( $update_activated_state ) {
3187
			Jetpack_Options::update_option( 'activated', 4 );
3188
		}
3189
3190
		if ( $jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' ) ) {
3191
			// Check then record unique disconnection if site has never been disconnected previously
3192
			if ( - 1 == $jetpack_unique_connection['disconnected'] ) {
3193
				$jetpack_unique_connection['disconnected'] = 1;
3194
			} else {
3195
				if ( 0 == $jetpack_unique_connection['disconnected'] ) {
3196
					//track unique disconnect
3197
					$jetpack = Jetpack::init();
3198
3199
					$jetpack->stat( 'connections', 'unique-disconnect' );
3200
					$jetpack->do_stats( 'server_side' );
3201
				}
3202
				// increment number of times disconnected
3203
				$jetpack_unique_connection['disconnected'] += 1;
3204
			}
3205
3206
			Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
3207
		}
3208
3209
		// Delete cached connected user data
3210
		$transient_key = "jetpack_connected_user_data_" . get_current_user_id();
3211
		delete_transient( $transient_key );
3212
3213
		// Delete all the sync related data. Since it could be taking up space.
3214
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-sender.php';
3215
		Jetpack_Sync_Sender::get_instance()->uninstall();
3216
3217
		// Disable the Heartbeat cron
3218
		Jetpack_Heartbeat::init()->deactivate();
3219
	}
3220
3221
	/**
3222
	 * Unlinks the current user from the linked WordPress.com user
3223
	 */
3224
	public static function unlink_user( $user_id = null ) {
3225
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
3226
			return false;
3227
3228
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
3229
3230
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
3231
			return false;
3232
3233
		if ( ! isset( $tokens[ $user_id ] ) )
3234
			return false;
3235
3236
		Jetpack::load_xml_rpc_client();
3237
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
3238
		$xml->query( 'jetpack.unlink_user', $user_id );
3239
3240
		unset( $tokens[ $user_id ] );
3241
3242
		Jetpack_Options::update_option( 'user_tokens', $tokens );
3243
3244
		/**
3245
		 * Fires after the current user has been unlinked from WordPress.com.
3246
		 *
3247
		 * @since 4.1.0
3248
		 *
3249
		 * @param int $user_id The current user's ID.
3250
		 */
3251
		do_action( 'jetpack_unlinked_user', $user_id );
3252
3253
		return true;
3254
	}
3255
3256
	/**
3257
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
3258
	 */
3259
	public static function try_registration() {
3260
		// The user has agreed to the TOS at some point by now.
3261
		Jetpack_Options::update_option( 'tos_agreed', true );
3262
3263
		// Let's get some testing in beta versions and such.
3264
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
3265
			// Before attempting to connect, let's make sure that the domains are viable.
3266
			$domains_to_check = array_unique( array(
3267
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
3268
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
3269
			) );
3270
			foreach ( $domains_to_check as $domain ) {
3271
				$result = Jetpack_Data::is_usable_domain( $domain );
3272
				if ( is_wp_error( $result ) ) {
3273
					return $result;
3274
				}
3275
			}
3276
		}
3277
3278
		$result = Jetpack::register();
3279
3280
		// If there was an error with registration and the site was not registered, record this so we can show a message.
3281
		if ( ! $result || is_wp_error( $result ) ) {
3282
			return $result;
3283
		} else {
3284
			return true;
3285
		}
3286
	}
3287
3288
	/**
3289
	 * Tracking an internal event log. Try not to put too much chaff in here.
3290
	 *
3291
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
3292
	 */
3293
	public static function log( $code, $data = null ) {
3294
		// only grab the latest 200 entries
3295
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
3296
3297
		// Append our event to the log
3298
		$log_entry = array(
3299
			'time'    => time(),
3300
			'user_id' => get_current_user_id(),
3301
			'blog_id' => Jetpack_Options::get_option( 'id' ),
3302
			'code'    => $code,
3303
		);
3304
		// Don't bother storing it unless we've got some.
3305
		if ( ! is_null( $data ) ) {
3306
			$log_entry['data'] = $data;
3307
		}
3308
		$log[] = $log_entry;
3309
3310
		// Try add_option first, to make sure it's not autoloaded.
3311
		// @todo: Add an add_option method to Jetpack_Options
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
3312
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
3313
			Jetpack_Options::update_option( 'log', $log );
3314
		}
3315
3316
		/**
3317
		 * Fires when Jetpack logs an internal event.
3318
		 *
3319
		 * @since 3.0.0
3320
		 *
3321
		 * @param array $log_entry {
3322
		 *	Array of details about the log entry.
3323
		 *
3324
		 *	@param string time Time of the event.
3325
		 *	@param int user_id ID of the user who trigerred the event.
3326
		 *	@param int blog_id Jetpack Blog ID.
3327
		 *	@param string code Unique name for the event.
3328
		 *	@param string data Data about the event.
3329
		 * }
3330
		 */
3331
		do_action( 'jetpack_log_entry', $log_entry );
3332
	}
3333
3334
	/**
3335
	 * Get the internal event log.
3336
	 *
3337
	 * @param $event (string) - only return the specific log events
3338
	 * @param $num   (int)    - get specific number of latest results, limited to 200
3339
	 *
3340
	 * @return array of log events || WP_Error for invalid params
3341
	 */
3342
	public static function get_log( $event = false, $num = false ) {
3343
		if ( $event && ! is_string( $event ) ) {
3344
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
3345
		}
3346
3347
		if ( $num && ! is_numeric( $num ) ) {
3348
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
3349
		}
3350
3351
		$entire_log = Jetpack_Options::get_option( 'log', array() );
3352
3353
		// If nothing set - act as it did before, otherwise let's start customizing the output
3354
		if ( ! $num && ! $event ) {
3355
			return $entire_log;
3356
		} else {
3357
			$entire_log = array_reverse( $entire_log );
3358
		}
3359
3360
		$custom_log_output = array();
3361
3362
		if ( $event ) {
3363
			foreach ( $entire_log as $log_event ) {
3364
				if ( $event == $log_event[ 'code' ] ) {
3365
					$custom_log_output[] = $log_event;
3366
				}
3367
			}
3368
		} else {
3369
			$custom_log_output = $entire_log;
3370
		}
3371
3372
		if ( $num ) {
3373
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
3374
		}
3375
3376
		return $custom_log_output;
3377
	}
3378
3379
	/**
3380
	 * Log modification of important settings.
3381
	 */
3382
	public static function log_settings_change( $option, $old_value, $value ) {
3383
		switch( $option ) {
3384
			case 'jetpack_sync_non_public_post_stati':
3385
				self::log( $option, $value );
3386
				break;
3387
		}
3388
	}
3389
3390
	/**
3391
	 * Return stat data for WPCOM sync
3392
	 */
3393
	public static function get_stat_data( $encode = true, $extended = true ) {
3394
		$data = Jetpack_Heartbeat::generate_stats_array();
3395
3396
		if ( $extended ) {
3397
			$additional_data = self::get_additional_stat_data();
3398
			$data = array_merge( $data, $additional_data );
3399
		}
3400
3401
		if ( $encode ) {
3402
			return json_encode( $data );
3403
		}
3404
3405
		return $data;
3406
	}
3407
3408
	/**
3409
	 * Get additional stat data to sync to WPCOM
3410
	 */
3411
	public static function get_additional_stat_data( $prefix = '' ) {
3412
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
3413
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
3414
		$return["{$prefix}users"]          = (int) Jetpack::get_site_user_count();
3415
		$return["{$prefix}site-count"]     = 0;
3416
3417
		if ( function_exists( 'get_blog_count' ) ) {
3418
			$return["{$prefix}site-count"] = get_blog_count();
3419
		}
3420
		return $return;
3421
	}
3422
3423
	private static function get_site_user_count() {
3424
		global $wpdb;
3425
3426
		if ( function_exists( 'wp_is_large_network' ) ) {
3427
			if ( wp_is_large_network( 'users' ) ) {
3428
				return -1; // Not a real value but should tell us that we are dealing with a large network.
3429
			}
3430
		}
3431
		if ( false === ( $user_count = get_transient( 'jetpack_site_user_count' ) ) ) {
3432
			// It wasn't there, so regenerate the data and save the transient
3433
			$user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->usermeta WHERE meta_key = '{$wpdb->prefix}capabilities'" );
3434
			set_transient( 'jetpack_site_user_count', $user_count, DAY_IN_SECONDS );
3435
		}
3436
		return $user_count;
3437
	}
3438
3439
	/* Admin Pages */
3440
3441
	function admin_init() {
3442
		// If the plugin is not connected, display a connect message.
3443
		if (
3444
			// the plugin was auto-activated and needs its candy
3445
			Jetpack_Options::get_option_and_ensure_autoload( 'do_activate', '0' )
3446
		||
3447
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
3448
			! Jetpack_Options::get_option( 'activated' )
3449
		) {
3450
			Jetpack::plugin_initialize();
3451
		}
3452
3453
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
3454
			Jetpack_Connection_Banner::init();
3455
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
3456
			// Upgrade: 1.1 -> 1.1.1
3457
			// Check and see if host can verify the Jetpack servers' SSL certificate
3458
			$args = array();
3459
			Jetpack_Client::_wp_remote_request(
3460
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
3461
				$args,
3462
				true
3463
			);
3464
		} else if ( $this->can_display_jetpack_manage_notice() && ! Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) {
3465
			// Show the notice on the Dashboard only for now
3466
			add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
3467
		}
3468
3469
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
3470
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
3471
		}
3472
3473
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
3474
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
3475
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
3476
3477
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
3478
			// Artificially throw errors in certain whitelisted cases during plugin activation
3479
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
3480
		}
3481
3482
		// Jetpack Manage Activation Screen from .com
3483
		Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
3484
3485
		// Add custom column in wp-admin/users.php to show whether user is linked.
3486
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
3487
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
3488
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
3489
	}
3490
3491
	function admin_body_class( $admin_body_class = '' ) {
3492
		$classes = explode( ' ', trim( $admin_body_class ) );
3493
3494
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
3495
3496
		$admin_body_class = implode( ' ', array_unique( $classes ) );
3497
		return " $admin_body_class ";
3498
	}
3499
3500
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
3501
		return $admin_body_class . ' jetpack-pagestyles ';
3502
	}
3503
3504
	/**
3505
	 * Call this function if you want the Big Jetpack Manage Notice to show up.
3506
	 *
3507
	 * @return null
3508
	 */
3509
	function prepare_manage_jetpack_notice() {
3510
3511
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
3512
		add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) );
3513
	}
3514
3515
	function manage_activate_screen() {
3516
		include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' );
3517
	}
3518
	/**
3519
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
3520
	 * This function artificially throws errors for such cases (whitelisted).
3521
	 *
3522
	 * @param string $plugin The activated plugin.
3523
	 */
3524
	function throw_error_on_activate_plugin( $plugin ) {
3525
		$active_modules = Jetpack::get_active_modules();
3526
3527
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
3528
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
3529
			$throw = false;
3530
3531
			// Try and make sure it really was the stats plugin
3532
			if ( ! class_exists( 'ReflectionFunction' ) ) {
3533
				if ( 'stats.php' == basename( $plugin ) ) {
3534
					$throw = true;
3535
				}
3536
			} else {
3537
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
3538
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
3539
					$throw = true;
3540
				}
3541
			}
3542
3543
			if ( $throw ) {
3544
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
3545
			}
3546
		}
3547
	}
3548
3549
	function intercept_plugin_error_scrape_init() {
3550
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
3551
	}
3552
3553
	function intercept_plugin_error_scrape( $action, $result ) {
3554
		if ( ! $result ) {
3555
			return;
3556
		}
3557
3558
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
3559
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
3560
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
3561
			}
3562
		}
3563
	}
3564
3565
	function add_remote_request_handlers() {
3566
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
3567
		add_action( 'wp_ajax_nopriv_jetpack_update_file', array( $this, 'remote_request_handlers' ) );
3568
	}
3569
3570
	function remote_request_handlers() {
3571
		$action = current_filter();
3572
3573
		switch ( current_filter() ) {
3574
		case 'wp_ajax_nopriv_jetpack_upload_file' :
3575
			$response = $this->upload_handler();
3576
			break;
3577
3578
		case 'wp_ajax_nopriv_jetpack_update_file' :
3579
			$response = $this->upload_handler( true );
3580
			break;
3581
		default :
0 ignored issues
show
Coding Style introduced by
There must be no space before the colon in a DEFAULT statement

As per the PSR-2 coding standard, there must not be a space in front of the colon in the default statement.

switch ($expr) {
    default : //wrong
        doSomething();
        break;
}

switch ($expr) {
    default: //right
        doSomething();
        break;
}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
3582
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
3583
			break;
3584
		}
3585
3586
		if ( ! $response ) {
3587
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
3588
		}
3589
3590
		if ( is_wp_error( $response ) ) {
3591
			$status_code       = $response->get_error_data();
3592
			$error             = $response->get_error_code();
3593
			$error_description = $response->get_error_message();
3594
3595
			if ( ! is_int( $status_code ) ) {
3596
				$status_code = 400;
3597
			}
3598
3599
			status_header( $status_code );
3600
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
3601
		}
3602
3603
		status_header( 200 );
3604
		if ( true === $response ) {
3605
			exit;
3606
		}
3607
3608
		die( json_encode( (object) $response ) );
3609
	}
3610
3611
	/**
3612
	 * Uploads a file gotten from the global $_FILES.
3613
	 * If `$update_media_item` is true and `post_id` is defined
3614
	 * the attachment file of the media item (gotten through of the post_id)
3615
	 * will be updated instead of add a new one.
3616
	 *
3617
	 * @param  boolean $update_media_item - update media attachment
3618
	 * @return array - An array describing the uploadind files process
3619
	 */
3620
	function upload_handler( $update_media_item = false ) {
3621
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
3622
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
3623
		}
3624
3625
		$user = wp_authenticate( '', '' );
3626
		if ( ! $user || is_wp_error( $user ) ) {
3627
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
3628
		}
3629
3630
		wp_set_current_user( $user->ID );
3631
3632
		if ( ! current_user_can( 'upload_files' ) ) {
3633
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
3634
		}
3635
3636
		if ( empty( $_FILES ) ) {
3637
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3638
		}
3639
3640
		foreach ( array_keys( $_FILES ) as $files_key ) {
3641
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3642
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3643
			}
3644
		}
3645
3646
		$media_keys = array_keys( $_FILES['media'] );
3647
3648
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3649
		if ( ! $token || is_wp_error( $token ) ) {
3650
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3651
		}
3652
3653
		$uploaded_files = array();
3654
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3655
		unset( $GLOBALS['post'] );
3656
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3657
			$file = array();
3658
			foreach ( $media_keys as $media_key ) {
3659
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3660
			}
3661
3662
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3663
3664
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3665
			if ( $hmac_provided !== $hmac_file ) {
3666
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3667
				continue;
3668
			}
3669
3670
			$_FILES['.jetpack.upload.'] = $file;
3671
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3672
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3673
				$post_id = 0;
3674
			}
3675
3676
			if ( $update_media_item ) {
3677
				if ( ! isset( $post_id ) || $post_id === 0 ) {
3678
					return new Jetpack_Error( 'invalid_input', 'Media ID must be defined.', 400 );
3679
				}
3680
3681
				$media_array = $_FILES['media'];
3682
3683
				$file_array['name'] = $media_array['name'][0];
3684
				$file_array['type'] = $media_array['type'][0];
3685
				$file_array['tmp_name'] = $media_array['tmp_name'][0];
3686
				$file_array['error'] = $media_array['error'][0];
3687
				$file_array['size'] = $media_array['size'][0];
3688
3689
				$edited_media_item = Jetpack_Media::edit_media_file( $post_id, $file_array );
3690
3691
				if ( is_wp_error( $edited_media_item ) ) {
3692
					return $edited_media_item;
3693
				}
3694
3695
				$response = (object) array(
3696
					'id'   => (string) $post_id,
3697
					'file' => (string) $edited_media_item->post_title,
3698
					'url'  => (string) wp_get_attachment_url( $post_id ),
3699
					'type' => (string) $edited_media_item->post_mime_type,
3700
					'meta' => (array) wp_get_attachment_metadata( $post_id ),
3701
				);
3702
3703
				return (array) array( $response );
3704
			}
3705
3706
			$attachment_id = media_handle_upload(
3707
				'.jetpack.upload.',
3708
				$post_id,
3709
				array(),
3710
				array(
3711
					'action' => 'jetpack_upload_file',
3712
				)
3713
			);
3714
3715
			if ( ! $attachment_id ) {
3716
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3717
			} elseif ( is_wp_error( $attachment_id ) ) {
3718
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3719
			} else {
3720
				$attachment = get_post( $attachment_id );
3721
				$uploaded_files[$index] = (object) array(
3722
					'id'   => (string) $attachment_id,
3723
					'file' => $attachment->post_title,
3724
					'url'  => wp_get_attachment_url( $attachment_id ),
3725
					'type' => $attachment->post_mime_type,
3726
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3727
				);
3728
				// Zip files uploads are not supported unless they are done for installation purposed
3729
				// lets delete them in case something goes wrong in this whole process
3730
				if ( 'application/zip' === $attachment->post_mime_type ) {
3731
					// Schedule a cleanup for 2 hours from now in case of failed install.
3732
					wp_schedule_single_event( time() + 2 * HOUR_IN_SECONDS, 'upgrader_scheduled_cleanup', array( $attachment_id ) );
3733
				}
3734
			}
3735
		}
3736
		if ( ! is_null( $global_post ) ) {
3737
			$GLOBALS['post'] = $global_post;
3738
		}
3739
3740
		return $uploaded_files;
3741
	}
3742
3743
	/**
3744
	 * Add help to the Jetpack page
3745
	 *
3746
	 * @since Jetpack (1.2.3)
3747
	 * @return false if not the Jetpack page
3748
	 */
3749
	function admin_help() {
3750
		$current_screen = get_current_screen();
3751
3752
		// Overview
3753
		$current_screen->add_help_tab(
3754
			array(
3755
				'id'		=> 'home',
3756
				'title'		=> __( 'Home', 'jetpack' ),
3757
				'content'	=>
3758
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3759
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3760
					'<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>',
3761
			)
3762
		);
3763
3764
		// Screen Content
3765
		if ( current_user_can( 'manage_options' ) ) {
3766
			$current_screen->add_help_tab(
3767
				array(
3768
					'id'		=> 'settings',
3769
					'title'		=> __( 'Settings', 'jetpack' ),
3770
					'content'	=>
3771
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3772
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3773
						'<ol>' .
3774
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3775
							'<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>' .
3776
						'</ol>' .
3777
						'<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>'
3778
				)
3779
			);
3780
		}
3781
3782
		// Help Sidebar
3783
		$current_screen->set_help_sidebar(
3784
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3785
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3786
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3787
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3788
		);
3789
	}
3790
3791
	function admin_menu_css() {
3792
		wp_enqueue_style( 'jetpack-icons' );
3793
	}
3794
3795
	function admin_menu_order() {
3796
		return true;
3797
	}
3798
3799
	function jetpack_menu_order( $menu_order ) {
3800
		$jp_menu_order = array();
3801
3802
		foreach ( $menu_order as $index => $item ) {
3803
			if ( $item != 'jetpack' ) {
3804
				$jp_menu_order[] = $item;
3805
			}
3806
3807
			if ( $index == 0 ) {
3808
				$jp_menu_order[] = 'jetpack';
3809
			}
3810
		}
3811
3812
		return $jp_menu_order;
3813
	}
3814
3815
	function admin_head() {
3816
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3817
			/** This action is documented in class.jetpack-admin-page.php */
3818
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3819
	}
3820
3821
	function admin_banner_styles() {
3822
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3823
3824
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
3825
			wp_register_style(
3826
				'jetpack-dops-style',
3827
				plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ),
3828
				array(),
3829
				JETPACK__VERSION
3830
			);
3831
		}
3832
3833
		wp_enqueue_style(
3834
			'jetpack',
3835
			plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ),
3836
			array( 'jetpack-dops-style' ),
3837
			 JETPACK__VERSION . '-20121016'
3838
		);
3839
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3840
		wp_style_add_data( 'jetpack', 'suffix', $min );
3841
	}
3842
3843
	function plugin_action_links( $actions ) {
3844
3845
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), __( 'Jetpack', 'jetpack' ) ) );
3846
3847
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3848
			return array_merge(
3849
				$jetpack_home,
3850
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack#/settings' ), __( 'Settings', 'jetpack' ) ) ),
3851
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3852
				$actions
3853
				);
3854
			}
3855
3856
		return array_merge( $jetpack_home, $actions );
3857
	}
3858
3859
	/**
3860
	 * This is the first banner
3861
	 * It should be visible only to user that can update the option
3862
	 * Are not connected
3863
	 *
3864
	 * @return null
3865
	 */
3866
	function admin_jetpack_manage_notice() {
3867
		$screen = get_current_screen();
3868
3869
		// Don't show the connect notice on the jetpack settings page.
3870
		if ( ! in_array( $screen->base, array( 'dashboard' ) ) || $screen->is_network || $screen->action ) {
3871
			return;
3872
		}
3873
3874
		$opt_out_url = $this->opt_out_jetpack_manage_url();
3875
		$opt_in_url  = $this->opt_in_jetpack_manage_url();
3876
		/**
3877
		 * I think it would be great to have different wordsing depending on where you are
3878
		 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen
3879
		 * etc..
3880
		 */
3881
3882
		?>
3883
		<div id="message" class="updated jp-banner">
3884
				<a href="<?php echo esc_url( $opt_out_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3885
				<div class="jp-banner__description-container">
3886
					<h2 class="jp-banner__header"><?php esc_html_e( 'Jetpack Centralized Site Management', 'jetpack' ); ?></h2>
3887
					<p class="jp-banner__description"><?php printf( __( 'Manage multiple Jetpack enabled sites from one single dashboard at wordpress.com. Allows all existing, connected Administrators to modify your site.', 'jetpack' ), 'https://jetpack.com/support/site-management' ); ?></p>
3888
					<p class="jp-banner__button-container">
3889
						<a href="<?php echo esc_url( $opt_in_url ); ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Activate Jetpack Manage', 'jetpack' ); ?></a>
3890
						<a href="https://jetpack.com/support/site-management" class="button" target="_blank" title="<?php esc_attr_e( 'Learn more about Jetpack Manage on Jetpack.com', 'jetpack' ); ?>"><?php _e( 'Learn more', 'jetpack' ); ?></a>
3891
					</p>
3892
				</div>
3893
		</div>
3894
		<?php
3895
	}
3896
3897
	/**
3898
	 * Returns the url that the user clicks to remove the notice for the big banner
3899
	 * @return string
3900
	 */
3901
	function opt_out_jetpack_manage_url() {
3902
		$referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null );
3903
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' );
3904
	}
3905
	/**
3906
	 * Returns the url that the user clicks to opt in to Jetpack Manage
3907
	 * @return string
3908
	 */
3909
	function opt_in_jetpack_manage_url() {
3910
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' );
3911
	}
3912
3913
	function opt_in_jetpack_manage_notice() {
3914
		?>
3915
		<div class="wrap">
3916
			<div id="message" class="jetpack-message is-opt-in">
3917
				<?php echo sprintf( __( '<p><a href="%1$s" title="Opt in to WordPress.com Site Management" >Activate Site Management</a> to manage multiple sites from our centralized dashboard at wordpress.com/sites. <a href="%2$s" target="_blank">Learn more</a>.</p><a href="%1$s" class="jp-button">Activate Now</a>', 'jetpack' ), $this->opt_in_jetpack_manage_url(), 'https://jetpack.com/support/site-management' ); ?>
3918
			</div>
3919
		</div>
3920
		<?php
3921
3922
	}
3923
	/**
3924
	 * Determines whether to show the notice of not true = display notice
3925
	 * @return bool
3926
	 */
3927
	function can_display_jetpack_manage_notice() {
3928
		// never display the notice to users that can't do anything about it anyways
3929
		if( ! current_user_can( 'jetpack_manage_modules' ) )
3930
			return false;
3931
3932
		// don't display if we are in development more
3933
		if( Jetpack::is_development_mode() ) {
3934
			return false;
3935
		}
3936
		// don't display if the site is private
3937
		if(  ! Jetpack_Options::get_option( 'public' ) )
3938
			return false;
3939
3940
		/**
3941
		 * Should the Jetpack Remote Site Management notice be displayed.
3942
		 *
3943
		 * @since 3.3.0
3944
		 *
3945
		 * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
3946
		 */
3947
		return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
3948
	}
3949
3950
	/*
3951
	 * Registration flow:
3952
	 * 1 - ::admin_page_load() action=register
3953
	 * 2 - ::try_registration()
3954
	 * 3 - ::register()
3955
	 *     - Creates jetpack_register option containing two secrets and a timestamp
3956
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
3957
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
3958
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
3959
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
3960
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
3961
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
3962
	 *       jetpack_id, jetpack_secret, jetpack_public
3963
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
3964
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
3965
	 * 5 - user logs in with WP.com account
3966
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
3967
	 *		- Jetpack_Client_Server::authorize()
3968
	 *		- Jetpack_Client_Server::get_token()
3969
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
3970
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
3971
	 *			- which responds with access_token, token_type, scope
3972
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
3973
	 *		- Jetpack::activate_default_modules()
3974
	 *     		- Deactivates deprecated plugins
3975
	 *     		- Activates all default modules
3976
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
3977
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
3978
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
3979
	 *     Done!
3980
	 */
3981
3982
	/**
3983
	 * Handles the page load events for the Jetpack admin page
3984
	 */
3985
	function admin_page_load() {
3986
		$error = false;
3987
3988
		// Make sure we have the right body class to hook stylings for subpages off of.
3989
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
3990
3991
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
3992
			// Should only be used in intermediate redirects to preserve state across redirects
3993
			Jetpack::restate();
3994
		}
3995
3996
		if ( isset( $_GET['connect_url_redirect'] ) ) {
3997
			// User clicked in the iframe to link their accounts
3998
			if ( ! Jetpack::is_user_connected() ) {
3999
				$from = ! empty( $_GET['from'] ) ? $_GET['from'] : 'iframe';
4000
				$redirect = ! empty( $_GET['redirect_after_auth'] ) ? $_GET['redirect_after_auth'] : false;
4001
4002
				add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
4003
				$connect_url = $this->build_connect_url( true, $redirect, $from );
4004
				remove_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_environments' ) );
4005
4006
				if ( isset( $_GET['notes_iframe'] ) )
4007
					$connect_url .= '&notes_iframe';
4008
				wp_redirect( $connect_url );
4009
				exit;
4010
			} else {
4011
				if ( ! isset( $_GET['calypso_env'] ) ) {
4012
					Jetpack::state( 'message', 'already_authorized' );
4013
					wp_safe_redirect( Jetpack::admin_url() );
4014
					exit;
4015
				} else {
4016
					$connect_url = $this->build_connect_url( true, false, 'iframe' );
4017
					$connect_url .= '&already_authorized=true';
4018
					wp_redirect( $connect_url );
4019
					exit;
4020
				}
4021
			}
4022
		}
4023
4024
4025
		if ( isset( $_GET['action'] ) ) {
4026
			switch ( $_GET['action'] ) {
4027
			case 'authorize':
4028
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
4029
					Jetpack::state( 'message', 'already_authorized' );
4030
					wp_safe_redirect( Jetpack::admin_url() );
4031
					exit;
4032
				}
4033
				Jetpack::log( 'authorize' );
4034
				$client_server = new Jetpack_Client_Server;
4035
				$client_server->client_authorize();
4036
				exit;
4037
			case 'register' :
4038
				if ( ! current_user_can( 'jetpack_connect' ) ) {
4039
					$error = 'cheatin';
4040
					break;
4041
				}
4042
				check_admin_referer( 'jetpack-register' );
4043
				Jetpack::log( 'register' );
4044
				Jetpack::maybe_set_version_option();
4045
				$registered = Jetpack::try_registration();
4046
				if ( is_wp_error( $registered ) ) {
4047
					$error = $registered->get_error_code();
4048
					Jetpack::state( 'error', $error );
4049
					Jetpack::state( 'error', $registered->get_error_message() );
4050
					JetpackTracking::record_user_event( 'jpc_register_fail', array(
4051
						'error_code' => $error,
4052
						'error_message' => $registered->get_error_message()
4053
					) );
4054
					break;
4055
				}
4056
4057
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
4058
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : false;
4059
4060
				JetpackTracking::record_user_event( 'jpc_register_success', array(
4061
					'from' => $from
4062
				) );
4063
4064
				$url = $this->build_connect_url( true, $redirect, $from );
4065
4066
				if ( ! empty( $_GET['onboarding'] ) ) {
4067
					$url = add_query_arg( 'onboarding', $_GET['onboarding'], $url );
4068
				}
4069
4070
				if ( ! empty( $_GET['auth_approved'] ) && 'true' === $_GET['auth_approved'] ) {
4071
					$url = add_query_arg( 'auth_approved', 'true', $url );
4072
				}
4073
4074
				wp_redirect( $url );
4075
				exit;
4076
			case 'activate' :
4077
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
4078
					$error = 'cheatin';
4079
					break;
4080
				}
4081
4082
				$module = stripslashes( $_GET['module'] );
4083
				check_admin_referer( "jetpack_activate-$module" );
4084
				Jetpack::log( 'activate', $module );
4085
				if ( ! Jetpack::activate_module( $module ) ) {
4086
					Jetpack::state( 'error', sprintf( __( 'Could not activate %s', 'jetpack' ), $module ) );
4087
				}
4088
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
4089
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4090
				exit;
4091
			case 'activate_default_modules' :
4092
				check_admin_referer( 'activate_default_modules' );
4093
				Jetpack::log( 'activate_default_modules' );
4094
				Jetpack::restate();
4095
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
4096
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
4097
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
4098
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
4099
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4100
				exit;
4101
			case 'disconnect' :
4102
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
4103
					$error = 'cheatin';
4104
					break;
4105
				}
4106
4107
				check_admin_referer( 'jetpack-disconnect' );
4108
				Jetpack::log( 'disconnect' );
4109
				Jetpack::disconnect();
4110
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
4111
				exit;
4112
			case 'reconnect' :
4113
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
4114
					$error = 'cheatin';
4115
					break;
4116
				}
4117
4118
				check_admin_referer( 'jetpack-reconnect' );
4119
				Jetpack::log( 'reconnect' );
4120
				$this->disconnect();
4121
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
4122
				exit;
4123
			case 'deactivate' :
4124
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
4125
					$error = 'cheatin';
4126
					break;
4127
				}
4128
4129
				$modules = stripslashes( $_GET['module'] );
4130
				check_admin_referer( "jetpack_deactivate-$modules" );
4131
				foreach ( explode( ',', $modules ) as $module ) {
4132
					Jetpack::log( 'deactivate', $module );
4133
					Jetpack::deactivate_module( $module );
4134
					Jetpack::state( 'message', 'module_deactivated' );
4135
				}
4136
				Jetpack::state( 'module', $modules );
4137
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4138
				exit;
4139
			case 'unlink' :
4140
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
4141
				check_admin_referer( 'jetpack-unlink' );
4142
				Jetpack::log( 'unlink' );
4143
				$this->unlink_user();
4144
				Jetpack::state( 'message', 'unlinked' );
4145
				if ( 'sub-unlink' == $redirect ) {
4146
					wp_safe_redirect( admin_url() );
4147
				} else {
4148
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
4149
				}
4150
				exit;
4151
			case 'onboard' :
4152
				if ( ! current_user_can( 'manage_options' ) ) {
4153
					wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
4154
				} else {
4155
					Jetpack::create_onboarding_token();
4156
					$url = $this->build_connect_url( true );
4157
4158
					if ( false !== ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4159
						$url = add_query_arg( 'onboarding', $token, $url );
4160
					}
4161
4162
					$calypso_env = ! empty( $_GET[ 'calypso_env' ] ) ? $_GET[ 'calypso_env' ] : false;
4163
					if ( $calypso_env ) {
4164
						$url = add_query_arg( 'calypso_env', $calypso_env, $url );
4165
					}
4166
4167
					wp_redirect( $url );
4168
					exit;
4169
				}
4170
				exit;
4171
			default:
4172
				/**
4173
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
4174
				 *
4175
				 * @since 2.6.0
4176
				 *
4177
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
4178
				 */
4179
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
4180
			}
4181
		}
4182
4183
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
4184
			self::activate_new_modules( true );
4185
		}
4186
4187
		$message_code = Jetpack::state( 'message' );
4188
		if ( Jetpack::state( 'optin-manage' ) ) {
4189
			$activated_manage = $message_code;
4190
			$message_code = 'jetpack-manage';
4191
		}
4192
4193
		switch ( $message_code ) {
4194
		case 'jetpack-manage':
4195
			$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>';
4196
			if ( $activated_manage ) {
4197
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
4198
			}
4199
			break;
4200
4201
		}
4202
4203
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
4204
4205
		if ( ! empty( $deactivated_plugins ) ) {
4206
			$deactivated_plugins = explode( ',', $deactivated_plugins );
4207
			$deactivated_titles  = array();
4208
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
4209
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
4210
					continue;
4211
				}
4212
4213
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
4214
			}
4215
4216
			if ( $deactivated_titles ) {
4217
				if ( $this->message ) {
4218
					$this->message .= "<br /><br />\n";
4219
				}
4220
4221
				$this->message .= wp_sprintf(
4222
					_n(
4223
						'Jetpack contains the most recent version of the old %l plugin.',
4224
						'Jetpack contains the most recent versions of the old %l plugins.',
4225
						count( $deactivated_titles ),
4226
						'jetpack'
4227
					),
4228
					$deactivated_titles
4229
				);
4230
4231
				$this->message .= "<br />\n";
4232
4233
				$this->message .= _n(
4234
					'The old version has been deactivated and can be removed from your site.',
4235
					'The old versions have been deactivated and can be removed from your site.',
4236
					count( $deactivated_titles ),
4237
					'jetpack'
4238
				);
4239
			}
4240
		}
4241
4242
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
4243
4244
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
4245
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
4246
		}
4247
4248
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
4249
			/**
4250
			 * Fires when a module configuration page is loaded.
4251
			 * The dynamic part of the hook is the configure parameter from the URL.
4252
			 *
4253
			 * @since 1.1.0
4254
			 */
4255
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
4256
		}
4257
4258
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
4259
	}
4260
4261
	function admin_notices() {
4262
4263
		if ( $this->error ) {
4264
?>
4265
<div id="message" class="jetpack-message jetpack-err">
4266
	<div class="squeezer">
4267
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
4268
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
4269
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
4270
<?php	endif; ?>
4271
	</div>
4272
</div>
4273
<?php
4274
		}
4275
4276
		if ( $this->message ) {
4277
?>
4278
<div id="message" class="jetpack-message">
4279
	<div class="squeezer">
4280
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
4281
	</div>
4282
</div>
4283
<?php
4284
		}
4285
4286
		if ( $this->privacy_checks ) :
4287
			$module_names = $module_slugs = array();
4288
4289
			$privacy_checks = explode( ',', $this->privacy_checks );
4290
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
4291
			foreach ( $privacy_checks as $module_slug ) {
4292
				$module = Jetpack::get_module( $module_slug );
4293
				if ( ! $module ) {
4294
					continue;
4295
				}
4296
4297
				$module_slugs[] = $module_slug;
4298
				$module_names[] = "<strong>{$module['name']}</strong>";
4299
			}
4300
4301
			$module_slugs = join( ',', $module_slugs );
4302
?>
4303
<div id="message" class="jetpack-message jetpack-err">
4304
	<div class="squeezer">
4305
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
4306
		<p><?php
4307
			echo wp_kses(
4308
				wptexturize(
4309
					wp_sprintf(
4310
						_nx(
4311
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
4312
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
4313
							count( $privacy_checks ),
4314
							'%l = list of Jetpack module/feature names',
4315
							'jetpack'
4316
						),
4317
						$module_names
4318
					)
4319
				),
4320
				array( 'strong' => true )
4321
			);
4322
4323
			echo "\n<br />\n";
4324
4325
			echo wp_kses(
4326
				sprintf(
4327
					_nx(
4328
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
4329
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
4330
						count( $privacy_checks ),
4331
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
4332
						'jetpack'
4333
					),
4334
					wp_nonce_url(
4335
						Jetpack::admin_url(
4336
							array(
4337
								'page'   => 'jetpack',
4338
								'action' => 'deactivate',
4339
								'module' => urlencode( $module_slugs ),
4340
							)
4341
						),
4342
						"jetpack_deactivate-$module_slugs"
4343
					),
4344
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
4345
				),
4346
				array( 'a' => array( 'href' => true, 'title' => true ) )
4347
			);
4348
		?></p>
4349
	</div>
4350
</div>
4351
<?php endif;
4352
	// only display the notice if the other stuff is not there
4353
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
4354
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
4355
			$this->opt_in_jetpack_manage_notice();
4356
		}
4357
	}
4358
4359
	/**
4360
	 * Record a stat for later output.  This will only currently output in the admin_footer.
4361
	 */
4362
	function stat( $group, $detail ) {
4363
		if ( ! isset( $this->stats[ $group ] ) )
4364
			$this->stats[ $group ] = array();
4365
		$this->stats[ $group ][] = $detail;
4366
	}
4367
4368
	/**
4369
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
4370
	 */
4371
	function do_stats( $method = '' ) {
4372
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
4373
			foreach ( $this->stats as $group => $stats ) {
4374
				if ( is_array( $stats ) && count( $stats ) ) {
4375
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
4376
					if ( 'server_side' === $method ) {
4377
						self::do_server_side_stat( $args );
4378
					} else {
4379
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
4380
					}
4381
				}
4382
				unset( $this->stats[ $group ] );
4383
			}
4384
		}
4385
	}
4386
4387
	/**
4388
	 * Runs stats code for a one-off, server-side.
4389
	 *
4390
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
4391
	 *
4392
	 * @return bool If it worked.
4393
	 */
4394
	static function do_server_side_stat( $args ) {
4395
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
4396
		if ( is_wp_error( $response ) )
4397
			return false;
4398
4399
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
4400
			return false;
4401
4402
		return true;
4403
	}
4404
4405
	/**
4406
	 * Builds the stats url.
4407
	 *
4408
	 * @param $args array|string The arguments to append to the URL.
4409
	 *
4410
	 * @return string The URL to be pinged.
4411
	 */
4412
	static function build_stats_url( $args ) {
4413
		$defaults = array(
4414
			'v'    => 'wpcom2',
4415
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
4416
		);
4417
		$args     = wp_parse_args( $args, $defaults );
4418
		/**
4419
		 * Filter the URL used as the Stats tracking pixel.
4420
		 *
4421
		 * @since 2.3.2
4422
		 *
4423
		 * @param string $url Base URL used as the Stats tracking pixel.
4424
		 */
4425
		$base_url = apply_filters(
4426
			'jetpack_stats_base_url',
4427
			'https://pixel.wp.com/g.gif'
4428
		);
4429
		$url      = add_query_arg( $args, $base_url );
4430
		return $url;
4431
	}
4432
4433
	static function translate_current_user_to_role() {
4434
		foreach ( self::$capability_translations as $role => $cap ) {
4435
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
4436
				return $role;
4437
			}
4438
		}
4439
4440
		return false;
4441
	}
4442
4443
	static function translate_user_to_role( $user ) {
4444
		foreach ( self::$capability_translations as $role => $cap ) {
4445
			if ( user_can( $user, $role ) || user_can( $user, $cap ) ) {
4446
				return $role;
4447
			}
4448
		}
4449
4450
		return false;
4451
    }
4452
4453
	static function translate_role_to_cap( $role ) {
4454
		if ( ! isset( self::$capability_translations[$role] ) ) {
4455
			return false;
4456
		}
4457
4458
		return self::$capability_translations[$role];
4459
	}
4460
4461
	static function sign_role( $role, $user_id = null ) {
4462
		if ( empty( $user_id ) ) {
4463
			$user_id = (int) get_current_user_id();
4464
		}
4465
4466
		if ( ! $user_id  ) {
4467
			return false;
4468
		}
4469
4470
		$token = Jetpack_Data::get_access_token();
4471
		if ( ! $token || is_wp_error( $token ) ) {
4472
			return false;
4473
		}
4474
4475
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
4476
	}
4477
4478
4479
	/**
4480
	 * Builds a URL to the Jetpack connection auth page
4481
	 *
4482
	 * @since 3.9.5
4483
	 *
4484
	 * @param bool $raw If true, URL will not be escaped.
4485
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
4486
	 *                              If string, will be a custom redirect.
4487
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
4488
	 * @param bool $register If true, will generate a register URL regardless of the existing token, since 4.9.0
4489
	 *
4490
	 * @return string Connect URL
4491
	 */
4492
	function build_connect_url( $raw = false, $redirect = false, $from = false, $register = false ) {
4493
		$site_id = Jetpack_Options::get_option( 'id' );
4494
		$token = Jetpack_Options::get_option( 'blog_token' );
4495
4496
		if ( $register || ! $token || ! $site_id ) {
4497
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4498
4499
			if ( ! empty( $redirect ) ) {
4500
				$url = add_query_arg(
4501
					'redirect',
4502
					urlencode( wp_validate_redirect( esc_url_raw( $redirect ) ) ),
4503
					$url
4504
				);
4505
			}
4506
4507
			if( is_network_admin() ) {
4508
				$url = add_query_arg( 'is_multisite', network_admin_url( 'admin.php?page=jetpack-settings' ), $url );
4509
			}
4510
		} else {
4511
4512
			// Let's check the existing blog token to see if we need to re-register. We only check once per minute
4513
			// because otherwise this logic can get us in to a loop.
4514
			$last_connect_url_check = intval( Jetpack_Options::get_raw_option( 'jetpack_last_connect_url_check' ) );
4515
			if ( ! $last_connect_url_check || ( time() - $last_connect_url_check ) > MINUTE_IN_SECONDS ) {
4516
				Jetpack_Options::update_raw_option( 'jetpack_last_connect_url_check', time() );
4517
4518
				$response = Jetpack_Client::wpcom_json_api_request_as_blog(
4519
					sprintf( '/sites/%d', $site_id ) .'?force=wpcom',
4520
					'1.1'
4521
				);
4522
4523
				if ( 200 !== wp_remote_retrieve_response_code( $response ) ) {
4524
					// Generating a register URL instead to refresh the existing token
4525
					return $this->build_connect_url( $raw, $redirect, $from, true );
4526
				}
4527
			}
4528
4529
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
4530
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4531
			}
4532
4533
			$role = self::translate_current_user_to_role();
4534
			$signed_role = self::sign_role( $role );
4535
4536
			$user = wp_get_current_user();
4537
4538
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4539
			$redirect = $redirect
4540
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4541
				: $jetpack_admin_page;
4542
4543
			if( isset( $_REQUEST['is_multisite'] ) ) {
4544
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4545
			}
4546
4547
			$secrets = Jetpack::generate_secrets( 'authorize', false, 2 * HOUR_IN_SECONDS );
4548
4549
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
4550
				? get_site_icon_url()
4551
				: false;
4552
4553
			/**
4554
			 * Filter the type of authorization.
4555
			 * 'calypso' completes authorization on wordpress.com/jetpack/connect
4556
			 * while 'jetpack' ( or any other value ) completes the authorization at jetpack.wordpress.com.
4557
			 *
4558
			 * @since 4.3.3
4559
			 *
4560
			 * @param string $auth_type Defaults to 'calypso', can also be 'jetpack'.
4561
			 */
4562
			$auth_type = apply_filters( 'jetpack_auth_type', 'calypso' );
4563
4564
			$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
4565
4566
			$args = urlencode_deep(
4567
				array(
4568
					'response_type' => 'code',
4569
					'client_id'     => Jetpack_Options::get_option( 'id' ),
4570
					'redirect_uri'  => add_query_arg(
4571
						array(
4572
							'action'   => 'authorize',
4573
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
4574
							'redirect' => urlencode( $redirect ),
4575
						),
4576
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
4577
					),
4578
					'state'         => $user->ID,
4579
					'scope'         => $signed_role,
4580
					'user_email'    => $user->user_email,
4581
					'user_login'    => $user->user_login,
4582
					'is_active'     => Jetpack::is_active(),
4583
					'jp_version'    => JETPACK__VERSION,
4584
					'auth_type'     => $auth_type,
4585
					'secret'        => $secrets['secret_1'],
4586
					'locale'        => ( isset( $gp_locale ) && isset( $gp_locale->slug ) ) ? $gp_locale->slug : '',
4587
					'blogname'      => get_option( 'blogname' ),
4588
					'site_url'      => site_url(),
4589
					'home_url'      => home_url(),
4590
					'site_icon'     => $site_icon,
4591
					'site_lang'     => get_locale(),
4592
					'_ui'           => $tracks_identity['_ui'],
4593
					'_ut'           => $tracks_identity['_ut']
4594
				)
4595
			);
4596
4597
			self::apply_activation_source_to_args( $args );
4598
4599
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
4600
		}
4601
4602
		if ( $from ) {
4603
			$url = add_query_arg( 'from', $from, $url );
4604
		}
4605
4606
4607
		if ( isset( $_GET['calypso_env'] ) ) {
4608
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
4609
		}
4610
4611
		return $raw ? $url : esc_url( $url );
4612
	}
4613
4614
	public static function apply_activation_source_to_args( &$args ) {
4615
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4616
4617
		if ( $activation_source_name ) {
4618
			$args['_as'] = urlencode( $activation_source_name );
4619
		}
4620
4621
		if ( $activation_source_keyword ) {
4622
			$args['_ak'] = urlencode( $activation_source_keyword );
4623
		}
4624
	}
4625
4626
	function build_reconnect_url( $raw = false ) {
4627
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
4628
		return $raw ? $url : esc_url( $url );
4629
	}
4630
4631
	public static function admin_url( $args = null ) {
4632
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
4633
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
4634
		return $url;
4635
	}
4636
4637
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4638
		$actionurl = str_replace( '&amp;', '&', $actionurl );
4639
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
4640
	}
4641
4642
	function dismiss_jetpack_notice() {
4643
4644
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
4645
			return;
4646
		}
4647
4648
		switch( $_GET['jetpack-notice'] ) {
4649
			case 'dismiss':
4650
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
4651
4652
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
4653
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
4654
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
4655
				}
4656
				break;
4657
			case 'jetpack-manage-opt-out':
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.

switch ($expr) {
case "A":
    doSomething(); //right
    break;
case "B":

    doSomethingElse(); //wrong
    break;

}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
4658
4659
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
4660
					// Don't show the banner again
4661
4662
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
4663
					// redirect back to the page that had the notice
4664
					if ( wp_get_referer() ) {
4665
						wp_safe_redirect( wp_get_referer() );
4666
					} else {
4667
						// Take me to Jetpack
4668
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4669
					}
4670
				}
4671
				break;
4672
			case 'jetpack-protect-multisite-opt-out':
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.

switch ($expr) {
case "A":
    doSomething(); //right
    break;
case "B":

    doSomethingElse(); //wrong
    break;

}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
4673
4674
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
4675
					// Don't show the banner again
4676
4677
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
4678
					// redirect back to the page that had the notice
4679
					if ( wp_get_referer() ) {
4680
						wp_safe_redirect( wp_get_referer() );
4681
					} else {
4682
						// Take me to Jetpack
4683
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4684
					}
4685
				}
4686
				break;
4687
			case 'jetpack-manage-opt-in':
4688
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
4689
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
4690
4691
					$redirection_url = Jetpack::admin_url();
4692
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4693
4694
					// Don't redirect form the Jetpack Setting Page
4695
					$referer_parsed = parse_url ( wp_get_referer() );
4696
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
4697
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
4698
						// Take the user to Jetpack home except when on the setting page
4699
						$redirection_url = wp_get_referer();
4700
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4701
					}
4702
					// Also update the JSON API FULL MANAGEMENT Option
4703
					Jetpack::activate_module( 'manage', false, false );
4704
4705
					// Special Message when option in.
4706
					Jetpack::state( 'optin-manage', 'true' );
4707
					// Activate the Module if not activated already
4708
4709
					// Redirect properly
4710
					wp_safe_redirect( $redirection_url );
4711
4712
				}
4713
				break;
4714
		}
4715
	}
4716
4717
	public static function admin_screen_configure_module( $module_id ) {
4718
4719
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
4720
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
4721
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
4722
				/**
4723
				 * Fires to diplay a custom module activation screen.
4724
				 *
4725
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
4726
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
4727
				 *
4728
				 * @module manage
4729
				 *
4730
				 * @since 3.8.0
4731
				 *
4732
				 * @param int $module_id Module ID.
4733
				 */
4734
				do_action( 'display_activate_module_setting_' . $module_id );
4735
			} else {
4736
				self::display_activate_module_link( $module_id );
4737
			}
4738
4739
			return false;
4740
		} ?>
4741
4742
		<div id="jp-settings-screen" style="position: relative">
4743
			<h3>
4744
			<?php
4745
				$module = Jetpack::get_module( $module_id );
4746
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4747
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4748
			?>
4749
			</h3>
4750
			<?php
4751
				/**
4752
				 * Fires within the displayed message when a feature configuation is updated.
4753
				 *
4754
				 * @since 3.4.0
4755
				 *
4756
				 * @param int $module_id Module ID.
4757
				 */
4758
				do_action( 'jetpack_notices_update_settings', $module_id );
4759
				/**
4760
				 * Fires when a feature configuation screen is loaded.
4761
				 * The dynamic part of the hook, $module_id, is the module ID.
4762
				 *
4763
				 * @since 1.1.0
4764
				 */
4765
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4766
			?>
4767
		</div><?php
4768
	}
4769
4770
	/**
4771
	 * Display link to activate the module to see the settings screen.
4772
	 * @param  string $module_id
4773
	 * @return null
4774
	 */
4775
	public static function display_activate_module_link( $module_id ) {
4776
4777
		$info =  Jetpack::get_module( $module_id );
4778
		$extra = '';
4779
		$activate_url = wp_nonce_url(
4780
				Jetpack::admin_url(
4781
					array(
4782
						'page'   => 'jetpack',
4783
						'action' => 'activate',
4784
						'module' => $module_id,
4785
					)
4786
				),
4787
				"jetpack_activate-$module_id"
4788
			);
4789
4790
		?>
4791
4792
		<div class="wrap configure-module">
4793
			<div id="jp-settings-screen">
4794
				<?php
4795
				if ( $module_id == 'json-api' ) {
4796
4797
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4798
4799
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4800
4801
					$info['description'] = sprintf( __( 'Manage your multiple Jetpack sites from our centralized dashboard at wordpress.com/sites. <a href="%s" target="_blank">Learn more</a>.', 'jetpack' ), 'https://jetpack.com/support/site-management' );
4802
4803
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4804
				} ?>
4805
4806
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4807
				<div class="narrow">
4808
					<p><?php echo  $info['description']; ?></p>
4809
					<?php if( $extra ) { ?>
4810
					<p><?php echo esc_html( $extra ); ?></p>
4811
					<?php } ?>
4812
					<p>
4813
						<?php
4814
						if( wp_get_referer() ) {
4815
							printf( __( '<a class="button-primary" href="%s">Activate Now</a> or <a href="%s" >return to previous page</a>.', 'jetpack' ) , $activate_url, wp_get_referer() );
4816
						} else {
4817
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4818
						} ?>
4819
					</p>
4820
				</div>
4821
4822
			</div>
4823
		</div>
4824
4825
		<?php
4826
	}
4827
4828
	public static function sort_modules( $a, $b ) {
4829
		if ( $a['sort'] == $b['sort'] )
4830
			return 0;
4831
4832
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4833
	}
4834
4835
	function ajax_recheck_ssl() {
4836
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4837
		$result = Jetpack::permit_ssl( true );
4838
		wp_send_json( array(
4839
			'enabled' => $result,
4840
			'message' => get_transient( 'jetpack_https_test_message' )
4841
		) );
4842
	}
4843
4844
/* Client API */
4845
4846
	/**
4847
	 * Returns the requested Jetpack API URL
4848
	 *
4849
	 * @return string
4850
	 */
4851
	public static function api_url( $relative_url ) {
4852
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4853
	}
4854
4855
	/**
4856
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4857
	 */
4858
	public static function fix_url_for_bad_hosts( $url ) {
4859
		if ( 0 !== strpos( $url, 'https://' ) ) {
4860
			return $url;
4861
		}
4862
4863
		switch ( JETPACK_CLIENT__HTTPS ) {
4864
			case 'ALWAYS' :
4865
				return $url;
4866
			case 'NEVER' :
4867
				return set_url_scheme( $url, 'http' );
4868
			// default : case 'AUTO' :
4869
		}
4870
4871
		// we now return the unmodified SSL URL by default, as a security precaution
4872
		return $url;
4873
	}
4874
4875
	/**
4876
	 * Create a random secret for validating onboarding payload
4877
	 *
4878
	 * @return string Secret token
4879
	 */
4880
	public static function create_onboarding_token() {
4881
		if ( false === ( $token = Jetpack_Options::get_option( 'onboarding' ) ) ) {
4882
			$token = wp_generate_password( 32, false );
4883
			Jetpack_Options::update_option( 'onboarding', $token );
4884
		}
4885
4886
		return $token;
4887
	}
4888
4889
	/**
4890
	 * Remove the onboarding token
4891
	 *
4892
	 * @return bool True on success, false on failure
4893
	 */
4894
	public static function invalidate_onboarding_token() {
4895
		return Jetpack_Options::delete_option( 'onboarding' );
4896
	}
4897
4898
	/**
4899
	 * Validate an onboarding token for a specific action
4900
	 *
4901
	 * @return boolean True if token/action pair is accepted, false if not
4902
	 */
4903
	public static function validate_onboarding_token_action( $token, $action ) {
4904
		// Compare tokens, bail if tokens do not match
4905
		if ( ! hash_equals( $token, Jetpack_Options::get_option( 'onboarding' ) ) ) {
4906
			return false;
4907
		}
4908
4909
		// List of valid actions we can take
4910
		$valid_actions = array(
4911
			'/jetpack/v4/settings',
4912
		);
4913
4914
		// Whitelist the action
4915
		if ( ! in_array( $action, $valid_actions ) ) {
4916
			return false;
4917
		}
4918
4919
		return true;
4920
	}
4921
4922
	/**
4923
	 * Checks to see if the URL is using SSL to connect with Jetpack
4924
	 *
4925
	 * @since 2.3.3
4926
	 * @return boolean
4927
	 */
4928
	public static function permit_ssl( $force_recheck = false ) {
4929
		// Do some fancy tests to see if ssl is being supported
4930
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4931
			$message = '';
4932
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4933
				$ssl = 0;
4934
			} else {
4935
				switch ( JETPACK_CLIENT__HTTPS ) {
4936
					case 'NEVER':
4937
						$ssl = 0;
4938
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4939
						break;
4940
					case 'ALWAYS':
4941
					case 'AUTO':
4942
					default:
4943
						$ssl = 1;
4944
						break;
4945
				}
4946
4947
				// If it's not 'NEVER', test to see
4948
				if ( $ssl ) {
4949
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4950
						$ssl = 0;
4951
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4952
					} else {
4953
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4954
						if ( is_wp_error( $response ) ) {
4955
							$ssl = 0;
4956
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4957
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4958
							$ssl = 0;
4959
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4960
						}
4961
					}
4962
				}
4963
			}
4964
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4965
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4966
		}
4967
4968
		return (bool) $ssl;
4969
	}
4970
4971
	/*
4972
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4973
	 */
4974
	public function alert_auto_ssl_fail() {
4975
		if ( ! current_user_can( 'manage_options' ) )
4976
			return;
4977
4978
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4979
		?>
4980
4981
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4982
			<div class="jp-banner__content">
4983
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4984
				<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>
4985
				<p>
4986
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4987
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4988
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4989
				</p>
4990
				<p>
4991
					<?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' ),
4992
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4993
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4994
				</p>
4995
			</div>
4996
		</div>
4997
		<style>
4998
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4999
		</style>
5000
		<script type="text/javascript">
5001
			jQuery( document ).ready( function( $ ) {
5002
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
5003
					var $this = $( this );
5004
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
5005
					$( '#jetpack-recheck-ssl-output' ).html( '' );
5006
					e.preventDefault();
5007
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
5008
					$.post( ajaxurl, data )
5009
					  .done( function( response ) {
5010
					  	if ( response.enabled ) {
5011
					  		$( '#jetpack-ssl-warning' ).hide();
5012
					  	} else {
5013
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
5014
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
5015
					  	}
5016
					  }.bind( $this ) );
5017
				} );
5018
			} );
5019
		</script>
5020
5021
		<?php
5022
	}
5023
5024
	/**
5025
	 * Returns the Jetpack XML-RPC API
5026
	 *
5027
	 * @return string
5028
	 */
5029
	public static function xmlrpc_api_url() {
5030
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
5031
		return untrailingslashit( $base ) . '/xmlrpc.php';
5032
	}
5033
5034
	/**
5035
	 * Creates two secret tokens and the end of life timestamp for them.
5036
	 *
5037
	 * Note these tokens are unique per call, NOT static per site for connecting.
5038
	 *
5039
	 * @since 2.6
5040
	 * @return array
5041
	 */
5042
	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
5043
		if ( ! $user_id ) {
5044
			$user_id = get_current_user_id();
5045
		}
5046
5047
		$secret_name  = 'jetpack_' . $action . '_' . $user_id;
5048
		$secrets      = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5049
5050
		if (
5051
			isset( $secrets[ $secret_name ] ) &&
5052
			$secrets[ $secret_name ]['exp'] > time()
5053
		) {
5054
			return $secrets[ $secret_name ];
5055
		}
5056
5057
		$secret_value = array(
5058
			'secret_1'  => wp_generate_password( 32, false ),
5059
			'secret_2'  => wp_generate_password( 32, false ),
5060
			'exp'       => time() + $exp,
5061
		);
5062
5063
		$secrets[ $secret_name ] = $secret_value;
5064
5065
		Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
5066
		return $secrets[ $secret_name ];
5067
	}
5068
5069
	public static function get_secrets( $action, $user_id ) {
5070
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
5071
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5072
5073
		if ( ! isset( $secrets[ $secret_name ] ) ) {
5074
			return new WP_Error( 'verify_secrets_missing', 'Verification secrets not found' );
5075
		}
5076
5077
		if ( $secrets[ $secret_name ]['exp'] < time() ) {
5078
			self::delete_secrets( $action, $user_id );
5079
			return new WP_Error( 'verify_secrets_expired', 'Verification took too long' );
5080
		}
5081
5082
		return $secrets[ $secret_name ];
5083
	}
5084
5085
	public static function delete_secrets( $action, $user_id ) {
5086
		$secret_name = 'jetpack_' . $action . '_' . $user_id;
5087
		$secrets = Jetpack_Options::get_raw_option( 'jetpack_secrets', array() );
5088
		if ( isset( $secrets[ $secret_name ] ) ) {
5089
			unset( $secrets[ $secret_name ] );
5090
			Jetpack_Options::update_raw_option( 'jetpack_secrets', $secrets );
5091
		}
5092
	}
5093
5094
	/**
5095
	 * Builds the timeout limit for queries talking with the wpcom servers.
5096
	 *
5097
	 * Based on local php max_execution_time in php.ini
5098
	 *
5099
	 * @since 2.6
5100
	 * @return int
5101
	 * @deprecated
5102
	 **/
5103
	public function get_remote_query_timeout_limit() {
5104
		_deprecated_function( __METHOD__, 'jetpack-5.4' );
5105
		return Jetpack::get_max_execution_time();
5106
	}
5107
5108
	/**
5109
	 * Builds the timeout limit for queries talking with the wpcom servers.
5110
	 *
5111
	 * Based on local php max_execution_time in php.ini
5112
	 *
5113
	 * @since 5.4
5114
	 * @return int
5115
	 **/
5116
	public static function get_max_execution_time() {
5117
		$timeout = (int) ini_get( 'max_execution_time' );
5118
5119
		// Ensure exec time set in php.ini
5120
		if ( ! $timeout ) {
5121
			$timeout = 30;
5122
		}
5123
		return $timeout;
5124
	}
5125
5126
	/**
5127
	 * Sets a minimum request timeout, and returns the current timeout
5128
	 *
5129
	 * @since 5.4
5130
	 **/
5131
	public static function set_min_time_limit( $min_timeout ) {
5132
		$timeout = self::get_max_execution_time();
5133
		if ( $timeout < $min_timeout ) {
5134
			$timeout = $min_timeout;
5135
			set_time_limit( $timeout );
5136
		}
5137
		return $timeout;
5138
	}
5139
5140
5141
	/**
5142
	 * Takes the response from the Jetpack register new site endpoint and
5143
	 * verifies it worked properly.
5144
	 *
5145
	 * @since 2.6
5146
	 * @return string|Jetpack_Error A JSON object on success or Jetpack_Error on failures
5147
	 **/
5148
	public function validate_remote_register_response( $response ) {
5149
	  if ( is_wp_error( $response ) ) {
5150
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
5151
		}
5152
5153
		$code   = wp_remote_retrieve_response_code( $response );
5154
		$entity = wp_remote_retrieve_body( $response );
5155
		if ( $entity )
5156
			$registration_response = json_decode( $entity );
5157
		else
5158
			$registration_response = false;
5159
5160
		$code_type = intval( $code / 100 );
5161
		if ( 5 == $code_type ) {
5162
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5163
		} elseif ( 408 == $code ) {
5164
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5165
		} elseif ( ! empty( $registration_response->error ) ) {
5166
			if ( 'xml_rpc-32700' == $registration_response->error && ! function_exists( 'xml_parser_create' ) ) {
5167
				$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' );
5168
			} else {
5169
				$error_description = isset( $registration_response->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $registration_response->error_description ) : '';
5170
			}
5171
5172
			return new Jetpack_Error( (string) $registration_response->error, $error_description, $code );
5173
		} elseif ( 200 != $code ) {
5174
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
5175
		}
5176
5177
		// Jetpack ID error block
5178
		if ( empty( $registration_response->jetpack_id ) ) {
5179
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
5180
		} elseif ( ! is_scalar( $registration_response->jetpack_id ) ) {
5181
			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 );
5182
		} elseif ( preg_match( '/[^0-9]/', $registration_response->jetpack_id ) ) {
5183
			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 );
5184
		}
5185
5186
	    return $registration_response;
5187
	}
5188
	/**
5189
	 * @return bool|WP_Error
5190
	 */
5191
	public static function register() {
5192
		JetpackTracking::record_user_event( 'jpc_register_begin' );
5193
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
5194
		$secrets = Jetpack::generate_secrets( 'register' );
5195
5196
		if (
5197
			empty( $secrets['secret_1'] ) ||
5198
			empty( $secrets['secret_2'] ) ||
5199
			empty( $secrets['exp'] )
5200
		) {
5201
			return new Jetpack_Error( 'missing_secrets' );
5202
		}
5203
5204
		// better to try (and fail) to set a higher timeout than this system
5205
		// supports than to have register fail for more users than it should
5206
		$timeout = Jetpack::set_min_time_limit( 60 ) / 2;
5207
5208
		$gmt_offset = get_option( 'gmt_offset' );
5209
		if ( ! $gmt_offset ) {
5210
			$gmt_offset = 0;
5211
		}
5212
5213
		$stats_options = get_option( 'stats_options' );
5214
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
5215
5216
		$tracks_identity = jetpack_tracks_get_identity( get_current_user_id() );
5217
5218
		$args = array(
5219
			'method'  => 'POST',
5220
			'body'    => array(
5221
				'siteurl'         => site_url(),
5222
				'home'            => home_url(),
5223
				'gmt_offset'      => $gmt_offset,
5224
				'timezone_string' => (string) get_option( 'timezone_string' ),
5225
				'site_name'       => (string) get_option( 'blogname' ),
5226
				'secret_1'        => $secrets['secret_1'],
5227
				'secret_2'        => $secrets['secret_2'],
5228
				'site_lang'       => get_locale(),
5229
				'timeout'         => $timeout,
5230
				'stats_id'        => $stats_id,
5231
				'state'           => get_current_user_id(),
5232
				'_ui'             => $tracks_identity['_ui'],
5233
				'_ut'             => $tracks_identity['_ut'],
5234
				'jetpack_version' => JETPACK__VERSION
5235
			),
5236
			'headers' => array(
5237
				'Accept' => 'application/json',
5238
			),
5239
			'timeout' => $timeout,
5240
		);
5241
5242
		self::apply_activation_source_to_args( $args['body'] );
5243
5244
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
5245
5246
		// Make sure the response is valid and does not contain any Jetpack errors
5247
		$registration_details = Jetpack::init()->validate_remote_register_response( $response );
5248
		if ( is_wp_error( $registration_details ) ) {
5249
			return $registration_details;
5250
		} elseif ( ! $registration_details ) {
5251
			return new Jetpack_Error( 'unknown_error', __( 'Unknown error registering your Jetpack site', 'jetpack' ), wp_remote_retrieve_response_code( $response ) );
5252
		}
5253
5254
		if ( empty( $registration_details->jetpack_secret ) || ! is_string( $registration_details->jetpack_secret ) ) {
5255
			return new Jetpack_Error( 'jetpack_secret', '', wp_remote_retrieve_response_code( $response ) );
5256
		}
5257
5258
		if ( isset( $registration_details->jetpack_public ) ) {
5259
			$jetpack_public = (int) $registration_details->jetpack_public;
5260
		} else {
5261
			$jetpack_public = false;
5262
		}
5263
5264
		Jetpack_Options::update_options(
5265
			array(
5266
				'id'         => (int)    $registration_details->jetpack_id,
5267
				'blog_token' => (string) $registration_details->jetpack_secret,
5268
				'public'     => $jetpack_public,
5269
			)
5270
		);
5271
5272
		/**
5273
		 * Fires when a site is registered on WordPress.com.
5274
		 *
5275
		 * @since 3.7.0
5276
		 *
5277
		 * @param int $json->jetpack_id Jetpack Blog ID.
5278
		 * @param string $json->jetpack_secret Jetpack Blog Token.
5279
		 * @param int|bool $jetpack_public Is the site public.
5280
		 */
5281
		do_action( 'jetpack_site_registered', $registration_details->jetpack_id, $registration_details->jetpack_secret, $jetpack_public );
5282
5283
		// Initialize Jump Start for the first and only time.
5284
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
5285
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
5286
5287
			$jetpack = Jetpack::init();
5288
5289
			$jetpack->stat( 'jumpstart', 'unique-views' );
5290
			$jetpack->do_stats( 'server_side' );
5291
		};
5292
5293
		return true;
5294
	}
5295
5296
	/**
5297
	 * If the db version is showing something other that what we've got now, bump it to current.
5298
	 *
5299
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
5300
	 */
5301
	public static function maybe_set_version_option() {
5302
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
5303
		if ( JETPACK__VERSION != $version ) {
5304
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
5305
5306
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
5307
				/** This action is documented in class.jetpack.php */
5308
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
5309
			}
5310
5311
			return true;
5312
		}
5313
		return false;
5314
	}
5315
5316
/* Client Server API */
5317
5318
	/**
5319
	 * Loads the Jetpack XML-RPC client
5320
	 */
5321
	public static function load_xml_rpc_client() {
5322
		require_once ABSPATH . WPINC . '/class-IXR.php';
5323
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
5324
	}
5325
5326
	/**
5327
	 * Resets the saved authentication state in between testing requests.
5328
	 */
5329
	public function reset_saved_auth_state() {
5330
		$this->xmlrpc_verification = null;
5331
		$this->rest_authentication_status = null;
5332
	}
5333
5334
	function verify_xml_rpc_signature() {
5335
		if ( $this->xmlrpc_verification ) {
5336
			return $this->xmlrpc_verification;
5337
		}
5338
5339
		// It's not for us
5340
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
5341
			return false;
5342
		}
5343
5344
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
5345
		if (
5346
			empty( $token_key )
5347
		||
5348
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
5349
		) {
5350
			return false;
5351
		}
5352
5353
		if ( '0' === $user_id ) {
5354
			$token_type = 'blog';
5355
			$user_id = 0;
5356
		} else {
5357
			$token_type = 'user';
5358
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
5359
				return false;
5360
			}
5361
			$user_id = (int) $user_id;
5362
5363
			$user = new WP_User( $user_id );
5364
			if ( ! $user || ! $user->exists() ) {
5365
				return false;
5366
			}
5367
		}
5368
5369
		$token = Jetpack_Data::get_access_token( $user_id );
5370
		if ( ! $token ) {
5371
			return false;
5372
		}
5373
5374
		$token_check = "$token_key.";
5375
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
5376
			return false;
5377
		}
5378
5379
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5380
5381
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5382
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
5383
			$post_data   = $_POST;
5384
			$file_hashes = array();
5385
			foreach ( $post_data as $post_data_key => $post_data_value ) {
5386
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
5387
					continue;
5388
				}
5389
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
5390
				$file_hashes[$post_data_key] = $post_data_value;
5391
			}
5392
5393
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
5394
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
5395
				$post_data[$post_data_key] = $post_data_value;
5396
			}
5397
5398
			ksort( $post_data );
5399
5400
			$body = http_build_query( stripslashes_deep( $post_data ) );
5401
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
5402
			$body = file_get_contents( 'php://input' );
5403
		} else {
5404
			$body = null;
5405
		}
5406
5407
		$signature = $jetpack_signature->sign_current_request(
5408
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
5409
		);
5410
5411
		if ( ! $signature ) {
5412
			return false;
5413
		} else if ( is_wp_error( $signature ) ) {
5414
			return $signature;
5415
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5416
			return false;
5417
		}
5418
5419
		$timestamp = (int) $_GET['timestamp'];
5420
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5421
5422
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5423
			return false;
5424
		}
5425
5426
		// Let's see if this is onboarding. In such case, use user token type and the provided user id.
5427
		if ( isset( $this->HTTP_RAW_POST_DATA ) || ! empty( $_GET['onboarding'] ) ) {
5428
			if ( ! empty( $_GET['onboarding'] ) ) {
5429
				$jpo = $_GET;
5430
			} else {
5431
				$jpo = json_decode( $this->HTTP_RAW_POST_DATA, true );
5432
			}
5433
5434
			$jpo_token = ! empty( $jpo['onboarding']['token'] ) ? $jpo['onboarding']['token'] : null;
5435
			$jpo_user = ! empty( $jpo['onboarding']['jpUser'] ) ? $jpo['onboarding']['jpUser'] : null;
5436
5437
			if (
5438
				isset( $jpo_user ) && isset( $jpo_token ) &&
5439
				is_email( $jpo_user ) && ctype_alnum( $jpo_token ) &&
5440
				isset( $_GET['rest_route'] ) &&
5441
				self::validate_onboarding_token_action( $jpo_token, $_GET['rest_route'] )
5442
			) {
5443
				$jpUser = get_user_by( 'email', $jpo_user );
5444
				if ( is_a( $jpUser, 'WP_User' ) ) {
5445
					wp_set_current_user( $jpUser->ID );
5446
					$user_can = is_multisite()
5447
						? current_user_can_for_blog( get_current_blog_id(), 'manage_options' )
5448
						: current_user_can( 'manage_options' );
5449
					if ( $user_can ) {
5450
						$token_type = 'user';
5451
						$token->external_user_id = $jpUser->ID;
5452
					}
5453
				}
5454
			}
5455
		}
5456
5457
		$this->xmlrpc_verification = array(
5458
			'type'    => $token_type,
5459
			'user_id' => $token->external_user_id,
5460
		);
5461
5462
		return $this->xmlrpc_verification;
5463
	}
5464
5465
	/**
5466
	 * Authenticates XML-RPC and other requests from the Jetpack Server
5467
	 */
5468
	function authenticate_jetpack( $user, $username, $password ) {
5469
		if ( is_a( $user, 'WP_User' ) ) {
5470
			return $user;
5471
		}
5472
5473
		$token_details = $this->verify_xml_rpc_signature();
5474
5475
		if ( ! $token_details || is_wp_error( $token_details ) ) {
5476
			return $user;
5477
		}
5478
5479
		if ( 'user' !== $token_details['type'] ) {
5480
			return $user;
5481
		}
5482
5483
		if ( ! $token_details['user_id'] ) {
5484
			return $user;
5485
		}
5486
5487
		nocache_headers();
5488
5489
		return new WP_User( $token_details['user_id'] );
5490
	}
5491
5492
	// Authenticates requests from Jetpack server to WP REST API endpoints.
5493
	// Uses the existing XMLRPC request signing implementation.
5494
	function wp_rest_authenticate( $user ) {
5495
		if ( ! empty( $user ) ) {
5496
			// Another authentication method is in effect.
5497
			return $user;
5498
		}
5499
5500
		if ( ! isset( $_GET['_for'] ) || $_GET['_for'] !== 'jetpack' ) {
5501
			// Nothing to do for this authentication method.
5502
			return null;
5503
		}
5504
5505
		if ( ! isset( $_GET['token'] ) && ! isset( $_GET['signature'] ) ) {
5506
			// Nothing to do for this authentication method.
5507
			return null;
5508
		}
5509
5510
		// Ensure that we always have the request body available.  At this
5511
		// point, the WP REST API code to determine the request body has not
5512
		// run yet.  That code may try to read from 'php://input' later, but
5513
		// this can only be done once per request in PHP versions prior to 5.6.
5514
		// So we will go ahead and perform this read now if needed, and save
5515
		// the request body where both the Jetpack signature verification code
5516
		// and the WP REST API code can see it.
5517
		if ( ! isset( $GLOBALS['HTTP_RAW_POST_DATA'] ) ) {
5518
			$GLOBALS['HTTP_RAW_POST_DATA'] = file_get_contents( 'php://input' );
5519
		}
5520
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5521
5522
		// Only support specific request parameters that have been tested and
5523
		// are known to work with signature verification.  A different method
5524
		// can be passed to the WP REST API via the '?_method=' parameter if
5525
		// needed.
5526
		if ( $_SERVER['REQUEST_METHOD'] !== 'GET' && $_SERVER['REQUEST_METHOD'] !== 'POST' ) {
5527
			$this->rest_authentication_status = new WP_Error(
5528
				'rest_invalid_request',
5529
				__( 'This request method is not supported.', 'jetpack' ),
5530
				array( 'status' => 400 )
5531
			);
5532
			return null;
5533
		}
5534
		if ( $_SERVER['REQUEST_METHOD'] !== 'POST' && ! empty( $this->HTTP_RAW_POST_DATA ) ) {
5535
			$this->rest_authentication_status = new WP_Error(
5536
				'rest_invalid_request',
5537
				__( 'This request method does not support body parameters.', 'jetpack' ),
5538
				array( 'status' => 400 )
5539
			);
5540
			return null;
5541
		}
5542
5543
		if ( ! empty( $_SERVER['CONTENT_TYPE'] ) ) {
5544
			$content_type = $_SERVER['CONTENT_TYPE'];
5545
		} elseif ( ! empty( $_SERVER['HTTP_CONTENT_TYPE'] ) ) {
5546
			$content_type = $_SERVER['HTTP_CONTENT_TYPE'];
5547
		}
5548
5549
		if (
5550
			isset( $content_type ) &&
5551
			$content_type !== 'application/x-www-form-urlencoded' &&
5552
			$content_type !== 'application/json'
5553
		) {
5554
			$this->rest_authentication_status = new WP_Error(
5555
				'rest_invalid_request',
5556
				__( 'This Content-Type is not supported.', 'jetpack' ),
5557
				array( 'status' => 400 )
5558
			);
5559
			return null;
5560
		}
5561
5562
		$verified = $this->verify_xml_rpc_signature();
5563
5564
		if ( is_wp_error( $verified ) ) {
5565
			$this->rest_authentication_status = $verified;
5566
			return null;
5567
		}
5568
5569
		if (
5570
			$verified &&
5571
			isset( $verified['type'] ) &&
5572
			'user' === $verified['type'] &&
5573
			! empty( $verified['user_id'] )
5574
		) {
5575
			// Authentication successful.
5576
			$this->rest_authentication_status = true;
5577
			return $verified['user_id'];
5578
		}
5579
5580
		// Something else went wrong.  Probably a signature error.
5581
		$this->rest_authentication_status = new WP_Error(
5582
			'rest_invalid_signature',
5583
			__( 'The request is not signed correctly.', 'jetpack' ),
5584
			array( 'status' => 400 )
5585
		);
5586
		return null;
5587
	}
5588
5589
	/**
5590
	 * Report authentication status to the WP REST API.
5591
	 *
5592
	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5593
	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5594
	 */
5595
	public function wp_rest_authentication_errors( $value ) {
5596
		if ( $value !== null ) {
5597
			return $value;
5598
		}
5599
		return $this->rest_authentication_status;
5600
	}
5601
5602
	function add_nonce( $timestamp, $nonce ) {
5603
		global $wpdb;
5604
		static $nonces_used_this_request = array();
5605
5606
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
5607
			return $nonces_used_this_request["$timestamp:$nonce"];
5608
		}
5609
5610
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
5611
		$timestamp = (int) $timestamp;
5612
		$nonce     = esc_sql( $nonce );
5613
5614
		// Raw query so we can avoid races: add_option will also update
5615
		$show_errors = $wpdb->show_errors( false );
5616
5617
		$old_nonce = $wpdb->get_row(
5618
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
5619
		);
5620
5621
		if ( is_null( $old_nonce ) ) {
5622
			$return = $wpdb->query(
5623
				$wpdb->prepare(
5624
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
5625
					"jetpack_nonce_{$timestamp}_{$nonce}",
5626
					time(),
5627
					'no'
5628
				)
5629
			);
5630
		} else {
5631
			$return = false;
5632
		}
5633
5634
		$wpdb->show_errors( $show_errors );
5635
5636
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
5637
5638
		return $return;
5639
	}
5640
5641
	/**
5642
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
5643
	 * Capture it here so we can verify the signature later.
5644
	 */
5645
	function xmlrpc_methods( $methods ) {
5646
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
5647
		return $methods;
5648
	}
5649
5650
	function public_xmlrpc_methods( $methods ) {
5651
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
5652
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
5653
		}
5654
		return $methods;
5655
	}
5656
5657
	function jetpack_getOptions( $args ) {
5658
		global $wp_xmlrpc_server;
5659
5660
		$wp_xmlrpc_server->escape( $args );
5661
5662
		$username	= $args[1];
5663
		$password	= $args[2];
5664
5665
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
5666
			return $wp_xmlrpc_server->error;
5667
		}
5668
5669
		$options = array();
5670
		$user_data = $this->get_connected_user_data();
5671
		if ( is_array( $user_data ) ) {
5672
			$options['jetpack_user_id'] = array(
5673
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
5674
				'readonly'      => true,
5675
				'value'         => $user_data['ID'],
5676
			);
5677
			$options['jetpack_user_login'] = array(
5678
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
5679
				'readonly'      => true,
5680
				'value'         => $user_data['login'],
5681
			);
5682
			$options['jetpack_user_email'] = array(
5683
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
5684
				'readonly'      => true,
5685
				'value'         => $user_data['email'],
5686
			);
5687
			$options['jetpack_user_site_count'] = array(
5688
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
5689
				'readonly'      => true,
5690
				'value'         => $user_data['site_count'],
5691
			);
5692
		}
5693
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
5694
		$args = stripslashes_deep( $args );
5695
		return $wp_xmlrpc_server->wp_getOptions( $args );
5696
	}
5697
5698
	function xmlrpc_options( $options ) {
5699
		$jetpack_client_id = false;
5700
		if ( self::is_active() ) {
5701
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
5702
		}
5703
		$options['jetpack_version'] = array(
5704
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
5705
				'readonly'      => true,
5706
				'value'         => JETPACK__VERSION,
5707
		);
5708
5709
		$options['jetpack_client_id'] = array(
5710
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
5711
				'readonly'      => true,
5712
				'value'         => $jetpack_client_id,
5713
		);
5714
		return $options;
5715
	}
5716
5717
	public static function clean_nonces( $all = false ) {
5718
		global $wpdb;
5719
5720
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
5721
		$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
5722
5723
		if ( true !== $all ) {
5724
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
5725
			$sql_args[] = time() - 3600;
5726
		}
5727
5728
		$sql .= ' ORDER BY `option_id` LIMIT 100';
5729
5730
		$sql = $wpdb->prepare( $sql, $sql_args );
5731
5732
		for ( $i = 0; $i < 1000; $i++ ) {
5733
			if ( ! $wpdb->query( $sql ) ) {
5734
				break;
5735
			}
5736
		}
5737
	}
5738
5739
	/**
5740
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
5741
	 * SET: state( $key, $value );
5742
	 * GET: $value = state( $key );
5743
	 *
5744
	 * @param string $key
5745
	 * @param string $value
5746
	 * @param bool $restate private
5747
	 */
5748
	public static function state( $key = null, $value = null, $restate = false ) {
5749
		static $state = array();
5750
		static $path, $domain;
5751
		if ( ! isset( $path ) ) {
5752
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
5753
			$admin_url = Jetpack::admin_url();
5754
			$bits      = parse_url( $admin_url );
5755
5756
			if ( is_array( $bits ) ) {
5757
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
5758
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
5759
			} else {
5760
				$path = $domain = null;
5761
			}
5762
		}
5763
5764
		// Extract state from cookies and delete cookies
5765
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
5766
			$yum = $_COOKIE[ 'jetpackState' ];
5767
			unset( $_COOKIE[ 'jetpackState' ] );
5768
			foreach ( $yum as $k => $v ) {
5769
				if ( strlen( $v ) )
5770
					$state[ $k ] = $v;
5771
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
5772
			}
5773
		}
5774
5775
		if ( $restate ) {
5776
			foreach ( $state as $k => $v ) {
5777
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
5778
			}
5779
			return;
5780
		}
5781
5782
		// Get a state variable
5783
		if ( isset( $key ) && ! isset( $value ) ) {
5784
			if ( array_key_exists( $key, $state ) )
5785
				return $state[ $key ];
5786
			return null;
5787
		}
5788
5789
		// Set a state variable
5790
		if ( isset ( $key ) && isset( $value ) ) {
5791
			if( is_array( $value ) && isset( $value[0] ) ) {
5792
				$value = $value[0];
5793
			}
5794
			$state[ $key ] = $value;
5795
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
5796
		}
5797
	}
5798
5799
	public static function restate() {
5800
		Jetpack::state( null, null, true );
5801
	}
5802
5803
	public static function check_privacy( $file ) {
5804
		static $is_site_publicly_accessible = null;
5805
5806
		if ( is_null( $is_site_publicly_accessible ) ) {
5807
			$is_site_publicly_accessible = false;
5808
5809
			Jetpack::load_xml_rpc_client();
5810
			$rpc = new Jetpack_IXR_Client();
5811
5812
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
5813
			if ( $success ) {
5814
				$response = $rpc->getResponse();
5815
				if ( $response ) {
5816
					$is_site_publicly_accessible = true;
5817
				}
5818
			}
5819
5820
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
5821
		}
5822
5823
		if ( $is_site_publicly_accessible ) {
5824
			return;
5825
		}
5826
5827
		$module_slug = self::get_module_slug( $file );
5828
5829
		$privacy_checks = Jetpack::state( 'privacy_checks' );
5830
		if ( ! $privacy_checks ) {
5831
			$privacy_checks = $module_slug;
5832
		} else {
5833
			$privacy_checks .= ",$module_slug";
5834
		}
5835
5836
		Jetpack::state( 'privacy_checks', $privacy_checks );
5837
	}
5838
5839
	/**
5840
	 * Helper method for multicall XMLRPC.
5841
	 */
5842
	public static function xmlrpc_async_call() {
5843
		global $blog_id;
5844
		static $clients = array();
5845
5846
		$client_blog_id = is_multisite() ? $blog_id : 0;
5847
5848
		if ( ! isset( $clients[$client_blog_id] ) ) {
5849
			Jetpack::load_xml_rpc_client();
5850
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
5851
			if ( function_exists( 'ignore_user_abort' ) ) {
5852
				ignore_user_abort( true );
5853
			}
5854
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
5855
		}
5856
5857
		$args = func_get_args();
5858
5859
		if ( ! empty( $args[0] ) ) {
5860
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
5861
		} elseif ( is_multisite() ) {
5862
			foreach ( $clients as $client_blog_id => $client ) {
5863
				if ( ! $client_blog_id || empty( $client->calls ) ) {
5864
					continue;
5865
				}
5866
5867
				$switch_success = switch_to_blog( $client_blog_id, true );
5868
				if ( ! $switch_success ) {
5869
					continue;
5870
				}
5871
5872
				flush();
5873
				$client->query();
5874
5875
				restore_current_blog();
5876
			}
5877
		} else {
5878
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
5879
				flush();
5880
				$clients[0]->query();
5881
			}
5882
		}
5883
	}
5884
5885
	public static function staticize_subdomain( $url ) {
5886
5887
		// Extract hostname from URL
5888
		$host = parse_url( $url, PHP_URL_HOST );
5889
5890
		// Explode hostname on '.'
5891
		$exploded_host = explode( '.', $host );
5892
5893
		// Retrieve the name and TLD
5894
		if ( count( $exploded_host ) > 1 ) {
5895
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
5896
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
5897
			// Rebuild domain excluding subdomains
5898
			$domain = $name . '.' . $tld;
5899
		} else {
5900
			$domain = $host;
5901
		}
5902
		// Array of Automattic domains
5903
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
5904
5905
		// Return $url if not an Automattic domain
5906
		if ( ! in_array( $domain, $domain_whitelist ) ) {
5907
			return $url;
5908
		}
5909
5910
		if ( is_ssl() ) {
5911
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
5912
		}
5913
5914
		srand( crc32( basename( $url ) ) );
5915
		$static_counter = rand( 0, 2 );
5916
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
5917
5918
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
5919
	}
5920
5921
/* JSON API Authorization */
5922
5923
	/**
5924
	 * Handles the login action for Authorizing the JSON API
5925
	 */
5926
	function login_form_json_api_authorization() {
5927
		$this->verify_json_api_authorization_request();
5928
5929
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
5930
5931
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
5932
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
5933
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
5934
	}
5935
5936
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
5937
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
5938
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
5939
			return $url;
5940
		}
5941
5942
		$parsed_url = parse_url( $url );
5943
		$url = strtok( $url, '?' );
5944
		$url = "$url?{$_SERVER['QUERY_STRING']}";
5945
		if ( ! empty( $parsed_url['query'] ) )
5946
			$url .= "&{$parsed_url['query']}";
5947
5948
		return $url;
5949
	}
5950
5951
	// Make sure the POSTed request is handled by the same action
5952
	function preserve_action_in_login_form_for_json_api_authorization() {
5953
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
5954
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
5955
	}
5956
5957
	// If someone logs in to approve API access, store the Access Code in usermeta
5958
	function store_json_api_authorization_token( $user_login, $user ) {
5959
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
5960
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
5961
		$token = wp_generate_password( 32, false );
5962
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
5963
	}
5964
5965
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
5966
	function allow_wpcom_public_api_domain( $domains ) {
5967
		$domains[] = 'public-api.wordpress.com';
5968
		return $domains;
5969
	}
5970
5971
	// Add all wordpress.com environments to the safe redirect whitelist
5972
	function allow_wpcom_environments( $domains ) {
5973
		$domains[] = 'wordpress.com';
5974
		$domains[] = 'wpcalypso.wordpress.com';
5975
		$domains[] = 'horizon.wordpress.com';
5976
		$domains[] = 'calypso.localhost';
5977
		return $domains;
5978
	}
5979
5980
	// Add the Access Code details to the public-api.wordpress.com redirect
5981
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
5982
		return add_query_arg(
5983
			urlencode_deep(
5984
				array(
5985
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
5986
					'jetpack-user-id' => (int) $user->ID,
5987
					'jetpack-state'   => $this->json_api_authorization_request['state'],
5988
				)
5989
			),
5990
			$redirect_to
5991
		);
5992
	}
5993
5994
5995
	/**
5996
	 * Verifies the request by checking the signature
5997
	 *
5998
	 * @since 4.6.0 Method was updated to use `$_REQUEST` instead of `$_GET` and `$_POST`. Method also updated to allow
5999
	 * passing in an `$environment` argument that overrides `$_REQUEST`. This was useful for integrating with SSO.
6000
	 *
6001
	 * @param null|array $environment
6002
	 */
6003
	function verify_json_api_authorization_request( $environment = null ) {
6004
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
6005
6006
		$environment = is_null( $environment )
6007
			? $_REQUEST
6008
			: $environment;
6009
6010
		list( $envToken, $envVersion, $envUserId ) = explode( ':', $environment['token'] );
6011
		$token = Jetpack_Data::get_access_token( $envUserId );
6012
		if ( ! $token || empty( $token->secret ) ) {
6013
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
6014
		}
6015
6016
		$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' );
6017
6018
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
6019
6020
		if ( isset( $environment['jetpack_json_api_original_query'] ) ) {
6021
			$signature = $jetpack_signature->sign_request(
6022
				$environment['token'],
6023
				$environment['timestamp'],
6024
				$environment['nonce'],
6025
				'',
6026
				'GET',
6027
				$environment['jetpack_json_api_original_query'],
6028
				null,
6029
				true
6030
			);
6031
		} else {
6032
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
6033
		}
6034
6035
		if ( ! $signature ) {
6036
			wp_die( $die_error );
6037
		} else if ( is_wp_error( $signature ) ) {
6038
			wp_die( $die_error );
6039
		} else if ( ! hash_equals( $signature, $environment['signature'] ) ) {
6040
			if ( is_ssl() ) {
6041
				// 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
6042
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
6043
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $environment['signature'] ) ) {
6044
					wp_die( $die_error );
6045
				}
6046
			} else {
6047
				wp_die( $die_error );
6048
			}
6049
		}
6050
6051
		$timestamp = (int) $environment['timestamp'];
6052
		$nonce     = stripslashes( (string) $environment['nonce'] );
6053
6054
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
6055
			// De-nonce the nonce, at least for 5 minutes.
6056
			// 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)
6057
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
6058
			if ( $old_nonce_time < time() - 300 ) {
6059
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
6060
			}
6061
		}
6062
6063
		$data = json_decode( base64_decode( stripslashes( $environment['data'] ) ) );
6064
		$data_filters = array(
6065
			'state'        => 'opaque',
6066
			'client_id'    => 'int',
6067
			'client_title' => 'string',
6068
			'client_image' => 'url',
6069
		);
6070
6071
		foreach ( $data_filters as $key => $sanitation ) {
6072
			if ( ! isset( $data->$key ) ) {
6073
				wp_die( $die_error );
6074
			}
6075
6076
			switch ( $sanitation ) {
6077
			case 'int' :
6078
				$this->json_api_authorization_request[$key] = (int) $data->$key;
6079
				break;
6080
			case 'opaque' :
6081
				$this->json_api_authorization_request[$key] = (string) $data->$key;
6082
				break;
6083
			case 'string' :
6084
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
6085
				break;
6086
			case 'url' :
6087
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
6088
				break;
6089
			}
6090
		}
6091
6092
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
6093
			wp_die( $die_error );
6094
		}
6095
	}
6096
6097
	function login_message_json_api_authorization( $message ) {
6098
		return '<p class="message">' . sprintf(
6099
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
6100
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
6101
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
6102
	}
6103
6104
	/**
6105
	 * Get $content_width, but with a <s>twist</s> filter.
6106
	 */
6107
	public static function get_content_width() {
6108
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
6109
		/**
6110
		 * Filter the Content Width value.
6111
		 *
6112
		 * @since 2.2.3
6113
		 *
6114
		 * @param string $content_width Content Width value.
6115
		 */
6116
		return apply_filters( 'jetpack_content_width', $content_width );
6117
	}
6118
6119
	/**
6120
	 * Pings the WordPress.com Mirror Site for the specified options.
6121
	 *
6122
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
6123
	 *
6124
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
6125
	 */
6126
	public function get_cloud_site_options( $option_names ) {
6127
		$option_names = array_filter( (array) $option_names, 'is_string' );
6128
6129
		Jetpack::load_xml_rpc_client();
6130
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
6131
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
6132
		if ( $xml->isError() ) {
6133
			return array(
6134
				'error_code' => $xml->getErrorCode(),
6135
				'error_msg'  => $xml->getErrorMessage(),
6136
			);
6137
		}
6138
		$cloud_site_options = $xml->getResponse();
6139
6140
		return $cloud_site_options;
6141
	}
6142
6143
	/**
6144
	 * Checks if the site is currently in an identity crisis.
6145
	 *
6146
	 * @return array|bool Array of options that are in a crisis, or false if everything is OK.
6147
	 */
6148
	public static function check_identity_crisis() {
6149
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || ! self::validate_sync_error_idc_option() ) {
6150
			return false;
6151
		}
6152
6153
		return Jetpack_Options::get_option( 'sync_error_idc' );
6154
	}
6155
6156
	/**
6157
	 * Checks whether the home and siteurl specifically are whitelisted
6158
	 * Written so that we don't have re-check $key and $value params every time
6159
	 * we want to check if this site is whitelisted, for example in footer.php
6160
	 *
6161
	 * @since  3.8.0
6162
	 * @return bool True = already whitelisted False = not whitelisted
6163
	 */
6164
	public static function is_staging_site() {
6165
		$is_staging = false;
6166
6167
		$known_staging = array(
6168
			'urls' => array(
6169
				'#\.staging\.wpengine\.com$#i', // WP Engine
6170
				'#\.staging\.kinsta\.com$#i',   // Kinsta.com
6171
				),
6172
			'constants' => array(
6173
				'IS_WPE_SNAPSHOT',      // WP Engine
6174
				'KINSTA_DEV_ENV',       // Kinsta.com
6175
				'WPSTAGECOACH_STAGING', // WP Stagecoach
6176
				'JETPACK_STAGING_MODE', // Generic
6177
				)
6178
			);
6179
		/**
6180
		 * Filters the flags of known staging sites.
6181
		 *
6182
		 * @since 3.9.0
6183
		 *
6184
		 * @param array $known_staging {
6185
		 *     An array of arrays that each are used to check if the current site is staging.
6186
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
6187
		 *     @type array $constants PHP constants of known staging/developement environments.
6188
		 *  }
6189
		 */
6190
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
6191
6192
		if ( isset( $known_staging['urls'] ) ) {
6193
			foreach ( $known_staging['urls'] as $url ){
6194
				if ( preg_match( $url, site_url() ) ) {
6195
					$is_staging = true;
6196
					break;
6197
				}
6198
			}
6199
		}
6200
6201
		if ( isset( $known_staging['constants'] ) ) {
6202
			foreach ( $known_staging['constants'] as $constant ) {
6203
				if ( defined( $constant ) && constant( $constant ) ) {
6204
					$is_staging = true;
6205
				}
6206
			}
6207
		}
6208
6209
		// Last, let's check if sync is erroring due to an IDC. If so, set the site to staging mode.
6210
		if ( ! $is_staging && self::validate_sync_error_idc_option() ) {
6211
			$is_staging = true;
6212
		}
6213
6214
		/**
6215
		 * Filters is_staging_site check.
6216
		 *
6217
		 * @since 3.9.0
6218
		 *
6219
		 * @param bool $is_staging If the current site is a staging site.
6220
		 */
6221
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
6222
	}
6223
6224
	/**
6225
	 * Checks whether the sync_error_idc option is valid or not, and if not, will do cleanup.
6226
	 *
6227
	 * @since 4.4.0
6228
	 * @since 5.4.0 Do not call get_sync_error_idc_option() unless site is in IDC
6229
	 *
6230
	 * @return bool
6231
	 */
6232
	public static function validate_sync_error_idc_option() {
6233
		$is_valid = false;
6234
6235
		$idc_allowed = get_transient( 'jetpack_idc_allowed' );
6236
		if ( false === $idc_allowed ) {
6237
			$response = wp_remote_get( 'https://jetpack.com/is-idc-allowed/' );
6238
			if ( 200 === (int) wp_remote_retrieve_response_code( $response ) ) {
6239
				$json = json_decode( wp_remote_retrieve_body( $response ) );
6240
				$idc_allowed = isset( $json, $json->result ) && $json->result ? '1' : '0';
6241
				$transient_duration = HOUR_IN_SECONDS;
6242
			} else {
6243
				// If the request failed for some reason, then assume IDC is allowed and set shorter transient.
6244
				$idc_allowed = '1';
6245
				$transient_duration = 5 * MINUTE_IN_SECONDS;
6246
			}
6247
6248
			set_transient( 'jetpack_idc_allowed', $idc_allowed, $transient_duration );
6249
		}
6250
6251
		// Is the site opted in and does the stored sync_error_idc option match what we now generate?
6252
		$sync_error = Jetpack_Options::get_option( 'sync_error_idc' );
6253
		if ( $idc_allowed && $sync_error && self::sync_idc_optin() ) {
6254
			$local_options = self::get_sync_error_idc_option();
6255
			if ( $sync_error['home'] === $local_options['home'] && $sync_error['siteurl'] === $local_options['siteurl'] ) {
6256
				$is_valid = true;
6257
			}
6258
		}
6259
6260
		/**
6261
		 * Filters whether the sync_error_idc option is valid.
6262
		 *
6263
		 * @since 4.4.0
6264
		 *
6265
		 * @param bool $is_valid If the sync_error_idc is valid or not.
6266
		 */
6267
		$is_valid = (bool) apply_filters( 'jetpack_sync_error_idc_validation', $is_valid );
6268
6269
		if ( ! $idc_allowed || ( ! $is_valid && $sync_error ) ) {
6270
			// Since the option exists, and did not validate, delete it
6271
			Jetpack_Options::delete_option( 'sync_error_idc' );
6272
		}
6273
6274
		return $is_valid;
6275
	}
6276
6277
	/**
6278
	 * Normalizes a url by doing three things:
6279
	 *  - Strips protocol
6280
	 *  - Strips www
6281
	 *  - Adds a trailing slash
6282
	 *
6283
	 * @since 4.4.0
6284
	 * @param string $url
6285
	 * @return WP_Error|string
6286
	 */
6287
	public static function normalize_url_protocol_agnostic( $url ) {
6288
		$parsed_url = wp_parse_url( trailingslashit( esc_url_raw( $url ) ) );
6289
		if ( ! $parsed_url || empty( $parsed_url['host'] ) || empty( $parsed_url['path'] ) ) {
6290
			return new WP_Error( 'cannot_parse_url', sprintf( esc_html__( 'Cannot parse URL %s', 'jetpack' ), $url ) );
6291
		}
6292
6293
		// Strip www and protocols
6294
		$url = preg_replace( '/^www\./i', '', $parsed_url['host'] . $parsed_url['path'] );
6295
		return $url;
6296
	}
6297
6298
	/**
6299
	 * Gets the value that is to be saved in the jetpack_sync_error_idc option.
6300
	 *
6301
	 * @since 4.4.0
6302
	 * @since 5.4.0 Add transient since home/siteurl retrieved directly from DB
6303
	 *
6304
	 * @param array $response
6305
	 * @return array Array of the local urls, wpcom urls, and error code
6306
	 */
6307
	public static function get_sync_error_idc_option( $response = array() ) {
6308
		// Since the local options will hit the database directly, store the values
6309
		// in a transient to allow for autoloading and caching on subsequent views.
6310
		$local_options = get_transient( 'jetpack_idc_local' );
6311
		if ( false === $local_options ) {
6312
			require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-functions.php';
6313
			$local_options = array(
6314
				'home'    => Jetpack_Sync_Functions::home_url(),
6315
				'siteurl' => Jetpack_Sync_Functions::site_url(),
6316
			);
6317
			set_transient( 'jetpack_idc_local', $local_options, MINUTE_IN_SECONDS );
6318
		}
6319
6320
		$options = array_merge( $local_options, $response );
6321
6322
		$returned_values = array();
6323
		foreach( $options as $key => $option ) {
6324
			if ( 'error_code' === $key ) {
6325
				$returned_values[ $key ] = $option;
6326
				continue;
6327
			}
6328
6329
			if ( is_wp_error( $normalized_url = self::normalize_url_protocol_agnostic( $option ) ) ) {
6330
				continue;
6331
			}
6332
6333
			$returned_values[ $key ] = $normalized_url;
6334
		}
6335
6336
		set_transient( 'jetpack_idc_option', $returned_values, MINUTE_IN_SECONDS );
6337
6338
		return $returned_values;
6339
	}
6340
6341
	/**
6342
	 * Returns the value of the jetpack_sync_idc_optin filter, or constant.
6343
	 * If set to true, the site will be put into staging mode.
6344
	 *
6345
	 * @since 4.3.2
6346
	 * @return bool
6347
	 */
6348
	public static function sync_idc_optin() {
6349
		if ( Jetpack_Constants::is_defined( 'JETPACK_SYNC_IDC_OPTIN' ) ) {
6350
			$default = Jetpack_Constants::get_constant( 'JETPACK_SYNC_IDC_OPTIN' );
6351
		} else {
6352
			$default = ! Jetpack_Constants::is_defined( 'SUNRISE' ) && ! is_multisite();
6353
		}
6354
6355
		/**
6356
		 * Allows sites to optin to IDC mitigation which blocks the site from syncing to WordPress.com when the home
6357
		 * URL or site URL do not match what WordPress.com expects. The default value is either false, or the value of
6358
		 * JETPACK_SYNC_IDC_OPTIN constant if set.
6359
		 *
6360
		 * @since 4.3.2
6361
		 *
6362
		 * @param bool $default Whether the site is opted in to IDC mitigation.
6363
		 */
6364
		return (bool) apply_filters( 'jetpack_sync_idc_optin', $default );
6365
	}
6366
6367
	/**
6368
	 * Maybe Use a .min.css stylesheet, maybe not.
6369
	 *
6370
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
6371
	 */
6372
	public static function maybe_min_asset( $url, $path, $plugin ) {
6373
		// Short out on things trying to find actual paths.
6374
		if ( ! $path || empty( $plugin ) ) {
6375
			return $url;
6376
		}
6377
6378
		$path = ltrim( $path, '/' );
6379
6380
		// Strip out the abspath.
6381
		$base = dirname( plugin_basename( $plugin ) );
6382
6383
		// Short out on non-Jetpack assets.
6384
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
6385
			return $url;
6386
		}
6387
6388
		// File name parsing.
6389
		$file              = "{$base}/{$path}";
6390
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
6391
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
6392
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
6393
		$extension         = array_shift( $file_name_parts_r );
6394
6395
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
6396
			// Already pointing at the minified version.
6397
			if ( 'min' === $file_name_parts_r[0] ) {
6398
				return $url;
6399
			}
6400
6401
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
6402
			if ( file_exists( $min_full_path ) ) {
6403
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
6404
				// If it's a CSS file, stash it so we can set the .min suffix for rtl-ing.
6405
				if ( 'css' === $extension ) {
6406
					$key = str_replace( JETPACK__PLUGIN_DIR, 'jetpack/', $min_full_path );
6407
					self::$min_assets[ $key ] = $path;
6408
				}
6409
			}
6410
		}
6411
6412
		return $url;
6413
	}
6414
6415
	/**
6416
	 * If the asset is minified, let's flag .min as the suffix.
6417
	 *
6418
	 * Attached to `style_loader_src` filter.
6419
	 *
6420
	 * @param string $tag The tag that would link to the external asset.
6421
	 * @param string $handle The registered handle of the script in question.
6422
	 * @param string $href The url of the asset in question.
6423
	 */
6424
	public static function set_suffix_on_min( $src, $handle ) {
6425
		if ( false === strpos( $src, '.min.css' ) ) {
6426
			return $src;
6427
		}
6428
6429
		if ( ! empty( self::$min_assets ) ) {
6430
			foreach ( self::$min_assets as $file => $path ) {
6431
				if ( false !== strpos( $src, $file ) ) {
6432
					wp_style_add_data( $handle, 'suffix', '.min' );
6433
					return $src;
6434
				}
6435
			}
6436
		}
6437
6438
		return $src;
6439
	}
6440
6441
	/**
6442
	 * Maybe inlines a stylesheet.
6443
	 *
6444
	 * If you'd like to inline a stylesheet instead of printing a link to it,
6445
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
6446
	 *
6447
	 * Attached to `style_loader_tag` filter.
6448
	 *
6449
	 * @param string $tag The tag that would link to the external asset.
6450
	 * @param string $handle The registered handle of the script in question.
6451
	 *
6452
	 * @return string
6453
	 */
6454
	public static function maybe_inline_style( $tag, $handle ) {
6455
		global $wp_styles;
6456
		$item = $wp_styles->registered[ $handle ];
6457
6458
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
6459
			return $tag;
6460
		}
6461
6462
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
6463
			$href = $matches[1];
6464
			// Strip off query string
6465
			if ( $pos = strpos( $href, '?' ) ) {
6466
				$href = substr( $href, 0, $pos );
6467
			}
6468
			// Strip off fragment
6469
			if ( $pos = strpos( $href, '#' ) ) {
6470
				$href = substr( $href, 0, $pos );
6471
			}
6472
		} else {
6473
			return $tag;
6474
		}
6475
6476
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
6477
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
6478
			return $tag;
6479
		}
6480
6481
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
6482
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
6483
			// And this isn't the pass that actually deals with the RTL version...
6484
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
6485
				// Short out, as the RTL version will deal with it in a moment.
6486
				return $tag;
6487
			}
6488
		}
6489
6490
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
6491
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
6492
		if ( $css ) {
6493
			$tag = "<!-- Inline {$item->handle} -->\r\n";
6494
			if ( empty( $item->extra['after'] ) ) {
6495
				wp_add_inline_style( $handle, $css );
6496
			} else {
6497
				array_unshift( $item->extra['after'], $css );
6498
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
6499
			}
6500
		}
6501
6502
		return $tag;
6503
	}
6504
6505
	/**
6506
	 * Loads a view file from the views
6507
	 *
6508
	 * Data passed in with the $data parameter will be available in the
6509
	 * template file as $data['value']
6510
	 *
6511
	 * @param string $template - Template file to load
6512
	 * @param array $data - Any data to pass along to the template
6513
	 * @return boolean - If template file was found
6514
	 **/
6515
	public function load_view( $template, $data = array() ) {
6516
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
6517
6518
		if( file_exists( $views_dir . $template ) ) {
6519
			require_once( $views_dir . $template );
6520
			return true;
6521
		}
6522
6523
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
6524
		return false;
6525
	}
6526
6527
	/**
6528
	 * Throws warnings for deprecated hooks to be removed from Jetpack
6529
	 */
6530
	public function deprecated_hooks() {
6531
		global $wp_filter;
6532
6533
		/*
6534
		 * Format:
6535
		 * deprecated_filter_name => replacement_name
6536
		 *
6537
		 * If there is no replacement, use null for replacement_name
6538
		 */
6539
		$deprecated_list = array(
6540
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
6541
			'wpl_sharing_2014_1'                                     => null,
6542
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
6543
			'jetpack_identity_crisis_options_to_check'               => null,
6544
			'update_option_jetpack_single_user_site'                 => null,
6545
			'audio_player_default_colors'                            => null,
6546
			'add_option_jetpack_featured_images_enabled'             => null,
6547
			'add_option_jetpack_update_details'                      => null,
6548
			'add_option_jetpack_updates'                             => null,
6549
			'add_option_jetpack_network_name'                        => null,
6550
			'add_option_jetpack_network_allow_new_registrations'     => null,
6551
			'add_option_jetpack_network_add_new_users'               => null,
6552
			'add_option_jetpack_network_site_upload_space'           => null,
6553
			'add_option_jetpack_network_upload_file_types'           => null,
6554
			'add_option_jetpack_network_enable_administration_menus' => null,
6555
			'add_option_jetpack_is_multi_site'                       => null,
6556
			'add_option_jetpack_is_main_network'                     => null,
6557
			'add_option_jetpack_main_network_site'                   => null,
6558
			'jetpack_sync_all_registered_options'                    => null,
6559
			'jetpack_has_identity_crisis'                            => 'jetpack_sync_error_idc_validation',
6560
			'jetpack_is_post_mailable'                               => null,
6561
			'jetpack_seo_site_host'                                  => null,
6562
			'jetpack_installed_plugin'                               => 'jetpack_plugin_installed',
6563
			'jetpack_holiday_snow_option_name'                       => null,
6564
			'jetpack_holiday_chance_of_snow'                         => null,
6565
			'jetpack_holiday_snow_js_url'                            => null,
6566
			'jetpack_is_holiday_snow_season'                         => null,
6567
			'jetpack_holiday_snow_option_updated'                    => null,
6568
			'jetpack_holiday_snowing'                                => null,
6569
			'jetpack_sso_auth_cookie_expirtation'                    => 'jetpack_sso_auth_cookie_expiration',
6570
		);
6571
6572
		// This is a silly loop depth. Better way?
6573
		foreach( $deprecated_list AS $hook => $hook_alt ) {
6574
			if ( has_action( $hook ) ) {
6575
				foreach( $wp_filter[ $hook ] AS $func => $values ) {
6576
					foreach( $values AS $hooked ) {
6577
						if ( is_callable( $hooked['function'] ) ) {
6578
							$function_name = 'an anonymous function';
6579
						} else {
6580
							$function_name = $hooked['function'];
6581
						}
6582
						_deprecated_function( $hook . ' used for ' . $function_name, null, $hook_alt );
6583
					}
6584
				}
6585
			}
6586
		}
6587
	}
6588
6589
	/**
6590
	 * Converts any url in a stylesheet, to the correct absolute url.
6591
	 *
6592
	 * Considerations:
6593
	 *  - Normal, relative URLs     `feh.png`
6594
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
6595
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
6596
	 *  - Absolute URLs             `http://domain.com/feh.png`
6597
	 *  - Domain root relative URLs `/feh.png`
6598
	 *
6599
	 * @param $css string: The raw CSS -- should be read in directly from the file.
6600
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6601
	 *
6602
	 * @return mixed|string
6603
	 */
6604
	public static function absolutize_css_urls( $css, $css_file_url ) {
6605
		$pattern = '#url\((?P<path>[^)]*)\)#i';
6606
		$css_dir = dirname( $css_file_url );
6607
		$p       = parse_url( $css_dir );
6608
		$domain  = sprintf(
6609
					'%1$s//%2$s%3$s%4$s',
6610
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
6611
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
6612
					$p['host'],
6613
					isset( $p['port'] )             ? ":{$p['port']}" : ''
6614
				);
6615
6616
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
6617
			$find = $replace = array();
6618
			foreach ( $matches as $match ) {
6619
				$url = trim( $match['path'], "'\" \t" );
6620
6621
				// If this is a data url, we don't want to mess with it.
6622
				if ( 'data:' === substr( $url, 0, 5 ) ) {
6623
					continue;
6624
				}
6625
6626
				// If this is an absolute or protocol-agnostic url,
6627
				// we don't want to mess with it.
6628
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
6629
					continue;
6630
				}
6631
6632
				switch ( substr( $url, 0, 1 ) ) {
6633
					case '/':
6634
						$absolute = $domain . $url;
6635
						break;
6636
					default:
6637
						$absolute = $css_dir . '/' . $url;
6638
				}
6639
6640
				$find[]    = $match[0];
6641
				$replace[] = sprintf( 'url("%s")', $absolute );
6642
			}
6643
			$css = str_replace( $find, $replace, $css );
6644
		}
6645
6646
		return $css;
6647
	}
6648
6649
	/**
6650
	 * This methods removes all of the registered css files on the front end
6651
	 * from Jetpack in favor of using a single file. In effect "imploding"
6652
	 * all the files into one file.
6653
	 *
6654
	 * Pros:
6655
	 * - Uses only ONE css asset connection instead of 15
6656
	 * - Saves a minimum of 56k
6657
	 * - Reduces server load
6658
	 * - Reduces time to first painted byte
6659
	 *
6660
	 * Cons:
6661
	 * - Loads css for ALL modules. However all selectors are prefixed so it
6662
	 *		should not cause any issues with themes.
6663
	 * - Plugins/themes dequeuing styles no longer do anything. See
6664
	 *		jetpack_implode_frontend_css filter for a workaround
6665
	 *
6666
	 * For some situations developers may wish to disable css imploding and
6667
	 * instead operate in legacy mode where each file loads seperately and
6668
	 * can be edited individually or dequeued. This can be accomplished with
6669
	 * the following line:
6670
	 *
6671
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6672
	 *
6673
	 * @since 3.2
6674
	 **/
6675
	public function implode_frontend_css( $travis_test = false ) {
6676
		$do_implode = true;
6677
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6678
			$do_implode = false;
6679
		}
6680
6681
		/**
6682
		 * Allow CSS to be concatenated into a single jetpack.css file.
6683
		 *
6684
		 * @since 3.2.0
6685
		 *
6686
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
6687
		 */
6688
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6689
6690
		// Do not use the imploded file when default behaviour was altered through the filter
6691
		if ( ! $do_implode ) {
6692
			return;
6693
		}
6694
6695
		// We do not want to use the imploded file in dev mode, or if not connected
6696
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
6697
			if ( ! $travis_test ) {
6698
				return;
6699
			}
6700
		}
6701
6702
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
6703
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
6704
			return;
6705
		}
6706
6707
		/*
6708
		 * Now we assume Jetpack is connected and able to serve the single
6709
		 * file.
6710
		 *
6711
		 * In the future there will be a check here to serve the file locally
6712
		 * or potentially from the Jetpack CDN
6713
		 *
6714
		 * For now:
6715
		 * - Enqueue a single imploded css file
6716
		 * - Zero out the style_loader_tag for the bundled ones
6717
		 * - Be happy, drink scotch
6718
		 */
6719
6720
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6721
6722
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6723
6724
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6725
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6726
	}
6727
6728
	function concat_remove_style_loader_tag( $tag, $handle ) {
6729
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
6730
			$tag = '';
6731
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6732
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6733
			}
6734
		}
6735
6736
		return $tag;
6737
	}
6738
6739
	/*
6740
	 * Check the heartbeat data
6741
	 *
6742
	 * Organizes the heartbeat data by severity.  For example, if the site
6743
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
6744
	 *
6745
	 * Data will be added to "caution" array, if it either:
6746
	 *  - Out of date Jetpack version
6747
	 *  - Out of date WP version
6748
	 *  - Out of date PHP version
6749
	 *
6750
	 * $return array $filtered_data
6751
	 */
6752
	public static function jetpack_check_heartbeat_data() {
6753
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
6754
6755
		$good    = array();
6756
		$caution = array();
6757
		$bad     = array();
6758
6759
		foreach ( $raw_data as $stat => $value ) {
6760
6761
			// Check jetpack version
6762
			if ( 'version' == $stat ) {
6763
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
6764
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
6765
					continue;
6766
				}
6767
			}
6768
6769
			// Check WP version
6770
			if ( 'wp-version' == $stat ) {
6771
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
6772
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
6773
					continue;
6774
				}
6775
			}
6776
6777
			// Check PHP version
6778
			if ( 'php-version' == $stat ) {
6779
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
6780
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
6781
					continue;
6782
				}
6783
			}
6784
6785
			// Check ID crisis
6786
			if ( 'identitycrisis' == $stat ) {
6787
				if ( 'yes' == $value ) {
6788
					$bad[ $stat ] = $value;
6789
					continue;
6790
				}
6791
			}
6792
6793
			// The rest are good :)
6794
			$good[ $stat ] = $value;
6795
		}
6796
6797
		$filtered_data = array(
6798
			'good'    => $good,
6799
			'caution' => $caution,
6800
			'bad'     => $bad
6801
		);
6802
6803
		return $filtered_data;
6804
	}
6805
6806
6807
	/*
6808
	 * This method is used to organize all options that can be reset
6809
	 * without disconnecting Jetpack.
6810
	 *
6811
	 * It is used in class.jetpack-cli.php to reset options
6812
	 *
6813
	 * @since 5.4.0 Logic moved to Jetpack_Options class. Method left in Jetpack class for backwards compat.
6814
	 *
6815
	 * @return array of options to delete.
6816
	 */
6817
	public static function get_jetpack_options_for_reset() {
6818
		return Jetpack_Options::get_options_for_reset();
6819
	}
6820
6821
	/**
6822
	 * Check if an option of a Jetpack module has been updated.
6823
	 *
6824
	 * If any module option has been updated before Jump Start has been dismissed,
6825
	 * update the 'jumpstart' option so we can hide Jump Start.
6826
	 *
6827
	 * @param string $option_name
6828
	 *
6829
	 * @return bool
6830
	 */
6831
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6832
		// Bail if Jump Start has already been dismissed
6833
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
6834
			return false;
6835
		}
6836
6837
		$jetpack = Jetpack::init();
6838
6839
		// Manual build of module options
6840
		$option_names = self::get_jetpack_options_for_reset();
6841
6842
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6843
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6844
6845
			//Jump start is being dismissed send data to MC Stats
6846
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6847
6848
			$jetpack->do_stats( 'server_side' );
6849
		}
6850
6851
	}
6852
6853
	/*
6854
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6855
	 * so we can bring them directly to their site in calypso.
6856
	 *
6857
	 * @param string | url
6858
	 * @return string | url without the guff
6859
	 */
6860
	public static function build_raw_urls( $url ) {
6861
		$strip_http = '/.*?:\/\//i';
6862
		$url = preg_replace( $strip_http, '', $url  );
6863
		$url = str_replace( '/', '::', $url );
6864
		return $url;
6865
	}
6866
6867
	/**
6868
	 * Stores and prints out domains to prefetch for page speed optimization.
6869
	 *
6870
	 * @param mixed $new_urls
6871
	 */
6872
	public static function dns_prefetch( $new_urls = null ) {
6873
		static $prefetch_urls = array();
6874
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6875
			echo "\r\n";
6876
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6877
				printf( "<link rel='dns-prefetch' href='%s'/>\r\n", esc_attr( $this_prefetch_url ) );
6878
			}
6879
		} elseif ( ! empty( $new_urls ) ) {
6880
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6881
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6882
			}
6883
			foreach ( (array) $new_urls as $this_new_url ) {
6884
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6885
			}
6886
			$prefetch_urls = array_unique( $prefetch_urls );
6887
		}
6888
	}
6889
6890
	public function wp_dashboard_setup() {
6891
		if ( self::is_active() ) {
6892
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6893
		}
6894
6895
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6896
			wp_add_dashboard_widget(
6897
				'jetpack_summary_widget',
6898
				esc_html__( 'Site Stats', 'jetpack' ),
6899
				array( __CLASS__, 'dashboard_widget' )
6900
			);
6901
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6902
6903
			// If we're inactive and not in development mode, sort our box to the top.
6904
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6905
				global $wp_meta_boxes;
6906
6907
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6908
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6909
6910
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6911
			}
6912
		}
6913
	}
6914
6915
	/**
6916
	 * @param mixed $result Value for the user's option
6917
	 * @return mixed
6918
	 */
6919
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6920
		if ( ! is_array( $sorted ) ) {
6921
			return $sorted;
6922
		}
6923
6924
		foreach ( $sorted as $box_context => $ids ) {
6925
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6926
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6927
				continue;
6928
			}
6929
6930
			$ids_array = explode( ',', $ids );
6931
			$key = array_search( 'dashboard_stats', $ids_array );
6932
6933
			if ( false !== $key ) {
6934
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6935
				$ids_array[ $key ] = 'jetpack_summary_widget';
6936
				$sorted[ $box_context ] = implode( ',', $ids_array );
6937
				// We've found it, stop searching, and just return.
6938
				break;
6939
			}
6940
		}
6941
6942
		return $sorted;
6943
	}
6944
6945
	public static function dashboard_widget() {
6946
		/**
6947
		 * Fires when the dashboard is loaded.
6948
		 *
6949
		 * @since 3.4.0
6950
		 */
6951
		do_action( 'jetpack_dashboard_widget' );
6952
	}
6953
6954
	public static function dashboard_widget_footer() {
6955
		?>
6956
		<footer>
6957
6958
		<div class="protect">
6959
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6960
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6961
				<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>
6962
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6963
				<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' ); ?>">
6964
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6965
				</a>
6966
			<?php else : ?>
6967
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6968
			<?php endif; ?>
6969
		</div>
6970
6971
		<div class="akismet">
6972
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6973
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6974
				<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>
6975
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6976
				<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">
6977
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6978
				</a>
6979
			<?php else : ?>
6980
				<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>
6981
			<?php endif; ?>
6982
		</div>
6983
6984
		</footer>
6985
		<?php
6986
	}
6987
6988
	/**
6989
	 * Return string containing the Jetpack logo.
6990
	 *
6991
	 * @since 3.9.0
6992
	 *
6993
	 * @return string
6994
	 */
6995
	public static function get_jp_emblem() {
6996
		return '<svg id="jetpack-logo__icon" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 32 32"><path fill="#00BE28" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16c8.8,0,16-7.2,16-16S24.8,0,16,0z M15.2,18.7h-8l8-15.5V18.7z M16.8,28.8 V13.3h8L16.8,28.8z"/></svg>';
6997
	}
6998
6999
	/*
7000
	 * Adds a "blank" column in the user admin table to display indication of user connection.
7001
	 */
7002
	function jetpack_icon_user_connected( $columns ) {
7003
		$columns['user_jetpack'] = '';
7004
		return $columns;
7005
	}
7006
7007
	/*
7008
	 * Show Jetpack icon if the user is linked.
7009
	 */
7010
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
7011
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
7012
			$emblem_html = sprintf(
7013
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
7014
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
7015
				Jetpack::get_jp_emblem()
7016
			);
7017
			return $emblem_html;
7018
		}
7019
7020
		return $val;
7021
	}
7022
7023
	/*
7024
	 * Style the Jetpack user column
7025
	 */
7026
	function jetpack_user_col_style() {
7027
		global $current_screen;
7028
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
7029
			<style>
7030
				.fixed .column-user_jetpack {
7031
					width: 21px;
7032
				}
7033
				.jp-emblem-user-admin svg {
7034
					width: 20px;
7035
					height: 20px;
7036
				}
7037
				.jp-emblem-user-admin path {
7038
					fill: #00BE28;
7039
				}
7040
			</style>
7041
		<?php }
7042
	}
7043
7044
	/**
7045
	 * Checks if Akismet is active and working.
7046
	 *
7047
	 * @since  5.1.0
7048
	 * @return bool True = Akismet available. False = Aksimet not available.
7049
	 */
7050
	public static function is_akismet_active() {
7051
		if ( method_exists( 'Akismet' , 'http_post' ) || function_exists( 'akismet_http_post' ) ) {
7052
			return true;
7053
		}
7054
		return false;
7055
	}
7056
7057
	/**
7058
	 * Checks if one or more function names is in debug_backtrace
7059
	 *
7060
	 * @param $names Mixed string name of function or array of string names of functions
7061
	 *
7062
	 * @return bool
7063
	 */
7064
	public static function is_function_in_backtrace( $names ) {
7065
		$backtrace = debug_backtrace( false );
7066
		if ( ! is_array( $names ) ) {
7067
			$names = array( $names );
7068
		}
7069
		$names_as_keys = array_flip( $names );
7070
7071
		//Do check in constant O(1) time for PHP5.5+
7072
		if ( function_exists( 'array_column' ) ) {
7073
			$backtrace_functions = array_column( $backtrace, 'function' );
7074
			$backtrace_functions_as_keys = array_flip( $backtrace_functions );
7075
			$intersection = array_intersect_key( $backtrace_functions_as_keys, $names_as_keys );
7076
			return ! empty ( $intersection );
7077
		}
7078
7079
		//Do check in linear O(n) time for < PHP5.5 ( using isset at least prevents O(n^2) )
7080
		foreach ( $backtrace as $call ) {
7081
			if ( isset( $names_as_keys[ $call['function'] ] ) ) {
7082
				return true;
7083
			}
7084
		}
7085
		return false;
7086
	}
7087
7088
	/**
7089
	 * Given a minified path, and a non-minified path, will return
7090
	 * a minified or non-minified file URL based on whether SCRIPT_DEBUG is set and truthy.
7091
	 *
7092
	 * Both `$min_base` and `$non_min_base` are expected to be relative to the
7093
	 * root Jetpack directory.
7094
	 *
7095
	 * @since 5.6.0
7096
	 *
7097
	 * @param string $min_path
7098
	 * @param string $non_min_path
7099
	 * @return string The URL to the file
7100
	 */
7101
	public static function get_file_url_for_environment( $min_path, $non_min_path ) {
7102
		$path = ( Jetpack_Constants::is_defined( 'SCRIPT_DEBUG' ) && Jetpack_Constants::get_constant( 'SCRIPT_DEBUG' ) )
7103
			? $non_min_path
7104
			: $min_path;
7105
7106
		return plugins_url( $path, JETPACK__PLUGIN_FILE );
7107
	}
7108
7109
	/**
7110
	 * Checks for whether Jetpack Rewind is enabled.
7111
	 * Will return true if the state of Rewind is anything except "unavailable".
7112
	 * @return bool|int|mixed
7113
	 */
7114
	public static function is_rewind_enabled() {
7115
		if ( ! Jetpack::is_active() ) {
7116
			return false;
7117
		}
7118
7119
		$rewind_enabled = get_transient( 'jetpack_rewind_enabled' );
7120
		if ( false === $rewind_enabled ) {
7121
			jetpack_require_lib( 'class.core-rest-api-endpoints' );
7122
			$rewind_data = (array) Jetpack_Core_Json_Api_Endpoints::rewind_data();
7123
			$rewind_enabled = ( ! is_wp_error( $rewind_data )
7124
				&& ! empty( $rewind_data['state'] )
7125
				&& 'active' === $rewind_data['state'] )
7126
				? 1
7127
				: 0;
7128
7129
			set_transient( 'jetpack_rewind_enabled', $rewind_enabled, 10 * MINUTE_IN_SECONDS );
7130
		}
7131
		return $rewind_enabled;
7132
	}
7133
7134
	/**
7135
	 * Checks whether or not TOS has been agreed upon.
7136
	 * Will return true if a user has clicked to register, or is already connected.
7137
	 */
7138
	public static function jetpack_tos_agreed() {
7139
		return Jetpack_Options::get_option( 'tos_agreed' ) || Jetpack::is_active();
7140
	}
7141
}
7142