Completed
Push — master-stable ( e4630d...685b6f )
by Jeremy
264:28 queued 254:40
created

class.jetpack.php (5 issues)

Upgrade to new PHP Analysis Engine

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

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

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

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

Loading history...
3361
			case 'activate' :
3362
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
3363
					$error = 'cheatin';
3364
					break;
3365
				}
3366
3367
				$module = stripslashes( $_GET['module'] );
3368
				check_admin_referer( "jetpack_activate-$module" );
3369
				Jetpack::log( 'activate', $module );
3370
				Jetpack::activate_module( $module );
3371
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
3372
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3373
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

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

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

Loading history...
3374
			case 'activate_default_modules' :
3375
				check_admin_referer( 'activate_default_modules' );
3376
				Jetpack::log( 'activate_default_modules' );
3377
				Jetpack::restate();
3378
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
3379
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
3380
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
3381
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
3382
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3383
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

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

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

Loading history...
3384
			case 'disconnect' :
3385
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
3386
					$error = 'cheatin';
3387
					break;
3388
				}
3389
3390
				check_admin_referer( 'jetpack-disconnect' );
3391
				Jetpack::log( 'disconnect' );
3392
				Jetpack::disconnect();
3393
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
3394
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

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

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

Loading history...
3395
			case 'reconnect' :
3396
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
3397
					$error = 'cheatin';
3398
					break;
3399
				}
3400
3401
				check_admin_referer( 'jetpack-reconnect' );
3402
				Jetpack::log( 'reconnect' );
3403
				$this->disconnect();
3404
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
3405
				exit;
3406 View Code Duplication
			case 'deactivate' :
3407
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
3408
					$error = 'cheatin';
3409
					break;
3410
				}
3411
3412
				$modules = stripslashes( $_GET['module'] );
3413
				check_admin_referer( "jetpack_deactivate-$modules" );
3414
				foreach ( explode( ',', $modules ) as $module ) {
3415
					Jetpack::log( 'deactivate', $module );
3416
					Jetpack::deactivate_module( $module );
3417
					Jetpack::state( 'message', 'module_deactivated' );
3418
				}
3419
				Jetpack::state( 'module', $modules );
3420
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3421
				exit;
3422
			case 'unlink' :
3423
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
3424
				check_admin_referer( 'jetpack-unlink' );
3425
				Jetpack::log( 'unlink' );
3426
				$this->unlink_user();
3427
				Jetpack::state( 'message', 'unlinked' );
3428
				if ( 'sub-unlink' == $redirect ) {
3429
					wp_safe_redirect( admin_url() );
3430
				} else {
3431
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
3432
				}
3433
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method admin_page_load() contains an exit expression.

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

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

Loading history...
3434
			default:
3435
				/**
3436
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
3437
				 *
3438
				 * @since 2.6.0
3439
				 *
3440
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
3441
				 */
3442
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3443
			}
3444
		}
3445
3446
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
3447
			self::activate_new_modules( true );
3448
		}
3449
3450
		$message_code = Jetpack::state( 'message' );
3451
		if ( Jetpack::state( 'optin-manage' ) ) {
3452
			$activated_manage = $message_code;
3453
			$message_code = 'jetpack-manage';
3454
		}
3455
3456
		switch ( $message_code ) {
3457
		case 'jetpack-manage':
3458
			$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>';
3459
			if ( $activated_manage ) {
3460
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
3461
			}
3462
			break;
3463
3464
		}
3465
3466
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
3467
3468
		if ( ! empty( $deactivated_plugins ) ) {
3469
			$deactivated_plugins = explode( ',', $deactivated_plugins );
3470
			$deactivated_titles  = array();
3471
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
3472
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
3473
					continue;
3474
				}
3475
3476
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
3477
			}
3478
3479
			if ( $deactivated_titles ) {
3480
				if ( $this->message ) {
3481
					$this->message .= "<br /><br />\n";
3482
				}
3483
3484
				$this->message .= wp_sprintf(
3485
					_n(
3486
						'Jetpack contains the most recent version of the old %l plugin.',
3487
						'Jetpack contains the most recent versions of the old %l plugins.',
3488
						count( $deactivated_titles ),
3489
						'jetpack'
3490
					),
3491
					$deactivated_titles
3492
				);
3493
3494
				$this->message .= "<br />\n";
3495
3496
				$this->message .= _n(
3497
					'The old version has been deactivated and can be removed from your site.',
3498
					'The old versions have been deactivated and can be removed from your site.',
3499
					count( $deactivated_titles ),
3500
					'jetpack'
3501
				);
3502
			}
3503
		}
3504
3505
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
3506
3507
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
3508
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
3509
		}
3510
3511 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3512
			/**
3513
			 * Fires when a module configuration page is loaded.
3514
			 * The dynamic part of the hook is the configure parameter from the URL.
3515
			 *
3516
			 * @since 1.1.0
3517
			 */
3518
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3519
		}
3520
3521
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
3522
	}
3523
3524
	function admin_notices() {
3525
3526
		if ( $this->error ) {
3527
?>
3528
<div id="message" class="jetpack-message jetpack-err">
3529
	<div class="squeezer">
3530
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
3531
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
3532
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
3533
<?php	endif; ?>
3534
	</div>
3535
</div>
3536
<?php
3537
		}
3538
3539
		if ( $this->message ) {
3540
?>
3541
<div id="message" class="jetpack-message">
3542
	<div class="squeezer">
3543
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
3544
	</div>
3545
</div>
3546
<?php
3547
		}
3548
3549
		if ( $this->privacy_checks ) :
3550
			$module_names = $module_slugs = array();
3551
3552
			$privacy_checks = explode( ',', $this->privacy_checks );
3553
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
3554
			foreach ( $privacy_checks as $module_slug ) {
3555
				$module = Jetpack::get_module( $module_slug );
3556
				if ( ! $module ) {
3557
					continue;
3558
				}
3559
3560
				$module_slugs[] = $module_slug;
3561
				$module_names[] = "<strong>{$module['name']}</strong>";
3562
			}
3563
3564
			$module_slugs = join( ',', $module_slugs );
3565
?>
3566
<div id="message" class="jetpack-message jetpack-err">
3567
	<div class="squeezer">
3568
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
3569
		<p><?php
3570
			echo wp_kses(
3571
				wptexturize(
3572
					wp_sprintf(
3573
						_nx(
3574
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
3575
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
3576
							count( $privacy_checks ),
3577
							'%l = list of Jetpack module/feature names',
3578
							'jetpack'
3579
						),
3580
						$module_names
3581
					)
3582
				),
3583
				array( 'strong' => true )
3584
			);
3585
3586
			echo "\n<br />\n";
3587
3588
			echo wp_kses(
3589
				sprintf(
3590
					_nx(
3591
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
3592
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
3593
						count( $privacy_checks ),
3594
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
3595
						'jetpack'
3596
					),
3597
					wp_nonce_url(
3598
						Jetpack::admin_url(
3599
							array(
3600
								'page'   => 'jetpack',
3601
								'action' => 'deactivate',
3602
								'module' => urlencode( $module_slugs ),
3603
							)
3604
						),
3605
						"jetpack_deactivate-$module_slugs"
3606
					),
3607
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
3608
				),
3609
				array( 'a' => array( 'href' => true, 'title' => true ) )
3610
			);
3611
		?></p>
3612
	</div>
3613
</div>
3614
<?php endif;
3615
	// only display the notice if the other stuff is not there
3616
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
3617
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
3618
			$this->opt_in_jetpack_manage_notice();
3619
		}
3620
	}
3621
3622
	/**
3623
	 * Record a stat for later output.  This will only currently output in the admin_footer.
3624
	 */
3625
	function stat( $group, $detail ) {
3626
		if ( ! isset( $this->stats[ $group ] ) )
3627
			$this->stats[ $group ] = array();
3628
		$this->stats[ $group ][] = $detail;
3629
	}
3630
3631
	/**
3632
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
3633
	 */
3634
	function do_stats( $method = '' ) {
3635
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
3636
			foreach ( $this->stats as $group => $stats ) {
3637
				if ( is_array( $stats ) && count( $stats ) ) {
3638
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
3639
					if ( 'server_side' === $method ) {
3640
						self::do_server_side_stat( $args );
3641
					} else {
3642
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
3643
					}
3644
				}
3645
				unset( $this->stats[ $group ] );
3646
			}
3647
		}
3648
	}
3649
3650
	/**
3651
	 * Runs stats code for a one-off, server-side.
3652
	 *
3653
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
3654
	 *
3655
	 * @return bool If it worked.
3656
	 */
3657
	static function do_server_side_stat( $args ) {
3658
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
3659
		if ( is_wp_error( $response ) )
3660
			return false;
3661
3662
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
3663
			return false;
3664
3665
		return true;
3666
	}
3667
3668
	/**
3669
	 * Builds the stats url.
3670
	 *
3671
	 * @param $args array|string The arguments to append to the URL.
3672
	 *
3673
	 * @return string The URL to be pinged.
3674
	 */
3675
	static function build_stats_url( $args ) {
3676
		$defaults = array(
3677
			'v'    => 'wpcom2',
3678
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
3679
		);
3680
		$args     = wp_parse_args( $args, $defaults );
3681
		/**
3682
		 * Filter the URL used as the Stats tracking pixel.
3683
		 *
3684
		 * @since 2.3.2
3685
		 *
3686
		 * @param string $url Base URL used as the Stats tracking pixel.
3687
		 */
3688
		$base_url = apply_filters(
3689
			'jetpack_stats_base_url',
3690
			'https://pixel.wp.com/g.gif'
3691
		);
3692
		$url      = add_query_arg( $args, $base_url );
3693
		return $url;
3694
	}
3695
3696
	static function translate_current_user_to_role() {
3697
		foreach ( self::$capability_translations as $role => $cap ) {
3698
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
3699
				return $role;
3700
			}
3701
		}
3702
3703
		return false;
3704
	}
3705
3706
	static function translate_role_to_cap( $role ) {
3707
		if ( ! isset( self::$capability_translations[$role] ) ) {
3708
			return false;
3709
		}
3710
3711
		return self::$capability_translations[$role];
3712
	}
3713
3714
	static function sign_role( $role ) {
3715
		if ( ! $user_id = (int) get_current_user_id() ) {
3716
			return false;
3717
		}
3718
3719
		$token = Jetpack_Data::get_access_token();
3720
		if ( ! $token || is_wp_error( $token ) ) {
3721
			return false;
3722
		}
3723
3724
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
3725
	}
3726
3727
3728
	/**
3729
	 * Builds a URL to the Jetpack connection auth page
3730
	 *
3731
	 * @since 3.9.5
3732
	 *
3733
	 * @param bool $raw If true, URL will not be escaped.
3734
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
3735
	 *                              If string, will be a custom redirect.
3736
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
3737
	 *
3738
	 * @return string Connect URL
3739
	 */
3740
	function build_connect_url( $raw = false, $redirect = false, $from = false ) {
3741
		if ( ! Jetpack_Options::get_option( 'blog_token' ) || ! Jetpack_Options::get_option( 'id' ) ) {
3742
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
3743
			if( is_network_admin() ) {
3744
			    $url = add_query_arg( 'is_multisite', network_admin_url(
3745
			    'admin.php?page=jetpack-settings' ), $url );
3746
			}
3747
		} else {
3748
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
3749
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
3750
			}
3751
3752
			$role = self::translate_current_user_to_role();
3753
			$signed_role = self::sign_role( $role );
3754
3755
			$user = wp_get_current_user();
3756
3757
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
3758
			$redirect = $redirect
3759
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
3760
				: $jetpack_admin_page;
3761
3762
			if( isset( $_REQUEST['is_multisite'] ) ) {
3763
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
3764
			}
3765
3766
			$secrets = Jetpack::init()->generate_secrets( 'authorize' );
3767
			@list( $secret ) = explode( ':', $secrets );
3768
3769
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
3770
				? get_site_icon_url()
3771
				: false;
3772
3773
			$args = urlencode_deep(
3774
				array(
3775
					'response_type' => 'code',
3776
					'client_id'     => Jetpack_Options::get_option( 'id' ),
3777
					'redirect_uri'  => add_query_arg(
3778
						array(
3779
							'action'   => 'authorize',
3780
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
3781
							'redirect' => urlencode( $redirect ),
3782
						),
3783
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
3784
					),
3785
					'state'         => $user->ID,
3786
					'scope'         => $signed_role,
3787
					'user_email'    => $user->user_email,
3788
					'user_login'    => $user->user_login,
3789
					'is_active'     => Jetpack::is_active(),
3790
					'jp_version'    => JETPACK__VERSION,
3791
					'auth_type'     => 'calypso',
3792
					'secret'        => $secret,
3793
					'locale'        => isset( $gp_locale->slug ) ? $gp_locale->slug : '',
3794
					'blogname'      => get_option( 'blogname' ),
3795
					'site_url'      => site_url(),
3796
					'home_url'      => home_url(),
3797
					'site_icon'     => $site_icon,
3798
				)
3799
			);
3800
3801
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
3802
		}
3803
3804
		if ( $from ) {
3805
			$url = add_query_arg( 'from', $from, $url );
3806
		}
3807
3808
		if ( isset( $_GET['calypso_env'] ) ) {
3809
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
3810
		}
3811
3812
		return $raw ? $url : esc_url( $url );
3813
	}
3814
3815
	function build_reconnect_url( $raw = false ) {
3816
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
3817
		return $raw ? $url : esc_url( $url );
3818
	}
3819
3820
	public static function admin_url( $args = null ) {
3821
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
3822
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
3823
		return $url;
3824
	}
3825
3826
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
3827
		$actionurl = str_replace( '&amp;', '&', $actionurl );
3828
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
3829
	}
3830
3831
	function dismiss_jetpack_notice() {
3832
3833
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
3834
			return;
3835
		}
3836
3837
		switch( $_GET['jetpack-notice'] ) {
3838
			case 'dismiss':
3839
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
3840
3841
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
3842
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
3843
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
3844
				}
3845
				break;
3846 View Code Duplication
			case 'jetpack-manage-opt-out':
3847
3848
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
3849
					// Don't show the banner again
3850
3851
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
3852
					// redirect back to the page that had the notice
3853
					if ( wp_get_referer() ) {
3854
						wp_safe_redirect( wp_get_referer() );
3855
					} else {
3856
						// Take me to Jetpack
3857
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3858
					}
3859
				}
3860
				break;
3861 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
3862
3863
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
3864
					// Don't show the banner again
3865
3866
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
3867
					// redirect back to the page that had the notice
3868
					if ( wp_get_referer() ) {
3869
						wp_safe_redirect( wp_get_referer() );
3870
					} else {
3871
						// Take me to Jetpack
3872
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
3873
					}
3874
				}
3875
				break;
3876
			case 'jetpack-manage-opt-in':
3877
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
3878
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
3879
3880
					$redirection_url = Jetpack::admin_url();
3881
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3882
3883
					// Don't redirect form the Jetpack Setting Page
3884
					$referer_parsed = parse_url ( wp_get_referer() );
3885
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
3886
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
3887
						// Take the user to Jetpack home except when on the setting page
3888
						$redirection_url = wp_get_referer();
3889
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
3890
					}
3891
					// Also update the JSON API FULL MANAGEMENT Option
3892
					Jetpack::activate_module( 'manage', false, false );
3893
3894
					// Special Message when option in.
3895
					Jetpack::state( 'optin-manage', 'true' );
3896
					// Activate the Module if not activated already
3897
3898
					// Redirect properly
3899
					wp_safe_redirect( $redirection_url );
3900
3901
				}
3902
				break;
3903
		}
3904
	}
3905
3906
	function debugger_page() {
3907
		nocache_headers();
3908
		if ( ! current_user_can( 'manage_options' ) ) {
3909
			die( '-1' );
3910
		}
3911
		Jetpack_Debugger::jetpack_debug_display_handler();
3912
		exit;
3913
	}
3914
3915
	public static function admin_screen_configure_module( $module_id ) {
3916
3917
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
3918
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
3919
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
3920
				/**
3921
				 * Fires to diplay a custom module activation screen.
3922
				 *
3923
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
3924
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
3925
				 *
3926
				 * @module manage
3927
				 *
3928
				 * @since 3.8.0
3929
				 *
3930
				 * @param int $module_id Module ID.
3931
				 */
3932
				do_action( 'display_activate_module_setting_' . $module_id );
3933
			} else {
3934
				self::display_activate_module_link( $module_id );
3935
			}
3936
3937
			return false;
3938
		} ?>
3939
3940
		<div id="jp-settings-screen" style="position: relative">
3941
			<h3>
3942
			<?php
3943
				$module = Jetpack::get_module( $module_id );
3944
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
3945
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
3946
			?>
3947
			</h3>
3948
			<?php
3949
				/**
3950
				 * Fires within the displayed message when a feature configuation is updated.
3951
				 *
3952
				 * @since 3.4.0
3953
				 *
3954
				 * @param int $module_id Module ID.
3955
				 */
3956
				do_action( 'jetpack_notices_update_settings', $module_id );
3957
				/**
3958
				 * Fires when a feature configuation screen is loaded.
3959
				 * The dynamic part of the hook, $module_id, is the module ID.
3960
				 *
3961
				 * @since 1.1.0
3962
				 */
3963
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
3964
			?>
3965
		</div><?php
3966
	}
3967
3968
	/**
3969
	 * Display link to activate the module to see the settings screen.
3970
	 * @param  string $module_id
3971
	 * @return null
3972
	 */
3973
	public static function display_activate_module_link( $module_id ) {
3974
3975
		$info =  Jetpack::get_module( $module_id );
3976
		$extra = '';
3977
		$activate_url = wp_nonce_url(
3978
				Jetpack::admin_url(
3979
					array(
3980
						'page'   => 'jetpack',
3981
						'action' => 'activate',
3982
						'module' => $module_id,
3983
					)
3984
				),
3985
				"jetpack_activate-$module_id"
3986
			);
3987
3988
		?>
3989
3990
		<div class="wrap configure-module">
3991
			<div id="jp-settings-screen">
3992
				<?php
3993
				if ( $module_id == 'json-api' ) {
3994
3995
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
3996
3997
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
3998
3999
					$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' );
4000
4001
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4002
				} ?>
4003
4004
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4005
				<div class="narrow">
4006
					<p><?php echo  $info['description']; ?></p>
4007
					<?php if( $extra ) { ?>
4008
					<p><?php echo esc_html( $extra ); ?></p>
4009
					<?php } ?>
4010
					<p>
4011
						<?php
4012
						if( wp_get_referer() ) {
4013
							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() );
4014
						} else {
4015
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4016
						} ?>
4017
					</p>
4018
				</div>
4019
4020
			</div>
4021
		</div>
4022
4023
		<?php
4024
	}
4025
4026
	public static function sort_modules( $a, $b ) {
4027
		if ( $a['sort'] == $b['sort'] )
4028
			return 0;
4029
4030
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4031
	}
4032
4033
	function ajax_recheck_ssl() {
4034
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4035
		$result = Jetpack::permit_ssl( true );
4036
		wp_send_json( array(
4037
			'enabled' => $result,
4038
			'message' => get_transient( 'jetpack_https_test_message' )
4039
		) );
4040
	}
4041
4042
/* Client API */
4043
4044
	/**
4045
	 * Returns the requested Jetpack API URL
4046
	 *
4047
	 * @return string
4048
	 */
4049
	public static function api_url( $relative_url ) {
4050
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4051
	}
4052
4053
	/**
4054
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4055
	 */
4056
	public static function fix_url_for_bad_hosts( $url ) {
4057
		if ( 0 !== strpos( $url, 'https://' ) ) {
4058
			return $url;
4059
		}
4060
4061
		switch ( JETPACK_CLIENT__HTTPS ) {
4062
			case 'ALWAYS' :
4063
				return $url;
4064
			case 'NEVER' :
4065
				return set_url_scheme( $url, 'http' );
4066
			// default : case 'AUTO' :
4067
		}
4068
4069
		// we now return the unmodified SSL URL by default, as a security precaution
4070
		return $url;
4071
	}
4072
4073
	/**
4074
	 * Checks to see if the URL is using SSL to connect with Jetpack
4075
	 *
4076
	 * @since 2.3.3
4077
	 * @return boolean
4078
	 */
4079
	public static function permit_ssl( $force_recheck = false ) {
4080
		// Do some fancy tests to see if ssl is being supported
4081
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4082
			$message = '';
4083
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4084
				$ssl = 0;
4085
			} else {
4086
				switch ( JETPACK_CLIENT__HTTPS ) {
4087
					case 'NEVER':
4088
						$ssl = 0;
4089
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4090
						break;
4091
					case 'ALWAYS':
4092
					case 'AUTO':
4093
					default:
4094
						$ssl = 1;
4095
						break;
4096
				}
4097
4098
				// If it's not 'NEVER', test to see
4099
				if ( $ssl ) {
4100
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4101
						$ssl = 0;
4102
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4103
					} else {
4104
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4105
						if ( is_wp_error( $response ) ) {
4106
							$ssl = 0;
4107
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4108
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4109
							$ssl = 0;
4110
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4111
						}
4112
					}
4113
				}
4114
			}
4115
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4116
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4117
		}
4118
4119
		return (bool) $ssl;
4120
	}
4121
4122
	/*
4123
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4124
	 */
4125
	public function alert_auto_ssl_fail() {
4126
		if ( ! current_user_can( 'manage_options' ) )
4127
			return;
4128
4129
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4130
		?>
4131
4132
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4133
			<div class="jp-banner__content">
4134
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4135
				<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>
4136
				<p>
4137
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4138
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4139
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4140
				</p>
4141
				<p>
4142
					<?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' ),
4143
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4144
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4145
				</p>
4146
			</div>
4147
		</div>
4148
		<style>
4149
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4150
		</style>
4151
		<script type="text/javascript">
4152
			jQuery( document ).ready( function( $ ) {
4153
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4154
					var $this = $( this );
4155
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4156
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4157
					e.preventDefault();
4158
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4159
					$.post( ajaxurl, data )
4160
					  .done( function( response ) {
4161
					  	if ( response.enabled ) {
4162
					  		$( '#jetpack-ssl-warning' ).hide();
4163
					  	} else {
4164
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4165
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4166
					  	}
4167
					  }.bind( $this ) );
4168
				} );
4169
			} );
4170
		</script>
4171
4172
		<?php
4173
	}
4174
4175
	/**
4176
	 * Returns the Jetpack XML-RPC API
4177
	 *
4178
	 * @return string
4179
	 */
4180
	public static function xmlrpc_api_url() {
4181
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4182
		return untrailingslashit( $base ) . '/xmlrpc.php';
4183
	}
4184
4185
	/**
4186
	 * Creates two secret tokens and the end of life timestamp for them.
4187
	 *
4188
	 * Note these tokens are unique per call, NOT static per site for connecting.
4189
	 *
4190
	 * @since 2.6
4191
	 * @return array
4192
	 */
4193
	public function generate_secrets( $action, $exp = 600 ) {
4194
	    $secret = wp_generate_password( 32, false ) // secret_1
4195
	    		. ':' . wp_generate_password( 32, false ) // secret_2
4196
	    		. ':' . ( time() + $exp ) // eol ( End of Life )
4197
	    		. ':' . get_current_user_id(); // ties the secrets to the current user
4198
		Jetpack_Options::update_option( $action, $secret );
4199
	    return Jetpack_Options::get_option( $action );
4200
	}
4201
4202
	/**
4203
	 * Builds the timeout limit for queries talking with the wpcom servers.
4204
	 *
4205
	 * Based on local php max_execution_time in php.ini
4206
	 *
4207
	 * @since 2.6
4208
	 * @return int
4209
	 **/
4210
	public function get_remote_query_timeout_limit() {
4211
	    $timeout = (int) ini_get( 'max_execution_time' );
4212
	    if ( ! $timeout ) // Ensure exec time set in php.ini
4213
		$timeout = 30;
4214
	    return intval( $timeout / 2 );
4215
	}
4216
4217
4218
	/**
4219
	 * Takes the response from the Jetpack register new site endpoint and
4220
	 * verifies it worked properly.
4221
	 *
4222
	 * @since 2.6
4223
	 * @return true or Jetpack_Error
4224
	 **/
4225
	public function validate_remote_register_response( $response ) {
4226
	    	if ( is_wp_error( $response ) ) {
4227
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
4228
		}
4229
4230
		$code   = wp_remote_retrieve_response_code( $response );
4231
		$entity = wp_remote_retrieve_body( $response );
4232
		if ( $entity )
4233
			$json = json_decode( $entity );
4234
		else
4235
			$json = false;
4236
4237
		$code_type = intval( $code / 100 );
4238
		if ( 5 == $code_type ) {
4239
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4240
		} elseif ( 408 == $code ) {
4241
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4242
		} elseif ( ! empty( $json->error ) ) {
4243
			$error_description = isset( $json->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $json->error_description ) : '';
4244
			return new Jetpack_Error( (string) $json->error, $error_description, $code );
4245
		} elseif ( 200 != $code ) {
4246
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4247
		}
4248
4249
		// Jetpack ID error block
4250
		if ( empty( $json->jetpack_id ) ) {
4251
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
4252
		} elseif ( ! is_scalar( $json->jetpack_id ) ) {
4253
			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 );
4254
		} elseif ( preg_match( '/[^0-9]/', $json->jetpack_id ) ) {
4255
			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 );
4256
		}
4257
4258
	    return true;
4259
	}
4260
	/**
4261
	 * @return bool|WP_Error
4262
	 */
4263
	public static function register() {
4264
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4265
		$secrets = Jetpack::init()->generate_secrets( 'register' );
4266
4267
		@list( $secret_1, $secret_2, $secret_eol ) = explode( ':', $secrets );
4268 View Code Duplication
		if ( empty( $secret_1 ) || empty( $secret_2 ) || empty( $secret_eol ) || $secret_eol < time() ) {
4269
			return new Jetpack_Error( 'missing_secrets' );
4270
		}
4271
4272
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4273
4274
		$gmt_offset = get_option( 'gmt_offset' );
4275
		if ( ! $gmt_offset ) {
4276
			$gmt_offset = 0;
4277
		}
4278
4279
		$stats_options = get_option( 'stats_options' );
4280
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
4281
4282
		$args = array(
4283
			'method'  => 'POST',
4284
			'body'    => array(
4285
				'siteurl'         => site_url(),
4286
				'home'            => home_url(),
4287
				'gmt_offset'      => $gmt_offset,
4288
				'timezone_string' => (string) get_option( 'timezone_string' ),
4289
				'site_name'       => (string) get_option( 'blogname' ),
4290
				'secret_1'        => $secret_1,
4291
				'secret_2'        => $secret_2,
4292
				'site_lang'       => get_locale(),
4293
				'timeout'         => $timeout,
4294
				'stats_id'        => $stats_id,
4295
				'state'           => get_current_user_id(),
4296
			),
4297
			'headers' => array(
4298
				'Accept' => 'application/json',
4299
			),
4300
			'timeout' => $timeout,
4301
		);
4302
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
4303
4304
4305
		// Make sure the response is valid and does not contain any Jetpack errors
4306
		$valid_response = Jetpack::init()->validate_remote_register_response( $response );
4307
		if( is_wp_error( $valid_response ) || !$valid_response ) {
4308
		    return $valid_response;
4309
		}
4310
4311
		// Grab the response values to work with
4312
		$code   = wp_remote_retrieve_response_code( $response );
4313
		$entity = wp_remote_retrieve_body( $response );
4314
4315
		if ( $entity )
4316
			$json = json_decode( $entity );
4317
		else
4318
			$json = false;
4319
4320 View Code Duplication
		if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) )
4321
			return new Jetpack_Error( 'jetpack_secret', '', $code );
4322
4323
		if ( isset( $json->jetpack_public ) ) {
4324
			$jetpack_public = (int) $json->jetpack_public;
4325
		} else {
4326
			$jetpack_public = false;
4327
		}
4328
4329
		Jetpack_Options::update_options(
4330
			array(
4331
				'id'         => (int)    $json->jetpack_id,
4332
				'blog_token' => (string) $json->jetpack_secret,
4333
				'public'     => $jetpack_public,
4334
			)
4335
		);
4336
4337
		/**
4338
		 * Fires when a site is registered on WordPress.com.
4339
		 *
4340
		 * @since 3.7.0
4341
		 *
4342
		 * @param int $json->jetpack_id Jetpack Blog ID.
4343
		 * @param string $json->jetpack_secret Jetpack Blog Token.
4344
		 * @param int|bool $jetpack_public Is the site public.
4345
		 */
4346
		do_action( 'jetpack_site_registered', $json->jetpack_id, $json->jetpack_secret, $jetpack_public );
4347
4348
		// Initialize Jump Start for the first and only time.
4349
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4350
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
4351
4352
			$jetpack = Jetpack::init();
4353
4354
			$jetpack->stat( 'jumpstart', 'unique-views' );
4355
			$jetpack->do_stats( 'server_side' );
4356
		};
4357
4358
		return true;
4359
	}
4360
4361
	/**
4362
	 * If the db version is showing something other that what we've got now, bump it to current.
4363
	 *
4364
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
4365
	 */
4366
	public static function maybe_set_version_option() {
4367
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
4368
		if ( JETPACK__VERSION != $version ) {
4369
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
4370
4371
			if ( version_compare( JETPACK__VERSION, $version, '>' ) ) {
4372
				/** This action is documented in class.jetpack.php */
4373
				do_action( 'updating_jetpack_version', JETPACK__VERSION, $version );
4374
			}
4375
4376
			return true;
4377
		}
4378
		return false;
4379
	}
4380
4381
/* Client Server API */
4382
4383
	/**
4384
	 * Loads the Jetpack XML-RPC client
4385
	 */
4386
	public static function load_xml_rpc_client() {
4387
		require_once ABSPATH . WPINC . '/class-IXR.php';
4388
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
4389
	}
4390
4391
	function verify_xml_rpc_signature() {
4392
		if ( $this->xmlrpc_verification ) {
4393
			return $this->xmlrpc_verification;
4394
		}
4395
4396
		// It's not for us
4397
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
4398
			return false;
4399
		}
4400
4401
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
4402
		if (
4403
			empty( $token_key )
4404
		||
4405
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
4406
		) {
4407
			return false;
4408
		}
4409
4410
		if ( '0' === $user_id ) {
4411
			$token_type = 'blog';
4412
			$user_id = 0;
4413
		} else {
4414
			$token_type = 'user';
4415
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
4416
				return false;
4417
			}
4418
			$user_id = (int) $user_id;
4419
4420
			$user = new WP_User( $user_id );
4421
			if ( ! $user || ! $user->exists() ) {
4422
				return false;
4423
			}
4424
		}
4425
4426
		$token = Jetpack_Data::get_access_token( $user_id );
4427
		if ( ! $token ) {
4428
			return false;
4429
		}
4430
4431
		$token_check = "$token_key.";
4432
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
4433
			return false;
4434
		}
4435
4436
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4437
4438
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4439
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
4440
			$post_data   = $_POST;
4441
			$file_hashes = array();
4442
			foreach ( $post_data as $post_data_key => $post_data_value ) {
4443
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
4444
					continue;
4445
				}
4446
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
4447
				$file_hashes[$post_data_key] = $post_data_value;
4448
			}
4449
4450
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
4451
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
4452
				$post_data[$post_data_key] = $post_data_value;
4453
			}
4454
4455
			ksort( $post_data );
4456
4457
			$body = http_build_query( stripslashes_deep( $post_data ) );
4458
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
4459
			$body = file_get_contents( 'php://input' );
4460
		} else {
4461
			$body = null;
4462
		}
4463
		$signature = $jetpack_signature->sign_current_request(
4464
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
4465
		);
4466
4467
		if ( ! $signature ) {
4468
			return false;
4469
		} else if ( is_wp_error( $signature ) ) {
4470
			return $signature;
4471
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4472
			return false;
4473
		}
4474
4475
		$timestamp = (int) $_GET['timestamp'];
4476
		$nonce     = stripslashes( (string) $_GET['nonce'] );
4477
4478
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
4479
			return false;
4480
		}
4481
4482
		$this->xmlrpc_verification = array(
4483
			'type'    => $token_type,
4484
			'user_id' => $token->external_user_id,
4485
		);
4486
4487
		return $this->xmlrpc_verification;
4488
	}
4489
4490
	/**
4491
	 * Authenticates XML-RPC and other requests from the Jetpack Server
4492
	 */
4493
	function authenticate_jetpack( $user, $username, $password ) {
4494
		if ( is_a( $user, 'WP_User' ) ) {
4495
			return $user;
4496
		}
4497
4498
		$token_details = $this->verify_xml_rpc_signature();
4499
4500
		if ( ! $token_details || is_wp_error( $token_details ) ) {
4501
			return $user;
4502
		}
4503
4504
		if ( 'user' !== $token_details['type'] ) {
4505
			return $user;
4506
		}
4507
4508
		if ( ! $token_details['user_id'] ) {
4509
			return $user;
4510
		}
4511
4512
		nocache_headers();
4513
4514
		return new WP_User( $token_details['user_id'] );
4515
	}
4516
4517
	function add_nonce( $timestamp, $nonce ) {
4518
		global $wpdb;
4519
		static $nonces_used_this_request = array();
4520
4521
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
4522
			return $nonces_used_this_request["$timestamp:$nonce"];
4523
		}
4524
4525
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
4526
		$timestamp = (int) $timestamp;
4527
		$nonce     = esc_sql( $nonce );
4528
4529
		// Raw query so we can avoid races: add_option will also update
4530
		$show_errors = $wpdb->show_errors( false );
4531
4532
		$old_nonce = $wpdb->get_row(
4533
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
4534
		);
4535
4536
		if ( is_null( $old_nonce ) ) {
4537
			$return = $wpdb->query(
4538
				$wpdb->prepare(
4539
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
4540
					"jetpack_nonce_{$timestamp}_{$nonce}",
4541
					time(),
4542
					'no'
4543
				)
4544
			);
4545
		} else {
4546
			$return = false;
4547
		}
4548
4549
		$wpdb->show_errors( $show_errors );
4550
4551
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
4552
4553
		return $return;
4554
	}
4555
4556
	/**
4557
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
4558
	 * Capture it here so we can verify the signature later.
4559
	 */
4560
	function xmlrpc_methods( $methods ) {
4561
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
4562
		return $methods;
4563
	}
4564
4565
	function public_xmlrpc_methods( $methods ) {
4566
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
4567
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
4568
		}
4569
		return $methods;
4570
	}
4571
4572
	function jetpack_getOptions( $args ) {
4573
		global $wp_xmlrpc_server;
4574
4575
		$wp_xmlrpc_server->escape( $args );
4576
4577
		$username	= $args[1];
4578
		$password	= $args[2];
4579
4580
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
4581
			return $wp_xmlrpc_server->error;
4582
		}
4583
4584
		$options = array();
4585
		$user_data = $this->get_connected_user_data();
4586
		if ( is_array( $user_data ) ) {
4587
			$options['jetpack_user_id'] = array(
4588
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
4589
				'readonly'      => true,
4590
				'value'         => $user_data['ID'],
4591
			);
4592
			$options['jetpack_user_login'] = array(
4593
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
4594
				'readonly'      => true,
4595
				'value'         => $user_data['login'],
4596
			);
4597
			$options['jetpack_user_email'] = array(
4598
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
4599
				'readonly'      => true,
4600
				'value'         => $user_data['email'],
4601
			);
4602
			$options['jetpack_user_site_count'] = array(
4603
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
4604
				'readonly'      => true,
4605
				'value'         => $user_data['site_count'],
4606
			);
4607
		}
4608
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
4609
		$args = stripslashes_deep( $args );
4610
		return $wp_xmlrpc_server->wp_getOptions( $args );
4611
	}
4612
4613
	function xmlrpc_options( $options ) {
4614
		$jetpack_client_id = false;
4615
		if ( self::is_active() ) {
4616
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
4617
		}
4618
		$options['jetpack_version'] = array(
4619
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
4620
				'readonly'      => true,
4621
				'value'         => JETPACK__VERSION,
4622
		);
4623
4624
		$options['jetpack_client_id'] = array(
4625
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
4626
				'readonly'      => true,
4627
				'value'         => $jetpack_client_id,
4628
		);
4629
		return $options;
4630
	}
4631
4632
	public static function clean_nonces( $all = false ) {
4633
		global $wpdb;
4634
4635
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
4636
		if ( method_exists ( $wpdb , 'esc_like' ) ) {
4637
			$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
4638
		} else {
4639
			$sql_args = array( like_escape( 'jetpack_nonce_' ) . '%' );
4640
		}
4641
4642
		if ( true !== $all ) {
4643
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
4644
			$sql_args[] = time() - 3600;
4645
		}
4646
4647
		$sql .= ' ORDER BY `option_id` LIMIT 100';
4648
4649
		$sql = $wpdb->prepare( $sql, $sql_args );
4650
4651
		for ( $i = 0; $i < 1000; $i++ ) {
4652
			if ( ! $wpdb->query( $sql ) ) {
4653
				break;
4654
			}
4655
		}
4656
	}
4657
4658
	/**
4659
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
4660
	 * SET: state( $key, $value );
4661
	 * GET: $value = state( $key );
4662
	 *
4663
	 * @param string $key
4664
	 * @param string $value
4665
	 * @param bool $restate private
4666
	 */
4667
	public static function state( $key = null, $value = null, $restate = false ) {
4668
		static $state = array();
4669
		static $path, $domain;
4670
		if ( ! isset( $path ) ) {
4671
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
4672
			$admin_url = Jetpack::admin_url();
4673
			$bits      = parse_url( $admin_url );
4674
4675
			if ( is_array( $bits ) ) {
4676
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
4677
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
4678
			} else {
4679
				$path = $domain = null;
4680
			}
4681
		}
4682
4683
		// Extract state from cookies and delete cookies
4684
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
4685
			$yum = $_COOKIE[ 'jetpackState' ];
4686
			unset( $_COOKIE[ 'jetpackState' ] );
4687
			foreach ( $yum as $k => $v ) {
4688
				if ( strlen( $v ) )
4689
					$state[ $k ] = $v;
4690
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
4691
			}
4692
		}
4693
4694
		if ( $restate ) {
4695
			foreach ( $state as $k => $v ) {
4696
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
4697
			}
4698
			return;
4699
		}
4700
4701
		// Get a state variable
4702
		if ( isset( $key ) && ! isset( $value ) ) {
4703
			if ( array_key_exists( $key, $state ) )
4704
				return $state[ $key ];
4705
			return null;
4706
		}
4707
4708
		// Set a state variable
4709
		if ( isset ( $key ) && isset( $value ) ) {
4710
			if( is_array( $value ) && isset( $value[0] ) ) {
4711
				$value = $value[0];
4712
			}
4713
			$state[ $key ] = $value;
4714
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
4715
		}
4716
	}
4717
4718
	public static function restate() {
4719
		Jetpack::state( null, null, true );
4720
	}
4721
4722
	public static function check_privacy( $file ) {
4723
		static $is_site_publicly_accessible = null;
4724
4725
		if ( is_null( $is_site_publicly_accessible ) ) {
4726
			$is_site_publicly_accessible = false;
4727
4728
			Jetpack::load_xml_rpc_client();
4729
			$rpc = new Jetpack_IXR_Client();
4730
4731
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
4732
			if ( $success ) {
4733
				$response = $rpc->getResponse();
4734
				if ( $response ) {
4735
					$is_site_publicly_accessible = true;
4736
				}
4737
			}
4738
4739
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
4740
		}
4741
4742
		if ( $is_site_publicly_accessible ) {
4743
			return;
4744
		}
4745
4746
		$module_slug = self::get_module_slug( $file );
4747
4748
		$privacy_checks = Jetpack::state( 'privacy_checks' );
4749
		if ( ! $privacy_checks ) {
4750
			$privacy_checks = $module_slug;
4751
		} else {
4752
			$privacy_checks .= ",$module_slug";
4753
		}
4754
4755
		Jetpack::state( 'privacy_checks', $privacy_checks );
4756
	}
4757
4758
	/**
4759
	 * Helper method for multicall XMLRPC.
4760
	 */
4761
	public static function xmlrpc_async_call() {
4762
		global $blog_id;
4763
		static $clients = array();
4764
4765
		$client_blog_id = is_multisite() ? $blog_id : 0;
4766
4767
		if ( ! isset( $clients[$client_blog_id] ) ) {
4768
			Jetpack::load_xml_rpc_client();
4769
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
4770
			if ( function_exists( 'ignore_user_abort' ) ) {
4771
				ignore_user_abort( true );
4772
			}
4773
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
4774
		}
4775
4776
		$args = func_get_args();
4777
4778
		if ( ! empty( $args[0] ) ) {
4779
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
4780
		} elseif ( is_multisite() ) {
4781
			foreach ( $clients as $client_blog_id => $client ) {
4782
				if ( ! $client_blog_id || empty( $client->calls ) ) {
4783
					continue;
4784
				}
4785
4786
				$switch_success = switch_to_blog( $client_blog_id, true );
4787
				if ( ! $switch_success ) {
4788
					continue;
4789
				}
4790
4791
				flush();
4792
				$client->query();
4793
4794
				restore_current_blog();
4795
			}
4796
		} else {
4797
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
4798
				flush();
4799
				$clients[0]->query();
4800
			}
4801
		}
4802
	}
4803
4804
	public static function staticize_subdomain( $url ) {
4805
4806
		// Extract hostname from URL
4807
		$host = parse_url( $url, PHP_URL_HOST );
4808
4809
		// Explode hostname on '.'
4810
		$exploded_host = explode( '.', $host );
4811
4812
		// Retrieve the name and TLD
4813
		if ( count( $exploded_host ) > 1 ) {
4814
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
4815
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
4816
			// Rebuild domain excluding subdomains
4817
			$domain = $name . '.' . $tld;
4818
		} else {
4819
			$domain = $host;
4820
		}
4821
		// Array of Automattic domains
4822
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
4823
4824
		// Return $url if not an Automattic domain
4825
		if ( ! in_array( $domain, $domain_whitelist ) ) {
4826
			return $url;
4827
		}
4828
4829
		if ( is_ssl() ) {
4830
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
4831
		}
4832
4833
		srand( crc32( basename( $url ) ) );
4834
		$static_counter = rand( 0, 2 );
4835
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
4836
4837
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
4838
	}
4839
4840
/* JSON API Authorization */
4841
4842
	/**
4843
	 * Handles the login action for Authorizing the JSON API
4844
	 */
4845
	function login_form_json_api_authorization() {
4846
		$this->verify_json_api_authorization_request();
4847
4848
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
4849
4850
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
4851
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
4852
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
4853
	}
4854
4855
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
4856
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
4857
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
4858
			return $url;
4859
		}
4860
4861
		$parsed_url = parse_url( $url );
4862
		$url = strtok( $url, '?' );
4863
		$url = "$url?{$_SERVER['QUERY_STRING']}";
4864
		if ( ! empty( $parsed_url['query'] ) )
4865
			$url .= "&{$parsed_url['query']}";
4866
4867
		return $url;
4868
	}
4869
4870
	// Make sure the POSTed request is handled by the same action
4871
	function preserve_action_in_login_form_for_json_api_authorization() {
4872
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
4873
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
4874
	}
4875
4876
	// If someone logs in to approve API access, store the Access Code in usermeta
4877
	function store_json_api_authorization_token( $user_login, $user ) {
4878
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
4879
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
4880
		$token = wp_generate_password( 32, false );
4881
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
4882
	}
4883
4884
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
4885
	function allow_wpcom_public_api_domain( $domains ) {
4886
		$domains[] = 'public-api.wordpress.com';
4887
		return $domains;
4888
	}
4889
4890
	// Add the Access Code details to the public-api.wordpress.com redirect
4891
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
4892
		return add_query_arg(
4893
			urlencode_deep(
4894
				array(
4895
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
4896
					'jetpack-user-id' => (int) $user->ID,
4897
					'jetpack-state'   => $this->json_api_authorization_request['state'],
4898
				)
4899
			),
4900
			$redirect_to
4901
		);
4902
	}
4903
4904
	// Verifies the request by checking the signature
4905
	function verify_json_api_authorization_request() {
4906
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4907
4908
		$token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
4909
		if ( ! $token || empty( $token->secret ) ) {
4910
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
4911
		}
4912
4913
		$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' );
4914
4915
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4916
4917
		if ( isset( $_POST['jetpack_json_api_original_query'] ) ) {
4918
			$signature = $jetpack_signature->sign_request( $_GET['token'], $_GET['timestamp'], $_GET['nonce'], '', 'GET', $_POST['jetpack_json_api_original_query'], null, true );
4919
		} else {
4920
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
4921
		}
4922
4923
		if ( ! $signature ) {
4924
			wp_die( $die_error );
4925
		} else if ( is_wp_error( $signature ) ) {
4926
			wp_die( $die_error );
4927
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4928
			if ( is_ssl() ) {
4929
				// 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
4930
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
4931
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $_GET['signature'] ) ) {
4932
					wp_die( $die_error );
4933
				}
4934
			} else {
4935
				wp_die( $die_error );
4936
			}
4937
		}
4938
4939
		$timestamp = (int) $_GET['timestamp'];
4940
		$nonce     = stripslashes( (string) $_GET['nonce'] );
4941
4942
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
4943
			// De-nonce the nonce, at least for 5 minutes.
4944
			// 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)
4945
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
4946
			if ( $old_nonce_time < time() - 300 ) {
4947
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
4948
			}
4949
		}
4950
4951
		$data = json_decode( base64_decode( stripslashes( $_GET['data'] ) ) );
4952
		$data_filters = array(
4953
			'state'        => 'opaque',
4954
			'client_id'    => 'int',
4955
			'client_title' => 'string',
4956
			'client_image' => 'url',
4957
		);
4958
4959
		foreach ( $data_filters as $key => $sanitation ) {
4960
			if ( ! isset( $data->$key ) ) {
4961
				wp_die( $die_error );
4962
			}
4963
4964
			switch ( $sanitation ) {
4965
			case 'int' :
4966
				$this->json_api_authorization_request[$key] = (int) $data->$key;
4967
				break;
4968
			case 'opaque' :
4969
				$this->json_api_authorization_request[$key] = (string) $data->$key;
4970
				break;
4971
			case 'string' :
4972
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
4973
				break;
4974
			case 'url' :
4975
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
4976
				break;
4977
			}
4978
		}
4979
4980
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
4981
			wp_die( $die_error );
4982
		}
4983
	}
4984
4985
	function login_message_json_api_authorization( $message ) {
4986
		return '<p class="message">' . sprintf(
4987
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
4988
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
4989
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
4990
	}
4991
4992
	/**
4993
	 * Get $content_width, but with a <s>twist</s> filter.
4994
	 */
4995
	public static function get_content_width() {
4996
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
4997
		/**
4998
		 * Filter the Content Width value.
4999
		 *
5000
		 * @since 2.2.3
5001
		 *
5002
		 * @param string $content_width Content Width value.
5003
		 */
5004
		return apply_filters( 'jetpack_content_width', $content_width );
5005
	}
5006
5007
	/**
5008
	 * Centralize the function here until it gets added to core.
5009
	 *
5010
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
5011
	 * @param int $size Size of the avatar image
5012
	 * @param string $default URL to a default image to use if no avatar is available
5013
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
5014
	 *
5015
	 * @return array First element is the URL, second is the class.
5016
	 */
5017
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
5018
		// Don't bother adding the __return_true filter if it's already there.
5019
		$has_filter = has_filter( 'pre_option_show_avatars', '__return_true' );
5020
5021
		if ( $force_display && ! $has_filter )
5022
			add_filter( 'pre_option_show_avatars', '__return_true' );
5023
5024
		$avatar = get_avatar( $id_or_email, $size, $default );
5025
5026
		if ( $force_display && ! $has_filter )
5027
			remove_filter( 'pre_option_show_avatars', '__return_true' );
5028
5029
		// If no data, fail out.
5030
		if ( is_wp_error( $avatar ) || ! $avatar )
5031
			return array( null, null );
5032
5033
		// Pull out the URL.  If it's not there, fail out.
5034
		if ( ! preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $url_matches ) )
5035
			return array( null, null );
5036
		$url = wp_specialchars_decode( $url_matches[1], ENT_QUOTES );
5037
5038
		// Pull out the class, but it's not a big deal if it's missing.
5039
		$class = '';
5040
		if ( preg_match( '/class=["\']([^"\']+)["\']/', $avatar, $class_matches ) )
5041
			$class = wp_specialchars_decode( $class_matches[1], ENT_QUOTES );
5042
5043
		return array( $url, $class );
5044
	}
5045
5046
	/**
5047
	 * Pings the WordPress.com Mirror Site for the specified options.
5048
	 *
5049
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
5050
	 *
5051
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
5052
	 */
5053
	public function get_cloud_site_options( $option_names ) {
5054
		$option_names = array_filter( (array) $option_names, 'is_string' );
5055
5056
		Jetpack::load_xml_rpc_client();
5057
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5058
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
5059
		if ( $xml->isError() ) {
5060
			return array(
5061
				'error_code' => $xml->getErrorCode(),
5062
				'error_msg'  => $xml->getErrorMessage(),
5063
			);
5064
		}
5065
		$cloud_site_options = $xml->getResponse();
5066
5067
		return $cloud_site_options;
5068
	}
5069
5070
	/**
5071
	 * Fetch the filtered array of options that we should compare to determine an identity crisis.
5072
	 *
5073
	 * @return array An array of options to check.
5074
	 */
5075
	public static function identity_crisis_options_to_check() {
5076
		return array(
5077
			'siteurl',
5078
			'home',
5079
		);
5080
	}
5081
5082
	/**
5083
	 * Checks to make sure that local options have the same values as remote options.  Will cache the results for up to 24 hours.
5084
	 *
5085
	 * @param bool $force_recheck Whether to ignore any cached transient and manually re-check.
5086
	 *
5087
	 * @return array An array of options that do not match.  If everything is good, it will evaluate to false.
5088
	 */
5089
	public static function check_identity_crisis( $force_recheck = false ) {
5090
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || Jetpack::is_staging_site() )
5091
			return false;
5092
5093
		if ( $force_recheck || false === ( $errors = get_transient( 'jetpack_has_identity_crisis' ) ) ) {
5094
			$options_to_check = self::identity_crisis_options_to_check();
5095
			$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5096
			$errors        = array();
5097
5098
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5099
5100
				// If it's not the same as the local value...
5101
				if ( $cloud_value !== get_option( $cloud_key ) ) {
5102
5103
					// Break out if we're getting errors.  We are going to check the error keys later when we alert.
5104
					if ( 'error_code' == $cloud_key ) {
5105
						$errors[ $cloud_key ] = $cloud_value;
5106
						break;
5107
					}
5108
5109
					$parsed_cloud_value = parse_url( $cloud_value );
5110
					// If the current options is an IP address
5111
					if ( filter_var( $parsed_cloud_value['host'], FILTER_VALIDATE_IP ) ) {
5112
						// Give the new value a Jetpack to fly in to the clouds
5113
						continue;
5114
					}
5115
5116
					// And it's not been added to the whitelist...
5117
					if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5118
						/*
5119
						 * This should be a temporary hack until a cleaner solution is found.
5120
						 *
5121
						 * The siteurl and home can be set to use http in General > Settings
5122
						 * however some constants can be defined that can force https in wp-admin
5123
						 * when this happens wpcom can confuse wporg with a fake identity
5124
						 * crisis with a mismatch of http vs https when it should be allowed.
5125
						 * we need to check that here.
5126
						 *
5127
						 * @see https://github.com/Automattic/jetpack/issues/1006
5128
						 */
5129
						if ( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5130
							&& ( substr( $cloud_value, 0, 8 ) == "https://" )
5131
							&& Jetpack::init()->is_ssl_required_to_visit_site() ) {
5132
							// Ok, we found a mismatch of http and https because of wp-config, not an invalid url
5133
							continue;
5134
						}
5135
5136
5137
						// Then kick an error!
5138
						$errors[ $cloud_key ] = $cloud_value;
5139
					}
5140
				}
5141
			}
5142
		}
5143
5144
		/**
5145
		 * Filters the errors returned when checking for an Identity Crisis.
5146
		 *
5147
		 * @since 2.3.2
5148
		 *
5149
		 * @param array $errors Array of Identity Crisis errors.
5150
		 * @param bool $force_recheck Ignore any cached transient and manually re-check. Default to false.
5151
		 */
5152
		return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5153
	}
5154
5155
	/**
5156
	 * Checks whether a value is already whitelisted.
5157
	 *
5158
	 * @param string $key The option name that we're checking the value for.
5159
	 * @param string $value The value that we're curious to see if it's on the whitelist.
5160
	 *
5161
	 * @return bool Whether the value is whitelisted.
5162
	 */
5163
	public static function is_identity_crisis_value_whitelisted( $key, $value ) {
5164
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5165
		if ( ! empty( $whitelist[ $key ] ) && is_array( $whitelist[ $key ] ) && in_array( $value, $whitelist[ $key ] ) ) {
5166
			return true;
5167
		}
5168
		return false;
5169
	}
5170
5171
	/**
5172
	 * Checks whether the home and siteurl specifically are whitelisted
5173
	 * Written so that we don't have re-check $key and $value params every time
5174
	 * we want to check if this site is whitelisted, for example in footer.php
5175
	 *
5176
	 * @return bool True = already whitelisted False = not whitelisted
5177
	 */
5178
	public static function is_staging_site() {
5179
		$is_staging = false;
5180
5181
		$current_whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist' );
5182
		if ( $current_whitelist && ! get_transient( 'jetpack_checked_is_staging' ) ) {
5183
			$options_to_check  = Jetpack::identity_crisis_options_to_check();
5184
			$cloud_options     = Jetpack::init()->get_cloud_site_options( $options_to_check );
5185
5186
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5187
				if ( self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5188
					$is_staging = true;
5189
					break;
5190
				}
5191
			}
5192
			// set a flag so we don't check again for an hour
5193
			set_transient( 'jetpack_checked_is_staging', 1, HOUR_IN_SECONDS );
5194
		}
5195
		$known_staging = array(
5196
			'urls' => array(
5197
				'#\.staging\.wpengine\.com$#i', // WP Engine
5198
				),
5199
			'constants' => array(
5200
				'IS_WPE_SNAPSHOT',      // WP Engine
5201
				'KINSTA_DEV_ENV',       // Kinsta.com
5202
				'WPSTAGECOACH_STAGING', // WP Stagecoach
5203
				'JETPACK_STAGING_MODE', // Generic
5204
				)
5205
			);
5206
		/**
5207
		 * Filters the flags of known staging sites.
5208
		 *
5209
		 * @since 3.9.0
5210
		 *
5211
		 * @param array $known_staging {
5212
		 *     An array of arrays that each are used to check if the current site is staging.
5213
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
5214
		 *     @type array $constants PHP constants of known staging/developement environments.
5215
		 *  }
5216
		 */
5217
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
5218
5219
		if ( isset( $known_staging['urls'] ) ) {
5220
			foreach ( $known_staging['urls'] as $url ){
5221
				if ( preg_match( $url, site_url() ) ) {
5222
					$is_staging = true;
5223
					break;
5224
				}
5225
			}
5226
		}
5227
5228
		if ( isset( $known_staging['constants'] ) ) {
5229
			foreach ( $known_staging['constants'] as $constant ) {
5230
				if ( defined( $constant ) && constant( $constant ) ) {
5231
					$is_staging = true;
5232
				}
5233
			}
5234
		}
5235
5236
		/**
5237
		 * Filters is_staging_site check.
5238
		 *
5239
		 * @since 3.9.0
5240
		 *
5241
		 * @param bool $is_staging If the current site is a staging site.
5242
		 */
5243
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
5244
	}
5245
5246
	/**
5247
	 * Maybe Use a .min.css stylesheet, maybe not.
5248
	 *
5249
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
5250
	 */
5251
	public static function maybe_min_asset( $url, $path, $plugin ) {
5252
		// Short out on things trying to find actual paths.
5253
		if ( ! $path || empty( $plugin ) ) {
5254
			return $url;
5255
		}
5256
5257
		// Strip out the abspath.
5258
		$base = dirname( plugin_basename( $plugin ) );
5259
5260
		// Short out on non-Jetpack assets.
5261
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
5262
			return $url;
5263
		}
5264
5265
		// File name parsing.
5266
		$file              = "{$base}/{$path}";
5267
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
5268
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
5269
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
5270
		$extension         = array_shift( $file_name_parts_r );
5271
5272
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
5273
			// Already pointing at the minified version.
5274
			if ( 'min' === $file_name_parts_r[0] ) {
5275
				return $url;
5276
			}
5277
5278
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
5279
			if ( file_exists( $min_full_path ) ) {
5280
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
5281
			}
5282
		}
5283
5284
		return $url;
5285
	}
5286
5287
	/**
5288
	 * Maybe inlines a stylesheet.
5289
	 *
5290
	 * If you'd like to inline a stylesheet instead of printing a link to it,
5291
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
5292
	 *
5293
	 * Attached to `style_loader_tag` filter.
5294
	 *
5295
	 * @param string $tag The tag that would link to the external asset.
5296
	 * @param string $handle The registered handle of the script in question.
5297
	 *
5298
	 * @return string
5299
	 */
5300
	public static function maybe_inline_style( $tag, $handle ) {
5301
		global $wp_styles;
5302
		$item = $wp_styles->registered[ $handle ];
5303
5304
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
5305
			return $tag;
5306
		}
5307
5308
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
5309
			$href = $matches[1];
5310
			// Strip off query string
5311
			if ( $pos = strpos( $href, '?' ) ) {
5312
				$href = substr( $href, 0, $pos );
5313
			}
5314
			// Strip off fragment
5315
			if ( $pos = strpos( $href, '#' ) ) {
5316
				$href = substr( $href, 0, $pos );
5317
			}
5318
		} else {
5319
			return $tag;
5320
		}
5321
5322
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
5323
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
5324
			return $tag;
5325
		}
5326
5327
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
5328
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
5329
			// And this isn't the pass that actually deals with the RTL version...
5330
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
5331
				// Short out, as the RTL version will deal with it in a moment.
5332
				return $tag;
5333
			}
5334
		}
5335
5336
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
5337
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
5338
		if ( $css ) {
5339
			$tag = "<!-- Inline {$item->handle} -->\r\n";
5340
			if ( empty( $item->extra['after'] ) ) {
5341
				wp_add_inline_style( $handle, $css );
5342
			} else {
5343
				array_unshift( $item->extra['after'], $css );
5344
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
5345
			}
5346
		}
5347
5348
		return $tag;
5349
	}
5350
5351
	/**
5352
	 * Loads a view file from the views
5353
	 *
5354
	 * Data passed in with the $data parameter will be available in the
5355
	 * template file as $data['value']
5356
	 *
5357
	 * @param string $template - Template file to load
5358
	 * @param array $data - Any data to pass along to the template
5359
	 * @return boolean - If template file was found
5360
	 **/
5361
	public function load_view( $template, $data = array() ) {
5362
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
5363
5364
		if( file_exists( $views_dir . $template ) ) {
5365
			require_once( $views_dir . $template );
5366
			return true;
5367
		}
5368
5369
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
5370
		return false;
5371
	}
5372
5373
	/**
5374
	 * Throws warnings for deprecated hooks to be removed from Jetpack
5375
	 */
5376
	public function deprecated_hooks() {
5377
		global $wp_filter;
5378
5379
		/*
5380
		 * Format:
5381
		 * deprecated_filter_name => replacement_name
5382
		 *
5383
		 * If there is no replacement us null for replacement_name
5384
		 */
5385
		$deprecated_list = array(
5386
			'jetpack_bail_on_shortcode'                              => 'jetpack_shortcodes_to_include',
5387
			'wpl_sharing_2014_1'                                     => null,
5388
			'jetpack-tools-to-include'                               => 'jetpack_tools_to_include',
5389
			'jetpack_identity_crisis_options_to_check'               => null,
5390
			'update_option_jetpack_single_user_site'                 => null,
5391
			'audio_player_default_colors'                            => null,
5392
			'add_option_jetpack_featured_images_enabled'             => null,
5393
			'add_option_jetpack_update_details'                      => null,
5394
			'add_option_jetpack_updates'                             => null,
5395
			'add_option_jetpack_network_name'                        => null,
5396
			'add_option_jetpack_network_allow_new_registrations'     => null,
5397
			'add_option_jetpack_network_add_new_users'               => null,
5398
			'add_option_jetpack_network_site_upload_space'           => null,
5399
			'add_option_jetpack_network_upload_file_types'           => null,
5400
			'add_option_jetpack_network_enable_administration_menus' => null,
5401
			'add_option_jetpack_is_multi_site'                       => null,
5402
			'add_option_jetpack_is_main_network'                     => null,
5403
			'add_option_jetpack_main_network_site'                   => null,
5404
			'jetpack_sync_all_registered_options'                    => null,
5405
		);
5406
5407
		// This is a silly loop depth. Better way?
5408
		foreach( $deprecated_list AS $hook => $hook_alt ) {
5409
			if( isset( $wp_filter[ $hook ] ) && is_array( $wp_filter[ $hook ] ) ) {
5410
				foreach( $wp_filter[$hook] AS $func => $values ) {
5411
					foreach( $values AS $hooked ) {
5412
						_deprecated_function( $hook . ' used for ' . $hooked['function'], null, $hook_alt );
5413
					}
5414
				}
5415
			}
5416
		}
5417
	}
5418
5419
	/**
5420
	 * Converts any url in a stylesheet, to the correct absolute url.
5421
	 *
5422
	 * Considerations:
5423
	 *  - Normal, relative URLs     `feh.png`
5424
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
5425
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
5426
	 *  - Absolute URLs             `http://domain.com/feh.png`
5427
	 *  - Domain root relative URLs `/feh.png`
5428
	 *
5429
	 * @param $css string: The raw CSS -- should be read in directly from the file.
5430
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
5431
	 *
5432
	 * @return mixed|string
5433
	 */
5434
	public static function absolutize_css_urls( $css, $css_file_url ) {
5435
		$pattern = '#url\((?P<path>[^)]*)\)#i';
5436
		$css_dir = dirname( $css_file_url );
5437
		$p       = parse_url( $css_dir );
5438
		$domain  = sprintf(
5439
					'%1$s//%2$s%3$s%4$s',
5440
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
5441
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
5442
					$p['host'],
5443
					isset( $p['port'] )             ? ":{$p['port']}" : ''
5444
				);
5445
5446
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
5447
			$find = $replace = array();
5448
			foreach ( $matches as $match ) {
5449
				$url = trim( $match['path'], "'\" \t" );
5450
5451
				// If this is a data url, we don't want to mess with it.
5452
				if ( 'data:' === substr( $url, 0, 5 ) ) {
5453
					continue;
5454
				}
5455
5456
				// If this is an absolute or protocol-agnostic url,
5457
				// we don't want to mess with it.
5458
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
5459
					continue;
5460
				}
5461
5462
				switch ( substr( $url, 0, 1 ) ) {
5463
					case '/':
5464
						$absolute = $domain . $url;
5465
						break;
5466
					default:
5467
						$absolute = $css_dir . '/' . $url;
5468
				}
5469
5470
				$find[]    = $match[0];
5471
				$replace[] = sprintf( 'url("%s")', $absolute );
5472
			}
5473
			$css = str_replace( $find, $replace, $css );
5474
		}
5475
5476
		return $css;
5477
	}
5478
5479
	/**
5480
	 * This method checks to see if SSL is required by the site in
5481
	 * order to visit it in some way other than only setting the
5482
	 * https value in the home or siteurl values.
5483
	 *
5484
	 * @since 3.2
5485
	 * @return boolean
5486
	 **/
5487
	private function is_ssl_required_to_visit_site() {
5488
		global $wp_version;
5489
		$ssl = is_ssl();
5490
5491
		if ( force_ssl_admin() ) {
5492
			$ssl = true;
5493
		}
5494
		return $ssl;
5495
	}
5496
5497
	/**
5498
	 * This methods removes all of the registered css files on the front end
5499
	 * from Jetpack in favor of using a single file. In effect "imploding"
5500
	 * all the files into one file.
5501
	 *
5502
	 * Pros:
5503
	 * - Uses only ONE css asset connection instead of 15
5504
	 * - Saves a minimum of 56k
5505
	 * - Reduces server load
5506
	 * - Reduces time to first painted byte
5507
	 *
5508
	 * Cons:
5509
	 * - Loads css for ALL modules. However all selectors are prefixed so it
5510
	 *		should not cause any issues with themes.
5511
	 * - Plugins/themes dequeuing styles no longer do anything. See
5512
	 *		jetpack_implode_frontend_css filter for a workaround
5513
	 *
5514
	 * For some situations developers may wish to disable css imploding and
5515
	 * instead operate in legacy mode where each file loads seperately and
5516
	 * can be edited individually or dequeued. This can be accomplished with
5517
	 * the following line:
5518
	 *
5519
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
5520
	 *
5521
	 * @since 3.2
5522
	 **/
5523
	public function implode_frontend_css( $travis_test = false ) {
5524
		$do_implode = true;
5525
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
5526
			$do_implode = false;
5527
		}
5528
5529
		/**
5530
		 * Allow CSS to be concatenated into a single jetpack.css file.
5531
		 *
5532
		 * @since 3.2.0
5533
		 *
5534
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
5535
		 */
5536
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
5537
5538
		// Do not use the imploded file when default behaviour was altered through the filter
5539
		if ( ! $do_implode ) {
5540
			return;
5541
		}
5542
5543
		// We do not want to use the imploded file in dev mode, or if not connected
5544
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
5545
			if ( ! $travis_test ) {
5546
				return;
5547
			}
5548
		}
5549
5550
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
5551
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
5552
			return;
5553
		}
5554
5555
		/*
5556
		 * Now we assume Jetpack is connected and able to serve the single
5557
		 * file.
5558
		 *
5559
		 * In the future there will be a check here to serve the file locally
5560
		 * or potentially from the Jetpack CDN
5561
		 *
5562
		 * For now:
5563
		 * - Enqueue a single imploded css file
5564
		 * - Zero out the style_loader_tag for the bundled ones
5565
		 * - Be happy, drink scotch
5566
		 */
5567
5568
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
5569
5570
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
5571
5572
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
5573
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
5574
	}
5575
5576
	function concat_remove_style_loader_tag( $tag, $handle ) {
5577
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
5578
			$tag = '';
5579
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
5580
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
5581
			}
5582
		}
5583
5584
		return $tag;
5585
	}
5586
5587
	/*
5588
	 * Check the heartbeat data
5589
	 *
5590
	 * Organizes the heartbeat data by severity.  For example, if the site
5591
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
5592
	 *
5593
	 * Data will be added to "caution" array, if it either:
5594
	 *  - Out of date Jetpack version
5595
	 *  - Out of date WP version
5596
	 *  - Out of date PHP version
5597
	 *
5598
	 * $return array $filtered_data
5599
	 */
5600
	public static function jetpack_check_heartbeat_data() {
5601
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
5602
5603
		$good    = array();
5604
		$caution = array();
5605
		$bad     = array();
5606
5607
		foreach ( $raw_data as $stat => $value ) {
5608
5609
			// Check jetpack version
5610
			if ( 'version' == $stat ) {
5611
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
5612
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
5613
					continue;
5614
				}
5615
			}
5616
5617
			// Check WP version
5618
			if ( 'wp-version' == $stat ) {
5619
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
5620
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
5621
					continue;
5622
				}
5623
			}
5624
5625
			// Check PHP version
5626
			if ( 'php-version' == $stat ) {
5627
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
5628
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
5629
					continue;
5630
				}
5631
			}
5632
5633
			// Check ID crisis
5634
			if ( 'identitycrisis' == $stat ) {
5635
				if ( 'yes' == $value ) {
5636
					$bad[ $stat ] = $value;
5637
					continue;
5638
				}
5639
			}
5640
5641
			// The rest are good :)
5642
			$good[ $stat ] = $value;
5643
		}
5644
5645
		$filtered_data = array(
5646
			'good'    => $good,
5647
			'caution' => $caution,
5648
			'bad'     => $bad
5649
		);
5650
5651
		return $filtered_data;
5652
	}
5653
5654
5655
	/*
5656
	 * This method is used to organize all options that can be reset
5657
	 * without disconnecting Jetpack.
5658
	 *
5659
	 * It is used in class.jetpack-cli.php to reset options
5660
	 *
5661
	 * @return array of options to delete.
5662
	 */
5663
	public static function get_jetpack_options_for_reset() {
5664
		$jetpack_options            = Jetpack_Options::get_option_names();
5665
		$jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
5666
		$jetpack_options_private    = Jetpack_Options::get_option_names( 'private' );
5667
5668
		$all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat, $jetpack_options_private );
5669
5670
		// A manual build of the wp options
5671
		$wp_options = array(
5672
			'sharing-options',
5673
			'disabled_likes',
5674
			'disabled_reblogs',
5675
			'jetpack_comments_likes_enabled',
5676
			'wp_mobile_excerpt',
5677
			'wp_mobile_featured_images',
5678
			'wp_mobile_app_promos',
5679
			'stats_options',
5680
			'stats_dashboard_widget',
5681
			'safecss_preview_rev',
5682
			'safecss_rev',
5683
			'safecss_revision_migrated',
5684
			'nova_menu_order',
5685
			'jetpack_portfolio',
5686
			'jetpack_portfolio_posts_per_page',
5687
			'jetpack_testimonial',
5688
			'jetpack_testimonial_posts_per_page',
5689
			'wp_mobile_custom_css',
5690
			'sharedaddy_disable_resources',
5691
			'sharing-options',
5692
			'sharing-services',
5693
			'site_icon_temp_data',
5694
			'featured-content',
5695
			'site_logo',
5696
			'jetpack_dismissed_notices',
5697
		);
5698
5699
		// Flag some Jetpack options as unsafe
5700
		$unsafe_options = array(
5701
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
5702
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
5703
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
5704
			'jumpstart',                    // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
5705
5706
			// non_compact
5707
			'activated',
5708
5709
			// private
5710
			'register',
5711
			'blog_token',                  // (string) The Client Secret/Blog Token of this site.
5712
			'user_token',                  // (string) The User Token of this site. (deprecated)
5713
			'user_tokens'
5714
		);
5715
5716
		// Remove the unsafe Jetpack options
5717
		foreach ( $unsafe_options as $unsafe_option ) {
5718
			if ( false !== ( $key = array_search( $unsafe_option, $all_jp_options ) ) ) {
5719
				unset( $all_jp_options[ $key ] );
5720
			}
5721
		}
5722
5723
		$options = array(
5724
			'jp_options' => $all_jp_options,
5725
			'wp_options' => $wp_options
5726
		);
5727
5728
		return $options;
5729
	}
5730
5731
	/**
5732
	 * Check if an option of a Jetpack module has been updated.
5733
	 *
5734
	 * If any module option has been updated before Jump Start has been dismissed,
5735
	 * update the 'jumpstart' option so we can hide Jump Start.
5736
	 *
5737
	 * @param string $option_name
5738
	 *
5739
	 * @return bool
5740
	 */
5741
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
5742
		// Bail if Jump Start has already been dismissed
5743
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
5744
			return false;
5745
		}
5746
5747
		$jetpack = Jetpack::init();
5748
5749
		// Manual build of module options
5750
		$option_names = self::get_jetpack_options_for_reset();
5751
5752
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
5753
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
5754
5755
			//Jump start is being dismissed send data to MC Stats
5756
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
5757
5758
			$jetpack->do_stats( 'server_side' );
5759
		}
5760
5761
	}
5762
5763
	/*
5764
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
5765
	 * so we can bring them directly to their site in calypso.
5766
	 *
5767
	 * @param string | url
5768
	 * @return string | url without the guff
5769
	 */
5770
	public static function build_raw_urls( $url ) {
5771
		$strip_http = '/.*?:\/\//i';
5772
		$url = preg_replace( $strip_http, '', $url  );
5773
		$url = str_replace( '/', '::', $url );
5774
		return $url;
5775
	}
5776
5777
	/**
5778
	 * Stores and prints out domains to prefetch for page speed optimization.
5779
	 *
5780
	 * @param mixed $new_urls
5781
	 */
5782
	public static function dns_prefetch( $new_urls = null ) {
5783
		static $prefetch_urls = array();
5784
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
5785
			echo "\r\n";
5786
			foreach ( $prefetch_urls as $this_prefetch_url ) {
5787
				printf( "<link rel='dns-prefetch' href='%s'>\r\n", esc_attr( $this_prefetch_url ) );
5788
			}
5789
		} elseif ( ! empty( $new_urls ) ) {
5790
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
5791
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
5792
			}
5793
			foreach ( (array) $new_urls as $this_new_url ) {
5794
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
5795
			}
5796
			$prefetch_urls = array_unique( $prefetch_urls );
5797
		}
5798
	}
5799
5800
	public function wp_dashboard_setup() {
5801
		if ( self::is_active() ) {
5802
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
5803
			$widget_title = __( 'Site Stats', 'jetpack' );
5804
		} elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
5805
			add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
5806
			$widget_title = __( 'Please Connect Jetpack', 'jetpack' );
5807
		}
5808
5809
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
5810
			wp_add_dashboard_widget(
5811
				'jetpack_summary_widget',
5812
				$widget_title,
5813
				array( __CLASS__, 'dashboard_widget' )
5814
			);
5815
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
5816
5817
			// If we're inactive and not in development mode, sort our box to the top.
5818
			if ( ! self::is_active() && ! self::is_development_mode() ) {
5819
				global $wp_meta_boxes;
5820
5821
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
5822
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
5823
5824
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
5825
			}
5826
		}
5827
	}
5828
5829
	/**
5830
	 * @param mixed $result Value for the user's option
5831
	 * @return mixed
5832
	 */
5833
	function get_user_option_meta_box_order_dashboard( $sorted ) {
5834
		if ( ! is_array( $sorted ) ) {
5835
			return $sorted;
5836
		}
5837
5838
		foreach ( $sorted as $box_context => $ids ) {
5839
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
5840
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
5841
				continue;
5842
			}
5843
5844
			$ids_array = explode( ',', $ids );
5845
			$key = array_search( 'dashboard_stats', $ids_array );
5846
5847
			if ( false !== $key ) {
5848
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
5849
				$ids_array[ $key ] = 'jetpack_summary_widget';
5850
				$sorted[ $box_context ] = implode( ',', $ids_array );
5851
				// We've found it, stop searching, and just return.
5852
				break;
5853
			}
5854
		}
5855
5856
		return $sorted;
5857
	}
5858
5859
	public static function dashboard_widget() {
5860
		/**
5861
		 * Fires when the dashboard is loaded.
5862
		 *
5863
		 * @since 3.4.0
5864
		 */
5865
		do_action( 'jetpack_dashboard_widget' );
5866
	}
5867
5868
	public static function dashboard_widget_footer() {
5869
		?>
5870
		<footer>
5871
5872
		<div class="protect">
5873
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
5874
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
5875
				<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>
5876
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
5877
				<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' ); ?>">
5878
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
5879
				</a>
5880
			<?php else : ?>
5881
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
5882
			<?php endif; ?>
5883
		</div>
5884
5885
		<div class="akismet">
5886
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
5887
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
5888
				<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>
5889
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
5890
				<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">
5891
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
5892
				</a>
5893
			<?php else : ?>
5894
				<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>
5895
			<?php endif; ?>
5896
		</div>
5897
5898
		</footer>
5899
		<?php
5900
	}
5901
5902
	public function dashboard_widget_connect_to_wpcom() {
5903
		if ( Jetpack::is_active() || Jetpack::is_development_mode() || ! current_user_can( 'jetpack_connect' ) ) {
5904
			return;
5905
		}
5906
		?>
5907
		<div class="wpcom-connect">
5908
			<div class="jp-emblem">
5909
			<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">
5910
				<path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z"/>
5911
			</svg>
5912
			</div>
5913
			<h3><?php esc_html_e( 'Please Connect Jetpack', 'jetpack' ); ?></h3>
5914
			<p><?php echo wp_kses( __( 'Connecting Jetpack will show you <strong>stats</strong> about your traffic, <strong>protect</strong> you from brute force attacks, <strong>speed up</strong> your images and photos, and enable other <strong>traffic and security</strong> features.', 'jetpack' ), 'jetpack' ) ?></p>
5915
5916
			<div class="actions">
5917
				<a href="<?php echo $this->build_connect_url( false, false, 'widget-btn' ); ?>" class="button button-primary">
5918
					<?php esc_html_e( 'Connect Jetpack', 'jetpack' ); ?>
5919
				</a>
5920
			</div>
5921
		</div>
5922
		<?php
5923
	}
5924
5925
	/*
5926
	 * A graceful transition to using Core's site icon.
5927
	 *
5928
	 * All of the hard work has already been done with the image
5929
	 * in all_done_page(). All that needs to be done now is update
5930
	 * the option and display proper messaging.
5931
	 *
5932
	 * @todo remove when WP 4.3 is minimum
5933
	 *
5934
	 * @since 3.6.1
5935
	 *
5936
	 * @return bool false = Core's icon not available || true = Core's icon is available
5937
	 */
5938
	public static function jetpack_site_icon_available_in_core() {
5939
		global $wp_version;
5940
		$core_icon_available = function_exists( 'has_site_icon' ) && version_compare( $wp_version, '4.3-beta' ) >= 0;
5941
5942
		if ( ! $core_icon_available ) {
5943
			return false;
5944
		}
5945
5946
		// No need for Jetpack's site icon anymore if core's is already set
5947
		if ( has_site_icon() ) {
5948
			if ( Jetpack::is_module_active( 'site-icon' ) ) {
5949
				Jetpack::log( 'deactivate', 'site-icon' );
5950
				Jetpack::deactivate_module( 'site-icon' );
5951
			}
5952
			return true;
5953
		}
5954
5955
		// Transfer Jetpack's site icon to use core.
5956
		$site_icon_id = Jetpack::get_option( 'site_icon_id' );
5957
		if ( $site_icon_id ) {
5958
			// Update core's site icon
5959
			update_option( 'site_icon', $site_icon_id );
5960
5961
			// Delete Jetpack's icon option. We still want the blavatar and attached data though.
5962
			delete_option( 'site_icon_id' );
5963
		}
5964
5965
		// No need for Jetpack's site icon anymore
5966
		if ( Jetpack::is_module_active( 'site-icon' ) ) {
5967
			Jetpack::log( 'deactivate', 'site-icon' );
5968
			Jetpack::deactivate_module( 'site-icon' );
5969
		}
5970
5971
		return true;
5972
	}
5973
5974
	/**
5975
	 * Return string containing the Jetpack logo.
5976
	 *
5977
	 * @since 3.9.0
5978
	 *
5979
	 * @return string
5980
	 */
5981
	public static function get_jp_emblem() {
5982
		return '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 172.9 172.9" enable-background="new 0 0 172.9 172.9" xml:space="preserve">	<path d="M86.4 0C38.7 0 0 38.7 0 86.4c0 47.7 38.7 86.4 86.4 86.4s86.4-38.7 86.4-86.4C172.9 38.7 134.2 0 86.4 0zM83.1 106.6l-27.1-6.9C49 98 45.7 90.1 49.3 84l33.8-58.5V106.6zM124.9 88.9l-33.8 58.5V66.3l27.1 6.9C125.1 74.9 128.4 82.8 124.9 88.9z" /></svg>';
5983
	}
5984
5985
	/*
5986
	 * Adds a "blank" column in the user admin table to display indication of user connection.
5987
	 */
5988
	function jetpack_icon_user_connected( $columns ) {
5989
		$columns['user_jetpack'] = '';
5990
		return $columns;
5991
	}
5992
5993
	/*
5994
	 * Show Jetpack icon if the user is linked.
5995
	 */
5996
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
5997
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
5998
			$emblem_html = sprintf(
5999
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6000
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6001
				Jetpack::get_jp_emblem()
6002
			);
6003
			return $emblem_html;
6004
		}
6005
6006
		return $val;
6007
	}
6008
6009
	/*
6010
	 * Style the Jetpack user column
6011
	 */
6012
	function jetpack_user_col_style() {
6013
		global $current_screen;
6014
		if ( ! empty( $current_screen->base ) && 'users' == $current_screen->base ) { ?>
6015
			<style>
6016
				.fixed .column-user_jetpack {
6017
					width: 21px;
6018
				}
6019
				.jp-emblem-user-admin path {
6020
					fill: #8cc258;
6021
				}
6022
			</style>
6023
		<?php }
6024
	}
6025
6026
}
6027