Completed
Push — fix/inline-docs-410 ( f96891...63b75c )
by
unknown
43:24 queued 33:40
created

Jetpack::is_development_version()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
	public $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
	 * Allows us to build a temporary security report
283
	 *
284
	 * @var array
285
	 */
286
	static $security_report = array();
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $security_report.

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

class A {
    var $property;
}

the property is implicitly global.

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

Loading history...
287
288
	/**
289
	 * Jetpack_Sync object
290
	 */
291
	public $sync;
292
293
	/**
294
	 * Verified data for JSON authorization request
295
	 */
296
	public $json_api_authorization_request = array();
297
298
	/**
299
	 * Holds the singleton instance of this class
300
	 * @since 2.3.3
301
	 * @var Jetpack
302
	 */
303
	static $instance = false;
0 ignored issues
show
Coding Style introduced by
The visibility should be declared for property $instance.

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

class A {
    var $property;
}

the property is implicitly global.

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

Loading history...
304
305
	/**
306
	 * Singleton
307
	 * @static
308
	 */
309
	public static function init() {
310
		if ( ! self::$instance ) {
311
			self::$instance = new Jetpack;
312
313
			self::$instance->plugin_upgrade();
314
315
			add_action( 'init', array( __CLASS__, 'perform_security_reporting' ) );
316
317
		}
318
319
		return self::$instance;
320
	}
321
322
	/**
323
	 * Must never be called statically
324
	 */
325
	function plugin_upgrade() {
326
		if ( Jetpack::is_active() ) {
327
			list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
328
			if ( JETPACK__VERSION != $version ) {
329
330
				// Check which active modules actually exist and remove others from active_modules list
331
				$unfiltered_modules = Jetpack::get_active_modules();
332
				$modules = array_filter( $unfiltered_modules, array( 'Jetpack', 'is_module' ) );
333
				if ( array_diff( $unfiltered_modules, $modules ) ) {
334
					Jetpack_Options::update_option( 'active_modules', $modules );
335
				}
336
337
				add_action( 'init', array( __CLASS__, 'activate_new_modules' ) );
338
				/**
339
				 * Fires when synchronizing all registered options and constants.
340
				 *
341
				 * @since 3.3.0
342
				 */
343
				do_action( 'jetpack_sync_all_registered_options' );
344
			}
345
		}
346
	}
347
348
	static function activate_manage( ) {
349
350
		if ( did_action( 'init' ) || current_filter() == 'init' ) {
351
			self::activate_module( 'manage', false, false );
352
		} else if ( !  has_action( 'init' , array( __CLASS__, 'activate_manage' ) ) ) {
353
			add_action( 'init', array( __CLASS__, 'activate_manage' ) );
354
		}
355
356
	}
357
358
	/**
359
	 * Constructor.  Initializes WordPress hooks
360
	 */
361
	private function __construct() {
362
		/*
363
		 * Check for and alert any deprecated hooks
364
		 */
365
		add_action( 'init', array( $this, 'deprecated_hooks' ) );
366
367
368
		/*
369
		 * Load things that should only be in Network Admin.
370
		 *
371
		 * For now blow away everything else until a more full
372
		 * understanding of what is needed at the network level is
373
		 * available
374
		 */
375
		if( is_multisite() ) {
376
			Jetpack_Network::init();
377
		}
378
379
		// Unlink user before deleting the user from .com
380
		add_action( 'deleted_user', array( $this, 'unlink_user' ), 10, 1 );
381
		add_action( 'remove_user_from_blog', array( $this, 'unlink_user' ), 10, 1 );
382
383
		if ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST && isset( $_GET['for'] ) && 'jetpack' == $_GET['for'] ) {
384
			@ini_set( 'display_errors', false ); // Display errors can cause the XML to be not well formed.
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
385
386
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-xmlrpc-server.php';
387
			$this->xmlrpc_server = new Jetpack_XMLRPC_Server();
388
389
			$this->require_jetpack_authentication();
390
391
			if ( Jetpack::is_active() ) {
392
				// Hack to preserve $HTTP_RAW_POST_DATA
393
				add_filter( 'xmlrpc_methods', array( $this, 'xmlrpc_methods' ) );
394
395
				$signed = $this->verify_xml_rpc_signature();
396
				if ( $signed && ! is_wp_error( $signed ) ) {
397
					// The actual API methods.
398
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'xmlrpc_methods' ) );
399
				} else {
400
					// The jetpack.authorize method should be available for unauthenticated users on a site with an
401
					// active Jetpack connection, so that additional users can link their account.
402
					add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'authorize_xmlrpc_methods' ) );
403
				}
404
			} else {
405
				// The bootstrap API methods.
406
				add_filter( 'xmlrpc_methods', array( $this->xmlrpc_server, 'bootstrap_xmlrpc_methods' ) );
407
			}
408
409
			// Now that no one can authenticate, and we're whitelisting all XML-RPC methods, force enable_xmlrpc on.
410
			add_filter( 'pre_option_enable_xmlrpc', '__return_true' );
411
		} elseif ( is_admin() && isset( $_POST['action'] ) && 'jetpack_upload_file' == $_POST['action'] ) {
412
			$this->require_jetpack_authentication();
413
			$this->add_remote_request_handlers();
414
		} else {
415
			if ( Jetpack::is_active() ) {
416
				add_action( 'login_form_jetpack_json_api_authorization', array( &$this, 'login_form_json_api_authorization' ) );
417
				add_filter( 'xmlrpc_methods', array( $this, 'public_xmlrpc_methods' ) );
418
			}
419
		}
420
421
		if ( Jetpack::is_active() ) {
422
			Jetpack_Heartbeat::init();
423
		}
424
425
		add_action( 'jetpack_clean_nonces', array( 'Jetpack', 'clean_nonces' ) );
426
		if ( ! wp_next_scheduled( 'jetpack_clean_nonces' ) ) {
427
			wp_schedule_event( time(), 'hourly', 'jetpack_clean_nonces' );
428
		}
429
430
		add_filter( 'xmlrpc_blog_options', array( $this, 'xmlrpc_options' ) );
431
432
		add_action( 'admin_init', array( $this, 'admin_init' ) );
433
		add_action( 'admin_init', array( $this, 'dismiss_jetpack_notice' ) );
434
435
		add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
436
437
		add_action( 'wp_dashboard_setup', array( $this, 'wp_dashboard_setup' ) );
438
		// Filter the dashboard meta box order to swap the new one in in place of the old one.
439
		add_filter( 'get_user_option_meta-box-order_dashboard', array( $this, 'get_user_option_meta_box_order_dashboard' ) );
440
441
		// returns HTTPS support status
442
		add_action( 'wp_ajax_jetpack-recheck-ssl', array( $this, 'ajax_recheck_ssl' ) );
443
444
		// If any module option is updated before Jump Start is dismissed, hide Jump Start.
445
		add_action( 'update_option', array( $this, 'jumpstart_has_updated_module_option' ) );
446
447
		// Identity Crisis AJAX callback function
448
		add_action( 'wp_ajax_jetpack_resolve_identity_crisis', array( $this, 'resolve_identity_crisis_ajax_callback' ) );
449
450
		// JITM AJAX callback function
451
		add_action( 'wp_ajax_jitm_ajax',  array( $this, 'jetpack_jitm_ajax_callback' ) );
452
453
		add_action( 'wp_ajax_jetpack_admin_ajax',          array( $this, 'jetpack_admin_ajax_callback' ) );
454
		add_action( 'wp_ajax_jetpack_admin_ajax_refresh',  array( $this, 'jetpack_admin_ajax_refresh_data' ) );
455
456
		// Universal ajax callback for all tracking events triggered via js
457
		add_action( 'wp_ajax_jetpack_tracks', array( $this, 'jetpack_admin_ajax_tracks_callback' ) );
458
459
		add_action( 'wp_loaded', array( $this, 'register_assets' ) );
460
		add_action( 'wp_enqueue_scripts', array( $this, 'devicepx' ) );
461
		add_action( 'customize_controls_enqueue_scripts', array( $this, 'devicepx' ) );
462
		add_action( 'admin_enqueue_scripts', array( $this, 'devicepx' ) );
463
464
		add_action( 'jetpack_activate_module', array( $this, 'activate_module_actions' ) );
465
466
		add_action( 'plugins_loaded', array( $this, 'extra_oembed_providers' ), 100 );
467
		
468
		/**
469
		 * These actions run checks to load additional files.
470
		 * They check for external files or plugins, so they need to run as late as possible.
471
		 */
472
		add_action( 'wp_head', array( $this, 'check_open_graph' ),       1 );
473
		add_action( 'plugins_loaded', array( $this, 'check_twitter_tags' ),     999 );
474
		add_action( 'plugins_loaded', array( $this, 'check_rest_api_compat' ), 1000 );
475
476
		add_filter( 'plugins_url',      array( 'Jetpack', 'maybe_min_asset' ),     1, 3 );
477
		add_filter( 'style_loader_tag', array( 'Jetpack', 'maybe_inline_style' ), 10, 2 );
478
479
		add_filter( 'map_meta_cap', array( $this, 'jetpack_custom_caps' ), 1, 4 );
480
481
		add_filter( 'jetpack_get_default_modules', array( $this, 'filter_default_modules' ) );
482
		add_filter( 'jetpack_get_default_modules', array( $this, 'handle_deprecated_modules' ), 99 );
483
484
		// A filter to control all just in time messages
485
		add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
486
487
		/**
488
		 * This is the hack to concatinate all css files into one.
489
		 * For description and reasoning see the implode_frontend_css method
490
		 *
491
		 * Super late priority so we catch all the registered styles
492
		 */
493
		if( !is_admin() ) {
494
			add_action( 'wp_print_styles', array( $this, 'implode_frontend_css' ), -1 ); // Run first
495
			add_action( 'wp_print_footer_scripts', array( $this, 'implode_frontend_css' ), -1 ); // Run first to trigger before `print_late_styles`
496
		}
497
498
	}
499
	
500
	function jetpack_admin_ajax_tracks_callback() {
501
		// Check for nonce
502
		if ( ! isset( $_REQUEST['tracksNonce'] ) || ! wp_verify_nonce( $_REQUEST['tracksNonce'], 'jp-tracks-ajax-nonce' ) ) {
503
			wp_die( 'Permissions check failed.' );
504
		}
505
506
		if ( ! isset( $_REQUEST['tracksEventName'] ) || ! isset( $_REQUEST['tracksEventType'] )  ) {
507
			wp_die( 'No valid event name or type.' );
508
		}
509
510
		$tracks_data = array();
511
		if ( 'click' === $_REQUEST['tracksEventType'] && isset( $_REQUEST['tracksEventProp'] ) ) {
512
			$tracks_data = array( 'clicked' => $_REQUEST['tracksEventProp'] );
513
		}
514
515
		JetpackTracking::record_user_event( $_REQUEST['tracksEventName'], $tracks_data );
516
		wp_send_json_success();
517
		wp_die();
518
	}
519
520
	function jetpack_admin_ajax_callback() {
521
		// Check for nonce
522 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) || ! current_user_can( 'jetpack_manage_modules' ) ) {
523
			wp_die( 'permissions check failed' );
524
		}
525
526
		if ( isset( $_REQUEST['toggleModule'] ) && 'nux-toggle-module' == $_REQUEST['toggleModule'] ) {
527
			$slug = $_REQUEST['thisModuleSlug'];
528
529
			if ( ! in_array( $slug, Jetpack::get_available_modules() ) ) {
530
				wp_die( 'That is not a Jetpack module slug' );
531
			}
532
533
			if ( Jetpack::is_module_active( $slug ) ) {
534
				Jetpack::deactivate_module( $slug );
535
			} else {
536
				Jetpack::activate_module( $slug, false, false );
537
			}
538
539
			$modules = Jetpack_Admin::init()->get_modules();
540
			echo json_encode( $modules[ $slug ] );
541
542
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method jetpack_admin_ajax_callback() 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...
543
		}
544
545
		wp_die();
546
	}
547
548
	/*
549
	 * Sometimes we need to refresh the data,
550
	 * especially if the page is visited via a 'history'
551
	 * event like back/forward
552
	 */
553
	function jetpack_admin_ajax_refresh_data() {
554
		// Check for nonce
555 View Code Duplication
		if ( ! isset( $_REQUEST['adminNonce'] ) || ! wp_verify_nonce( $_REQUEST['adminNonce'], 'jetpack-admin-nonce' ) ) {
556
			wp_die( 'permissions check failed' );
557
		}
558
559
		if ( isset( $_REQUEST['refreshData'] ) && 'refresh' == $_REQUEST['refreshData'] ) {
560
			$modules = Jetpack_Admin::init()->get_modules();
561
			echo json_encode( $modules );
562
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method jetpack_admin_ajax_refresh_data() 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...
563
		}
564
565
		wp_die();
566
	}
567
568
	/**
569
	 * The callback for the JITM ajax requests.
570
	 */
571
	function jetpack_jitm_ajax_callback() {
572
		// Check for nonce
573
		if ( ! isset( $_REQUEST['jitmNonce'] ) || ! wp_verify_nonce( $_REQUEST['jitmNonce'], 'jetpack-jitm-nonce' ) ) {
574
			wp_die( 'Module activation failed due to lack of appropriate permissions' );
575
		}
576
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'activate' == $_REQUEST['jitmActionToTake'] ) {
577
			$module_slug = $_REQUEST['jitmModule'];
578
			Jetpack::log( 'activate', $module_slug );
579
			Jetpack::activate_module( $module_slug, false, false );
580
			Jetpack::state( 'message', 'no_message' );
581
582
			//A Jetpack module is being activated through a JITM, track it
583
			$this->stat( 'jitm', $module_slug.'-activated-' . JETPACK__VERSION );
584
			$this->do_stats( 'server_side' );
585
586
			wp_send_json_success();
587
		}
588
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'dismiss' == $_REQUEST['jitmActionToTake'] ) {
589
			// get the hide_jitm options array
590
			$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
591
			$module_slug = $_REQUEST['jitmModule'];
592
593
			if( ! $jetpack_hide_jitm ) {
594
				$jetpack_hide_jitm = array(
595
					$module_slug => 'hide'
596
				);
597
			} else {
598
				$jetpack_hide_jitm[$module_slug] = 'hide';
599
			}
600
601
			Jetpack_Options::update_option( 'hide_jitm', $jetpack_hide_jitm );
602
603
			//jitm is being dismissed forever, track it
604
			$this->stat( 'jitm', $module_slug.'-dismissed-' . JETPACK__VERSION );
605
			$this->do_stats( 'server_side' );
606
607
			wp_send_json_success();
608
		}
609 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'launch' == $_REQUEST['jitmActionToTake'] ) {
610
			$module_slug = $_REQUEST['jitmModule'];
611
612
			// User went to WordPress.com, track this
613
			$this->stat( 'jitm', $module_slug.'-wordpress-tools-' . JETPACK__VERSION );
614
			$this->do_stats( 'server_side' );
615
616
			wp_send_json_success();
617
		}
618 View Code Duplication
		if ( isset( $_REQUEST['jitmActionToTake'] ) && 'viewed' == $_REQUEST['jitmActionToTake'] ) {
619
			$track = $_REQUEST['jitmModule'];
620
621
			// User is viewing JITM, track it.
622
			$this->stat( 'jitm', $track . '-viewed-' . JETPACK__VERSION );
623
			$this->do_stats( 'server_side' );
624
625
			wp_send_json_success();
626
		}
627
	}
628
629
	/**
630
	 * If there are any stats that need to be pushed, but haven't been, push them now.
631
	 */
632
	function __destruct() {
633
		if ( ! empty( $this->stats ) ) {
634
			$this->do_stats( 'server_side' );
635
		}
636
	}
637
638
	function jetpack_custom_caps( $caps, $cap, $user_id, $args ) {
0 ignored issues
show
Unused Code introduced by
The parameter $user_id is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $args is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
639
		switch( $cap ) {
640
			case 'jetpack_connect' :
641
			case 'jetpack_reconnect' :
0 ignored issues
show
Coding Style introduced by
There must be a comment when fall-through is intentional in a non-empty case body
Loading history...
642
				if ( Jetpack::is_development_mode() ) {
643
					$caps = array( 'do_not_allow' );
644
					break;
645
				}
646
				/**
647
				 * Pass through. If it's not development mode, these should match disconnect.
648
				 * Let users disconnect if it's development mode, just in case things glitch.
649
				 */
650
			case 'jetpack_disconnect' :
651
				/**
652
				 * In multisite, can individual site admins manage their own connection?
653
				 *
654
				 * Ideally, this should be extracted out to a separate filter in the Jetpack_Network class.
655
				 */
656
				if ( is_multisite() && ! is_super_admin() && is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
657
					if ( ! Jetpack_Network::init()->get_option( 'sub-site-connection-override' ) ) {
658
						/**
659
						 * We need to update the option name -- it's terribly unclear which
660
						 * direction the override goes.
661
						 *
662
						 * @todo: Update the option name to `sub-sites-can-manage-own-connections`
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

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

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

Loading history...
663
						 */
664
						$caps = array( 'do_not_allow' );
665
						break;
666
					}
667
				}
668
669
				$caps = array( 'manage_options' );
670
				break;
671
			case 'jetpack_manage_modules' :
672
			case 'jetpack_activate_modules' :
673
			case 'jetpack_deactivate_modules' :
674
				$caps = array( 'manage_options' );
675
				break;
676
			case 'jetpack_configure_modules' :
677
				$caps = array( 'manage_options' );
678
				break;
679
			case 'jetpack_network_admin_page':
680
			case 'jetpack_network_settings_page':
681
				$caps = array( 'manage_network_plugins' );
682
				break;
683
			case 'jetpack_network_sites_page':
684
				$caps = array( 'manage_sites' );
685
				break;
686
			case 'jetpack_admin_page' :
687
				if ( Jetpack::is_development_mode() ) {
688
					$caps = array( 'manage_options' );
689
					break;
690
				} else {
691
					$caps = array( 'read' );
692
				}
693
				break;
694
			case 'jetpack_connect_user' :
695
				if ( Jetpack::is_development_mode() ) {
696
					$caps = array( 'do_not_allow' );
697
					break;
698
				}
699
				$caps = array( 'read' );
700
				break;
701
		}
702
		return $caps;
703
	}
704
705
	function require_jetpack_authentication() {
706
		// Don't let anyone authenticate
707
		$_COOKIE = array();
708
		remove_all_filters( 'authenticate' );
709
710
		/**
711
		 * For the moment, remove Limit Login Attempts if its xmlrpc for Jetpack.
712
		 * If Limit Login Attempts is installed as a mu-plugin, it can occasionally
713
		 * generate false-positives.
714
		 */
715
		remove_filter( 'wp_login_failed', 'limit_login_failed' );
716
717
		if ( Jetpack::is_active() ) {
718
			// Allow Jetpack authentication
719
			add_filter( 'authenticate', array( $this, 'authenticate_jetpack' ), 10, 3 );
720
		}
721
	}
722
723
	/**
724
	 * Load language files
725
	 * @action plugins_loaded
726
	 */
727
	public static function plugin_textdomain() {
728
		// Note to self, the third argument must not be hardcoded, to account for relocated folders.
729
		load_plugin_textdomain( 'jetpack', false, dirname( plugin_basename( JETPACK__PLUGIN_FILE ) ) . '/languages/' );
730
	}
731
732
	/**
733
	 * Register assets for use in various modules and the Jetpack admin page.
734
	 *
735
	 * @uses wp_script_is, wp_register_script, plugins_url
736
	 * @action wp_loaded
737
	 * @return null
738
	 */
739
	public function register_assets() {
740
		if ( ! wp_script_is( 'spin', 'registered' ) ) {
741
			wp_register_script( 'spin', plugins_url( '_inc/spin.js', JETPACK__PLUGIN_FILE ), false, '1.3' );
742
		}
743
744 View Code Duplication
		if ( ! wp_script_is( 'jquery.spin', 'registered' ) ) {
745
			wp_register_script( 'jquery.spin', plugins_url( '_inc/jquery.spin.js', JETPACK__PLUGIN_FILE ) , array( 'jquery', 'spin' ), '1.3' );
746
		}
747
748 View Code Duplication
		if ( ! wp_script_is( 'jetpack-gallery-settings', 'registered' ) ) {
749
			wp_register_script( 'jetpack-gallery-settings', plugins_url( '_inc/gallery-settings.js', JETPACK__PLUGIN_FILE ), array( 'media-views' ), '20121225' );
750
		}
751
752 View Code Duplication
		if ( ! wp_script_is( 'jetpack-twitter-timeline', 'registered' ) ) {
753
			wp_register_script( 'jetpack-twitter-timeline', plugins_url( '_inc/twitter-timeline.js', JETPACK__PLUGIN_FILE ) , array( 'jquery' ), '4.0.0', true );
754
		}
755
756
		if ( ! wp_script_is( 'jetpack-facebook-embed', 'registered' ) ) {
757
			wp_register_script( 'jetpack-facebook-embed', plugins_url( '_inc/facebook-embed.js', __FILE__ ), array( 'jquery' ), null, true );
758
759
			/** This filter is documented in modules/sharedaddy/sharing-sources.php */
760
			$fb_app_id = apply_filters( 'jetpack_sharing_facebook_app_id', '249643311490' );
761
			if ( ! is_numeric( $fb_app_id ) ) {
762
				$fb_app_id = '';
763
			}
764
			wp_localize_script(
765
				'jetpack-facebook-embed',
766
				'jpfbembed',
767
				array(
768
					'appid' => $fb_app_id,
769
					'locale' => $this->get_locale(),
770
				)
771
			);
772
		}
773
774
		/**
775
		 * As jetpack_register_genericons is by default fired off a hook,
776
		 * the hook may have already fired by this point.
777
		 * So, let's just trigger it manually.
778
		 */
779
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
780
		jetpack_register_genericons();
781
782
		/**
783
		 * Register the social logos 
784
		 */
785
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
786
		jetpack_register_social_logos();
787
788 View Code Duplication
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
789
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
790
	}
791
792
	/**
793
	 * Guess locale from language code.
794
	 *
795
	 * @param string $lang Language code.
796
	 * @return string|bool
797
	 */
798 View Code Duplication
	function guess_locale_from_lang( $lang ) {
799
		if ( 'en' === $lang || 'en_US' === $lang || ! $lang ) {
800
			return 'en_US';
801
		}
802
803
		if ( ! class_exists( 'GP_Locales' ) ) {
804
			if ( ! defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) || ! file_exists( JETPACK__GLOTPRESS_LOCALES_PATH ) ) {
805
				return false;
806
			}
807
808
			require JETPACK__GLOTPRESS_LOCALES_PATH;
809
		}
810
811
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
812
			// WP.com: get_locale() returns 'it'
813
			$locale = GP_Locales::by_slug( $lang );
814
		} else {
815
			// Jetpack: get_locale() returns 'it_IT';
816
			$locale = GP_Locales::by_field( 'facebook_locale', $lang );
817
		}
818
819
		if ( ! $locale ) {
820
			return false;
821
		}
822
823
		if ( empty( $locale->facebook_locale ) ) {
824
			if ( empty( $locale->wp_locale ) ) {
825
				return false;
826
			} else {
827
				// Facebook SDK is smart enough to fall back to en_US if a
828
				// locale isn't supported. Since supported Facebook locales
829
				// can fall out of sync, we'll attempt to use the known
830
				// wp_locale value and rely on said fallback.
831
				return $locale->wp_locale;
832
			}
833
		}
834
835
		return $locale->facebook_locale;
836
	}
837
838
	/**
839
	 * Get the locale.
840
	 *
841
	 * @return string|bool
842
	 */
843
	function get_locale() {
844
		$locale = $this->guess_locale_from_lang( get_locale() );
845
846
		if ( ! $locale ) {
847
			$locale = 'en_US';
848
		}
849
850
		return $locale;
851
	}
852
853
	/**
854
	 * Device Pixels support
855
	 * This improves the resolution of gravatars and wordpress.com uploads on hi-res and zoomed browsers.
856
	 */
857
	function devicepx() {
858
		if ( Jetpack::is_active() ) {
859
			wp_enqueue_script( 'devicepx', set_url_scheme( 'http://s0.wp.com/wp-content/js/devicepx-jetpack.js' ), array(), gmdate( 'oW' ), true );
860
		}
861
	}
862
863
	/**
864
	 * Return the network_site_url so that .com knows what network this site is a part of.
865
	 * @param  bool $option
866
	 * @return string
867
	 */
868
	public function jetpack_main_network_site_option( $option ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
869
		return network_site_url();
870
	}
871
	/**
872
	 * Network Name.
873
	 */
874
	static function network_name( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
875
		global $current_site;
876
		return $current_site->site_name;
877
	}
878
	/**
879
	 * Does the network allow new user and site registrations.
880
	 * @return string
881
	 */
882
	static function network_allow_new_registrations( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
883
		return ( in_array( get_site_option( 'registration' ), array('none', 'user', 'blog', 'all' ) ) ? get_site_option( 'registration') : 'none' );
884
	}
885
	/**
886
	 * Does the network allow admins to add new users.
887
	 * @return boolian
888
	 */
889
	static function network_add_new_users( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
890
		return (bool) get_site_option( 'add_new_users' );
891
	}
892
	/**
893
	 * File upload psace left per site in MB.
894
	 *  -1 means NO LIMIT.
895
	 * @return number
896
	 */
897
	static function network_site_upload_space( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
898
		// value in MB
899
		return ( get_site_option( 'upload_space_check_disabled' ) ? -1 : get_space_allowed() );
900
	}
901
902
	/**
903
	 * Network allowed file types.
904
	 * @return string
905
	 */
906
	static function network_upload_file_types( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
907
		return get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
908
	}
909
910
	/**
911
	 * Maximum file upload size set by the network.
912
	 * @return number
913
	 */
914
	static function network_max_upload_file_size( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
915
		// value in KB
916
		return get_site_option( 'fileupload_maxk', 300 );
917
	}
918
919
	/**
920
	 * Lets us know if a site allows admins to manage the network.
921
	 * @return array
922
	 */
923
	static function network_enable_administration_menus( $option = null ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
924
		return get_site_option( 'menu_items' );
925
	}
926
927
	/**
928
	 * Return whether we are dealing with a multi network setup or not.
929
	 * The reason we are type casting this is because we want to avoid the situation where
930
	 * the result is false since when is_main_network_option return false it cases
931
	 * the rest the get_option( 'jetpack_is_multi_network' ); to return the value that is set in the
932
	 * database which could be set to anything as opposed to what this function returns.
933
	 * @param  bool  $option
934
	 *
935
	 * @return boolean
936
	 */
937
	public function is_main_network_option( $option ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
938
		// return '1' or ''
939
		return (string) (bool) Jetpack::is_multi_network();
940
	}
941
942
	/**
943
	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
944
	 *
945
	 * @param  string  $option
946
	 * @return boolean
947
	 */
948
	public function is_multisite( $option ) {
0 ignored issues
show
Unused Code introduced by
The parameter $option is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
949
		return (string) (bool) is_multisite();
950
	}
951
952
	/**
953
	 * Implemented since there is no core is multi network function
954
	 * Right now there is no way to tell if we which network is the dominant network on the system
955
	 *
956
	 * @since  3.3
957
	 * @return boolean
958
	 */
959
	public static function is_multi_network() {
960
		global  $wpdb;
961
962
		// if we don't have a multi site setup no need to do any more
963
		if ( ! is_multisite() ) {
964
			return false;
965
		}
966
967
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
968
		if ( $num_sites > 1 ) {
969
			return true;
970
		} else {
971
			return false;
972
		}
973
	}
974
975
	/**
976
	 * Trigger an update to the main_network_site when we update the siteurl of a site.
977
	 * @return null
978
	 */
979
	function update_jetpack_main_network_site_option() {
980
		// do_action( 'add_option_$option', '$option', '$value-of-the-option' );
981
		/**
982
		 * Fires when the site URL is updated.
983
		 * Determines if the site is the main site of a Mulitiste network.
984
		 *
985
		 * @since 3.3.0
986
		 *
987
		 * @param string jetpack_main_network_site.
988
		 * @param string network_site_url() Site URL for the "main" site of the current Multisite network.
989
		 */
990
		do_action( 'add_option_jetpack_main_network_site', 'jetpack_main_network_site', network_site_url() );
991
		/**
992
		 * Fires when the site URL is updated.
993
		 * Determines if the is part of a multi network.
994
		 *
995
		 * @since 3.3.0
996
		 *
997
		 * @param string jetpack_is_main_network.
998
		 * @param bool Jetpack::is_multi_network() Is the site part of a multi network.
999
		 */
1000
		do_action( 'add_option_jetpack_is_main_network', 'jetpack_is_main_network', (string) (bool) Jetpack::is_multi_network() );
1001
		/**
1002
		 * Fires when the site URL is updated.
1003
		 * Determines if the site is part of a multisite network.
1004
		 *
1005
		 * @since 3.4.0
1006
		 *
1007
		 * @param string jetpack_is_multi_site.
1008
		 * @param bool is_multisite() Is the site part of a mutlisite network.
1009
		 */
1010
		do_action( 'add_option_jetpack_is_multi_site', 'jetpack_is_multi_site', (string) (bool) is_multisite() );
1011
	}
1012
	/**
1013
	 * Triggered after a user updates the network settings via Network Settings Admin Page
1014
	 *
1015
	 */
1016
	function update_jetpack_network_settings() {
1017
		// Only sync this info for the main network site.
1018
		do_action( 'add_option_jetpack_network_name', 'jetpack_network_name', Jetpack::network_name() );
1019
		do_action( 'add_option_jetpack_network_allow_new_registrations', 'jetpack_network_allow_new_registrations', Jetpack::network_allow_new_registrations() );
1020
		do_action( 'add_option_jetpack_network_add_new_users', 'jetpack_network_add_new_users', Jetpack::network_add_new_users() );
1021
		do_action( 'add_option_jetpack_network_site_upload_space', 'jetpack_network_site_upload_space', Jetpack::network_site_upload_space() );
1022
		do_action( 'add_option_jetpack_network_upload_file_types', 'jetpack_network_upload_file_types', Jetpack::network_upload_file_types() );
1023
		do_action( 'add_option_jetpack_network_enable_administration_menus', 'jetpack_network_enable_administration_menus', Jetpack::network_enable_administration_menus() );
1024
1025
	}
1026
1027
	/**
1028
	 * Get back if the current site is single user site.
1029
	 *
1030
	 * @return bool
1031
	 */
1032
	public static function is_single_user_site() {
1033
1034
		$user_query = new WP_User_Query( array(
1035
			'blog_id' => get_current_blog_id(),
1036
			'fields'  => 'ID',
1037
			'number' => 2
1038
		) );
1039
		return 1 === (int) $user_query->get_total();
1040
	}
1041
1042
	/**
1043
	 * Returns true if the site has file write access false otherwise.
1044
	 * @return string ( '1' | '0' )
1045
	 **/
1046
	public static function file_system_write_access() {
1047
		if ( ! function_exists( 'get_filesystem_method' ) ) {
1048
			require_once( ABSPATH . 'wp-admin/includes/file.php' );
1049
		}
1050
1051
		require_once( ABSPATH . 'wp-admin/includes/template.php' );
1052
1053
		$filesystem_method = get_filesystem_method();
1054
		if ( $filesystem_method === 'direct' ) {
1055
			return 1;
1056
		}
1057
1058
		ob_start();
1059
		$filesystem_credentials_are_stored = request_filesystem_credentials( self_admin_url() );
1060
		ob_end_clean();
1061
		if ( $filesystem_credentials_are_stored ) {
1062
			return 1;
1063
		}
1064
		return 0;
1065
	}
1066
1067
	/**
1068
	 * Finds out if a site is using a version control system.
1069
	 * @return string ( '1' | '0' )
1070
	 **/
1071
	public static function is_version_controlled() {
1072
		_deprecated_function( 'Jetpack::is_version_controlled', '4.1', 'Jetpack_Sync_Functions::is_version_controlled' );
1073
		return (string) (int) Jetpack_Sync_Functions::is_version_controlled();
1074
	}
1075
1076
	/**
1077
	 * Determines whether the current theme supports featured images or not.
1078
	 * @return string ( '1' | '0' )
1079
	 */
1080
	public static function featured_images_enabled() {
1081
		return current_theme_supports( 'post-thumbnails' ) ? '1' : '0';
1082
	}
1083
	
1084
	/**
1085
	 * jetpack_updates is saved in the following schema:
1086
	 *
1087
	 * array (
1088
	 *      'plugins'                       => (int) Number of plugin updates available.
1089
	 *      'themes'                        => (int) Number of theme updates available.
1090
	 *      'wordpress'                     => (int) Number of WordPress core updates available.
1091
	 *      'translations'                  => (int) Number of translation updates available.
1092
	 *      'total'                         => (int) Total of all available updates.
1093
	 *      'wp_update_version'             => (string) The latest available version of WordPress, only present if a WordPress update is needed.
1094
	 * )
1095
	 * @return array
1096
	 */
1097
	public static function get_updates() {
1098
		$update_data = wp_get_update_data();
1099
1100
		// Stores the individual update counts as well as the total count.
1101
		if ( isset( $update_data['counts'] ) ) {
1102
			$updates = $update_data['counts'];
1103
		}
1104
1105
		// If we need to update WordPress core, let's find the latest version number.
1106 View Code Duplication
		if ( ! empty( $updates['wordpress'] ) ) {
1107
			$cur = get_preferred_from_update_core();
1108
			if ( isset( $cur->response ) && 'upgrade' === $cur->response ) {
1109
				$updates['wp_update_version'] = $cur->current;
1110
			}
1111
		}
1112
		return isset( $updates ) ? $updates : array();
1113
	}
1114
1115
	public static function get_update_details() {
1116
		$update_details = array(
1117
			'update_core' => get_site_transient( 'update_core' ),
1118
			'update_plugins' => get_site_transient( 'update_plugins' ),
1119
			'update_themes' => get_site_transient( 'update_themes' ),
1120
		);
1121
		return $update_details;
1122
	}
1123
1124
	public static function refresh_update_data() {
1125
		if ( current_user_can( 'update_core' ) && current_user_can( 'update_plugins' ) && current_user_can( 'update_themes' ) ) {
1126
			/**
1127
			 * Fires whenever the amount of updates needed for a site changes.
1128
			 * Syncs an array that includes the number of theme, plugin, and core updates available, as well as the latest core version available.
1129
			 *
1130
			 * @since 3.7.0
1131
			 *
1132
			 * @param string jetpack_updates
1133
			 * @param array Update counts calculated by Jetpack::get_updates
1134
			 */
1135
			do_action( 'add_option_jetpack_updates', 'jetpack_updates', Jetpack::get_updates() );
1136
		}
1137
		/**
1138
		 * Fires whenever the amount of updates needed for a site changes.
1139
		 * Syncs an array of core, theme, and plugin data, and which of each is out of date
1140
		 *
1141
		 * @since 3.7.0
1142
		 *
1143
		 * @param string jetpack_update_details
1144
		 * @param array Update details calculated by Jetpack::get_update_details
1145
		 */
1146
		do_action( 'add_option_jetpack_update_details', 'jetpack_update_details', Jetpack::get_update_details() );
1147
	}
1148
1149
	public static function refresh_theme_data() {
1150
		/**
1151
		 * Fires whenever a theme change is made.
1152
		 *
1153
		 * @since 3.8.1
1154
		 *
1155
		 * @param string featured_images_enabled
1156
		 * @param boolean Whether featured images are enabled or not
1157
		 */
1158
		do_action( 'add_option_jetpack_featured_images_enabled', 'jetpack_featured_images_enabled', Jetpack::featured_images_enabled() );
1159
	}
1160
1161
	/**
1162
	 * Is Jetpack active?
1163
	 */
1164
	public static function is_active() {
1165
		return (bool) Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1166
	}
1167
1168
	/**
1169
	 * Is Jetpack in development (offline) mode?
1170
	 */
1171
	public static function is_development_mode() {
1172
		$development_mode = false;
1173
1174
		if ( defined( 'JETPACK_DEV_DEBUG' ) ) {
1175
			$development_mode = JETPACK_DEV_DEBUG;
1176
		}
1177
1178
		elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1179
			$development_mode = true;
1180
		}
1181
		/**
1182
		 * Filters Jetpack's development mode.
1183
		 *
1184
		 * @see https://jetpack.com/support/development-mode/
1185
		 *
1186
		 * @since 2.2.1
1187
		 *
1188
		 * @param bool $development_mode Is Jetpack's development mode active.
1189
		 */
1190
		return apply_filters( 'jetpack_development_mode', $development_mode );
1191
	}
1192
1193
	/**
1194
	* Get Jetpack development mode notice text and notice class.
1195
	*
1196
	* Mirrors the checks made in Jetpack::is_development_mode
1197
	*
1198
	*/
1199
	public static function show_development_mode_notice() {
1200
		if ( Jetpack::is_development_mode() ) {
1201
			if ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) {
1202
				$notice = sprintf(
1203
					/* translators: %s is a URL */
1204
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the JETPACK_DEV_DEBUG constant being defined in wp-config.php or elsewhere.', 'jetpack' ),
1205
					'https://jetpack.com/support/development-mode/'
1206
				);
1207
			} elseif ( site_url() && false === strpos( site_url(), '.' ) ) {
1208
				$notice = sprintf(
1209
					/* translators: %s is a URL */
1210
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via site URL lacking a dot (e.g. http://localhost).', 'jetpack' ),
1211
					'https://jetpack.com/support/development-mode/'
1212
				);
1213
			} else {
1214
				$notice = sprintf(
1215
					/* translators: %s is a URL */
1216
					__( 'In <a href="%s" target="_blank">Development Mode</a>, via the jetpack_development_mode filter.', 'jetpack' ),
1217
					'https://jetpack.com/support/development-mode/'
1218
				);
1219
			}
1220
1221
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1222
		}
1223
1224
		// Throw up a notice if using a development version and as for feedback.
1225
		if ( Jetpack::is_development_version() ) {
1226
			/* translators: %s is a URL */
1227
			$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/' );
1228
1229
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1230
		}
1231
		// Throw up a notice if using staging mode
1232
		if ( Jetpack::is_staging_site() ) {
1233
			/* translators: %s is a URL */
1234
			$notice = sprintf( __( 'You are running Jetpack on a <a href="%s" target="_blank">staging server</a>.', 'jetpack' ), 'https://jetpack.com/support/staging-sites/' );
1235
1236
			echo '<div class="updated" style="border-color: #f0821e;"><p>' . $notice . '</p></div>';
1237
		}
1238
	}
1239
1240
	/**
1241
	 * Whether Jetpack's version maps to a public release, or a development version.
1242
	 */
1243
	public static function is_development_version() {
1244
		return ! preg_match( '/^\d+(\.\d+)+$/', JETPACK__VERSION );
1245
	}
1246
1247
	/**
1248
	 * Is a given user (or the current user if none is specified) linked to a WordPress.com user?
1249
	 */
1250
	public static function is_user_connected( $user_id = false ) {
1251
		$user_id = false === $user_id ? get_current_user_id() : absint( $user_id );
1252
		if ( ! $user_id ) {
1253
			return false;
1254
		}
1255
		return (bool) Jetpack_Data::get_access_token( $user_id );
1256
	}
1257
1258
	/**
1259
	 * Get the wpcom user data of the current|specified connected user.
1260
	 */
1261 View Code Duplication
	public static function get_connected_user_data( $user_id = null ) {
1262
		if ( ! $user_id ) {
1263
			$user_id = get_current_user_id();
1264
		}
1265
		Jetpack::load_xml_rpc_client();
1266
		$xml = new Jetpack_IXR_Client( array(
1267
			'user_id' => $user_id,
1268
		) );
1269
		$xml->query( 'wpcom.getUser' );
1270
		if ( ! $xml->isError() ) {
1271
			return $xml->getResponse();
1272
		}
1273
		return false;
1274
	}
1275
1276
	/**
1277
	 * Get the wpcom email of the current|specified connected user.
1278
	 */
1279 View Code Duplication
	public static function get_connected_user_email( $user_id = null ) {
1280
		if ( ! $user_id ) {
1281
			$user_id = get_current_user_id();
1282
		}
1283
		Jetpack::load_xml_rpc_client();
1284
		$xml = new Jetpack_IXR_Client( array(
1285
			'user_id' => $user_id,
1286
		) );
1287
		$xml->query( 'wpcom.getUserEmail' );
1288
		if ( ! $xml->isError() ) {
1289
			return $xml->getResponse();
1290
		}
1291
		return false;
1292
	}
1293
1294
	/**
1295
	 * Get the wpcom email of the master user.
1296
	 */
1297
	public static function get_master_user_email() {
1298
		$master_user_id = Jetpack_Options::get_option( 'master_user' );
1299
		if ( $master_user_id ) {
1300
			return self::get_connected_user_email( $master_user_id );
1301
		}
1302
		return '';
1303
	}
1304
1305
	function current_user_is_connection_owner() {
1306
		$user_token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1307
		return $user_token && is_object( $user_token ) && isset( $user_token->external_user_id ) && get_current_user_id() === $user_token->external_user_id;
1308
	}
1309
1310
	/**
1311
	 * Add any extra oEmbed providers that we know about and use on wpcom for feature parity.
1312
	 */
1313
	function extra_oembed_providers() {
1314
		// Cloudup: https://dev.cloudup.com/#oembed
1315
		wp_oembed_add_provider( 'https://cloudup.com/*' , 'https://cloudup.com/oembed' );
1316
		wp_oembed_add_provider( 'https://me.sh/*', 'https://me.sh/oembed?format=json' );
1317
		wp_oembed_add_provider( '#https?://(www\.)?gfycat\.com/.*#i', 'https://api.gfycat.com/v1/oembed', true );
1318
		wp_oembed_add_provider( '#https?://[^.]+\.(wistia\.com|wi\.st)/(medias|embed)/.*#', 'https://fast.wistia.com/oembed', true );
1319
		wp_oembed_add_provider( '#https?://sketchfab\.com/.*#i', 'https://sketchfab.com/oembed', true );
1320
	}
1321
1322
	/**
1323
	 * Synchronize connected user role changes
1324
	 */
1325
	function user_role_change( $user_id ) {
1326
		if ( Jetpack::is_active() && Jetpack::is_user_connected( $user_id ) ) {
1327
			$current_user_id = get_current_user_id();
1328
			wp_set_current_user( $user_id );
1329
			$role = $this->translate_current_user_to_role();
1330
			$signed_role = $this->sign_role( $role );
1331
			wp_set_current_user( $current_user_id );
1332
1333
			$master_token   = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
1334
			$master_user_id = absint( $master_token->external_user_id );
1335
1336
			if ( ! $master_user_id )
1337
				return; // this shouldn't happen
1338
1339
			Jetpack::xmlrpc_async_call( 'jetpack.updateRole', $user_id, $signed_role );
1340
			//@todo retry on failure
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
1341
1342
			//try to choose a new master if we're demoting the current one
1343 View Code Duplication
			if ( $user_id == $master_user_id && 'administrator' != $role ) {
1344
				$query = new WP_User_Query(
1345
					array(
1346
						'fields'  => array( 'id' ),
1347
						'role'    => 'administrator',
1348
						'orderby' => 'id',
1349
						'exclude' => array( $master_user_id ),
1350
					)
1351
				);
1352
				$new_master = false;
1353
				foreach ( $query->results as $result ) {
1354
					$uid = absint( $result->id );
1355
					if ( $uid && Jetpack::is_user_connected( $uid ) ) {
1356
						$new_master = $uid;
1357
						break;
1358
					}
1359
				}
1360
1361
				if ( $new_master ) {
1362
					Jetpack_Options::update_option( 'master_user', $new_master );
1363
				}
1364
				// else disconnect..?
1365
			}
1366
		}
1367
	}
1368
1369
	/**
1370
	 * Loads the currently active modules.
1371
	 */
1372
	public static function load_modules() {
1373
		if ( ! self::is_active() && !self::is_development_mode() ) {
1374
			if ( ! is_multisite() || ! get_site_option( 'jetpack_protect_active' ) ) {
1375
				return;
1376
			}
1377
		}
1378
1379
		$version = Jetpack_Options::get_option( 'version' );
1380 View Code Duplication
		if ( ! $version ) {
1381
			$version = $old_version = JETPACK__VERSION . ':' . time();
1382
			/** This action is documented in class.jetpack.php */
1383
			do_action( 'updating_jetpack_version', $version, false );
1384
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1385
		}
1386
		list( $version ) = explode( ':', $version );
1387
1388
		$modules = array_filter( Jetpack::get_active_modules(), array( 'Jetpack', 'is_module' ) );
1389
1390
		$modules_data = array();
1391
1392
		// Don't load modules that have had "Major" changes since the stored version until they have been deactivated/reactivated through the lint check.
1393
		if ( version_compare( $version, JETPACK__VERSION, '<' ) ) {
1394
			$updated_modules = array();
1395
			foreach ( $modules as $module ) {
1396
				$modules_data[ $module ] = Jetpack::get_module( $module );
1397
				if ( ! isset( $modules_data[ $module ]['changed'] ) ) {
1398
					continue;
1399
				}
1400
1401
				if ( version_compare( $modules_data[ $module ]['changed'], $version, '<=' ) ) {
1402
					continue;
1403
				}
1404
1405
				$updated_modules[] = $module;
1406
			}
1407
1408
			$modules = array_diff( $modules, $updated_modules );
1409
		}
1410
1411
		$is_development_mode = Jetpack::is_development_mode();
1412
1413
		foreach ( $modules as $index => $module ) {
1414
			// If we're in dev mode, disable modules requiring a connection
1415
			if ( $is_development_mode ) {
1416
				// Prime the pump if we need to
1417
				if ( empty( $modules_data[ $module ] ) ) {
1418
					$modules_data[ $module ] = Jetpack::get_module( $module );
1419
				}
1420
				// If the module requires a connection, but we're in local mode, don't include it.
1421
				if ( $modules_data[ $module ]['requires_connection'] ) {
1422
					continue;
1423
				}
1424
			}
1425
1426
			if ( did_action( 'jetpack_module_loaded_' . $module ) ) {
1427
				continue;
1428
			}
1429
1430
			if ( ! @include( Jetpack::get_module_path( $module ) ) ) {
1431
				unset( $modules[ $index ] );
1432
				Jetpack_Options::update_option( 'active_modules', array_values( $modules ) );
1433
				continue;
1434
			}
1435
1436
			/**
1437
			 * Fires when a specific module is loaded.
1438
			 * The dynamic part of the hook, $module, is the module slug.
1439
			 *
1440
			 * @since 1.1.0
1441
			 */
1442
			do_action( 'jetpack_module_loaded_' . $module );
1443
		}
1444
1445
		/**
1446
		 * Fires when all the modules are loaded.
1447
		 *
1448
		 * @since 1.1.0
1449
		 */
1450
		do_action( 'jetpack_modules_loaded' );
1451
1452
		// 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.
1453
		if ( Jetpack::is_active() || Jetpack::is_development_mode() )
1454
			require_once( JETPACK__PLUGIN_DIR . 'modules/module-extras.php' );
1455
	}
1456
1457
	/**
1458
	 * Check if Jetpack's REST API compat file should be included
1459
	 * @action plugins_loaded
1460
	 * @return null
1461
	 */
1462
	public function check_rest_api_compat() {
1463
		/**
1464
		 * Filters the list of REST API compat files to be included.
1465
		 *
1466
		 * @since 2.2.5
1467
		 *
1468
		 * @param array $args Array of REST API compat files to include.
1469
		 */
1470
		$_jetpack_rest_api_compat_includes = apply_filters( 'jetpack_rest_api_compat', array() );
1471
1472
		if ( function_exists( 'bbpress' ) )
1473
			$_jetpack_rest_api_compat_includes[] = JETPACK__PLUGIN_DIR . 'class.jetpack-bbpress-json-api-compat.php';
1474
1475
		foreach ( $_jetpack_rest_api_compat_includes as $_jetpack_rest_api_compat_include )
1476
			require_once $_jetpack_rest_api_compat_include;
1477
	}
1478
1479
	/**
1480
	 * Gets all plugins currently active in values, regardless of whether they're
1481
	 * traditionally activated or network activated.
1482
	 *
1483
	 * @todo Store the result in core's object cache maybe?
0 ignored issues
show
Coding Style introduced by
Comment refers to a TODO task

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

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

Loading history...
1484
	 */
1485
	public static function get_active_plugins() {
1486
		$active_plugins = (array) get_option( 'active_plugins', array() );
1487
1488
		if ( is_multisite() ) {
1489
			// Due to legacy code, active_sitewide_plugins stores them in the keys,
1490
			// whereas active_plugins stores them in the values.
1491
			$network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );
1492
			if ( $network_plugins ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $network_plugins of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
1493
				$active_plugins = array_merge( $active_plugins, $network_plugins );
1494
			}
1495
		}
1496
1497
		sort( $active_plugins );
1498
1499
		return array_unique( $active_plugins );
1500
	}
1501
1502
	/**
1503
	 * Gets and parses additional plugin data to send with the heartbeat data
1504
	 *
1505
	 * @since 3.8.1
1506
	 *
1507
	 * @return array Array of plugin data
1508
	 */
1509
	public static function get_parsed_plugin_data() {
1510
		if ( ! function_exists( 'get_plugins' ) ) {
1511
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1512
		}
1513
		/** This filter is documented in wp-admin/includes/class-wp-plugins-list-table.php */
1514
		$all_plugins    = apply_filters( 'all_plugins', get_plugins() );
1515
		$active_plugins = Jetpack::get_active_plugins();
1516
1517
		$plugins = array();
1518
		foreach ( $all_plugins as $path => $plugin_data ) {
1519
			$plugins[ $path ] = array(
1520
					'is_active' => in_array( $path, $active_plugins ),
1521
					'file'      => $path,
1522
					'name'      => $plugin_data['Name'],
1523
					'version'   => $plugin_data['Version'],
1524
					'author'    => $plugin_data['Author'],
1525
			);
1526
		}
1527
1528
		return $plugins;
1529
	}
1530
1531
	/**
1532
	 * Gets and parses theme data to send with the heartbeat data
1533
	 *
1534
	 * @since 3.8.1
1535
	 *
1536
	 * @return array Array of theme data
1537
	 */
1538
	public static function get_parsed_theme_data() {
1539
		$all_themes = wp_get_themes( array( 'allowed' => true ) );
1540
		$header_keys = array( 'Name', 'Author', 'Version', 'ThemeURI', 'AuthorURI', 'Status', 'Tags' );
1541
1542
		$themes = array();
1543
		foreach ( $all_themes as $slug => $theme_data ) {
1544
			$theme_headers = array();
1545
			foreach ( $header_keys as $header_key ) {
1546
				$theme_headers[ $header_key ] = $theme_data->get( $header_key );
1547
			}
1548
1549
			$themes[ $slug ] = array(
1550
					'is_active_theme' => $slug == wp_get_theme()->get_template(),
1551
					'slug' => $slug,
1552
					'theme_root' => $theme_data->get_theme_root_uri(),
1553
					'parent' => $theme_data->parent(),
1554
					'headers' => $theme_headers
1555
			);
1556
		}
1557
1558
		return $themes;
1559
	}
1560
1561
	/**
1562
	 * Checks whether a specific plugin is active.
1563
	 *
1564
	 * We don't want to store these in a static variable, in case
1565
	 * there are switch_to_blog() calls involved.
1566
	 */
1567
	public static function is_plugin_active( $plugin = 'jetpack/jetpack.php' ) {
1568
		return in_array( $plugin, self::get_active_plugins() );
1569
	}
1570
1571
	/**
1572
	 * Check if Jetpack's Open Graph tags should be used.
1573
	 * If certain plugins are active, Jetpack's og tags are suppressed.
1574
	 *
1575
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1576
	 * @action plugins_loaded
1577
	 * @return null
1578
	 */
1579
	public function check_open_graph() {
1580
		if ( in_array( 'publicize', Jetpack::get_active_modules() ) || in_array( 'sharedaddy', Jetpack::get_active_modules() ) ) {
1581
			add_filter( 'jetpack_enable_open_graph', '__return_true', 0 );
1582
		}
1583
1584
		$active_plugins = self::get_active_plugins();
1585
1586
		if ( ! empty( $active_plugins ) ) {
1587
			foreach ( $this->open_graph_conflicting_plugins as $plugin ) {
1588
				if ( in_array( $plugin, $active_plugins ) ) {
1589
					add_filter( 'jetpack_enable_open_graph', '__return_false', 99 );
1590
					break;
1591
				}
1592
			}
1593
		}
1594
1595
		/**
1596
		 * Allow the addition of Open Graph Meta Tags to all pages.
1597
		 *
1598
		 * @since 2.0.3
1599
		 *
1600
		 * @param bool false Should Open Graph Meta tags be added. Default to false.
1601
		 */
1602
		if ( apply_filters( 'jetpack_enable_open_graph', false ) ) {
1603
			require_once JETPACK__PLUGIN_DIR . 'functions.opengraph.php';
1604
		}
1605
	}
1606
1607
	/**
1608
	 * Check if Jetpack's Twitter tags should be used.
1609
	 * If certain plugins are active, Jetpack's twitter tags are suppressed.
1610
	 *
1611
	 * @uses Jetpack::get_active_modules, add_filter, get_option, apply_filters
1612
	 * @action plugins_loaded
1613
	 * @return null
1614
	 */
1615
	public function check_twitter_tags() {
1616
1617
		$active_plugins = self::get_active_plugins();
1618
1619
		if ( ! empty( $active_plugins ) ) {
1620
			foreach ( $this->twitter_cards_conflicting_plugins as $plugin ) {
1621
				if ( in_array( $plugin, $active_plugins ) ) {
1622
					add_filter( 'jetpack_disable_twitter_cards', '__return_true', 99 );
1623
					break;
1624
				}
1625
			}
1626
		}
1627
1628
		/**
1629
		 * Allow Twitter Card Meta tags to be disabled.
1630
		 *
1631
		 * @since 2.6.0
1632
		 *
1633
		 * @param bool true Should Twitter Card Meta tags be disabled. Default to true.
1634
		 */
1635
		if ( ! apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
1636
			require_once JETPACK__PLUGIN_DIR . 'class.jetpack-twitter-cards.php';
1637
		}
1638
	}
1639
1640
1641
1642
1643
	/*
1644
	 *
1645
	 * Jetpack Security Reports
1646
	 *
1647
	 * Allowed types: login_form, backup, file_scanning, spam
1648
	 *
1649
	 * Args for login_form and spam: 'blocked'=>(int)(optional), 'status'=>(string)(ok, warning, error), 'message'=>(optional, disregarded if status is ok, allowed tags: a, em, strong)
1650
	 *
1651
	 * Args for backup and file_scanning: 'last'=>(timestamp)(optional), 'next'=>(timestamp)(optional), 'status'=>(string)(ok, warning, error), 'message'=>(optional, disregarded if status is ok, allowed tags: a, em, strong)
1652
	 *
1653
	 *
1654
	 * Example code to submit a security report:
1655
	 *
1656
	 *  function akismet_submit_jetpack_security_report() {
1657
	 *  	Jetpack::submit_security_report( 'spam', __FILE__, $args = array( 'blocked' => 138284, status => 'ok' ) );
1658
	 *  }
1659
	 *  add_action( 'jetpack_security_report', 'akismet_submit_jetpack_security_report' );
1660
	 *
1661
	 */
1662
1663
1664
	/**
1665
	 * Calls for security report submissions.
1666
	 *
1667
	 * @return null
1668
	 */
1669
	public static function perform_security_reporting() {
1670
		$no_check_needed = get_site_transient( 'security_report_performed_recently' );
1671
1672
		if ( $no_check_needed ) {
1673
			return;
1674
		}
1675
1676
		/**
1677
		 * Fires before a security report is created.
1678
		 *
1679
		 * @since 3.4.0
1680
		 */
1681
		do_action( 'jetpack_security_report' );
1682
1683
		Jetpack_Options::update_option( 'security_report', self::$security_report );
1684
		set_site_transient( 'security_report_performed_recently', 1, 15 * MINUTE_IN_SECONDS );
1685
	}
1686
1687
	/**
1688
	 * Allows plugins to submit security reports.
1689
 	 *
1690
	 * @param string  $type         Report type (login_form, backup, file_scanning, spam)
1691
	 * @param string  $plugin_file  Plugin __FILE__, so that we can pull plugin data
1692
	 * @param array   $args         See definitions above
1693
	 */
1694
	public static function submit_security_report( $type = '', $plugin_file = '', $args = array() ) {
1695
1696
		if( !doing_action( 'jetpack_security_report' ) ) {
1697
			return new WP_Error( 'not_collecting_report', 'Not currently collecting security reports.  Please use the jetpack_security_report hook.' );
1698
		}
1699
1700
		if( !is_string( $type ) || !is_string( $plugin_file ) ) {
1701
			return new WP_Error( 'invalid_security_report', 'Invalid Security Report' );
1702
		}
1703
1704
		if( !function_exists( 'get_plugin_data' ) ) {
1705
			include( ABSPATH . 'wp-admin/includes/plugin.php' );
1706
		}
1707
1708
		//Get rid of any non-allowed args
1709
		$args = array_intersect_key( $args, array_flip( array( 'blocked', 'last', 'next', 'status', 'message' ) ) );
1710
1711
		$plugin = get_plugin_data( $plugin_file );
1712
1713
		if ( !$plugin['Name'] ) {
1714
			return new WP_Error( 'security_report_missing_plugin_name', 'Invalid Plugin File Provided' );
1715
		}
1716
1717
		// Sanitize everything to make sure we're not syncing something wonky
1718
		$type = sanitize_key( $type );
1719
1720
		$args['plugin'] = $plugin;
1721
1722
		// Cast blocked, last and next as integers.
1723
		// Last and next should be in unix timestamp format
1724
		if ( isset( $args['blocked'] ) ) {
1725
			$args['blocked'] = (int) $args['blocked'];
1726
		}
1727
		if ( isset( $args['last'] ) ) {
1728
			$args['last'] = (int) $args['last'];
1729
		}
1730
		if ( isset( $args['next'] ) ) {
1731
			$args['next'] = (int) $args['next'];
1732
		}
1733
		if ( !in_array( $args['status'], array( 'ok', 'warning', 'error' ) ) ) {
1734
			$args['status'] = 'ok';
1735
		}
1736
		if ( isset( $args['message'] ) ) {
1737
1738
			if( $args['status'] == 'ok' ) {
1739
				unset( $args['message'] );
1740
			}
1741
1742
			$allowed_html = array(
1743
			    'a' => array(
1744
			        'href' => array(),
1745
			        'title' => array()
1746
			    ),
1747
			    'em' => array(),
1748
			    'strong' => array(),
1749
			);
1750
1751
			$args['message'] = wp_kses( $args['message'], $allowed_html );
1752
		}
1753
1754
		$plugin_name = $plugin[ 'Name' ];
1755
1756
		self::$security_report[ $type ][ $plugin_name ] = $args;
1757
	}
1758
1759
	/**
1760
	 * Collects a new report if needed, then returns it.
1761
	 */
1762
	public function get_security_report() {
1763
		self::perform_security_reporting();
1764
		return Jetpack_Options::get_option( 'security_report' );
1765
	}
1766
1767
1768
/* Jetpack Options API */
1769
1770
	public static function get_option_names( $type = 'compact' ) {
1771
		return Jetpack_Options::get_option_names( $type );
1772
	}
1773
1774
	/**
1775
	 * Returns the requested option.  Looks in jetpack_options or jetpack_$name as appropriate.
1776
 	 *
1777
	 * @param string $name    Option name
1778
	 * @param mixed  $default (optional)
1779
	 */
1780
	public static function get_option( $name, $default = false ) {
1781
		return Jetpack_Options::get_option( $name, $default );
1782
	}
1783
1784
	/**
1785
	* Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action
1786
	* Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted
1787
	* $name must be a registered option name.
1788
	*/
1789
	public static function create_nonce( $name ) {
1790
		$secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 );
1791
1792
		Jetpack_Options::update_option( $name, $secret );
1793
		@list( $secret_1, $secret_2, $eol ) = explode( ':', Jetpack_Options::get_option( $name ) );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
1794
		if ( empty( $secret_1 ) || empty( $secret_2 ) || $eol < time() )
1795
			return new Jetpack_Error( 'missing_secrets' );
1796
1797
		return array(
1798
			'secret_1' => $secret_1,
1799
			'secret_2' => $secret_2,
1800
			'eol'      => $eol,
1801
		);
1802
	}
1803
1804
	/**
1805
	 * Updates the single given option.  Updates jetpack_options or jetpack_$name as appropriate.
1806
 	 *
1807
	 * @deprecated 3.4 use Jetpack_Options::update_option() instead.
1808
	 * @param string $name  Option name
1809
	 * @param mixed  $value Option value
1810
	 */
1811
	public static function update_option( $name, $value ) {
1812
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_option()' );
1813
		return Jetpack_Options::update_option( $name, $value );
1814
	}
1815
1816
	/**
1817
	 * Updates the multiple given options.  Updates jetpack_options and/or jetpack_$name as appropriate.
1818
 	 *
1819
	 * @deprecated 3.4 use Jetpack_Options::update_options() instead.
1820
	 * @param array $array array( option name => option value, ... )
1821
	 */
1822
	public static function update_options( $array ) {
1823
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::update_options()' );
1824
		return Jetpack_Options::update_options( $array );
1825
	}
1826
1827
	/**
1828
	 * Deletes the given option.  May be passed multiple option names as an array.
1829
	 * Updates jetpack_options and/or deletes jetpack_$name as appropriate.
1830
	 *
1831
	 * @deprecated 3.4 use Jetpack_Options::delete_option() instead.
1832
	 * @param string|array $names
1833
	 */
1834
	public static function delete_option( $names ) {
1835
		_deprecated_function( __METHOD__, 'jetpack-3.4', 'Jetpack_Options::delete_option()' );
1836
		return Jetpack_Options::delete_option( $names );
1837
	}
1838
1839
	/**
1840
	 * Enters a user token into the user_tokens option
1841
	 *
1842
	 * @param int $user_id
1843
	 * @param string $token
1844
	 * return bool
1845
	 */
1846
	public static function update_user_token( $user_id, $token, $is_master_user ) {
1847
		// not designed for concurrent updates
1848
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
1849
		if ( ! is_array( $user_tokens ) )
1850
			$user_tokens = array();
1851
		$user_tokens[$user_id] = $token;
1852
		if ( $is_master_user ) {
1853
			$master_user = $user_id;
1854
			$options     = compact( 'user_tokens', 'master_user' );
1855
		} else {
1856
			$options = compact( 'user_tokens' );
1857
		}
1858
		return Jetpack_Options::update_options( $options );
1859
	}
1860
1861
	/**
1862
	 * Returns an array of all PHP files in the specified absolute path.
1863
	 * Equivalent to glob( "$absolute_path/*.php" ).
1864
	 *
1865
	 * @param string $absolute_path The absolute path of the directory to search.
1866
	 * @return array Array of absolute paths to the PHP files.
1867
	 */
1868
	public static function glob_php( $absolute_path ) {
1869
		if ( function_exists( 'glob' ) ) {
1870
			return glob( "$absolute_path/*.php" );
1871
		}
1872
1873
		$absolute_path = untrailingslashit( $absolute_path );
1874
		$files = array();
1875
		if ( ! $dir = @opendir( $absolute_path ) ) {
1876
			return $files;
1877
		}
1878
1879
		while ( false !== $file = readdir( $dir ) ) {
1880
			if ( '.' == substr( $file, 0, 1 ) || '.php' != substr( $file, -4 ) ) {
1881
				continue;
1882
			}
1883
1884
			$file = "$absolute_path/$file";
1885
1886
			if ( ! is_file( $file ) ) {
1887
				continue;
1888
			}
1889
1890
			$files[] = $file;
1891
		}
1892
1893
		closedir( $dir );
1894
1895
		return $files;
1896
	}
1897
1898
	public static function activate_new_modules( $redirect = false ) {
1899
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
1900
			return;
1901
		}
1902
1903
		$jetpack_old_version = Jetpack_Options::get_option( 'version' ); // [sic]
1904 View Code Duplication
		if ( ! $jetpack_old_version ) {
1905
			$jetpack_old_version = $version = $old_version = '1.1:' . time();
1906
			/** This action is documented in class.jetpack.php */
1907
			do_action( 'updating_jetpack_version', $version, false );
1908
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
1909
		}
1910
1911
		list( $jetpack_version ) = explode( ':', $jetpack_old_version ); // [sic]
1912
1913
		if ( version_compare( JETPACK__VERSION, $jetpack_version, '<=' ) ) {
1914
			return;
1915
		}
1916
1917
		$active_modules     = Jetpack::get_active_modules();
1918
		$reactivate_modules = array();
1919
		foreach ( $active_modules as $active_module ) {
1920
			$module = Jetpack::get_module( $active_module );
1921
			if ( ! isset( $module['changed'] ) ) {
1922
				continue;
1923
			}
1924
1925
			if ( version_compare( $module['changed'], $jetpack_version, '<=' ) ) {
1926
				continue;
1927
			}
1928
1929
			$reactivate_modules[] = $active_module;
1930
			Jetpack::deactivate_module( $active_module );
1931
		}
1932
1933
		$new_version = JETPACK__VERSION . ':' . time();
1934
		/** This action is documented in class.jetpack.php */
1935
		do_action( 'updating_jetpack_version', $new_version, $jetpack_old_version );
1936
		Jetpack_Options::update_options(
1937
			array(
1938
				'version'     => $new_version,
1939
				'old_version' => $jetpack_old_version,
1940
			)
1941
		);
1942
1943
		Jetpack::state( 'message', 'modules_activated' );
1944
		Jetpack::activate_default_modules( $jetpack_version, JETPACK__VERSION, $reactivate_modules );
0 ignored issues
show
Documentation introduced by
JETPACK__VERSION is of type string, but the function expects a boolean.

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
1945
1946
		if ( $redirect ) {
1947
			$page = 'jetpack'; // make sure we redirect to either settings or the jetpack page
1948
			if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'jetpack', 'jetpack_modules' ) ) ) {
1949
				$page = $_GET['page'];
1950
			}
1951
1952
			wp_safe_redirect( Jetpack::admin_url( 'page=' . $page ) );
1953
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method activate_new_modules() 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...
1954
		}
1955
	}
1956
1957
	/**
1958
	 * List available Jetpack modules. Simply lists .php files in /modules/.
1959
	 * Make sure to tuck away module "library" files in a sub-directory.
1960
	 */
1961
	public static function get_available_modules( $min_version = false, $max_version = false ) {
1962
		static $modules = null;
1963
1964
		if ( ! isset( $modules ) ) {
1965
			$available_modules_option = Jetpack_Options::get_option( 'available_modules', array() );
1966
			// Use the cache if we're on the front-end and it's available...
1967
			if ( ! is_admin() && ! empty( $available_modules_option[ JETPACK__VERSION ] ) ) {
1968
				$modules = $available_modules_option[ JETPACK__VERSION ];
1969
			} else {
1970
				$files = Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules' );
1971
1972
				$modules = array();
1973
1974
				foreach ( $files as $file ) {
1975
					if ( ! $headers = Jetpack::get_module( $file ) ) {
1976
						continue;
1977
					}
1978
1979
					$modules[ Jetpack::get_module_slug( $file ) ] = $headers['introduced'];
1980
				}
1981
1982
				Jetpack_Options::update_option( 'available_modules', array(
1983
					JETPACK__VERSION => $modules,
1984
				) );
1985
			}
1986
		}
1987
1988
		/**
1989
		 * Filters the array of modules available to be activated.
1990
		 *
1991
		 * @since 2.4.0
1992
		 *
1993
		 * @param array $modules Array of available modules.
1994
		 * @param string $min_version Minimum version number required to use modules.
1995
		 * @param string $max_version Maximum version number required to use modules.
1996
		 */
1997
		$mods = apply_filters( 'jetpack_get_available_modules', $modules, $min_version, $max_version );
1998
1999
		if ( ! $min_version && ! $max_version ) {
2000
			return array_keys( $mods );
2001
		}
2002
2003
		$r = array();
2004
		foreach ( $mods as $slug => $introduced ) {
2005
			if ( $min_version && version_compare( $min_version, $introduced, '>=' ) ) {
2006
				continue;
2007
			}
2008
2009
			if ( $max_version && version_compare( $max_version, $introduced, '<' ) ) {
2010
				continue;
2011
			}
2012
2013
			$r[] = $slug;
2014
		}
2015
2016
		return $r;
2017
	}
2018
2019
	/**
2020
	 * Default modules loaded on activation.
2021
	 */
2022
	public static function get_default_modules( $min_version = false, $max_version = false ) {
2023
		$return = array();
2024
2025
		foreach ( Jetpack::get_available_modules( $min_version, $max_version ) as $module ) {
2026
			$module_data = Jetpack::get_module( $module );
2027
2028
			switch ( strtolower( $module_data['auto_activate'] ) ) {
2029
				case 'yes' :
2030
					$return[] = $module;
2031
					break;
2032
				case 'public' :
2033
					if ( Jetpack_Options::get_option( 'public' ) ) {
2034
						$return[] = $module;
2035
					}
2036
					break;
2037
				case 'no' :
2038
				default :
0 ignored issues
show
Coding Style introduced by
There must be no space before the colon in a DEFAULT statement

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

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

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

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

Loading history...
2039
					break;
2040
			}
2041
		}
2042
		/**
2043
		 * Filters the array of default modules.
2044
		 *
2045
		 * @since 2.5.0
2046
		 *
2047
		 * @param array $return Array of default modules.
2048
		 * @param string $min_version Minimum version number required to use modules.
2049
		 * @param string $max_version Maximum version number required to use modules.
2050
		 */
2051
		return apply_filters( 'jetpack_get_default_modules', $return, $min_version, $max_version );
2052
	}
2053
2054
	/**
2055
	 * Checks activated modules during auto-activation to determine
2056
	 * if any of those modules are being deprecated.  If so, close
2057
	 * them out, and add any replacement modules.
2058
	 *
2059
	 * Runs at priority 99 by default.
2060
	 *
2061
	 * This is run late, so that it can still activate a module if
2062
	 * the new module is a replacement for another that the user
2063
	 * currently has active, even if something at the normal priority
2064
	 * would kibosh everything.
2065
	 *
2066
	 * @since 2.6
2067
	 * @uses jetpack_get_default_modules filter
2068
	 * @param array $modules
2069
	 * @return array
2070
	 */
2071
	function handle_deprecated_modules( $modules ) {
2072
		$deprecated_modules = array(
2073
			'debug'            => null,  // Closed out and moved to ./class.jetpack-debugger.php
2074
			'wpcc'             => 'sso', // Closed out in 2.6 -- SSO provides the same functionality.
2075
			'gplus-authorship' => null,  // Closed out in 3.2 -- Google dropped support.
2076
		);
2077
2078
		// Don't activate SSO if they never completed activating WPCC.
2079
		if ( Jetpack::is_module_active( 'wpcc' ) ) {
2080
			$wpcc_options = Jetpack_Options::get_option( 'wpcc_options' );
2081
			if ( empty( $wpcc_options ) || empty( $wpcc_options['client_id'] ) || empty( $wpcc_options['client_id'] ) ) {
2082
				$deprecated_modules['wpcc'] = null;
2083
			}
2084
		}
2085
2086
		foreach ( $deprecated_modules as $module => $replacement ) {
2087
			if ( Jetpack::is_module_active( $module ) ) {
2088
				self::deactivate_module( $module );
2089
				if ( $replacement ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $replacement of type null|string is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
2090
					$modules[] = $replacement;
2091
				}
2092
			}
2093
		}
2094
2095
		return array_unique( $modules );
2096
	}
2097
2098
	/**
2099
	 * Checks activated plugins during auto-activation to determine
2100
	 * if any of those plugins are in the list with a corresponding module
2101
	 * that is not compatible with the plugin. The module will not be allowed
2102
	 * to auto-activate.
2103
	 *
2104
	 * @since 2.6
2105
	 * @uses jetpack_get_default_modules filter
2106
	 * @param array $modules
2107
	 * @return array
2108
	 */
2109
	function filter_default_modules( $modules ) {
2110
2111
		$active_plugins = self::get_active_plugins();
2112
2113
		if ( ! empty( $active_plugins ) ) {
2114
2115
			// For each module we'd like to auto-activate...
2116
			foreach ( $modules as $key => $module ) {
2117
				// If there are potential conflicts for it...
2118
				if ( ! empty( $this->conflicting_plugins[ $module ] ) ) {
2119
					// For each potential conflict...
2120
					foreach ( $this->conflicting_plugins[ $module ] as $title => $plugin ) {
2121
						// If that conflicting plugin is active...
2122
						if ( in_array( $plugin, $active_plugins ) ) {
2123
							// Remove that item from being auto-activated.
2124
							unset( $modules[ $key ] );
2125
						}
2126
					}
2127
				}
2128
			}
2129
		}
2130
2131
		return $modules;
2132
	}
2133
2134
	/**
2135
	 * Extract a module's slug from its full path.
2136
	 */
2137
	public static function get_module_slug( $file ) {
2138
		return str_replace( '.php', '', basename( $file ) );
2139
	}
2140
2141
	/**
2142
	 * Generate a module's path from its slug.
2143
	 */
2144
	public static function get_module_path( $slug ) {
2145
		return JETPACK__PLUGIN_DIR . "modules/$slug.php";
2146
	}
2147
2148
	/**
2149
	 * Load module data from module file. Headers differ from WordPress
2150
	 * plugin headers to avoid them being identified as standalone
2151
	 * plugins on the WordPress plugins page.
2152
	 */
2153
	public static function get_module( $module ) {
2154
		$headers = array(
2155
			'name'                      => 'Module Name',
2156
			'description'               => 'Module Description',
2157
			'jumpstart_desc'            => 'Jumpstart Description',
2158
			'sort'                      => 'Sort Order',
2159
			'recommendation_order'      => 'Recommendation Order',
2160
			'introduced'                => 'First Introduced',
2161
			'changed'                   => 'Major Changes In',
2162
			'deactivate'                => 'Deactivate',
2163
			'free'                      => 'Free',
2164
			'requires_connection'       => 'Requires Connection',
2165
			'auto_activate'             => 'Auto Activate',
2166
			'module_tags'               => 'Module Tags',
2167
			'feature'                   => 'Feature',
2168
			'additional_search_queries' => 'Additional Search Queries',
2169
		);
2170
2171
		$file = Jetpack::get_module_path( Jetpack::get_module_slug( $module ) );
2172
2173
		$mod = Jetpack::get_file_data( $file, $headers );
2174
		if ( empty( $mod['name'] ) ) {
2175
			return false;
2176
		}
2177
2178
		$mod['sort']                    = empty( $mod['sort'] ) ? 10 : (int) $mod['sort'];
2179
		$mod['recommendation_order']    = empty( $mod['recommendation_order'] ) ? 20 : (int) $mod['recommendation_order'];
2180
		$mod['deactivate']              = empty( $mod['deactivate'] );
2181
		$mod['free']                    = empty( $mod['free'] );
2182
		$mod['requires_connection']     = ( ! empty( $mod['requires_connection'] ) && 'No' == $mod['requires_connection'] ) ? false : true;
2183
2184
		if ( empty( $mod['auto_activate'] ) || ! in_array( strtolower( $mod['auto_activate'] ), array( 'yes', 'no', 'public' ) ) ) {
2185
			$mod['auto_activate'] = 'No';
2186
		} else {
2187
			$mod['auto_activate'] = (string) $mod['auto_activate'];
2188
		}
2189
2190
		if ( $mod['module_tags'] ) {
2191
			$mod['module_tags'] = explode( ',', $mod['module_tags'] );
2192
			$mod['module_tags'] = array_map( 'trim', $mod['module_tags'] );
2193
			$mod['module_tags'] = array_map( array( __CLASS__, 'translate_module_tag' ), $mod['module_tags'] );
2194
		} else {
2195
			$mod['module_tags'] = array( self::translate_module_tag( 'Other' ) );
2196
		}
2197
2198
		if ( $mod['feature'] ) {
2199
			$mod['feature'] = explode( ',', $mod['feature'] );
2200
			$mod['feature'] = array_map( 'trim', $mod['feature'] );
2201
		} else {
2202
			$mod['feature'] = array( self::translate_module_tag( 'Other' ) );
2203
		}
2204
2205
		/**
2206
		 * Filters the feature array on a module.
2207
		 *
2208
		 * This filter allows you to control where each module is filtered: Recommended,
2209
		 * Jumpstart, and the default "Other" listing.
2210
		 *
2211
		 * @since 3.5.0
2212
		 *
2213
		 * @param array   $mod['feature'] The areas to feature this module:
2214
		 *     'Jumpstart' adds to the "Jumpstart" option to activate many modules at once.
2215
		 *     'Recommended' shows on the main Jetpack admin screen.
2216
		 *     'Other' should be the default if no other value is in the array.
2217
		 * @param string  $module The slug of the module, e.g. sharedaddy.
2218
		 * @param array   $mod All the currently assembled module data.
2219
		 */
2220
		$mod['feature'] = apply_filters( 'jetpack_module_feature', $mod['feature'], $module, $mod );
2221
2222
		/**
2223
		 * Filter the returned data about a module.
2224
		 *
2225
		 * This filter allows overriding any info about Jetpack modules. It is dangerous,
2226
		 * so please be careful.
2227
		 *
2228
		 * @since 3.6.0
2229
		 *
2230
		 * @param array   $mod    The details of the requested module.
2231
		 * @param string  $module The slug of the module, e.g. sharedaddy
2232
		 * @param string  $file   The path to the module source file.
2233
		 */
2234
		return apply_filters( 'jetpack_get_module', $mod, $module, $file );
2235
	}
2236
2237
	/**
2238
	 * Like core's get_file_data implementation, but caches the result.
2239
	 */
2240
	public static function get_file_data( $file, $headers ) {
2241
		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
2242
		$file_name = basename( $file );
2243
		$file_data_option = Jetpack_Options::get_option( 'file_data', array() );
2244
		$key              = md5( $file_name . serialize( $headers ) );
2245
		$refresh_cache    = is_admin() && isset( $_GET['page'] ) && 'jetpack' === substr( $_GET['page'], 0, 7 );
2246
2247
		// If we don't need to refresh the cache, and already have the value, short-circuit!
2248
		if ( ! $refresh_cache && isset( $file_data_option[ JETPACK__VERSION ][ $key ] ) ) {
2249
			return $file_data_option[ JETPACK__VERSION ][ $key ];
2250
		}
2251
2252
		$data = get_file_data( $file, $headers );
2253
2254
		// Strip out any old Jetpack versions that are cluttering the option.
2255
		$file_data_option = array_intersect_key( (array) $file_data_option, array( JETPACK__VERSION => null ) );
2256
		$file_data_option[ JETPACK__VERSION ][ $key ] = $data;
2257
		Jetpack_Options::update_option( 'file_data', $file_data_option );
2258
2259
		return $data;
2260
	}
2261
2262
	/**
2263
	 * Return translated module tag.
2264
	 *
2265
	 * @param string $tag Tag as it appears in each module heading.
2266
	 *
2267
	 * @return mixed
2268
	 */
2269
	public static function translate_module_tag( $tag ) {
2270
		return jetpack_get_module_i18n_tag( $tag );
2271
	}
2272
2273
	/**
2274
	 * Return module name translation. Uses matching string created in modules/module-headings.php.
2275
	 *
2276
	 * @since 3.9.2
2277
	 *
2278
	 * @param array $modules
2279
	 *
2280
	 * @return string|void
2281
	 */
2282
	public static function get_translated_modules( $modules ) {
2283
		foreach ( $modules as $index => $module ) {
2284
			$i18n_module = jetpack_get_module_i18n( $module['module'] );
2285
			if ( isset( $module['name'] ) ) {
2286
				$modules[ $index ]['name'] = $i18n_module['name'];
2287
			}
2288
			if ( isset( $module['description'] ) ) {
2289
				$modules[ $index ]['description'] = $i18n_module['description'];
2290
				$modules[ $index ]['short_description'] = $i18n_module['description'];
2291
			}
2292
		}
2293
		return $modules;
2294
	}
2295
2296
	/**
2297
	 * Get a list of activated modules as an array of module slugs.
2298
	 */
2299
	public static function get_active_modules() {
2300
		$active = Jetpack_Options::get_option( 'active_modules' );
2301
		if ( ! is_array( $active ) )
2302
			$active = array();
2303
		if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) {
2304
			$active[] = 'vaultpress';
2305
		} else {
2306
			$active = array_diff( $active, array( 'vaultpress' ) );
2307
		}
2308
2309
		//If protect is active on the main site of a multisite, it should be active on all sites.
2310
		if ( ! in_array( 'protect', $active ) && is_multisite() && get_site_option( 'jetpack_protect_active' ) ) {
2311
			$active[] = 'protect';
2312
		}
2313
2314
		return array_unique( $active );
2315
	}
2316
2317
	/**
2318
	 * Check whether or not a Jetpack module is active.
2319
	 *
2320
	 * @param string $module The slug of a Jetpack module.
2321
	 * @return bool
2322
	 *
2323
	 * @static
2324
	 */
2325
	public static function is_module_active( $module ) {
2326
		return in_array( $module, self::get_active_modules() );
2327
	}
2328
2329
	public static function is_module( $module ) {
2330
		return ! empty( $module ) && ! validate_file( $module, Jetpack::get_available_modules() );
2331
	}
2332
2333
	/**
2334
	 * Catches PHP errors.  Must be used in conjunction with output buffering.
2335
	 *
2336
	 * @param bool $catch True to start catching, False to stop.
2337
	 *
2338
	 * @static
2339
	 */
2340
	public static function catch_errors( $catch ) {
2341
		static $display_errors, $error_reporting;
2342
2343
		if ( $catch ) {
2344
			$display_errors  = @ini_set( 'display_errors', 1 );
2345
			$error_reporting = @error_reporting( E_ALL );
2346
			add_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2347
		} else {
2348
			@ini_set( 'display_errors', $display_errors );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
2349
			@error_reporting( $error_reporting );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
2350
			remove_action( 'shutdown', array( 'Jetpack', 'catch_errors_on_shutdown' ), 0 );
2351
		}
2352
	}
2353
2354
	/**
2355
	 * Saves any generated PHP errors in ::state( 'php_errors', {errors} )
2356
	 */
2357
	public static function catch_errors_on_shutdown() {
2358
		Jetpack::state( 'php_errors', ob_get_clean() );
2359
	}
2360
2361
	public static function activate_default_modules( $min_version = false, $max_version = false, $other_modules = array(), $redirect = true ) {
2362
		$jetpack = Jetpack::init();
2363
2364
		$modules = Jetpack::get_default_modules( $min_version, $max_version );
2365
		$modules = array_merge( $other_modules, $modules );
2366
2367
		// Look for standalone plugins and disable if active.
2368
2369
		$to_deactivate = array();
2370
		foreach ( $modules as $module ) {
2371
			if ( isset( $jetpack->plugins_to_deactivate[$module] ) ) {
2372
				$to_deactivate[$module] = $jetpack->plugins_to_deactivate[$module];
2373
			}
2374
		}
2375
2376
		$deactivated = array();
2377
		foreach ( $to_deactivate as $module => $deactivate_me ) {
2378
			list( $probable_file, $probable_title ) = $deactivate_me;
2379
			if ( Jetpack_Client_Server::deactivate_plugin( $probable_file, $probable_title ) ) {
2380
				$deactivated[] = $module;
2381
			}
2382
		}
2383
2384
		if ( $deactivated && $redirect ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $deactivated of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
2385
			Jetpack::state( 'deactivated_plugins', join( ',', $deactivated ) );
2386
2387
			$url = add_query_arg(
2388
				array(
2389
					'action'   => 'activate_default_modules',
2390
					'_wpnonce' => wp_create_nonce( 'activate_default_modules' ),
2391
				),
2392
				add_query_arg( compact( 'min_version', 'max_version', 'other_modules' ), Jetpack::admin_url( 'page=jetpack' ) )
2393
			);
2394
			wp_safe_redirect( $url );
2395
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method activate_default_modules() 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...
2396
		}
2397
2398
		/**
2399
		 * Fires before default modules are activated.
2400
		 *
2401
		 * @since 1.9.0
2402
		 *
2403
		 * @param string $min_version Minimum version number required to use modules.
2404
		 * @param string $max_version Maximum version number required to use modules.
2405
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2406
		 */
2407
		do_action( 'jetpack_before_activate_default_modules', $min_version, $max_version, $other_modules );
2408
2409
		// Check each module for fatal errors, a la wp-admin/plugins.php::activate before activating
2410
		Jetpack::restate();
2411
		Jetpack::catch_errors( true );
2412
2413
		$active = Jetpack::get_active_modules();
2414
2415
		foreach ( $modules as $module ) {
2416
			if ( did_action( "jetpack_module_loaded_$module" ) ) {
2417
				$active[] = $module;
2418
				Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2419
				continue;
2420
			}
2421
2422
			if ( in_array( $module, $active ) ) {
2423
				$module_info = Jetpack::get_module( $module );
2424
				if ( ! $module_info['deactivate'] ) {
2425
					$state = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2426 View Code Duplication
					if ( $active_state = Jetpack::state( $state ) ) {
2427
						$active_state = explode( ',', $active_state );
2428
					} else {
2429
						$active_state = array();
2430
					}
2431
					$active_state[] = $module;
2432
					Jetpack::state( $state, implode( ',', $active_state ) );
2433
				}
2434
				continue;
2435
			}
2436
2437
			$file = Jetpack::get_module_path( $module );
2438
			if ( ! file_exists( $file ) ) {
2439
				continue;
2440
			}
2441
2442
			// we'll override this later if the plugin can be included without fatal error
2443
			if ( $redirect ) {
2444
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2445
			}
2446
			Jetpack::state( 'error', 'module_activation_failed' );
2447
			Jetpack::state( 'module', $module );
2448
			ob_start();
2449
			require $file;
2450
			/**
2451
			 * Fires when a specific module is activated.
2452
			 *
2453
			 * @since 1.9.0
2454
			 *
2455
			 * @param string $module Module slug.
2456
			 */
2457
			do_action( 'jetpack_activate_module', $module );
2458
			$active[] = $module;
2459
			$state    = in_array( $module, $other_modules ) ? 'reactivated_modules' : 'activated_modules';
2460 View Code Duplication
			if ( $active_state = Jetpack::state( $state ) ) {
2461
				$active_state = explode( ',', $active_state );
2462
			} else {
2463
				$active_state = array();
2464
			}
2465
			$active_state[] = $module;
2466
			Jetpack::state( $state, implode( ',', $active_state ) );
2467
			Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2468
			ob_end_clean();
2469
		}
2470
		Jetpack::state( 'error', false );
0 ignored issues
show
Documentation introduced by
false is of type boolean, but the function expects a string|null.

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

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

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2472
		Jetpack::catch_errors( false );
2473
		/**
2474
		 * Fires when default modules are activated.
2475
		 *
2476
		 * @since 1.9.0
2477
		 *
2478
		 * @param string $min_version Minimum version number required to use modules.
2479
		 * @param string $max_version Maximum version number required to use modules.
2480
		 * @param array $other_modules Array of other modules to activate alongside the default modules.
2481
		 */
2482
		do_action( 'jetpack_activate_default_modules', $min_version, $max_version, $other_modules );
2483
	}
2484
2485
	public static function activate_module( $module, $exit = true, $redirect = true ) {
2486
		/**
2487
		 * Fires before a module is activated.
2488
		 *
2489
		 * @since 2.6.0
2490
		 *
2491
		 * @param string $module Module slug.
2492
		 * @param bool $exit Should we exit after the module has been activated. Default to true.
2493
		 * @param bool $redirect Should the user be redirected after module activation? Default to true.
2494
		 */
2495
		do_action( 'jetpack_pre_activate_module', $module, $exit, $redirect );
2496
2497
		$jetpack = Jetpack::init();
2498
2499
		if ( ! strlen( $module ) )
2500
			return false;
2501
2502
		if ( ! Jetpack::is_module( $module ) )
2503
			return false;
2504
2505
		// If it's already active, then don't do it again
2506
		$active = Jetpack::get_active_modules();
2507
		foreach ( $active as $act ) {
2508
			if ( $act == $module )
2509
				return true;
2510
		}
2511
2512
		$module_data = Jetpack::get_module( $module );
2513
2514
		if ( ! Jetpack::is_active() ) {
2515
			if ( !Jetpack::is_development_mode() )
2516
				return false;
2517
2518
			// If we're not connected but in development mode, make sure the module doesn't require a connection
2519
			if ( Jetpack::is_development_mode() && $module_data['requires_connection'] )
2520
				return false;
2521
		}
2522
2523
		// Check and see if the old plugin is active
2524
		if ( isset( $jetpack->plugins_to_deactivate[ $module ] ) ) {
2525
			// Deactivate the old plugin
2526
			if ( Jetpack_Client_Server::deactivate_plugin( $jetpack->plugins_to_deactivate[ $module ][0], $jetpack->plugins_to_deactivate[ $module ][1] ) ) {
2527
				// If we deactivated the old plugin, remembere that with ::state() and redirect back to this page to activate the module
2528
				// We can't activate the module on this page load since the newly deactivated old plugin is still loaded on this page load.
2529
				Jetpack::state( 'deactivated_plugins', $module );
2530
				wp_safe_redirect( add_query_arg( 'jetpack_restate', 1 ) );
2531
				exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method activate_module() 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...
2532
			}
2533
		}
2534
2535
		// Check the file for fatal errors, a la wp-admin/plugins.php::activate
2536
		Jetpack::state( 'module', $module );
2537
		Jetpack::state( 'error', 'module_activation_failed' ); // we'll override this later if the plugin can be included without fatal error
2538
2539
		Jetpack::catch_errors( true );
2540
		ob_start();
2541
		require Jetpack::get_module_path( $module );
2542
		/** This action is documented in class.jetpack.php */
2543
		do_action( 'jetpack_activate_module', $module );
2544
		$active[] = $module;
2545
		Jetpack_Options::update_option( 'active_modules', array_unique( $active ) );
2546
		Jetpack::state( 'error', false ); // the override
0 ignored issues
show
Documentation introduced by
false is of type boolean, but the function expects a string|null.

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2547
		ob_end_clean();
2548
		Jetpack::catch_errors( false );
2549
2550
		// A flag for Jump Start so it's not shown again. Only set if it hasn't been yet.
2551 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2552
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2553
2554
			//Jump start is being dismissed send data to MC Stats
2555
			$jetpack->stat( 'jumpstart', 'manual,'.$module );
2556
2557
			$jetpack->do_stats( 'server_side' );
2558
		}
2559
2560
		if ( $redirect ) {
2561
			wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
2562
		}
2563
		if ( $exit ) {
2564
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method activate_module() 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...
2565
		}
2566
		return true;
2567
	}
2568
2569
	function activate_module_actions( $module ) {
2570
		/**
2571
		 * Fires when a module is activated.
2572
		 * The dynamic part of the filter, $module, is the module slug.
2573
		 *
2574
		 * @since 1.9.0
2575
		 *
2576
		 * @param string $module Module slug.
2577
		 */
2578
		do_action( "jetpack_activate_module_$module", $module );
2579
	}
2580
2581
	public static function deactivate_module( $module ) {
2582
		/**
2583
		 * Fires when a module is deactivated.
2584
		 *
2585
		 * @since 1.9.0
2586
		 *
2587
		 * @param string $module Module slug.
2588
		 */
2589
		do_action( 'jetpack_pre_deactivate_module', $module );
2590
2591
		$jetpack = Jetpack::init();
2592
2593
		$active = Jetpack::get_active_modules();
2594
		$new    = array_filter( array_diff( $active, (array) $module ) );
2595
2596
		/**
2597
		 * Fires when a module is deactivated.
2598
		 * The dynamic part of the filter, $module, is the module slug.
2599
		 *
2600
		 * @since 1.9.0
2601
		 *
2602
		 * @param string $module Module slug.
2603
		 */
2604
		do_action( "jetpack_deactivate_module_$module", $module );
2605
2606
		// A flag for Jump Start so it's not shown again.
2607 View Code Duplication
		if ( 'new_connection' === Jetpack_Options::get_option( 'jumpstart' ) ) {
2608
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
2609
2610
			//Jump start is being dismissed send data to MC Stats
2611
			$jetpack->stat( 'jumpstart', 'manual,deactivated-'.$module );
2612
2613
			$jetpack->do_stats( 'server_side' );
2614
		}
2615
2616
		$success = Jetpack_Options::update_option( 'active_modules', array_unique( $new ) );
2617
		/**
2618
		 * Fired after a module has been deactivated.
2619
		 *
2620
		 * @since 4.1
2621
		 *
2622
		 * @param string $module Module slug.
2623
		 * @param boolean $success whether the module was deactivated.
2624
		 */
2625
		do_action( 'jetpack_deactivate_module', $module, $success );
2626
2627
		return $success;
2628
	}
2629
2630
	public static function enable_module_configurable( $module ) {
2631
		$module = Jetpack::get_module_slug( $module );
2632
		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
2633
	}
2634
2635
	public static function module_configuration_url( $module ) {
2636
		$module = Jetpack::get_module_slug( $module );
2637
		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2638
	}
2639
2640
	public static function module_configuration_load( $module, $method ) {
2641
		$module = Jetpack::get_module_slug( $module );
2642
		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2643
	}
2644
2645
	public static function module_configuration_head( $module, $method ) {
2646
		$module = Jetpack::get_module_slug( $module );
2647
		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2648
	}
2649
2650
	public static function module_configuration_screen( $module, $method ) {
2651
		$module = Jetpack::get_module_slug( $module );
2652
		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2653
	}
2654
2655
	public static function module_configuration_activation_screen( $module, $method ) {
2656
		$module = Jetpack::get_module_slug( $module );
2657
		add_action( 'display_activate_module_setting_' . $module, $method );
2658
	}
2659
2660
/* Installation */
2661
2662
	public static function bail_on_activation( $message, $deactivate = true ) {
2663
?>
2664
<!doctype html>
2665
<html>
2666
<head>
2667
<meta charset="<?php bloginfo( 'charset' ); ?>">
2668
<style>
2669
* {
2670
	text-align: center;
2671
	margin: 0;
2672
	padding: 0;
2673
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
2674
}
2675
p {
2676
	margin-top: 1em;
2677
	font-size: 18px;
2678
}
2679
</style>
2680
<body>
2681
<p><?php echo esc_html( $message ); ?></p>
2682
</body>
2683
</html>
2684
<?php
2685
		if ( $deactivate ) {
2686
			$plugins = get_option( 'active_plugins' );
2687
			$jetpack = plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' );
2688
			$update  = false;
2689
			foreach ( $plugins as $i => $plugin ) {
2690
				if ( $plugin === $jetpack ) {
2691
					$plugins[$i] = false;
2692
					$update = true;
2693
				}
2694
			}
2695
2696
			if ( $update ) {
2697
				update_option( 'active_plugins', array_filter( $plugins ) );
2698
			}
2699
		}
2700
		exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method bail_on_activation() 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...
2701
	}
2702
2703
	/**
2704
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
2705
	 * @static
2706
	 */
2707
	public static function plugin_activation( $network_wide ) {
2708
		Jetpack_Options::update_option( 'activated', 1 );
2709
2710
		if ( version_compare( $GLOBALS['wp_version'], JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
2711
			Jetpack::bail_on_activation( sprintf( __( 'Jetpack requires WordPress version %s or later.', 'jetpack' ), JETPACK__MINIMUM_WP_VERSION ) );
2712
		}
2713
2714
		if ( $network_wide )
2715
			Jetpack::state( 'network_nag', true );
0 ignored issues
show
Documentation introduced by
true is of type boolean, but the function expects a string|null.

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2716
2717
		Jetpack::plugin_initialize();
2718
	}
2719
	/**
2720
	 * Runs before bumping version numbers up to a new version
2721
	 * @param  (string) $version    Version:timestamp
2722
	 * @param  (string) $old_version Old Version:timestamp or false if not set yet.
2723
	 * @return null              [description]
2724
	 */
2725
	public static function do_version_bump( $version, $old_version ) {
2726
2727
		if ( ! $old_version ) { // For new sites
2728
			// Setting up jetpack manage
2729
			Jetpack::activate_manage();
2730
		}
2731
	}
2732
2733
	/**
2734
	 * Sets the internal version number and activation state.
2735
	 * @static
2736
	 */
2737
	public static function plugin_initialize() {
2738
		if ( ! Jetpack_Options::get_option( 'activated' ) ) {
2739
			Jetpack_Options::update_option( 'activated', 2 );
2740
		}
2741
2742 View Code Duplication
		if ( ! Jetpack_Options::get_option( 'version' ) ) {
2743
			$version = $old_version = JETPACK__VERSION . ':' . time();
2744
			/** This action is documented in class.jetpack.php */
2745
			do_action( 'updating_jetpack_version', $version, false );
2746
			Jetpack_Options::update_options( compact( 'version', 'old_version' ) );
2747
		}
2748
2749
		Jetpack::load_modules();
2750
2751
		Jetpack_Options::delete_option( 'do_activate' );
2752
	}
2753
2754
	/**
2755
	 * Removes all connection options
2756
	 * @static
2757
	 */
2758
	public static function plugin_deactivation( ) {
2759
		require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
2760
		if( is_plugin_active_for_network( 'jetpack/jetpack.php' ) ) {
2761
			Jetpack_Network::init()->deactivate();
2762
		} else {
2763
			Jetpack::disconnect( false );
2764
			//Jetpack_Heartbeat::init()->deactivate();
2765
		}
2766
	}
2767
2768
	/**
2769
	 * Disconnects from the Jetpack servers.
2770
	 * Forgets all connection details and tells the Jetpack servers to do the same.
2771
	 * @static
2772
	 */
2773
	public static function disconnect( $update_activated_state = true ) {
2774
		wp_clear_scheduled_hook( 'jetpack_clean_nonces' );
2775
		Jetpack::clean_nonces( true );
2776
2777
		Jetpack::load_xml_rpc_client();
2778
		$xml = new Jetpack_IXR_Client();
2779
		$xml->query( 'jetpack.deregister' );
2780
2781
		Jetpack_Options::delete_option(
2782
			array(
2783
				'register',
2784
				'blog_token',
2785
				'user_token',
2786
				'user_tokens',
2787
				'master_user',
2788
				'time_diff',
2789
				'fallback_no_verify_ssl_certs',
2790
			)
2791
		);
2792
2793
		if ( $update_activated_state ) {
2794
			Jetpack_Options::update_option( 'activated', 4 );
2795
		}
2796
2797
		$jetpack_unique_connection = Jetpack_Options::get_option( 'unique_connection' );
2798
		// Check then record unique disconnection if site has never been disconnected previously
2799
		if ( -1 == $jetpack_unique_connection['disconnected'] ) {
2800
			$jetpack_unique_connection['disconnected'] = 1;
2801
		}
2802
		else {
2803
			if ( 0 == $jetpack_unique_connection['disconnected'] ) {
2804
				//track unique disconnect
2805
				$jetpack = Jetpack::init();
2806
2807
				$jetpack->stat( 'connections', 'unique-disconnect' );
2808
				$jetpack->do_stats( 'server_side' );
2809
			}
2810
			// increment number of times disconnected
2811
			$jetpack_unique_connection['disconnected'] += 1;
2812
		}
2813
2814
		Jetpack_Options::update_option( 'unique_connection', $jetpack_unique_connection );
2815
		
2816
		// Delete all the sync related data. Since it could be taking up space.
2817
		Jetpack_Sync_Sender::getInstance()->uninstall();
2818
2819
		// Disable the Heartbeat cron
2820
		Jetpack_Heartbeat::init()->deactivate();
2821
	}
2822
2823
	/**
2824
	 * Unlinks the current user from the linked WordPress.com user
2825
	 */
2826
	public static function unlink_user( $user_id = null ) {
2827
		if ( ! $tokens = Jetpack_Options::get_option( 'user_tokens' ) )
2828
			return false;
2829
2830
		$user_id = empty( $user_id ) ? get_current_user_id() : intval( $user_id );
2831
2832
		if ( Jetpack_Options::get_option( 'master_user' ) == $user_id )
2833
			return false;
2834
2835
		if ( ! isset( $tokens[ $user_id ] ) )
2836
			return false;
2837
2838
		Jetpack::load_xml_rpc_client();
2839
		$xml = new Jetpack_IXR_Client( compact( 'user_id' ) );
2840
		$xml->query( 'jetpack.unlink_user', $user_id );
2841
2842
		unset( $tokens[ $user_id ] );
2843
2844
		Jetpack_Options::update_option( 'user_tokens', $tokens );
2845
2846
		/**
2847
		 * Fires after the current user has been unlinked from WordPress.com.
2848
		 *
2849
		 * @since 4.1.0
2850
		 *
2851
		 * @param int $user_id The current user's ID.
2852
		 */
2853
		do_action( 'jetpack_unlinked_user', $user_id );
2854
2855
		return true;
2856
	}
2857
2858
	/**
2859
	 * Attempts Jetpack registration.  If it fail, a state flag is set: @see ::admin_page_load()
2860
	 */
2861
	public static function try_registration() {
2862
		// Let's get some testing in beta versions and such.
2863
		if ( self::is_development_version() && defined( 'PHP_URL_HOST' ) ) {
2864
			// Before attempting to connect, let's make sure that the domains are viable.
2865
			$domains_to_check = array_unique( array(
2866
				'siteurl' => parse_url( get_site_url(), PHP_URL_HOST ),
2867
				'homeurl' => parse_url( get_home_url(), PHP_URL_HOST ),
2868
			) );
2869
			foreach ( $domains_to_check as $domain ) {
2870
				$result = Jetpack_Data::is_usable_domain( $domain );
2871
				if ( is_wp_error( $result ) ) {
2872
					return $result;
2873
				}
2874
			}
2875
		}
2876
2877
		$result = Jetpack::register();
2878
2879
		// If there was an error with registration and the site was not registered, record this so we can show a message.
2880
		if ( ! $result || is_wp_error( $result ) ) {
2881
			return $result;
2882
		} else {
2883
			return true;
2884
		}
2885
	}
2886
2887
	/**
2888
	 * Tracking an internal event log. Try not to put too much chaff in here.
2889
	 *
2890
	 * [Everyone Loves a Log!](https://www.youtube.com/watch?v=2C7mNr5WMjA)
2891
	 */
2892
	public static function log( $code, $data = null ) {
2893
		// only grab the latest 200 entries
2894
		$log = array_slice( Jetpack_Options::get_option( 'log', array() ), -199, 199 );
2895
2896
		// Append our event to the log
2897
		$log_entry = array(
2898
			'time'    => time(),
2899
			'user_id' => get_current_user_id(),
2900
			'blog_id' => Jetpack_Options::get_option( 'id' ),
2901
			'code'    => $code,
2902
		);
2903
		// Don't bother storing it unless we've got some.
2904
		if ( ! is_null( $data ) ) {
2905
			$log_entry['data'] = $data;
2906
		}
2907
		$log[] = $log_entry;
2908
2909
		// Try add_option first, to make sure it's not autoloaded.
2910
		// @todo: Add an add_option method to Jetpack_Options
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
2911
		if ( ! add_option( 'jetpack_log', $log, null, 'no' ) ) {
2912
			Jetpack_Options::update_option( 'log', $log );
2913
		}
2914
2915
		/**
2916
		 * Fires when Jetpack logs an internal event.
2917
		 *
2918
		 * @since 3.0.0
2919
		 *
2920
		 * @param array $log_entry {
2921
		 *	Array of details about the log entry.
2922
		 *
2923
		 *	@param string time Time of the event.
2924
		 *	@param int user_id ID of the user who trigerred the event.
2925
		 *	@param int blog_id Jetpack Blog ID.
2926
		 *	@param string code Unique name for the event.
2927
		 *	@param string data Data about the event.
2928
		 * }
2929
		 */
2930
		do_action( 'jetpack_log_entry', $log_entry );
2931
	}
2932
2933
	/**
2934
	 * Get the internal event log.
2935
	 *
2936
	 * @param $event (string) - only return the specific log events
2937
	 * @param $num   (int)    - get specific number of latest results, limited to 200
2938
	 *
2939
	 * @return array of log events || WP_Error for invalid params
2940
	 */
2941
	public static function get_log( $event = false, $num = false ) {
2942
		if ( $event && ! is_string( $event ) ) {
2943
			return new WP_Error( __( 'First param must be string or empty', 'jetpack' ) );
2944
		}
2945
2946
		if ( $num && ! is_numeric( $num ) ) {
2947
			return new WP_Error( __( 'Second param must be numeric or empty', 'jetpack' ) );
2948
		}
2949
2950
		$entire_log = Jetpack_Options::get_option( 'log', array() );
2951
2952
		// If nothing set - act as it did before, otherwise let's start customizing the output
2953
		if ( ! $num && ! $event ) {
2954
			return $entire_log;
2955
		} else {
2956
			$entire_log = array_reverse( $entire_log );
2957
		}
2958
2959
		$custom_log_output = array();
2960
2961
		if ( $event ) {
2962
			foreach ( $entire_log as $log_event ) {
2963
				if ( $event == $log_event[ 'code' ] ) {
2964
					$custom_log_output[] = $log_event;
2965
				}
2966
			}
2967
		} else {
2968
			$custom_log_output = $entire_log;
2969
		}
2970
2971
		if ( $num ) {
2972
			$custom_log_output = array_slice( $custom_log_output, 0, $num );
2973
		}
2974
2975
		return $custom_log_output;
2976
	}
2977
2978
	/**
2979
	 * Log modification of important settings.
2980
	 */
2981
	public static function log_settings_change( $option, $old_value, $value ) {
0 ignored issues
show
Unused Code introduced by
The parameter $old_value is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
2982
		switch( $option ) {
2983
			case 'jetpack_sync_non_public_post_stati':
2984
				self::log( $option, $value );
2985
				break;
2986
		}
2987
	}
2988
2989
	/**
2990
	 * Return stat data for WPCOM sync
2991
	 */
2992
	function get_stat_data() {
2993
		$heartbeat_data = Jetpack_Heartbeat::generate_stats_array();
2994
		$additional_data = $this->get_additional_stat_data();
2995
2996
		return json_encode( array_merge( $heartbeat_data, $additional_data ) );
2997
	}
2998
2999
	/**
3000
	 * Get additional stat data to sync to WPCOM
3001
	 */
3002
	function get_additional_stat_data( $prefix = '' ) {
3003
		$return["{$prefix}themes"]         = Jetpack::get_parsed_theme_data();
0 ignored issues
show
Coding Style Comprehensibility introduced by
$return was never initialized. Although not strictly required by PHP, it is generally a good practice to add $return = array(); before regardless.

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

Let’s take a look at an example:

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

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

    // do something with $myArray
}

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

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

Loading history...
3004
		$return["{$prefix}plugins-extra"]  = Jetpack::get_parsed_plugin_data();
3005
		$return["{$prefix}users"]          = count_users();
3006
		$return["{$prefix}site-count"]     = 0;
3007
		if ( function_exists( 'get_blog_count' ) ) {
3008
			$return["{$prefix}site-count"] = get_blog_count();
3009
		}
3010
		return $return;
3011
	}
3012
3013
	/* Admin Pages */
3014
3015
	function admin_init() {
3016
		// If the plugin is not connected, display a connect message.
3017
		if (
3018
			// the plugin was auto-activated and needs its candy
3019
			Jetpack_Options::get_option( 'do_activate' )
3020
		||
3021
			// the plugin is active, but was never activated.  Probably came from a site-wide network activation
3022
			! Jetpack_Options::get_option( 'activated' )
3023
		) {
3024
			Jetpack::plugin_initialize();
3025
		}
3026
3027
		if ( ! Jetpack::is_active() && ! Jetpack::is_development_mode() ) {
3028
			if ( 4 != Jetpack_Options::get_option( 'activated' ) ) {
3029
				// Show connect notice on dashboard and plugins pages
3030
				add_action( 'load-index.php', array( $this, 'prepare_connect_notice' ) );
3031
				add_action( 'load-plugins.php', array( $this, 'prepare_connect_notice' ) );
3032
			}
3033
		} elseif ( false === Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ) ) {
3034
			// Upgrade: 1.1 -> 1.1.1
3035
			// Check and see if host can verify the Jetpack servers' SSL certificate
3036
			$args = array();
3037
			Jetpack_Client::_wp_remote_request(
3038
				Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'test' ) ),
3039
				$args,
3040
				true
3041
			);
3042
		} else {
3043
			// Show the notice on the Dashboard only for now
3044
3045
			add_action( 'load-index.php', array( $this, 'prepare_manage_jetpack_notice' ) );
3046
3047
			// Identity crisis notices
3048
			add_action( 'jetpack_notices', array( $this, 'alert_identity_crisis' ) );
3049
		}
3050
3051
		if ( current_user_can( 'manage_options' ) && 'AUTO' == JETPACK_CLIENT__HTTPS && ! self::permit_ssl() ) {
3052
			add_action( 'jetpack_notices', array( $this, 'alert_auto_ssl_fail' ) );
3053
		}
3054
3055
		add_action( 'load-plugins.php', array( $this, 'intercept_plugin_error_scrape_init' ) );
3056
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
3057
		add_filter( 'plugin_action_links_' . plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ), array( $this, 'plugin_action_links' ) );
3058
3059
		if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
3060
			// Artificially throw errors in certain whitelisted cases during plugin activation
3061
			add_action( 'activate_plugin', array( $this, 'throw_error_on_activate_plugin' ) );
3062
3063
			// Kick off synchronization of user role when it changes
3064
			add_action( 'set_user_role', array( $this, 'user_role_change' ) );
3065
		}
3066
3067
		// Jetpack Manage Activation Screen from .com
3068
		Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
3069
3070
		// Add custom column in wp-admin/users.php to show whether user is linked.
3071
		add_filter( 'manage_users_columns',       array( $this, 'jetpack_icon_user_connected' ) );
3072
		add_action( 'manage_users_custom_column', array( $this, 'jetpack_show_user_connected_icon' ), 10, 3 );
3073
		add_action( 'admin_print_styles',         array( $this, 'jetpack_user_col_style' ) );
3074
	}
3075
3076
	function admin_body_class( $admin_body_class = '' ) {
3077
		$classes = explode( ' ', trim( $admin_body_class ) );
3078
3079
		$classes[] = self::is_active() ? 'jetpack-connected' : 'jetpack-disconnected';
3080
3081
		$admin_body_class = implode( ' ', array_unique( $classes ) );
3082
		return " $admin_body_class ";
3083
	}
3084
3085
	static function add_jetpack_pagestyles( $admin_body_class = '' ) {
3086
		return $admin_body_class . ' jetpack-pagestyles ';
3087
	}
3088
3089
	function prepare_connect_notice() {
3090
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
3091
3092
		add_action( 'admin_notices', array( $this, 'admin_connect_notice' ) );
3093
3094
		if ( Jetpack::state( 'network_nag' ) )
3095
			add_action( 'network_admin_notices', array( $this, 'network_connect_notice' ) );
3096
	}
3097
	/**
3098
	 * Call this function if you want the Big Jetpack Manage Notice to show up.
3099
	 *
3100
	 * @return null
3101
	 */
3102
	function prepare_manage_jetpack_notice() {
3103
3104
		add_action( 'admin_print_styles', array( $this, 'admin_banner_styles' ) );
3105
		add_action( 'admin_notices', array( $this, 'admin_jetpack_manage_notice' ) );
3106
	}
3107
3108
	function manage_activate_screen() {
3109
		include ( JETPACK__PLUGIN_DIR . 'modules/manage/activate-admin.php' );
3110
	}
3111
	/**
3112
	 * Sometimes a plugin can activate without causing errors, but it will cause errors on the next page load.
3113
	 * This function artificially throws errors for such cases (whitelisted).
3114
	 *
3115
	 * @param string $plugin The activated plugin.
3116
	 */
3117
	function throw_error_on_activate_plugin( $plugin ) {
3118
		$active_modules = Jetpack::get_active_modules();
3119
3120
		// The Shortlinks module and the Stats plugin conflict, but won't cause errors on activation because of some function_exists() checks.
3121
		if ( function_exists( 'stats_get_api_key' ) && in_array( 'shortlinks', $active_modules ) ) {
3122
			$throw = false;
3123
3124
			// Try and make sure it really was the stats plugin
3125
			if ( ! class_exists( 'ReflectionFunction' ) ) {
3126
				if ( 'stats.php' == basename( $plugin ) ) {
3127
					$throw = true;
3128
				}
3129
			} else {
3130
				$reflection = new ReflectionFunction( 'stats_get_api_key' );
3131
				if ( basename( $plugin ) == basename( $reflection->getFileName() ) ) {
3132
					$throw = true;
3133
				}
3134
			}
3135
3136
			if ( $throw ) {
3137
				trigger_error( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), 'WordPress.com Stats' ), E_USER_ERROR );
3138
			}
3139
		}
3140
	}
3141
3142
	function intercept_plugin_error_scrape_init() {
3143
		add_action( 'check_admin_referer', array( $this, 'intercept_plugin_error_scrape' ), 10, 2 );
3144
	}
3145
3146
	function intercept_plugin_error_scrape( $action, $result ) {
3147
		if ( ! $result ) {
3148
			return;
3149
		}
3150
3151
		foreach ( $this->plugins_to_deactivate as $deactivate_me ) {
3152
			if ( "plugin-activation-error_{$deactivate_me[0]}" == $action ) {
3153
				Jetpack::bail_on_activation( sprintf( __( 'Jetpack contains the most recent version of the old &#8220;%1$s&#8221; plugin.', 'jetpack' ), $deactivate_me[1] ), false );
3154
			}
3155
		}
3156
	}
3157
3158
	function add_remote_request_handlers() {
3159
		add_action( 'wp_ajax_nopriv_jetpack_upload_file', array( $this, 'remote_request_handlers' ) );
3160
	}
3161
3162
	function remote_request_handlers() {
3163
		switch ( current_filter() ) {
3164
		case 'wp_ajax_nopriv_jetpack_upload_file' :
3165
			$response = $this->upload_handler();
3166
			break;
3167
		default :
0 ignored issues
show
Coding Style introduced by
There must be no space before the colon in a DEFAULT statement

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

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

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

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

Loading history...
3168
			$response = new Jetpack_Error( 'unknown_handler', 'Unknown Handler', 400 );
3169
			break;
3170
		}
3171
3172
		if ( ! $response ) {
3173
			$response = new Jetpack_Error( 'unknown_error', 'Unknown Error', 400 );
3174
		}
3175
3176
		if ( is_wp_error( $response ) ) {
3177
			$status_code       = $response->get_error_data();
3178
			$error             = $response->get_error_code();
3179
			$error_description = $response->get_error_message();
3180
3181
			if ( ! is_int( $status_code ) ) {
3182
				$status_code = 400;
3183
			}
3184
3185
			status_header( $status_code );
3186
			die( json_encode( (object) compact( 'error', 'error_description' ) ) );
0 ignored issues
show
Coding Style Compatibility introduced by
The method remote_request_handlers() 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...
3187
		}
3188
3189
		status_header( 200 );
3190
		if ( true === $response ) {
3191
			exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method remote_request_handlers() 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...
3192
		}
3193
3194
		die( json_encode( (object) $response ) );
0 ignored issues
show
Coding Style Compatibility introduced by
The method remote_request_handlers() 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...
3195
	}
3196
3197
	function upload_handler() {
3198
		if ( 'POST' !== strtoupper( $_SERVER['REQUEST_METHOD'] ) ) {
3199
			return new Jetpack_Error( 405, get_status_header_desc( 405 ), 405 );
3200
		}
3201
3202
		$user = wp_authenticate( '', '' );
3203
		if ( ! $user || is_wp_error( $user ) ) {
3204
			return new Jetpack_Error( 403, get_status_header_desc( 403 ), 403 );
3205
		}
3206
3207
		wp_set_current_user( $user->ID );
3208
3209
		if ( ! current_user_can( 'upload_files' ) ) {
3210
			return new Jetpack_Error( 'cannot_upload_files', 'User does not have permission to upload files', 403 );
3211
		}
3212
3213
		if ( empty( $_FILES ) ) {
3214
			return new Jetpack_Error( 'no_files_uploaded', 'No files were uploaded: nothing to process', 400 );
3215
		}
3216
3217
		foreach ( array_keys( $_FILES ) as $files_key ) {
3218
			if ( ! isset( $_POST["_jetpack_file_hmac_{$files_key}"] ) ) {
3219
				return new Jetpack_Error( 'missing_hmac', 'An HMAC for one or more files is missing', 400 );
3220
			}
3221
		}
3222
3223
		$media_keys = array_keys( $_FILES['media'] );
3224
3225
		$token = Jetpack_Data::get_access_token( get_current_user_id() );
3226
		if ( ! $token || is_wp_error( $token ) ) {
3227
			return new Jetpack_Error( 'unknown_token', 'Unknown Jetpack token', 403 );
3228
		}
3229
3230
		$uploaded_files = array();
3231
		$global_post    = isset( $GLOBALS['post'] ) ? $GLOBALS['post'] : null;
3232
		unset( $GLOBALS['post'] );
3233
		foreach ( $_FILES['media']['name'] as $index => $name ) {
3234
			$file = array();
3235
			foreach ( $media_keys as $media_key ) {
3236
				$file[$media_key] = $_FILES['media'][$media_key][$index];
3237
			}
3238
3239
			list( $hmac_provided, $salt ) = explode( ':', $_POST['_jetpack_file_hmac_media'][$index] );
3240
3241
			$hmac_file = hash_hmac_file( 'sha1', $file['tmp_name'], $salt . $token->secret );
3242
			if ( $hmac_provided !== $hmac_file ) {
3243
				$uploaded_files[$index] = (object) array( 'error' => 'invalid_hmac', 'error_description' => 'The corresponding HMAC for this file does not match' );
3244
				continue;
3245
			}
3246
3247
			$_FILES['.jetpack.upload.'] = $file;
3248
			$post_id = isset( $_POST['post_id'][$index] ) ? absint( $_POST['post_id'][$index] ) : 0;
3249
			if ( ! current_user_can( 'edit_post', $post_id ) ) {
3250
				$post_id = 0;
3251
			}
3252
			$attachment_id = media_handle_upload(
3253
				'.jetpack.upload.',
3254
				$post_id,
3255
				array(),
3256
				array(
3257
					'action' => 'jetpack_upload_file',
3258
				)
3259
			);
3260
3261
			if ( ! $attachment_id ) {
3262
				$uploaded_files[$index] = (object) array( 'error' => 'unknown', 'error_description' => 'An unknown problem occurred processing the upload on the Jetpack site' );
3263
			} elseif ( is_wp_error( $attachment_id ) ) {
3264
				$uploaded_files[$index] = (object) array( 'error' => 'attachment_' . $attachment_id->get_error_code(), 'error_description' => $attachment_id->get_error_message() );
3265
			} else {
3266
				$attachment = get_post( $attachment_id );
3267
				$uploaded_files[$index] = (object) array(
3268
					'id'   => (string) $attachment_id,
3269
					'file' => $attachment->post_title,
3270
					'url'  => wp_get_attachment_url( $attachment_id ),
3271
					'type' => $attachment->post_mime_type,
3272
					'meta' => wp_get_attachment_metadata( $attachment_id ),
3273
				);
3274
			}
3275
		}
3276
		if ( ! is_null( $global_post ) ) {
3277
			$GLOBALS['post'] = $global_post;
3278
		}
3279
3280
		return $uploaded_files;
3281
	}
3282
3283
	/**
3284
	 * Add help to the Jetpack page
3285
	 *
3286
	 * @since Jetpack (1.2.3)
3287
	 * @return false if not the Jetpack page
3288
	 */
3289
	function admin_help() {
3290
		$current_screen = get_current_screen();
3291
3292
		// Overview
3293
		$current_screen->add_help_tab(
3294
			array(
3295
				'id'		=> 'home',
3296
				'title'		=> __( 'Home', 'jetpack' ),
3297
				'content'	=>
3298
					'<p><strong>' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</strong></p>' .
3299
					'<p>' . __( 'Jetpack supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.', 'jetpack' ) . '</p>' .
3300
					'<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>',
3301
			)
3302
		);
3303
3304
		// Screen Content
3305
		if ( current_user_can( 'manage_options' ) ) {
3306
			$current_screen->add_help_tab(
3307
				array(
3308
					'id'		=> 'settings',
3309
					'title'		=> __( 'Settings', 'jetpack' ),
3310
					'content'	=>
3311
						'<p><strong>' . __( 'Jetpack by WordPress.com',                                              'jetpack' ) . '</strong></p>' .
3312
						'<p>' . __( 'You can activate or deactivate individual Jetpack modules to suit your needs.', 'jetpack' ) . '</p>' .
3313
						'<ol>' .
3314
							'<li>' . __( 'Each module has an Activate or Deactivate link so you can toggle one individually.',														'jetpack' ) . '</li>' .
3315
							'<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>' .
3316
						'</ol>' .
3317
						'<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>'
3318
				)
3319
			);
3320
		}
3321
3322
		// Help Sidebar
3323
		$current_screen->set_help_sidebar(
3324
			'<p><strong>' . __( 'For more information:', 'jetpack' ) . '</strong></p>' .
3325
			'<p><a href="https://jetpack.com/faq/" target="_blank">'     . __( 'Jetpack FAQ',     'jetpack' ) . '</a></p>' .
3326
			'<p><a href="https://jetpack.com/support/" target="_blank">' . __( 'Jetpack Support', 'jetpack' ) . '</a></p>' .
3327
			'<p><a href="' . Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) .'">' . __( 'Jetpack Debugging Center', 'jetpack' ) . '</a></p>'
3328
		);
3329
	}
3330
3331
	function admin_menu_css() {
3332
		wp_enqueue_style( 'jetpack-icons' );
3333
	}
3334
3335
	function admin_menu_order() {
3336
		return true;
3337
	}
3338
3339 View Code Duplication
	function jetpack_menu_order( $menu_order ) {
3340
		$jp_menu_order = array();
3341
3342
		foreach ( $menu_order as $index => $item ) {
3343
			if ( $item != 'jetpack' ) {
3344
				$jp_menu_order[] = $item;
3345
			}
3346
3347
			if ( $index == 0 ) {
3348
				$jp_menu_order[] = 'jetpack';
3349
			}
3350
		}
3351
3352
		return $jp_menu_order;
3353
	}
3354
3355
	function admin_head() {
3356 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3357
			/** This action is documented in class.jetpack-admin-page.php */
3358
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3359
	}
3360
3361
	function admin_banner_styles() {
3362
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3363
3364
		wp_enqueue_style( 'jetpack', plugins_url( "css/jetpack-banners{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-20121016' );
3365
		wp_style_add_data( 'jetpack', 'rtl', 'replace' );
3366
		wp_style_add_data( 'jetpack', 'suffix', $min );
3367
	}
3368
3369
	function admin_scripts() {
3370
		wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', JETPACK__PLUGIN_FILE ), array( 'jquery', 'wp-util' ), JETPACK__VERSION . '-20121111' );
3371
		wp_localize_script(
3372
			'jetpack-js',
3373
			'jetpackL10n',
3374
			array(
3375
				'ays_disconnect' => "This will deactivate all Jetpack modules.\nAre you sure you want to disconnect?",
3376
				'ays_unlink'     => "This will prevent user-specific modules such as Publicize, Notifications and Post By Email from working.\nAre you sure you want to unlink?",
3377
				'ays_dismiss'    => "This will deactivate Jetpack.\nAre you sure you want to deactivate Jetpack?",
3378
			)
3379
		);
3380
		add_action( 'admin_footer', array( $this, 'do_stats' ) );
3381
	}
3382
3383
	function plugin_action_links( $actions ) {
3384
3385
		$jetpack_home = array( 'jetpack-home' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack' ), __( 'Jetpack', 'jetpack' ) ) );
3386
3387
		if( current_user_can( 'jetpack_manage_modules' ) && ( Jetpack::is_active() || Jetpack::is_development_mode() ) ) {
3388
			return array_merge(
3389
				$jetpack_home,
3390
				array( 'settings' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack_modules' ), __( 'Settings', 'jetpack' ) ) ),
3391
				array( 'support' => sprintf( '<a href="%s">%s</a>', Jetpack::admin_url( 'page=jetpack-debugger '), __( 'Support', 'jetpack' ) ) ),
3392
				$actions
3393
				);
3394
			}
3395
3396
		return array_merge( $jetpack_home, $actions );
3397
	}
3398
3399
	function admin_connect_notice() {
3400
		// Don't show the connect notice anywhere but the plugins.php after activating
3401
		$current = get_current_screen();
3402
		if ( 'plugins' !== $current->parent_base )
3403
			return;
3404
3405
		if ( ! current_user_can( 'jetpack_connect' ) )
3406
			return;
3407
3408
		$dismiss_and_deactivate_url = wp_nonce_url( Jetpack::admin_url( '?page=jetpack&jetpack-notice=dismiss' ), 'jetpack-deactivate' );
3409
		?>
3410
		<div id="message" class="updated jp-banner">
3411
			<a href="<?php echo esc_url( $dismiss_and_deactivate_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3412
			<?php if ( in_array( Jetpack_Options::get_option( 'activated' ) , array( 1, 2, 3 ) ) ) : ?>
3413
					<div class="jp-banner__description-container">
3414
						<h2 class="jp-banner__header"><?php _e( 'Your Jetpack is almost ready!', 'jetpack' ); ?></h2>
3415
						<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>
3416
						<p class="jp-banner__button-container">
3417
							<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>
3418
							<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>
3419
						</p>
3420
					</div>
3421 View Code Duplication
			<?php else : ?>
3422
				<div class="jp-banner__content">
3423
					<h2><?php _e( 'Jetpack is installed!', 'jetpack' ) ?></h2>
3424
					<p><?php _e( 'It\'s ready to bring awesome, WordPress.com cloud-powered features to your site.', 'jetpack' ) ?></p>
3425
				</div>
3426
				<div class="jp-banner__action-container">
3427
					<a href="<?php echo Jetpack::admin_url() ?>" class="jp-banner__button" id="wpcom-connect"><?php _e( 'Learn More', 'jetpack' ); ?></a>
3428
				</div>
3429
			<?php endif; ?>
3430
		</div>
3431
3432
		<?php
3433
	}
3434
3435
	/**
3436
	 * This is the first banner
3437
	 * It should be visible only to user that can update the option
3438
	 * Are not connected
3439
	 *
3440
	 * @return null
3441
	 */
3442
	function admin_jetpack_manage_notice() {
3443
		$screen = get_current_screen();
3444
3445
		// Don't show the connect notice on the jetpack settings page.
3446
		if ( ! in_array( $screen->base, array( 'dashboard' ) ) || $screen->is_network || $screen->action )
3447
			return;
3448
3449
		// Only show it if don't have the managment option set.
3450
		// And not dismissed it already.
3451
		if ( ! $this->can_display_jetpack_manage_notice() || Jetpack_Options::get_option( 'dismissed_manage_banner' ) ) {
3452
			return;
3453
		}
3454
3455
		$opt_out_url = $this->opt_out_jetpack_manage_url();
3456
		$opt_in_url  = $this->opt_in_jetpack_manage_url();
3457
		/**
3458
		 * I think it would be great to have different wordsing depending on where you are
3459
		 * for example if we show the notice on dashboard and a different one if we show it on Plugins screen
3460
		 * etc..
3461
		 */
3462
3463
		?>
3464
		<div id="message" class="updated jp-banner">
3465
				<a href="<?php echo esc_url( $opt_out_url ); ?>" class="notice-dismiss" title="<?php esc_attr_e( 'Dismiss this notice', 'jetpack' ); ?>"></a>
3466
				<div class="jp-banner__description-container">
3467
					<h2 class="jp-banner__header"><?php esc_html_e( 'Jetpack Centralized Site Management', 'jetpack' ); ?></h2>
3468
					<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>
3469
					<p class="jp-banner__button-container">
3470
						<a href="<?php echo esc_url( $opt_in_url ); ?>" class="button button-primary" id="wpcom-connect"><?php _e( 'Activate Jetpack Manage', 'jetpack' ); ?></a>
3471
						<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>
3472
					</p>
3473
				</div>
3474
		</div>
3475
		<?php
3476
	}
3477
3478
	/**
3479
	 * Returns the url that the user clicks to remove the notice for the big banner
3480
	 * @return (string)
3481
	 */
3482
	function opt_out_jetpack_manage_url() {
3483
		$referer = '&_wp_http_referer=' . add_query_arg( '_wp_http_referer', null );
3484
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-out' . $referer ), 'jetpack_manage_banner_opt_out' );
3485
	}
3486
	/**
3487
	 * Returns the url that the user clicks to opt in to Jetpack Manage
3488
	 * @return (string)
3489
	 */
3490
	function opt_in_jetpack_manage_url() {
3491
		return wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=jetpack-manage-opt-in' ), 'jetpack_manage_banner_opt_in' );
3492
	}
3493
3494
	function opt_in_jetpack_manage_notice() {
3495
		?>
3496
		<div class="wrap">
3497
			<div id="message" class="jetpack-message is-opt-in">
3498
				<?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' ); ?>
3499
			</div>
3500
		</div>
3501
		<?php
3502
3503
	}
3504
	/**
3505
	 * Determines whether to show the notice of not true = display notice
3506
	 * @return (bool)
3507
	 */
3508
	function can_display_jetpack_manage_notice() {
3509
		// never display the notice to users that can't do anything about it anyways
3510
		if( ! current_user_can( 'jetpack_manage_modules' ) )
3511
			return false;
3512
3513
		// don't display if we are in development more
3514
		if( Jetpack::is_development_mode() ) {
3515
			return false;
3516
		}
3517
		// don't display if the site is private
3518
		if(  ! Jetpack_Options::get_option( 'public' ) )
3519
			return false;
3520
3521
		/**
3522
		 * Should the Jetpack Remote Site Management notice be displayed.
3523
		 *
3524
		 * @since 3.3.0
3525
		 *
3526
		 * @param bool ! self::is_module_active( 'manage' ) Is the Manage module inactive.
3527
		 */
3528
		return apply_filters( 'can_display_jetpack_manage_notice', ! self::is_module_active( 'manage' ) );
3529
	}
3530
3531
	function network_connect_notice() {
3532
		?>
3533
		<div id="message" class="updated jetpack-message">
3534
			<div class="squeezer">
3535
				<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>
3536
			</div>
3537
		</div>
3538
		<?php
3539
	}
3540
3541
	/*
3542
	 * Registration flow:
3543
	 * 1 - ::admin_page_load() action=register
3544
	 * 2 - ::try_registration()
3545
	 * 3 - ::register()
3546
	 *     - Creates jetpack_register option containing two secrets and a timestamp
3547
	 *     - Calls https://jetpack.wordpress.com/jetpack.register/1/ with
3548
	 *       siteurl, home, gmt_offset, timezone_string, site_name, secret_1, secret_2, site_lang, timeout, stats_id
3549
	 *     - That request to jetpack.wordpress.com does not immediately respond.  It first makes a request BACK to this site's
3550
	 *       xmlrpc.php?for=jetpack: RPC method: jetpack.verifyRegistration, Parameters: secret_1
3551
	 *     - The XML-RPC request verifies secret_1, deletes both secrets and responds with: secret_2
3552
	 *     - https://jetpack.wordpress.com/jetpack.register/1/ verifies that XML-RPC response (secret_2) then finally responds itself with
3553
	 *       jetpack_id, jetpack_secret, jetpack_public
3554
	 *     - ::register() then stores jetpack_options: id => jetpack_id, blog_token => jetpack_secret
3555
	 * 4 - redirect to https://wordpress.com/start/jetpack-connect
3556
	 * 5 - user logs in with WP.com account
3557
	 * 6 - remote request to this site's xmlrpc.php with action remoteAuthorize, Jetpack_XMLRPC_Server->remote_authorize
3558
	 *		- Jetpack_Client_Server::authorize()
3559
	 *		- Jetpack_Client_Server::get_token()
3560
	 *		- GET https://jetpack.wordpress.com/jetpack.token/1/ with
3561
	 *        client_id, client_secret, grant_type, code, redirect_uri:action=authorize, state, scope, user_email, user_login
3562
	 *			- which responds with access_token, token_type, scope
3563
	 *		- Jetpack_Client_Server::authorize() stores jetpack_options: user_token => access_token.$user_id
3564
	 *		- Jetpack::activate_default_modules()
3565
	 *     		- Deactivates deprecated plugins
3566
	 *     		- Activates all default modules
3567
	 *		- Responds with either error, or 'connected' for new connection, or 'linked' for additional linked users
3568
	 * 7 - For a new connection, user selects a Jetpack plan on wordpress.com
3569
	 * 8 - User is redirected back to wp-admin/index.php?page=jetpack with state:message=authorized
3570
	 *     Done!
3571
	 */
3572
3573
	/**
3574
	 * Handles the page load events for the Jetpack admin page
3575
	 */
3576
	function admin_page_load() {
3577
		$error = false;
3578
3579
		// Make sure we have the right body class to hook stylings for subpages off of.
3580
		add_filter( 'admin_body_class', array( __CLASS__, 'add_jetpack_pagestyles' ) );
3581
3582
		if ( ! empty( $_GET['jetpack_restate'] ) ) {
3583
			// Should only be used in intermediate redirects to preserve state across redirects
3584
			Jetpack::restate();
3585
		}
3586
3587
		if ( isset( $_GET['connect_url_redirect'] ) ) {
3588
			// User clicked in the iframe to link their accounts
3589
			if ( ! Jetpack::is_user_connected() ) {
3590
				$connect_url = $this->build_connect_url( true, false, 'iframe' );
3591
				if ( isset( $_GET['notes_iframe'] ) )
3592
					$connect_url .= '&notes_iframe';
3593
				wp_redirect( $connect_url );
3594
				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...
3595
			} else {
3596
				if ( ! isset( $_GET['calypso_env'] ) ) {
3597
					Jetpack::state( 'message', 'already_authorized' );
3598
					wp_safe_redirect( Jetpack::admin_url() );
3599
				} else {
3600
					$connect_url = $this->build_connect_url( true, false, 'iframe' );
3601
					$connect_url .= '&already_authorized=true';
3602
					wp_redirect( $connect_url );
3603
				}
3604
			}
3605
		}
3606
3607
3608
		if ( isset( $_GET['action'] ) ) {
3609
			switch ( $_GET['action'] ) {
3610
			case 'authorize':
3611
				if ( Jetpack::is_active() && Jetpack::is_user_connected() ) {
3612
					Jetpack::state( 'message', 'already_authorized' );
3613
					wp_safe_redirect( Jetpack::admin_url() );
3614
					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...
3615
				}
3616
				Jetpack::log( 'authorize' );
3617
				$client_server = new Jetpack_Client_Server;
3618
				$client_server->client_authorize();
3619
				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...
3620
			case 'register' :
3621
				if ( ! current_user_can( 'jetpack_connect' ) ) {
3622
					$error = 'cheatin';
3623
					break;
3624
				}
3625
				check_admin_referer( 'jetpack-register' );
3626
				Jetpack::log( 'register' );
3627
				Jetpack::maybe_set_version_option();
3628
				$registered = Jetpack::try_registration();
3629
				if ( is_wp_error( $registered ) ) {
3630
					$error = $registered->get_error_code();
3631
					Jetpack::state( 'error_description', $error );
3632
					Jetpack::state( 'error_description', $registered->get_error_message() );
3633
					break;
3634
				}
3635
3636
				$from = isset( $_GET['from'] ) ? $_GET['from'] : false;
3637
3638
				wp_redirect( $this->build_connect_url( true, false, $from ) );
3639
				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...
3640
			case 'activate' :
3641
				if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
3642
					$error = 'cheatin';
3643
					break;
3644
				}
3645
3646
				$module = stripslashes( $_GET['module'] );
3647
				check_admin_referer( "jetpack_activate-$module" );
3648
				Jetpack::log( 'activate', $module );
3649
				Jetpack::activate_module( $module );
3650
				// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
3651
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3652
				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...
3653
			case 'activate_default_modules' :
3654
				check_admin_referer( 'activate_default_modules' );
3655
				Jetpack::log( 'activate_default_modules' );
3656
				Jetpack::restate();
3657
				$min_version   = isset( $_GET['min_version'] ) ? $_GET['min_version'] : false;
3658
				$max_version   = isset( $_GET['max_version'] ) ? $_GET['max_version'] : false;
3659
				$other_modules = isset( $_GET['other_modules'] ) && is_array( $_GET['other_modules'] ) ? $_GET['other_modules'] : array();
3660
				Jetpack::activate_default_modules( $min_version, $max_version, $other_modules );
3661
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3662
				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...
3663
			case 'disconnect' :
3664
				if ( ! current_user_can( 'jetpack_disconnect' ) ) {
3665
					$error = 'cheatin';
3666
					break;
3667
				}
3668
3669
				check_admin_referer( 'jetpack-disconnect' );
3670
				Jetpack::log( 'disconnect' );
3671
				Jetpack::disconnect();
3672
				wp_safe_redirect( Jetpack::admin_url( 'disconnected=true' ) );
3673
				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...
3674
			case 'reconnect' :
3675
				if ( ! current_user_can( 'jetpack_reconnect' ) ) {
3676
					$error = 'cheatin';
3677
					break;
3678
				}
3679
3680
				check_admin_referer( 'jetpack-reconnect' );
3681
				Jetpack::log( 'reconnect' );
3682
				$this->disconnect();
3683
				wp_redirect( $this->build_connect_url( true, false, 'reconnect' ) );
3684
				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...
3685 View Code Duplication
			case 'deactivate' :
3686
				if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
3687
					$error = 'cheatin';
3688
					break;
3689
				}
3690
3691
				$modules = stripslashes( $_GET['module'] );
3692
				check_admin_referer( "jetpack_deactivate-$modules" );
3693
				foreach ( explode( ',', $modules ) as $module ) {
3694
					Jetpack::log( 'deactivate', $module );
3695
					Jetpack::deactivate_module( $module );
3696
					Jetpack::state( 'message', 'module_deactivated' );
3697
				}
3698
				Jetpack::state( 'module', $modules );
3699
				wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
3700
				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...
3701
			case 'unlink' :
3702
				$redirect = isset( $_GET['redirect'] ) ? $_GET['redirect'] : '';
3703
				check_admin_referer( 'jetpack-unlink' );
3704
				Jetpack::log( 'unlink' );
3705
				$this->unlink_user();
3706
				Jetpack::state( 'message', 'unlinked' );
3707
				if ( 'sub-unlink' == $redirect ) {
3708
					wp_safe_redirect( admin_url() );
3709
				} else {
3710
					wp_safe_redirect( Jetpack::admin_url( array( 'page' => $redirect ) ) );
3711
				}
3712
				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...
3713
			default:
3714
				/**
3715
				 * Fires when a Jetpack admin page is loaded with an unrecognized parameter.
3716
				 *
3717
				 * @since 2.6.0
3718
				 *
3719
				 * @param string sanitize_key( $_GET['action'] ) Unrecognized URL parameter.
3720
				 */
3721
				do_action( 'jetpack_unrecognized_action', sanitize_key( $_GET['action'] ) );
3722
			}
3723
		}
3724
3725
		if ( ! $error = $error ? $error : Jetpack::state( 'error' ) ) {
3726
			self::activate_new_modules( true );
3727
		}
3728
3729
		$message_code = Jetpack::state( 'message' );
3730
		if ( Jetpack::state( 'optin-manage' ) ) {
3731
			$activated_manage = $message_code;
3732
			$message_code = 'jetpack-manage';
3733
		}
3734
3735
		switch ( $message_code ) {
3736
		case 'jetpack-manage':
3737
			$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>';
3738
			if ( $activated_manage ) {
0 ignored issues
show
Bug introduced by
The variable $activated_manage does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
3739
				$this->message .= '<br /><strong>' . __( 'Manage has been activated for you!', 'jetpack'  ) . '</strong>';
3740
			}
3741
			break;
3742
3743
		}
3744
3745
		$deactivated_plugins = Jetpack::state( 'deactivated_plugins' );
3746
3747
		if ( ! empty( $deactivated_plugins ) ) {
3748
			$deactivated_plugins = explode( ',', $deactivated_plugins );
3749
			$deactivated_titles  = array();
3750
			foreach ( $deactivated_plugins as $deactivated_plugin ) {
3751
				if ( ! isset( $this->plugins_to_deactivate[$deactivated_plugin] ) ) {
3752
					continue;
3753
				}
3754
3755
				$deactivated_titles[] = '<strong>' . str_replace( ' ', '&nbsp;', $this->plugins_to_deactivate[$deactivated_plugin][1] ) . '</strong>';
3756
			}
3757
3758
			if ( $deactivated_titles ) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $deactivated_titles of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
3759
				if ( $this->message ) {
3760
					$this->message .= "<br /><br />\n";
3761
				}
3762
3763
				$this->message .= wp_sprintf(
3764
					_n(
3765
						'Jetpack contains the most recent version of the old %l plugin.',
3766
						'Jetpack contains the most recent versions of the old %l plugins.',
3767
						count( $deactivated_titles ),
3768
						'jetpack'
3769
					),
3770
					$deactivated_titles
3771
				);
3772
3773
				$this->message .= "<br />\n";
3774
3775
				$this->message .= _n(
3776
					'The old version has been deactivated and can be removed from your site.',
3777
					'The old versions have been deactivated and can be removed from your site.',
3778
					count( $deactivated_titles ),
3779
					'jetpack'
3780
				);
3781
			}
3782
		}
3783
3784
		$this->privacy_checks = Jetpack::state( 'privacy_checks' );
3785
3786
		if ( $this->message || $this->error || $this->privacy_checks || $this->can_display_jetpack_manage_notice() ) {
3787
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
3788
		}
3789
3790 View Code Duplication
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3791
			/**
3792
			 * Fires when a module configuration page is loaded.
3793
			 * The dynamic part of the hook is the configure parameter from the URL.
3794
			 *
3795
			 * @since 1.1.0
3796
			 */
3797
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3798
		}
3799
3800
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
3801
	}
3802
3803
	function admin_notices() {
3804
3805
		if ( $this->error ) {
3806
?>
3807
<div id="message" class="jetpack-message jetpack-err">
3808
	<div class="squeezer">
3809
		<h2><?php echo wp_kses( $this->error, array( 'a' => array( 'href' => array() ), 'small' => true, 'code' => true, 'strong' => true, 'br' => true, 'b' => true ) ); ?></h2>
3810
<?php	if ( $desc = Jetpack::state( 'error_description' ) ) : ?>
3811
		<p><?php echo esc_html( stripslashes( $desc ) ); ?></p>
3812
<?php	endif; ?>
3813
	</div>
3814
</div>
3815
<?php
3816
		}
3817
3818
		if ( $this->message ) {
3819
?>
3820
<div id="message" class="jetpack-message">
3821
	<div class="squeezer">
3822
		<h2><?php echo wp_kses( $this->message, array( 'strong' => array(), 'a' => array( 'href' => true ), 'br' => true ) ); ?></h2>
3823
	</div>
3824
</div>
3825
<?php
3826
		}
3827
3828
		if ( $this->privacy_checks ) :
3829
			$module_names = $module_slugs = array();
3830
3831
			$privacy_checks = explode( ',', $this->privacy_checks );
3832
			$privacy_checks = array_filter( $privacy_checks, array( 'Jetpack', 'is_module' ) );
3833
			foreach ( $privacy_checks as $module_slug ) {
3834
				$module = Jetpack::get_module( $module_slug );
3835
				if ( ! $module ) {
3836
					continue;
3837
				}
3838
3839
				$module_slugs[] = $module_slug;
3840
				$module_names[] = "<strong>{$module['name']}</strong>";
3841
			}
3842
3843
			$module_slugs = join( ',', $module_slugs );
3844
?>
3845
<div id="message" class="jetpack-message jetpack-err">
3846
	<div class="squeezer">
3847
		<h2><strong><?php esc_html_e( 'Is this site private?', 'jetpack' ); ?></strong></h2><br />
3848
		<p><?php
3849
			echo wp_kses(
3850
				wptexturize(
3851
					wp_sprintf(
3852
						_nx(
3853
							"Like your site's RSS feeds, %l allows access to your posts and other content to third parties.",
3854
							"Like your site's RSS feeds, %l allow access to your posts and other content to third parties.",
3855
							count( $privacy_checks ),
3856
							'%l = list of Jetpack module/feature names',
3857
							'jetpack'
3858
						),
3859
						$module_names
3860
					)
3861
				),
3862
				array( 'strong' => true )
3863
			);
3864
3865
			echo "\n<br />\n";
3866
3867
			echo wp_kses(
3868
				sprintf(
3869
					_nx(
3870
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating this feature</a>.',
3871
						'If your site is not publicly accessible, consider <a href="%1$s" title="%2$s">deactivating these features</a>.',
3872
						count( $privacy_checks ),
3873
						'%1$s = deactivation URL, %2$s = "Deactivate {list of Jetpack module/feature names}',
3874
						'jetpack'
3875
					),
3876
					wp_nonce_url(
3877
						Jetpack::admin_url(
3878
							array(
3879
								'page'   => 'jetpack',
3880
								'action' => 'deactivate',
3881
								'module' => urlencode( $module_slugs ),
3882
							)
3883
						),
3884
						"jetpack_deactivate-$module_slugs"
3885
					),
3886
					esc_attr( wp_kses( wp_sprintf( _x( 'Deactivate %l', '%l = list of Jetpack module/feature names', 'jetpack' ), $module_names ), array() ) )
3887
				),
3888
				array( 'a' => array( 'href' => true, 'title' => true ) )
3889
			);
3890
		?></p>
3891
	</div>
3892
</div>
3893
<?php endif;
3894
	// only display the notice if the other stuff is not there
3895
	if( $this->can_display_jetpack_manage_notice() && !  $this->error && ! $this->message && ! $this->privacy_checks ) {
3896
		if( isset( $_GET['page'] ) && 'jetpack' != $_GET['page'] )
3897
			$this->opt_in_jetpack_manage_notice();
3898
		}
3899
	}
3900
3901
	/**
3902
	 * Record a stat for later output.  This will only currently output in the admin_footer.
3903
	 */
3904
	function stat( $group, $detail ) {
3905
		if ( ! isset( $this->stats[ $group ] ) )
3906
			$this->stats[ $group ] = array();
3907
		$this->stats[ $group ][] = $detail;
3908
	}
3909
3910
	/**
3911
	 * Load stats pixels. $group is auto-prefixed with "x_jetpack-"
3912
	 */
3913
	function do_stats( $method = '' ) {
3914
		if ( is_array( $this->stats ) && count( $this->stats ) ) {
3915
			foreach ( $this->stats as $group => $stats ) {
3916
				if ( is_array( $stats ) && count( $stats ) ) {
3917
					$args = array( "x_jetpack-{$group}" => implode( ',', $stats ) );
3918
					if ( 'server_side' === $method ) {
3919
						self::do_server_side_stat( $args );
3920
					} else {
3921
						echo '<img src="' . esc_url( self::build_stats_url( $args ) ) . '" width="1" height="1" style="display:none;" />';
3922
					}
3923
				}
3924
				unset( $this->stats[ $group ] );
3925
			}
3926
		}
3927
	}
3928
3929
	/**
3930
	 * Runs stats code for a one-off, server-side.
3931
	 *
3932
	 * @param $args array|string The arguments to append to the URL. Should include `x_jetpack-{$group}={$stats}` or whatever we want to store.
3933
	 *
3934
	 * @return bool If it worked.
3935
	 */
3936
	static function do_server_side_stat( $args ) {
3937
		$response = wp_remote_get( esc_url_raw( self::build_stats_url( $args ) ) );
3938
		if ( is_wp_error( $response ) )
3939
			return false;
3940
3941
		if ( 200 !== wp_remote_retrieve_response_code( $response ) )
3942
			return false;
3943
3944
		return true;
3945
	}
3946
3947
	/**
3948
	 * Builds the stats url.
3949
	 *
3950
	 * @param $args array|string The arguments to append to the URL.
3951
	 *
3952
	 * @return string The URL to be pinged.
3953
	 */
3954
	static function build_stats_url( $args ) {
3955
		$defaults = array(
3956
			'v'    => 'wpcom2',
3957
			'rand' => md5( mt_rand( 0, 999 ) . time() ),
3958
		);
3959
		$args     = wp_parse_args( $args, $defaults );
3960
		/**
3961
		 * Filter the URL used as the Stats tracking pixel.
3962
		 *
3963
		 * @since 2.3.2
3964
		 *
3965
		 * @param string $url Base URL used as the Stats tracking pixel.
3966
		 */
3967
		$base_url = apply_filters(
3968
			'jetpack_stats_base_url',
3969
			set_url_scheme( 'http://pixel.wp.com/g.gif' )
3970
		);
3971
		$url      = add_query_arg( $args, $base_url );
3972
		return $url;
3973
	}
3974
3975
	function translate_current_user_to_role() {
3976
		foreach ( $this->capability_translations as $role => $cap ) {
3977
			if ( current_user_can( $role ) || current_user_can( $cap ) ) {
3978
				return $role;
3979
			}
3980
		}
3981
3982
		return false;
3983
	}
3984
3985
	function translate_role_to_cap( $role ) {
3986
		if ( ! isset( $this->capability_translations[$role] ) ) {
3987
			return false;
3988
		}
3989
3990
		return $this->capability_translations[$role];
3991
	}
3992
3993
	function sign_role( $role ) {
3994
		if ( ! $user_id = (int) get_current_user_id() ) {
3995
			return false;
3996
		}
3997
3998
		$token = Jetpack_Data::get_access_token();
3999
		if ( ! $token || is_wp_error( $token ) ) {
4000
			return false;
4001
		}
4002
4003
		return $role . ':' . hash_hmac( 'md5', "{$role}|{$user_id}", $token->secret );
4004
	}
4005
4006
4007
	/**
4008
	 * Builds a URL to the Jetpack connection auth page
4009
	 *
4010
	 * @since 3.9.5
4011
	 *
4012
	 * @param bool $raw If true, URL will not be escaped.
4013
	 * @param bool|string $redirect If true, will redirect back to Jetpack wp-admin landing page after connection.
4014
	 *                              If string, will be a custom redirect.
4015
	 * @param bool|string $from If not false, adds 'from=$from' param to the connect URL.
4016
	 *
4017
	 * @return string Connect URL
4018
	 */
4019
	function build_connect_url( $raw = false, $redirect = false, $from = false ) {
4020
		if ( ! Jetpack_Options::get_option( 'blog_token' ) || ! Jetpack_Options::get_option( 'id' ) ) {
4021
			$url = Jetpack::nonce_url_no_esc( Jetpack::admin_url( 'action=register' ), 'jetpack-register' );
4022
			if( is_network_admin() ) {
4023
			    $url = add_query_arg( 'is_multisite', network_admin_url(
4024
			    'admin.php?page=jetpack-settings' ), $url );
4025
			}
4026
		} else {
4027
			if ( defined( 'JETPACK__GLOTPRESS_LOCALES_PATH' ) && include_once JETPACK__GLOTPRESS_LOCALES_PATH ) {
4028
				$gp_locale = GP_Locales::by_field( 'wp_locale', get_locale() );
4029
			}
4030
4031
			$role = $this->translate_current_user_to_role();
4032
			$signed_role = $this->sign_role( $role );
4033
4034
			$user = wp_get_current_user();
4035
4036
			$jetpack_admin_page = esc_url_raw( admin_url( 'admin.php?page=jetpack' ) );
4037
			$redirect = $redirect
4038
				? wp_validate_redirect( esc_url_raw( $redirect ), $jetpack_admin_page )
4039
				: $jetpack_admin_page;
4040
4041
			if( isset( $_REQUEST['is_multisite'] ) ) {
4042
				$redirect = Jetpack_Network::init()->get_url( 'network_admin_page' );
4043
			}
4044
4045
			$secrets = Jetpack::init()->generate_secrets( 'authorize' );
4046
			@list( $secret ) = explode( ':', $secrets );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
4047
			
4048
			$site_icon = ( function_exists( 'has_site_icon') && has_site_icon() )
4049
				? get_site_icon_url()
4050
				: false;
4051
4052
			$args = urlencode_deep(
4053
				array(
4054
					'response_type' => 'code',
4055
					'client_id'     => Jetpack_Options::get_option( 'id' ),
4056
					'redirect_uri'  => add_query_arg(
4057
						array(
4058
							'action'   => 'authorize',
4059
							'_wpnonce' => wp_create_nonce( "jetpack-authorize_{$role}_{$redirect}" ),
4060
							'redirect' => urlencode( $redirect ),
4061
						),
4062
						esc_url( admin_url( 'admin.php?page=jetpack' ) )
4063
					),
4064
					'state'         => $user->ID,
4065
					'scope'         => $signed_role,
4066
					'user_email'    => $user->user_email,
4067
					'user_login'    => $user->user_login,
4068
					'is_active'     => Jetpack::is_active(),
4069
					'jp_version'    => JETPACK__VERSION,
4070
					'auth_type'     => 'calypso',
4071
					'secret'        => $secret,
4072
					'locale'        => isset( $gp_locale->slug ) ? $gp_locale->slug : '',
0 ignored issues
show
Bug introduced by
The variable $gp_locale does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
4073
					'blogname'      => get_option( 'blogname' ),
4074
					'site_url'      => site_url(),
4075
					'home_url'      => home_url(),
4076
					'site_icon'     => $site_icon,
4077
				)
4078
			);
4079
4080
			$url = add_query_arg( $args, Jetpack::api_url( 'authorize' ) );
4081
		}
4082
4083
		if ( $from ) {
4084
			$url = add_query_arg( 'from', $from, $url );
4085
		}
4086
4087
		if ( isset( $_GET['calypso_env'] ) ) {
4088
			$url = add_query_arg( 'calypso_env', sanitize_key( $_GET['calypso_env'] ), $url );
4089
		}
4090
4091
		return $raw ? $url : esc_url( $url );
4092
	}
4093
4094
	function build_reconnect_url( $raw = false ) {
4095
		$url = wp_nonce_url( Jetpack::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );
4096
		return $raw ? $url : esc_url( $url );
4097
	}
4098
4099
	public static function admin_url( $args = null ) {
4100
		$args = wp_parse_args( $args, array( 'page' => 'jetpack' ) );
4101
		$url = add_query_arg( $args, admin_url( 'admin.php' ) );
4102
		return $url;
4103
	}
4104
4105
	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4106
		$actionurl = str_replace( '&amp;', '&', $actionurl );
4107
		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
4108
	}
4109
4110
	function dismiss_jetpack_notice() {
4111
4112
		if ( ! isset( $_GET['jetpack-notice'] ) ) {
4113
			return;
4114
		}
4115
4116
		switch( $_GET['jetpack-notice'] ) {
4117
			case 'dismiss':
4118
				if ( check_admin_referer( 'jetpack-deactivate' ) && ! is_plugin_active_for_network( plugin_basename( JETPACK__PLUGIN_DIR . 'jetpack.php' ) ) ) {
4119
4120
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
4121
					deactivate_plugins( JETPACK__PLUGIN_DIR . 'jetpack.php', false, false );
4122
					wp_safe_redirect( admin_url() . 'plugins.php?deactivate=true&plugin_status=all&paged=1&s=' );
4123
				}
4124
				break;
4125 View Code Duplication
			case 'jetpack-manage-opt-out':
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

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

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

    doSomethingElse(); //wrong
    break;

}

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

Loading history...
4126
4127
				if ( check_admin_referer( 'jetpack_manage_banner_opt_out' ) ) {
4128
					// Don't show the banner again
4129
4130
					Jetpack_Options::update_option( 'dismissed_manage_banner', true );
4131
					// redirect back to the page that had the notice
4132
					if ( wp_get_referer() ) {
4133
						wp_safe_redirect( wp_get_referer() );
4134
					} else {
4135
						// Take me to Jetpack
4136
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4137
					}
4138
				}
4139
				break;
4140 View Code Duplication
			case 'jetpack-protect-multisite-opt-out':
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

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

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

    doSomethingElse(); //wrong
    break;

}

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

Loading history...
4141
4142
				if ( check_admin_referer( 'jetpack_protect_multisite_banner_opt_out' ) ) {
4143
					// Don't show the banner again
4144
4145
					update_site_option( 'jetpack_dismissed_protect_multisite_banner', true );
4146
					// redirect back to the page that had the notice
4147
					if ( wp_get_referer() ) {
4148
						wp_safe_redirect( wp_get_referer() );
4149
					} else {
4150
						// Take me to Jetpack
4151
						wp_safe_redirect( admin_url( 'admin.php?page=jetpack' ) );
4152
					}
4153
				}
4154
				break;
4155
			case 'jetpack-manage-opt-in':
4156
				if ( check_admin_referer( 'jetpack_manage_banner_opt_in' ) ) {
4157
					// This makes sure that we are redirect to jetpack home so that we can see the Success Message.
4158
4159
					$redirection_url = Jetpack::admin_url();
4160
					remove_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4161
4162
					// Don't redirect form the Jetpack Setting Page
4163
					$referer_parsed = parse_url ( wp_get_referer() );
4164
					// check that we do have a wp_get_referer and the query paramater is set orderwise go to the Jetpack Home
4165
					if ( isset( $referer_parsed['query'] ) && false !== strpos( $referer_parsed['query'], 'page=jetpack_modules' ) ) {
4166
						// Take the user to Jetpack home except when on the setting page
4167
						$redirection_url = wp_get_referer();
4168
						add_action( 'jetpack_pre_activate_module',   array( Jetpack_Admin::init(), 'fix_redirect' ) );
4169
					}
4170
					// Also update the JSON API FULL MANAGEMENT Option
4171
					Jetpack::activate_module( 'manage', false, false );
4172
4173
					// Special Message when option in.
4174
					Jetpack::state( 'optin-manage', 'true' );
4175
					// Activate the Module if not activated already
4176
4177
					// Redirect properly
4178
					wp_safe_redirect( $redirection_url );
4179
4180
				}
4181
				break;
4182
		}
4183
	}
4184
4185
	function debugger_page() {
4186
		nocache_headers();
4187
		if ( ! current_user_can( 'manage_options' ) ) {
4188
			die( '-1' );
0 ignored issues
show
Coding Style Compatibility introduced by
The method debugger_page() 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...
4189
		}
4190
		Jetpack_Debugger::jetpack_debug_display_handler();
4191
		exit;
0 ignored issues
show
Coding Style Compatibility introduced by
The method debugger_page() 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...
4192
	}
4193
4194
	public static function admin_screen_configure_module( $module_id ) {
4195
4196
		// User that doesn't have 'jetpack_configure_modules' will never end up here since Jetpack Landing Page woun't let them.
4197
		if ( ! in_array( $module_id, Jetpack::get_active_modules() ) && current_user_can( 'manage_options' ) ) {
4198
			if ( has_action( 'display_activate_module_setting_' . $module_id ) ) {
4199
				/**
4200
				 * Fires to diplay a custom module activation screen.
4201
				 *
4202
				 * To add a module actionation screen use Jetpack::module_configuration_activation_screen method.
4203
				 * Example: Jetpack::module_configuration_activation_screen( 'manage', array( $this, 'manage_activate_screen' ) );
4204
				 *
4205
				 * @module manage
4206
				 *
4207
				 * @since 3.8.0
4208
				 *
4209
				 * @param int $module_id Module ID.
4210
				 */
4211
				do_action( 'display_activate_module_setting_' . $module_id );
4212
			} else {
4213
				self::display_activate_module_link( $module_id );
4214
			}
4215
4216
			return false;
4217
		} ?>
4218
4219
		<div id="jp-settings-screen" style="position: relative">
4220
			<h3>
4221
			<?php
4222
				$module = Jetpack::get_module( $module_id );
4223
				echo '<a href="' . Jetpack::admin_url( 'page=jetpack_modules' ) . '">' . __( 'Jetpack by WordPress.com', 'jetpack' ) . '</a> &rarr; ';
4224
				printf( __( 'Configure %s', 'jetpack' ), $module['name'] );
4225
			?>
4226
			</h3>
4227
			<?php
4228
				/**
4229
				 * Fires within the displayed message when a feature configuation is updated.
4230
				 *
4231
				 * @since 3.4.0
4232
				 *
4233
				 * @param int $module_id Module ID.
4234
				 */
4235
				do_action( 'jetpack_notices_update_settings', $module_id );
4236
				/**
4237
				 * Fires when a feature configuation screen is loaded.
4238
				 * The dynamic part of the hook, $module_id, is the module ID.
4239
				 *
4240
				 * @since 1.1.0
4241
				 */
4242
				do_action( 'jetpack_module_configuration_screen_' . $module_id );
4243
			?>
4244
		</div><?php
4245
	}
4246
4247
	/**
4248
	 * Display link to activate the module to see the settings screen.
4249
	 * @param  string $module_id
4250
	 * @return null
4251
	 */
4252
	public static function display_activate_module_link( $module_id ) {
4253
4254
		$info =  Jetpack::get_module( $module_id );
4255
		$extra = '';
4256
		$activate_url = wp_nonce_url(
4257
				Jetpack::admin_url(
4258
					array(
4259
						'page'   => 'jetpack',
4260
						'action' => 'activate',
4261
						'module' => $module_id,
4262
					)
4263
				),
4264
				"jetpack_activate-$module_id"
4265
			);
4266
4267
		?>
4268
4269
		<div class="wrap configure-module">
4270
			<div id="jp-settings-screen">
4271
				<?php
4272
				if ( $module_id == 'json-api' ) {
4273
4274
					$info['name'] = esc_html__( 'Activate Site Management and JSON API', 'jetpack' );
4275
4276
					$activate_url = Jetpack::init()->opt_in_jetpack_manage_url();
4277
4278
					$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' );
4279
4280
					// $extra = __( 'To use Site Management, you need to first activate JSON API to allow remote management of your site. ', 'jetpack' );
4281
				} ?>
4282
4283
				<h3><?php echo esc_html( $info['name'] ); ?></h3>
4284
				<div class="narrow">
4285
					<p><?php echo  $info['description']; ?></p>
4286
					<?php if( $extra ) { ?>
4287
					<p><?php echo esc_html( $extra ); ?></p>
4288
					<?php } ?>
4289
					<p>
4290
						<?php
4291
						if( wp_get_referer() ) {
4292
							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() );
4293
						} else {
4294
							printf( __( '<a class="button-primary" href="%s">Activate Now</a>', 'jetpack' ) , $activate_url  );
4295
						} ?>
4296
					</p>
4297
				</div>
4298
4299
			</div>
4300
		</div>
4301
4302
		<?php
4303
	}
4304
4305
	public static function sort_modules( $a, $b ) {
4306
		if ( $a['sort'] == $b['sort'] )
4307
			return 0;
4308
4309
		return ( $a['sort'] < $b['sort'] ) ? -1 : 1;
4310
	}
4311
4312
	function ajax_recheck_ssl() {
4313
		check_ajax_referer( 'recheck-ssl', 'ajax-nonce' );
4314
		$result = Jetpack::permit_ssl( true );
4315
		wp_send_json( array(
4316
			'enabled' => $result,
4317
			'message' => get_transient( 'jetpack_https_test_message' )
4318
		) );
4319
	}
4320
4321
/* Client API */
4322
4323
	/**
4324
	 * Returns the requested Jetpack API URL
4325
	 *
4326
	 * @return string
4327
	 */
4328
	public static function api_url( $relative_url ) {
4329
		return trailingslashit( JETPACK__API_BASE . $relative_url  ) . JETPACK__API_VERSION . '/';
4330
	}
4331
4332
	/**
4333
	 * Some hosts disable the OpenSSL extension and so cannot make outgoing HTTPS requsets
4334
	 */
4335
	public static function fix_url_for_bad_hosts( $url ) {
4336
		if ( 0 !== strpos( $url, 'https://' ) ) {
4337
			return $url;
4338
		}
4339
4340
		switch ( JETPACK_CLIENT__HTTPS ) {
4341
			case 'ALWAYS' :
4342
				return $url;
4343
			case 'NEVER' :
4344
				return set_url_scheme( $url, 'http' );
4345
			// default : case 'AUTO' :
4346
		}
4347
4348
		// we now return the unmodified SSL URL by default, as a security precaution
4349
		return $url;
4350
	}
4351
4352
	/**
4353
	 * Checks to see if the URL is using SSL to connect with Jetpack
4354
	 *
4355
	 * @since 2.3.3
4356
	 * @return boolean
4357
	 */
4358
	public static function permit_ssl( $force_recheck = false ) {
4359
		// Do some fancy tests to see if ssl is being supported
4360
		if ( $force_recheck || false === ( $ssl = get_transient( 'jetpack_https_test' ) ) ) {
4361
			$message = '';
4362
			if ( 'https' !== substr( JETPACK__API_BASE, 0, 5 ) ) {
4363
				$ssl = 0;
4364
			} else {
4365
				switch ( JETPACK_CLIENT__HTTPS ) {
4366
					case 'NEVER':
4367
						$ssl = 0;
4368
						$message = __( 'JETPACK_CLIENT__HTTPS is set to NEVER', 'jetpack' );
4369
						break;
4370
					case 'ALWAYS':
4371
					case 'AUTO':
4372
					default:
4373
						$ssl = 1;
4374
						break;
4375
				}
4376
4377
				// If it's not 'NEVER', test to see
4378
				if ( $ssl ) {
4379
					if ( ! wp_http_supports( array( 'ssl' => true ) ) ) {
4380
						$ssl = 0;
4381
						$message = __( 'WordPress reports no SSL support', 'jetpack' );
4382
					} else {
4383
						$response = wp_remote_get( JETPACK__API_BASE . 'test/1/' );
4384
						if ( is_wp_error( $response ) ) {
4385
							$ssl = 0;
4386
							$message = __( 'WordPress reports no SSL support', 'jetpack' );
4387
						} elseif ( 'OK' !== wp_remote_retrieve_body( $response ) ) {
4388
							$ssl = 0;
4389
							$message = __( 'Response was not OK: ', 'jetpack' ) . wp_remote_retrieve_body( $response );
4390
						}
4391
					}
4392
				}
4393
			}
4394
			set_transient( 'jetpack_https_test', $ssl, DAY_IN_SECONDS );
4395
			set_transient( 'jetpack_https_test_message', $message, DAY_IN_SECONDS );
4396
		}
4397
4398
		return (bool) $ssl;
4399
	}
4400
4401
	/*
4402
	 * Displays an admin_notice, alerting the user to their JETPACK_CLIENT__HTTPS constant being 'AUTO' but SSL isn't working.
4403
	 */
4404
	public function alert_auto_ssl_fail() {
4405
		if ( ! current_user_can( 'manage_options' ) )
4406
			return;
4407
4408
		$ajax_nonce = wp_create_nonce( 'recheck-ssl' );
4409
		?>
4410
4411
		<div id="jetpack-ssl-warning" class="error jp-identity-crisis">
4412
			<div class="jp-banner__content">
4413
				<h2><?php _e( 'Outbound HTTPS not working', 'jetpack' ); ?></h2>
4414
				<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>
4415
				<p>
4416
					<?php _e( 'Jetpack will re-test for HTTPS support once a day, but you can click here to try again immediately: ', 'jetpack' ); ?>
4417
					<a href="#" id="jetpack-recheck-ssl-button"><?php _e( 'Try again', 'jetpack' ); ?></a>
4418
					<span id="jetpack-recheck-ssl-output"><?php echo get_transient( 'jetpack_https_test_message' ); ?></span>
4419
				</p>
4420
				<p>
4421
					<?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' ), 
4422
							esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' )  ) ),
4423
							esc_url( 'https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/' ) ); ?>
4424
				</p>
4425
			</div>
4426
		</div>
4427
		<style>
4428
			#jetpack-recheck-ssl-output { margin-left: 5px; color: red; }
4429
		</style>
4430
		<script type="text/javascript">
4431
			jQuery( document ).ready( function( $ ) {
4432
				$( '#jetpack-recheck-ssl-button' ).click( function( e ) {
4433
					var $this = $( this );
4434
					$this.html( <?php echo json_encode( __( 'Checking', 'jetpack' ) ); ?> );
4435
					$( '#jetpack-recheck-ssl-output' ).html( '' );
4436
					e.preventDefault();
4437
					var data = { action: 'jetpack-recheck-ssl', 'ajax-nonce': '<?php echo $ajax_nonce; ?>' };
4438
					$.post( ajaxurl, data )
4439
					  .done( function( response ) {
4440
					  	if ( response.enabled ) {
4441
					  		$( '#jetpack-ssl-warning' ).hide();
4442
					  	} else {
4443
					  		this.html( <?php echo json_encode( __( 'Try again', 'jetpack' ) ); ?> );
4444
					  		$( '#jetpack-recheck-ssl-output' ).html( 'SSL Failed: ' + response.message );
4445
					  	}
4446
					  }.bind( $this ) );
4447
				} );
4448
			} );
4449
		</script>
4450
4451
		<?php
4452
	}
4453
4454
	/**
4455
	 * Returns the Jetpack XML-RPC API
4456
	 *
4457
	 * @return string
4458
	 */
4459
	public static function xmlrpc_api_url() {
4460
		$base = preg_replace( '#(https?://[^?/]+)(/?.*)?$#', '\\1', JETPACK__API_BASE );
4461
		return untrailingslashit( $base ) . '/xmlrpc.php';
4462
	}
4463
4464
	/**
4465
	 * Creates two secret tokens and the end of life timestamp for them.
4466
	 *
4467
	 * Note these tokens are unique per call, NOT static per site for connecting.
4468
	 *
4469
	 * @since 2.6
4470
	 * @return array
4471
	 */
4472
	public function generate_secrets( $action, $exp = 600 ) {
4473
	    $secret = wp_generate_password( 32, false ) // secret_1
4474
	    		. ':' . wp_generate_password( 32, false ) // secret_2
4475
	    		. ':' . ( time() + $exp ) // eol ( End of Life )
4476
	    		. ':' . get_current_user_id(); // ties the secrets to the current user
4477
		Jetpack_Options::update_option( $action, $secret );
4478
	    return Jetpack_Options::get_option( $action );
4479
	}
4480
4481
	/**
4482
	 * Builds the timeout limit for queries talking with the wpcom servers.
4483
	 *
4484
	 * Based on local php max_execution_time in php.ini
4485
	 *
4486
	 * @since 2.6
4487
	 * @return int
4488
	 **/
4489
	public function get_remote_query_timeout_limit() {
4490
	    $timeout = (int) ini_get( 'max_execution_time' );
4491
	    if ( ! $timeout ) // Ensure exec time set in php.ini
4492
		$timeout = 30;
4493
	    return intval( $timeout / 2 );
4494
	}
4495
4496
4497
	/**
4498
	 * Takes the response from the Jetpack register new site endpoint and
4499
	 * verifies it worked properly.
4500
	 *
4501
	 * @since 2.6
4502
	 * @return true or Jetpack_Error
4503
	 **/
4504
	public function validate_remote_register_response( $response ) {
4505
	    	if ( is_wp_error( $response ) ) {
4506
			return new Jetpack_Error( 'register_http_request_failed', $response->get_error_message() );
4507
		}
4508
4509
		$code   = wp_remote_retrieve_response_code( $response );
4510
		$entity = wp_remote_retrieve_body( $response );
4511
		if ( $entity )
4512
			$json = json_decode( $entity );
4513
		else
4514
			$json = false;
4515
4516
		$code_type = intval( $code / 100 );
4517
		if ( 5 == $code_type ) {
4518
			return new Jetpack_Error( 'wpcom_5??', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4519
		} elseif ( 408 == $code ) {
4520
			return new Jetpack_Error( 'wpcom_408', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4521
		} elseif ( ! empty( $json->error ) ) {
4522
			$error_description = isset( $json->error_description ) ? sprintf( __( 'Error Details: %s', 'jetpack' ), (string) $json->error_description ) : '';
4523
			return new Jetpack_Error( (string) $json->error, $error_description, $code );
4524
		} elseif ( 200 != $code ) {
4525
			return new Jetpack_Error( 'wpcom_bad_response', sprintf( __( 'Error Details: %s', 'jetpack' ), $code ), $code );
4526
		}
4527
4528
		// Jetpack ID error block
4529
		if ( empty( $json->jetpack_id ) ) {
4530
			return new Jetpack_Error( 'jetpack_id', sprintf( __( 'Error Details: Jetpack ID is empty. Do not publicly post this error message! %s', 'jetpack' ), $entity ), $entity );
4531
		} elseif ( ! is_scalar( $json->jetpack_id ) ) {
4532
			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 );
4533
		} elseif ( preg_match( '/[^0-9]/', $json->jetpack_id ) ) {
4534
			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 );
4535
		}
4536
4537
	    return true;
4538
	}
4539
	/**
4540
	 * @return bool|WP_Error
4541
	 */
4542
	public static function register() {
4543
		add_action( 'pre_update_jetpack_option_register', array( 'Jetpack_Options', 'delete_option' ) );
4544
		$secrets = Jetpack::init()->generate_secrets( 'register' );
4545
4546
		@list( $secret_1, $secret_2, $secret_eol ) = explode( ':', $secrets );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
4547 View Code Duplication
		if ( empty( $secret_1 ) || empty( $secret_2 ) || empty( $secret_eol ) || $secret_eol < time() ) {
4548
			return new Jetpack_Error( 'missing_secrets' );
4549
		}
4550
4551
		$timeout = Jetpack::init()->get_remote_query_timeout_limit();
4552
4553
		$gmt_offset = get_option( 'gmt_offset' );
4554
		if ( ! $gmt_offset ) {
4555
			$gmt_offset = 0;
4556
		}
4557
4558
		$stats_options = get_option( 'stats_options' );
4559
		$stats_id = isset($stats_options['blog_id']) ? $stats_options['blog_id'] : null;
4560
4561
		$args = array(
4562
			'method'  => 'POST',
4563
			'body'    => array(
4564
				'siteurl'         => site_url(),
4565
				'home'            => home_url(),
4566
				'gmt_offset'      => $gmt_offset,
4567
				'timezone_string' => (string) get_option( 'timezone_string' ),
4568
				'site_name'       => (string) get_option( 'blogname' ),
4569
				'secret_1'        => $secret_1,
4570
				'secret_2'        => $secret_2,
4571
				'site_lang'       => get_locale(),
4572
				'timeout'         => $timeout,
4573
				'stats_id'        => $stats_id,
4574
				'state'           => get_current_user_id(),
4575
			),
4576
			'headers' => array(
4577
				'Accept' => 'application/json',
4578
			),
4579
			'timeout' => $timeout,
4580
		);
4581
		$response = Jetpack_Client::_wp_remote_request( Jetpack::fix_url_for_bad_hosts( Jetpack::api_url( 'register' ) ), $args, true );
4582
4583
4584
		// Make sure the response is valid and does not contain any Jetpack errors
4585
		$valid_response = Jetpack::init()->validate_remote_register_response( $response );
4586
		if( is_wp_error( $valid_response ) || !$valid_response ) {
4587
		    return $valid_response;
4588
		}
4589
4590
		// Grab the response values to work with
4591
		$code   = wp_remote_retrieve_response_code( $response );
4592
		$entity = wp_remote_retrieve_body( $response );
4593
4594
		if ( $entity )
4595
			$json = json_decode( $entity );
4596
		else
4597
			$json = false;
4598
4599 View Code Duplication
		if ( empty( $json->jetpack_secret ) || ! is_string( $json->jetpack_secret ) )
4600
			return new Jetpack_Error( 'jetpack_secret', '', $code );
4601
4602
		if ( isset( $json->jetpack_public ) ) {
4603
			$jetpack_public = (int) $json->jetpack_public;
4604
		} else {
4605
			$jetpack_public = false;
4606
		}
4607
4608
		Jetpack_Options::update_options(
4609
			array(
4610
				'id'         => (int)    $json->jetpack_id,
4611
				'blog_token' => (string) $json->jetpack_secret,
4612
				'public'     => $jetpack_public,
4613
			)
4614
		);
4615
4616
		/**
4617
		 * Fires when a site is registered on WordPress.com.
4618
		 *
4619
		 * @since 3.7.0
4620
		 *
4621
		 * @param int $json->jetpack_id Jetpack Blog ID.
4622
		 * @param string $json->jetpack_secret Jetpack Blog Token.
4623
		 * @param int|bool $jetpack_public Is the site public.
4624
		 */
4625
		do_action( 'jetpack_site_registered', $json->jetpack_id, $json->jetpack_secret, $jetpack_public );
4626
4627
		// Initialize Jump Start for the first and only time.
4628
		if ( ! Jetpack_Options::get_option( 'jumpstart' ) ) {
4629
			Jetpack_Options::update_option( 'jumpstart', 'new_connection' );
4630
4631
			$jetpack = Jetpack::init();
4632
4633
			$jetpack->stat( 'jumpstart', 'unique-views' );
4634
			$jetpack->do_stats( 'server_side' );
4635
		};
4636
4637
		return true;
4638
	}
4639
4640
	/**
4641
	 * If the db version is showing something other that what we've got now, bump it to current.
4642
	 *
4643
	 * @return bool: True if the option was incorrect and updated, false if nothing happened.
0 ignored issues
show
Documentation introduced by
The doc-type bool: could not be parsed: Unknown type name "bool:" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
4644
	 */
4645
	public static function maybe_set_version_option() {
4646
		list( $version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
4647
		if ( JETPACK__VERSION != $version ) {
4648
			Jetpack_Options::update_option( 'version', JETPACK__VERSION . ':' . time() );
4649
			return true;
4650
		}
4651
		return false;
4652
	}
4653
4654
/* Client Server API */
4655
4656
	/**
4657
	 * Loads the Jetpack XML-RPC client
4658
	 */
4659
	public static function load_xml_rpc_client() {
4660
		require_once ABSPATH . WPINC . '/class-IXR.php';
4661
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-ixr-client.php';
4662
	}
4663
4664
	function verify_xml_rpc_signature() {
4665
		if ( $this->xmlrpc_verification ) {
4666
			return $this->xmlrpc_verification;
4667
		}
4668
4669
		// It's not for us
4670
		if ( ! isset( $_GET['token'] ) || empty( $_GET['signature'] ) ) {
4671
			return false;
4672
		}
4673
4674
		@list( $token_key, $version, $user_id ) = explode( ':', $_GET['token'] );
0 ignored issues
show
Security Best Practice introduced by
It seems like you do not handle an error condition here. This can introduce security issues, and is generally not recommended.

If you suppress an error, we recommend checking for the error condition explicitly:

// For example instead of
@mkdir($dir);

// Better use
if (@mkdir($dir) === false) {
    throw new \RuntimeException('The directory '.$dir.' could not be created.');
}
Loading history...
4675
		if (
4676
			empty( $token_key )
4677
		||
4678
			empty( $version ) || strval( JETPACK__API_VERSION ) !== $version
4679
		) {
4680
			return false;
4681
		}
4682
4683
		if ( '0' === $user_id ) {
4684
			$token_type = 'blog';
4685
			$user_id = 0;
4686
		} else {
4687
			$token_type = 'user';
4688
			if ( empty( $user_id ) || ! ctype_digit( $user_id ) ) {
4689
				return false;
4690
			}
4691
			$user_id = (int) $user_id;
4692
4693
			$user = new WP_User( $user_id );
4694
			if ( ! $user || ! $user->exists() ) {
4695
				return false;
4696
			}
4697
		}
4698
4699
		$token = Jetpack_Data::get_access_token( $user_id );
0 ignored issues
show
Documentation introduced by
$user_id is of type integer, but the function expects a boolean.

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

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

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

function acceptsInteger($int) { }

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

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
4700
		if ( ! $token ) {
4701
			return false;
4702
		}
4703
4704
		$token_check = "$token_key.";
4705
		if ( ! hash_equals( substr( $token->secret, 0, strlen( $token_check ) ), $token_check ) ) {
4706
			return false;
4707
		}
4708
4709
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
4710
4711
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
4712
		if ( isset( $_POST['_jetpack_is_multipart'] ) ) {
4713
			$post_data   = $_POST;
4714
			$file_hashes = array();
4715
			foreach ( $post_data as $post_data_key => $post_data_value ) {
4716
				if ( 0 !== strpos( $post_data_key, '_jetpack_file_hmac_' ) ) {
4717
					continue;
4718
				}
4719
				$post_data_key = substr( $post_data_key, strlen( '_jetpack_file_hmac_' ) );
4720
				$file_hashes[$post_data_key] = $post_data_value;
4721
			}
4722
4723
			foreach ( $file_hashes as $post_data_key => $post_data_value ) {
4724
				unset( $post_data["_jetpack_file_hmac_{$post_data_key}"] );
4725
				$post_data[$post_data_key] = $post_data_value;
4726
			}
4727
4728
			ksort( $post_data );
4729
4730
			$body = http_build_query( stripslashes_deep( $post_data ) );
4731
		} elseif ( is_null( $this->HTTP_RAW_POST_DATA ) ) {
4732
			$body = file_get_contents( 'php://input' );
4733
		} else {
4734
			$body = null;
4735
		}
4736
		$signature = $jetpack_signature->sign_current_request(
4737
			array( 'body' => is_null( $body ) ? $this->HTTP_RAW_POST_DATA : $body, )
4738
		);
4739
4740
		if ( ! $signature ) {
4741
			return false;
4742
		} else if ( is_wp_error( $signature ) ) {
4743
			return $signature;
4744
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
4745
			return false;
4746
		}
4747
4748
		$timestamp = (int) $_GET['timestamp'];
4749
		$nonce     = stripslashes( (string) $_GET['nonce'] );
4750
4751
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
4752
			return false;
4753
		}
4754
4755
		$this->xmlrpc_verification = array(
4756
			'type'    => $token_type,
4757
			'user_id' => $token->external_user_id,
4758
		);
4759
4760
		return $this->xmlrpc_verification;
4761
	}
4762
4763
	/**
4764
	 * Authenticates XML-RPC and other requests from the Jetpack Server
4765
	 */
4766
	function authenticate_jetpack( $user, $username, $password ) {
0 ignored issues
show
Unused Code introduced by
The parameter $username is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $password is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
4767
		if ( is_a( $user, 'WP_User' ) ) {
4768
			return $user;
4769
		}
4770
4771
		$token_details = $this->verify_xml_rpc_signature();
4772
4773
		if ( ! $token_details || is_wp_error( $token_details ) ) {
4774
			return $user;
4775
		}
4776
4777
		if ( 'user' !== $token_details['type'] ) {
4778
			return $user;
4779
		}
4780
4781
		if ( ! $token_details['user_id'] ) {
4782
			return $user;
4783
		}
4784
4785
		nocache_headers();
4786
4787
		return new WP_User( $token_details['user_id'] );
4788
	}
4789
4790
	function add_nonce( $timestamp, $nonce ) {
4791
		global $wpdb;
4792
		static $nonces_used_this_request = array();
4793
4794
		if ( isset( $nonces_used_this_request["$timestamp:$nonce"] ) ) {
4795
			return $nonces_used_this_request["$timestamp:$nonce"];
4796
		}
4797
4798
		// This should always have gone through Jetpack_Signature::sign_request() first to check $timestamp an $nonce
4799
		$timestamp = (int) $timestamp;
4800
		$nonce     = esc_sql( $nonce );
4801
4802
		// Raw query so we can avoid races: add_option will also update
4803
		$show_errors = $wpdb->show_errors( false );
4804
4805
		$old_nonce = $wpdb->get_row(
4806
			$wpdb->prepare( "SELECT * FROM `$wpdb->options` WHERE option_name = %s", "jetpack_nonce_{$timestamp}_{$nonce}" )
4807
		);
4808
4809
		if ( is_null( $old_nonce ) ) {
4810
			$return = $wpdb->query(
4811
				$wpdb->prepare(
4812
					"INSERT INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, %s)",
4813
					"jetpack_nonce_{$timestamp}_{$nonce}",
4814
					time(),
4815
					'no'
4816
				)
4817
			);
4818
		} else {
4819
			$return = false;
4820
		}
4821
4822
		$wpdb->show_errors( $show_errors );
4823
4824
		$nonces_used_this_request["$timestamp:$nonce"] = $return;
4825
4826
		return $return;
4827
	}
4828
4829
	/**
4830
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
4831
	 * Capture it here so we can verify the signature later.
4832
	 */
4833
	function xmlrpc_methods( $methods ) {
4834
		$this->HTTP_RAW_POST_DATA = $GLOBALS['HTTP_RAW_POST_DATA'];
4835
		return $methods;
4836
	}
4837
4838
	function public_xmlrpc_methods( $methods ) {
4839
		if ( array_key_exists( 'wp.getOptions', $methods ) ) {
4840
			$methods['wp.getOptions'] = array( $this, 'jetpack_getOptions' );
4841
		}
4842
		return $methods;
4843
	}
4844
4845
	function jetpack_getOptions( $args ) {
4846
		global $wp_xmlrpc_server;
4847
4848
		$wp_xmlrpc_server->escape( $args );
4849
4850
		$username	= $args[1];
4851
		$password	= $args[2];
4852
4853
		if ( !$user = $wp_xmlrpc_server->login($username, $password) ) {
4854
			return $wp_xmlrpc_server->error;
4855
		}
4856
4857
		$options = array();
4858
		$user_data = $this->get_connected_user_data();
4859
		if ( is_array( $user_data ) ) {
4860
			$options['jetpack_user_id'] = array(
4861
				'desc'          => __( 'The WP.com user ID of the connected user', 'jetpack' ),
4862
				'readonly'      => true,
4863
				'value'         => $user_data['ID'],
4864
			);
4865
			$options['jetpack_user_login'] = array(
4866
				'desc'          => __( 'The WP.com username of the connected user', 'jetpack' ),
4867
				'readonly'      => true,
4868
				'value'         => $user_data['login'],
4869
			);
4870
			$options['jetpack_user_email'] = array(
4871
				'desc'          => __( 'The WP.com user email of the connected user', 'jetpack' ),
4872
				'readonly'      => true,
4873
				'value'         => $user_data['email'],
4874
			);
4875
			$options['jetpack_user_site_count'] = array(
4876
				'desc'          => __( 'The number of sites of the connected WP.com user', 'jetpack' ),
4877
				'readonly'      => true,
4878
				'value'         => $user_data['site_count'],
4879
			);
4880
		}
4881
		$wp_xmlrpc_server->blog_options = array_merge( $wp_xmlrpc_server->blog_options, $options );
4882
		$args = stripslashes_deep( $args );
4883
		return $wp_xmlrpc_server->wp_getOptions( $args );
4884
	}
4885
4886
	function xmlrpc_options( $options ) {
4887
		$jetpack_client_id = false;
4888
		if ( self::is_active() ) {
4889
			$jetpack_client_id = Jetpack_Options::get_option( 'id' );
4890
		}
4891
		$options['jetpack_version'] = array(
4892
				'desc'          => __( 'Jetpack Plugin Version', 'jetpack' ),
4893
				'readonly'      => true,
4894
				'value'         => JETPACK__VERSION,
4895
		);
4896
4897
		$options['jetpack_client_id'] = array(
4898
				'desc'          => __( 'The Client ID/WP.com Blog ID of this site', 'jetpack' ),
4899
				'readonly'      => true,
4900
				'value'         => $jetpack_client_id,
4901
		);
4902
		return $options;
4903
	}
4904
4905
	public static function clean_nonces( $all = false ) {
4906
		global $wpdb;
4907
4908
		$sql = "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s";
4909
		if ( method_exists ( $wpdb , 'esc_like' ) ) {
4910
			$sql_args = array( $wpdb->esc_like( 'jetpack_nonce_' ) . '%' );
4911
		} else {
4912
			$sql_args = array( like_escape( 'jetpack_nonce_' ) . '%' );
4913
		}
4914
4915
		if ( true !== $all ) {
4916
			$sql .= ' AND CAST( `option_value` AS UNSIGNED ) < %d';
4917
			$sql_args[] = time() - 3600;
4918
		}
4919
4920
		$sql .= ' ORDER BY `option_id` LIMIT 100';
4921
4922
		$sql = $wpdb->prepare( $sql, $sql_args );
4923
4924
		for ( $i = 0; $i < 1000; $i++ ) {
4925
			if ( ! $wpdb->query( $sql ) ) {
4926
				break;
4927
			}
4928
		}
4929
	}
4930
4931
	/**
4932
	 * State is passed via cookies from one request to the next, but never to subsequent requests.
4933
	 * SET: state( $key, $value );
4934
	 * GET: $value = state( $key );
4935
	 *
4936
	 * @param string $key
0 ignored issues
show
Documentation introduced by
Should the type for parameter $key not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
4937
	 * @param string $value
0 ignored issues
show
Documentation introduced by
Should the type for parameter $value not be string|null?

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
4938
	 * @param bool $restate private
4939
	 */
4940
	public static function state( $key = null, $value = null, $restate = false ) {
4941
		static $state = array();
4942
		static $path, $domain;
4943
		if ( ! isset( $path ) ) {
4944
			require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
4945
			$admin_url = Jetpack::admin_url();
4946
			$bits      = parse_url( $admin_url );
4947
4948
			if ( is_array( $bits ) ) {
4949
				$path   = ( isset( $bits['path'] ) ) ? dirname( $bits['path'] ) : null;
4950
				$domain = ( isset( $bits['host'] ) ) ? $bits['host'] : null;
4951
			} else {
4952
				$path = $domain = null;
4953
			}
4954
		}
4955
4956
		// Extract state from cookies and delete cookies
4957
		if ( isset( $_COOKIE[ 'jetpackState' ] ) && is_array( $_COOKIE[ 'jetpackState' ] ) ) {
4958
			$yum = $_COOKIE[ 'jetpackState' ];
4959
			unset( $_COOKIE[ 'jetpackState' ] );
4960
			foreach ( $yum as $k => $v ) {
4961
				if ( strlen( $v ) )
4962
					$state[ $k ] = $v;
4963
				setcookie( "jetpackState[$k]", false, 0, $path, $domain );
4964
			}
4965
		}
4966
4967
		if ( $restate ) {
4968
			foreach ( $state as $k => $v ) {
4969
				setcookie( "jetpackState[$k]", $v, 0, $path, $domain );
4970
			}
4971
			return;
4972
		}
4973
4974
		// Get a state variable
4975
		if ( isset( $key ) && ! isset( $value ) ) {
4976
			if ( array_key_exists( $key, $state ) )
4977
				return $state[ $key ];
4978
			return null;
4979
		}
4980
4981
		// Set a state variable
4982
		if ( isset ( $key ) && isset( $value ) ) {
4983
			if( is_array( $value ) && isset( $value[0] ) ) {
4984
				$value = $value[0];
4985
			}
4986
			$state[ $key ] = $value;
4987
			setcookie( "jetpackState[$key]", $value, 0, $path, $domain );
4988
		}
4989
	}
4990
4991
	public static function restate() {
4992
		Jetpack::state( null, null, true );
4993
	}
4994
4995
	public static function check_privacy( $file ) {
4996
		static $is_site_publicly_accessible = null;
4997
4998
		if ( is_null( $is_site_publicly_accessible ) ) {
4999
			$is_site_publicly_accessible = false;
5000
5001
			Jetpack::load_xml_rpc_client();
5002
			$rpc = new Jetpack_IXR_Client();
5003
5004
			$success = $rpc->query( 'jetpack.isSitePubliclyAccessible', home_url() );
5005
			if ( $success ) {
5006
				$response = $rpc->getResponse();
5007
				if ( $response ) {
5008
					$is_site_publicly_accessible = true;
5009
				}
5010
			}
5011
5012
			Jetpack_Options::update_option( 'public', (int) $is_site_publicly_accessible );
5013
		}
5014
5015
		if ( $is_site_publicly_accessible ) {
5016
			return;
5017
		}
5018
5019
		$module_slug = self::get_module_slug( $file );
5020
5021
		$privacy_checks = Jetpack::state( 'privacy_checks' );
5022
		if ( ! $privacy_checks ) {
5023
			$privacy_checks = $module_slug;
5024
		} else {
5025
			$privacy_checks .= ",$module_slug";
5026
		}
5027
5028
		Jetpack::state( 'privacy_checks', $privacy_checks );
5029
	}
5030
5031
	/**
5032
	 * Helper method for multicall XMLRPC.
5033
	 */
5034
	public static function xmlrpc_async_call() {
5035
		global $blog_id;
5036
		static $clients = array();
5037
5038
		$client_blog_id = is_multisite() ? $blog_id : 0;
5039
5040
		if ( ! isset( $clients[$client_blog_id] ) ) {
5041
			Jetpack::load_xml_rpc_client();
5042
			$clients[$client_blog_id] = new Jetpack_IXR_ClientMulticall( array( 'user_id' => JETPACK_MASTER_USER, ) );
5043
			if ( function_exists( 'ignore_user_abort' ) ) {
5044
				ignore_user_abort( true );
5045
			}
5046
			add_action( 'shutdown', array( 'Jetpack', 'xmlrpc_async_call' ) );
5047
		}
5048
5049
		$args = func_get_args();
5050
5051
		if ( ! empty( $args[0] ) ) {
5052
			call_user_func_array( array( $clients[$client_blog_id], 'addCall' ), $args );
5053
		} elseif ( is_multisite() ) {
5054
			foreach ( $clients as $client_blog_id => $client ) {
5055
				if ( ! $client_blog_id || empty( $client->calls ) ) {
5056
					continue;
5057
				}
5058
5059
				$switch_success = switch_to_blog( $client_blog_id, true );
5060
				if ( ! $switch_success ) {
5061
					continue;
5062
				}
5063
5064
				flush();
5065
				$client->query();
5066
5067
				restore_current_blog();
5068
			}
5069
		} else {
5070
			if ( isset( $clients[0] ) && ! empty( $clients[0]->calls ) ) {
5071
				flush();
5072
				$clients[0]->query();
5073
			}
5074
		}
5075
	}
5076
5077
	public static function staticize_subdomain( $url ) {
5078
5079
		// Extract hostname from URL
5080
		$host = parse_url( $url, PHP_URL_HOST );
5081
5082
		// Explode hostname on '.'
5083
		$exploded_host = explode( '.', $host );
5084
5085
		// Retrieve the name and TLD
5086
		if ( count( $exploded_host ) > 1 ) {
5087
			$name = $exploded_host[ count( $exploded_host ) - 2 ];
5088
			$tld = $exploded_host[ count( $exploded_host ) - 1 ];
5089
			// Rebuild domain excluding subdomains
5090
			$domain = $name . '.' . $tld;
5091
		} else {
5092
			$domain = $host;
5093
		}
5094
		// Array of Automattic domains
5095
		$domain_whitelist = array( 'wordpress.com', 'wp.com' );
5096
5097
		// Return $url if not an Automattic domain
5098
		if ( ! in_array( $domain, $domain_whitelist ) ) {
5099
			return $url;
5100
		}
5101
5102
		if ( is_ssl() ) {
5103
			return preg_replace( '|https?://[^/]++/|', 'https://s-ssl.wordpress.com/', $url );
5104
		}
5105
5106
		srand( crc32( basename( $url ) ) );
5107
		$static_counter = rand( 0, 2 );
5108
		srand(); // this resets everything that relies on this, like array_rand() and shuffle()
5109
5110
		return preg_replace( '|://[^/]+?/|', "://s$static_counter.wp.com/", $url );
5111
	}
5112
5113
/* JSON API Authorization */
5114
5115
	/**
5116
	 * Handles the login action for Authorizing the JSON API
5117
	 */
5118
	function login_form_json_api_authorization() {
5119
		$this->verify_json_api_authorization_request();
5120
5121
		add_action( 'wp_login', array( &$this, 'store_json_api_authorization_token' ), 10, 2 );
5122
5123
		add_action( 'login_message', array( &$this, 'login_message_json_api_authorization' ) );
5124
		add_action( 'login_form', array( &$this, 'preserve_action_in_login_form_for_json_api_authorization' ) );
5125
		add_filter( 'site_url', array( &$this, 'post_login_form_to_signed_url' ), 10, 3 );
5126
	}
5127
5128
	// Make sure the login form is POSTed to the signed URL so we can reverify the request
5129
	function post_login_form_to_signed_url( $url, $path, $scheme ) {
5130
		if ( 'wp-login.php' !== $path || ( 'login_post' !== $scheme && 'login' !== $scheme ) ) {
5131
			return $url;
5132
		}
5133
5134
		$parsed_url = parse_url( $url );
5135
		$url = strtok( $url, '?' );
5136
		$url = "$url?{$_SERVER['QUERY_STRING']}";
5137
		if ( ! empty( $parsed_url['query'] ) )
5138
			$url .= "&{$parsed_url['query']}";
5139
5140
		return $url;
5141
	}
5142
5143
	// Make sure the POSTed request is handled by the same action
5144
	function preserve_action_in_login_form_for_json_api_authorization() {
5145
		echo "<input type='hidden' name='action' value='jetpack_json_api_authorization' />\n";
5146
		echo "<input type='hidden' name='jetpack_json_api_original_query' value='" . esc_url( set_url_scheme( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) . "' />\n";
5147
	}
5148
5149
	// If someone logs in to approve API access, store the Access Code in usermeta
5150
	function store_json_api_authorization_token( $user_login, $user ) {
5151
		add_filter( 'login_redirect', array( &$this, 'add_token_to_login_redirect_json_api_authorization' ), 10, 3 );
5152
		add_filter( 'allowed_redirect_hosts', array( &$this, 'allow_wpcom_public_api_domain' ) );
5153
		$token = wp_generate_password( 32, false );
5154
		update_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], $token );
5155
	}
5156
5157
	// Add public-api.wordpress.com to the safe redirect whitelist - only added when someone allows API access
5158
	function allow_wpcom_public_api_domain( $domains ) {
5159
		$domains[] = 'public-api.wordpress.com';
5160
		return $domains;
5161
	}
5162
5163
	// Add the Access Code details to the public-api.wordpress.com redirect
5164
	function add_token_to_login_redirect_json_api_authorization( $redirect_to, $original_redirect_to, $user ) {
5165
		return add_query_arg(
5166
			urlencode_deep(
5167
				array(
5168
					'jetpack-code'    => get_user_meta( $user->ID, 'jetpack_json_api_' . $this->json_api_authorization_request['client_id'], true ),
5169
					'jetpack-user-id' => (int) $user->ID,
5170
					'jetpack-state'   => $this->json_api_authorization_request['state'],
5171
				)
5172
			),
5173
			$redirect_to
5174
		);
5175
	}
5176
5177
	// Verifies the request by checking the signature
5178
	function verify_json_api_authorization_request() {
5179
		require_once JETPACK__PLUGIN_DIR . 'class.jetpack-signature.php';
5180
5181
		$token = Jetpack_Data::get_access_token( JETPACK_MASTER_USER );
5182
		if ( ! $token || empty( $token->secret ) ) {
5183
			wp_die( __( 'You must connect your Jetpack plugin to WordPress.com to use this feature.' , 'jetpack' ) );
5184
		}
5185
5186
		$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' );
5187
5188
		$jetpack_signature = new Jetpack_Signature( $token->secret, (int) Jetpack_Options::get_option( 'time_diff' ) );
5189
5190
		if ( isset( $_POST['jetpack_json_api_original_query'] ) ) {
5191
			$signature = $jetpack_signature->sign_request( $_GET['token'], $_GET['timestamp'], $_GET['nonce'], '', 'GET', $_POST['jetpack_json_api_original_query'], null, true );
5192
		} else {
5193
			$signature = $jetpack_signature->sign_current_request( array( 'body' => null, 'method' => 'GET' ) );
5194
		}
5195
5196
		if ( ! $signature ) {
5197
			wp_die( $die_error );
5198
		} else if ( is_wp_error( $signature ) ) {
5199
			wp_die( $die_error );
5200
		} else if ( ! hash_equals( $signature, $_GET['signature'] ) ) {
5201
			if ( is_ssl() ) {
5202
				// 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
5203
				$signature = $jetpack_signature->sign_current_request( array( 'scheme' => 'http', 'body' => null, 'method' => 'GET' ) );
5204
				if ( ! $signature || is_wp_error( $signature ) || ! hash_equals( $signature, $_GET['signature'] ) ) {
5205
					wp_die( $die_error );
5206
				}
5207
			} else {
5208
				wp_die( $die_error );
5209
			}
5210
		}
5211
5212
		$timestamp = (int) $_GET['timestamp'];
5213
		$nonce     = stripslashes( (string) $_GET['nonce'] );
5214
5215
		if ( ! $this->add_nonce( $timestamp, $nonce ) ) {
5216
			// De-nonce the nonce, at least for 5 minutes.
5217
			// 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)
5218
			$old_nonce_time = get_option( "jetpack_nonce_{$timestamp}_{$nonce}" );
5219
			if ( $old_nonce_time < time() - 300 ) {
5220
				wp_die( __( 'The authorization process expired.  Please go back and try again.' , 'jetpack' ) );
5221
			}
5222
		}
5223
5224
		$data = json_decode( base64_decode( stripslashes( $_GET['data'] ) ) );
5225
		$data_filters = array(
5226
			'state'        => 'opaque',
5227
			'client_id'    => 'int',
5228
			'client_title' => 'string',
5229
			'client_image' => 'url',
5230
		);
5231
5232
		foreach ( $data_filters as $key => $sanitation ) {
5233
			if ( ! isset( $data->$key ) ) {
5234
				wp_die( $die_error );
5235
			}
5236
5237
			switch ( $sanitation ) {
5238
			case 'int' :
5239
				$this->json_api_authorization_request[$key] = (int) $data->$key;
5240
				break;
5241
			case 'opaque' :
5242
				$this->json_api_authorization_request[$key] = (string) $data->$key;
5243
				break;
5244
			case 'string' :
5245
				$this->json_api_authorization_request[$key] = wp_kses( (string) $data->$key, array() );
5246
				break;
5247
			case 'url' :
5248
				$this->json_api_authorization_request[$key] = esc_url_raw( (string) $data->$key );
5249
				break;
5250
			}
5251
		}
5252
5253
		if ( empty( $this->json_api_authorization_request['client_id'] ) ) {
5254
			wp_die( $die_error );
5255
		}
5256
	}
5257
5258
	function login_message_json_api_authorization( $message ) {
0 ignored issues
show
Unused Code introduced by
The parameter $message is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
5259
		return '<p class="message">' . sprintf(
5260
			esc_html__( '%s wants to access your site&#8217;s data.  Log in to authorize that access.' , 'jetpack' ),
5261
			'<strong>' . esc_html( $this->json_api_authorization_request['client_title'] ) . '</strong>'
5262
		) . '<img src="' . esc_url( $this->json_api_authorization_request['client_image'] ) . '" /></p>';
5263
	}
5264
5265
	/**
5266
	 * Get $content_width, but with a <s>twist</s> filter.
5267
	 */
5268
	public static function get_content_width() {
5269
		$content_width = isset( $GLOBALS['content_width'] ) ? $GLOBALS['content_width'] : false;
5270
		/**
5271
		 * Filter the Content Width value.
5272
		 *
5273
		 * @since 2.2.3
5274
		 *
5275
		 * @param string $content_width Content Width value.
5276
		 */
5277
		return apply_filters( 'jetpack_content_width', $content_width );
5278
	}
5279
5280
	/**
5281
	 * Centralize the function here until it gets added to core.
5282
	 *
5283
	 * @param int|string|object $id_or_email A user ID,  email address, or comment object
5284
	 * @param int $size Size of the avatar image
5285
	 * @param string $default URL to a default image to use if no avatar is available
5286
	 * @param bool $force_display Whether to force it to return an avatar even if show_avatars is disabled
5287
	 *
5288
	 * @return array First element is the URL, second is the class.
5289
	 */
5290
	public static function get_avatar_url( $id_or_email, $size = 96, $default = '', $force_display = false ) {
5291
		// Don't bother adding the __return_true filter if it's already there.
5292
		$has_filter = has_filter( 'pre_option_show_avatars', '__return_true' );
5293
5294
		if ( $force_display && ! $has_filter )
5295
			add_filter( 'pre_option_show_avatars', '__return_true' );
5296
5297
		$avatar = get_avatar( $id_or_email, $size, $default );
5298
5299
		if ( $force_display && ! $has_filter )
5300
			remove_filter( 'pre_option_show_avatars', '__return_true' );
5301
5302
		// If no data, fail out.
5303
		if ( is_wp_error( $avatar ) || ! $avatar )
5304
			return array( null, null );
5305
5306
		// Pull out the URL.  If it's not there, fail out.
5307
		if ( ! preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $url_matches ) )
5308
			return array( null, null );
5309
		$url = wp_specialchars_decode( $url_matches[1], ENT_QUOTES );
5310
5311
		// Pull out the class, but it's not a big deal if it's missing.
5312
		$class = '';
5313
		if ( preg_match( '/class=["\']([^"\']+)["\']/', $avatar, $class_matches ) )
5314
			$class = wp_specialchars_decode( $class_matches[1], ENT_QUOTES );
5315
5316
		return array( $url, $class );
5317
	}
5318
5319
	/**
5320
	 * Pings the WordPress.com Mirror Site for the specified options.
5321
	 *
5322
	 * @param string|array $option_names The option names to request from the WordPress.com Mirror Site
5323
	 *
5324
	 * @return array An associative array of the option values as stored in the WordPress.com Mirror Site
5325
	 */
5326
	public function get_cloud_site_options( $option_names ) {
5327
		$option_names = array_filter( (array) $option_names, 'is_string' );
5328
5329
		Jetpack::load_xml_rpc_client();
5330
		$xml = new Jetpack_IXR_Client( array( 'user_id' => JETPACK_MASTER_USER, ) );
5331
		$xml->query( 'jetpack.fetchSiteOptions', $option_names );
5332
		if ( $xml->isError() ) {
5333
			return array(
5334
				'error_code' => $xml->getErrorCode(),
5335
				'error_msg'  => $xml->getErrorMessage(),
5336
			);
5337
		}
5338
		$cloud_site_options = $xml->getResponse();
5339
5340
		return $cloud_site_options;
5341
	}
5342
5343
	/**
5344
	 * Fetch the filtered array of options that we should compare to determine an identity crisis.
5345
	 *
5346
	 * @return array An array of options to check.
5347
	 */
5348
	public static function identity_crisis_options_to_check() {
5349
		return array(
5350
			'siteurl',
5351
			'home',
5352
		);
5353
	}
5354
5355
	/**
5356
	 * Checks to make sure that local options have the same values as remote options.  Will cache the results for up to 24 hours.
5357
	 *
5358
	 * @param bool $force_recheck Whether to ignore any cached transient and manually re-check.
5359
	 *
5360
	 * @return array An array of options that do not match.  If everything is good, it will evaluate to false.
5361
	 */
5362
	public static function check_identity_crisis( $force_recheck = false ) {
5363
		if ( ! Jetpack::is_active() || Jetpack::is_development_mode() || Jetpack::is_staging_site() )
5364
			return false;
5365
5366
		if ( $force_recheck || false === ( $errors = get_transient( 'jetpack_has_identity_crisis' ) ) ) {
5367
			$options_to_check = self::identity_crisis_options_to_check();
5368
			$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5369
			$errors        = array();
5370
5371
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5372
5373
				// If it's not the same as the local value...
5374
				if ( $cloud_value !== get_option( $cloud_key ) ) {
5375
5376
					// Break out if we're getting errors.  We are going to check the error keys later when we alert.
5377
					if ( 'error_code' == $cloud_key ) {
5378
						$errors[ $cloud_key ] = $cloud_value;
5379
						break;
5380
					}
5381
5382
					$parsed_cloud_value = parse_url( $cloud_value );
5383
					// If the current options is an IP address
5384
					if ( filter_var( $parsed_cloud_value['host'], FILTER_VALIDATE_IP ) ) {
5385
						// Give the new value a Jetpack to fly in to the clouds
5386
						Jetpack::resolve_identity_crisis( $cloud_key );
5387
						continue;
5388
					}
5389
5390
					// And it's not been added to the whitelist...
5391
					if ( ! self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5392
						/*
5393
						 * This should be a temporary hack until a cleaner solution is found.
5394
						 *
5395
						 * The siteurl and home can be set to use http in General > Settings
5396
						 * however some constants can be defined that can force https in wp-admin
5397
						 * when this happens wpcom can confuse wporg with a fake identity
5398
						 * crisis with a mismatch of http vs https when it should be allowed.
5399
						 * we need to check that here.
5400
						 *
5401
						 * @see https://github.com/Automattic/jetpack/issues/1006
5402
						 */
5403
						if ( ( 'home' == $cloud_key || 'siteurl' == $cloud_key )
5404
							&& ( substr( $cloud_value, 0, 8 ) == "https://" )
5405
							&& Jetpack::init()->is_ssl_required_to_visit_site() ) {
5406
							// Ok, we found a mismatch of http and https because of wp-config, not an invalid url
5407
							continue;
5408
						}
5409
5410
5411
						// Then kick an error!
5412
						$errors[ $cloud_key ] = $cloud_value;
5413
					}
5414
				}
5415
			}
5416
		}
5417
5418
		/**
5419
		 * Filters the errors returned when checking for an Identity Crisis.
5420
		 *
5421
		 * @since 2.3.2
5422
		 *
5423
		 * @param array $errors Array of Identity Crisis errors.
5424
		 * @param bool $force_recheck Ignore any cached transient and manually re-check. Default to false.
5425
		 */
5426
		return apply_filters( 'jetpack_has_identity_crisis', $errors, $force_recheck );
5427
	}
5428
5429
	/*
5430
	 * Resolve ID crisis
5431
	 *
5432
	 * If the URL has changed, but the rest of the options are the same (i.e. blog/user tokens)
5433
	 * The user has the option to update the shadow site with the new URL before a new
5434
	 * token is created.
5435
	 *
5436
	 * @param $key : Which option to sync.  null defautlts to home and siteurl
5437
	 */
5438
	public static function resolve_identity_crisis( $key = null ) {
5439
		if ( $key ) {
5440
			$identity_options = array( $key );
5441
		} else {
5442
			$identity_options = self::identity_crisis_options_to_check();
5443
		}
5444
5445
		if ( is_array( $identity_options ) ) {
5446
			foreach( $identity_options as $identity_option ) {
5447
				/**
5448
				 * Fires when a shadow site option is updated.
5449
				 * These options are updated via the Identity Crisis UI.
5450
				 * $identity_option is the option that gets updated.
5451
				 *
5452
				 * @since 3.7.0
5453
				 */
5454
				do_action( "update_option_{$identity_option}" );
5455
			}
5456
		}
5457
	}
5458
5459
	/*
5460
	 * Whitelist URL
5461
	 *
5462
	 * Ignore the URL differences between the blog and the shadow site.
5463
	 */
5464
	public static function whitelist_current_url() {
5465
		$options_to_check = Jetpack::identity_crisis_options_to_check();
5466
		$cloud_options = Jetpack::init()->get_cloud_site_options( $options_to_check );
5467
5468
		foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5469
			Jetpack::whitelist_identity_crisis_value( $cloud_key, $cloud_value );
5470
		}
5471
	}
5472
5473
	/*
5474
	 * Ajax callbacks for ID crisis resolutions
5475
	 *
5476
	 * Things that could happen here:
5477
	 *  - site_migrated : Update the URL on the shadow blog to match new domain
5478
	 *  - whitelist     : Ignore the URL difference
5479
	 *  - default       : Error message
5480
	 */
5481
	public static function resolve_identity_crisis_ajax_callback() {
5482
		check_ajax_referer( 'resolve-identity-crisis', 'ajax-nonce' );
5483
5484
		switch ( $_POST[ 'crisis_resolution_action' ] ) {
5485
			case 'site_migrated':
5486
				Jetpack::resolve_identity_crisis();
5487
				echo 'resolved';
5488
				break;
5489
5490
			case 'whitelist':
5491
				Jetpack::whitelist_current_url();
5492
				echo 'whitelisted';
5493
				break;
5494
5495
			case 'reset_connection':
5496
				// Delete the options first so it doesn't get confused which site to disconnect dotcom-side
5497
				Jetpack_Options::delete_option(
5498
					array(
5499
						'register',
5500
						'blog_token',
5501
						'user_token',
5502
						'user_tokens',
5503
						'master_user',
5504
						'time_diff',
5505
						'fallback_no_verify_ssl_certs',
5506
						'id',
5507
					)
5508
				);
5509
				delete_transient( 'jetpack_has_identity_crisis' );
5510
5511
				echo 'reset-connection-success';
5512
				break;
5513
5514
			default:
5515
				echo 'missing action';
5516
				break;
5517
		}
5518
5519
		wp_die();
5520
	}
5521
5522
	/**
5523
	 * Adds a value to the whitelist for the specified key.
5524
	 *
5525
	 * @param string $key The option name that we're whitelisting the value for.
5526
	 * @param string $value The value that we're intending to add to the whitelist.
5527
	 *
5528
	 * @return bool Whether the value was added to the whitelist, or false if it was already there.
5529
	 */
5530
	public static function whitelist_identity_crisis_value( $key, $value ) {
5531
		if ( Jetpack::is_identity_crisis_value_whitelisted( $key, $value ) ) {
5532
			return false;
5533
		}
5534
5535
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5536
		if ( empty( $whitelist[ $key ] ) || ! is_array( $whitelist[ $key ] ) ) {
5537
			$whitelist[ $key ] = array();
5538
		}
5539
		array_push( $whitelist[ $key ], $value );
5540
5541
		Jetpack_Options::update_option( 'identity_crisis_whitelist', $whitelist );
5542
		return true;
5543
	}
5544
5545
	/**
5546
	 * Checks whether a value is already whitelisted.
5547
	 *
5548
	 * @param string $key The option name that we're checking the value for.
5549
	 * @param string $value The value that we're curious to see if it's on the whitelist.
5550
	 *
5551
	 * @return bool Whether the value is whitelisted.
5552
	 */
5553
	public static function is_identity_crisis_value_whitelisted( $key, $value ) {
5554
		$whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist', array() );
5555
		if ( ! empty( $whitelist[ $key ] ) && is_array( $whitelist[ $key ] ) && in_array( $value, $whitelist[ $key ] ) ) {
5556
			return true;
5557
		}
5558
		return false;
5559
	}
5560
5561
	/**
5562
	 * Checks whether the home and siteurl specifically are whitelisted
5563
	 * Written so that we don't have re-check $key and $value params every time
5564
	 * we want to check if this site is whitelisted, for example in footer.php
5565
	 *
5566
	 * @return bool True = already whitelsisted False = not whitelisted
5567
	 */
5568
	public static function is_staging_site() {
5569
		$is_staging = false;
5570
5571
		$current_whitelist = Jetpack_Options::get_option( 'identity_crisis_whitelist' );
5572
		if ( $current_whitelist ) {
5573
			$options_to_check  = Jetpack::identity_crisis_options_to_check();
5574
			$cloud_options     = Jetpack::init()->get_cloud_site_options( $options_to_check );
5575
5576
			foreach ( $cloud_options as $cloud_key => $cloud_value ) {
5577
				if ( self::is_identity_crisis_value_whitelisted( $cloud_key, $cloud_value ) ) {
5578
					$is_staging = true;
5579
					break;
5580
				}
5581
			}
5582
		}
5583
		$known_staging = array(
5584
			'urls' => array(
5585
				'#\.staging\.wpengine\.com$#i',
5586
				),
5587
			'constants' => array(
5588
				'IS_WPE_SNAPSHOT',
5589
				'KINSTA_DEV_ENV',
5590
				'JETPACK_STAGING_MODE',
5591
				)
5592
			);
5593
		/**
5594
		 * Filters the flags of known staging sites.
5595
		 *
5596
		 * @since 3.9.0
5597
		 *
5598
		 * @param array $known_staging {
5599
		 *     An array of arrays that each are used to check if the current site is staging.
5600
		 *     @type array $urls      URLs of staging sites in regex to check against site_url.
5601
		 *     @type array $constants PHP constants of known staging/developement environments.
5602
		 *  }
5603
		 */
5604
		$known_staging = apply_filters( 'jetpack_known_staging', $known_staging );
5605
5606
		if ( isset( $known_staging['urls'] ) ) {
5607
			foreach ( $known_staging['urls'] as $url ){
5608
				if ( preg_match( $url, site_url() ) ) {
5609
					$is_staging = true;
5610
					break;
5611
				}
5612
			}
5613
		}
5614
5615
		if ( isset( $known_staging['constants'] ) ) {
5616
			foreach ( $known_staging['constants'] as $constant ) {
5617
				if ( defined( $constant ) && constant( $constant ) ) {
5618
					$is_staging = true;
5619
				}
5620
			}
5621
		}
5622
5623
		/**
5624
		 * Filters is_staging_site check.
5625
		 *
5626
		 * @since 3.9.0
5627
		 *
5628
		 * @param bool $is_staging If the current site is a staging site.
5629
		 */
5630
		return apply_filters( 'jetpack_is_staging_site', $is_staging );
5631
	}
5632
5633
	public function identity_crisis_js( $nonce ) {
5634
?>
5635
<script>
5636
(function( $ ) {
5637
	var SECOND_IN_MS = 1000;
5638
5639
	function contactSupport( e ) {
5640
		e.preventDefault();
5641
		$( '.jp-id-crisis-question' ).hide();
5642
		$( '#jp-id-crisis-contact-support' ).show();
5643
	}
5644
5645
	function autodismissSuccessBanner() {
5646
		$( '.jp-identity-crisis' ).fadeOut(600); //.addClass( 'dismiss' );
5647
	}
5648
5649
	var data = { action: 'jetpack_resolve_identity_crisis', 'ajax-nonce': '<?php echo $nonce; ?>' };
5650
5651
	$( document ).ready(function() {
5652
5653
		// Site moved: Update the URL on the shadow blog
5654
		$( '.site-moved' ).click(function( e ) {
5655
			e.preventDefault();
5656
			data.crisis_resolution_action = 'site_migrated';
5657
			$( '#jp-id-crisis-question-1 .spinner' ).show();
5658
			$.post( ajaxurl, data, function() {
5659
				$( '.jp-id-crisis-question' ).hide();
5660
				$( '.banner-title' ).hide();
5661
				$( '#jp-id-crisis-success' ).show();
5662
				setTimeout( autodismissSuccessBanner, 6 * SECOND_IN_MS );
5663
			});
5664
5665
		});
5666
5667
		// URL hasn't changed, next question please.
5668
		$( '.site-not-moved' ).click(function( e ) {
5669
			e.preventDefault();
5670
			$( '.jp-id-crisis-question' ).hide();
5671
			$( '#jp-id-crisis-question-2' ).show();
5672
		});
5673
5674
		// Reset connection: two separate sites.
5675
		$( '.reset-connection' ).click(function( e ) {
5676
			data.crisis_resolution_action = 'reset_connection';
5677
			$.post( ajaxurl, data, function( response ) {
5678
				if ( 'reset-connection-success' === response ) {
5679
					window.location.replace( '<?php echo Jetpack::admin_url(); ?>' );
5680
				}
5681
			});
5682
		});
5683
5684
		// It's a dev environment.  Ignore.
5685
		$( '.is-dev-env' ).click(function( e ) {
5686
			data.crisis_resolution_action = 'whitelist';
5687
			$( '#jp-id-crisis-question-2 .spinner' ).show();
5688
			$.post( ajaxurl, data, function() {
5689
				$( '.jp-id-crisis-question' ).hide();
5690
				$( '.banner-title' ).hide();
5691
				$( '#jp-id-crisis-success' ).show();
5692
				setTimeout( autodismissSuccessBanner, 4 * SECOND_IN_MS );
5693
			});
5694
		});
5695
5696
		$( '.not-reconnecting' ).click(contactSupport);
5697
		$( '.not-staging-or-dev' ).click(contactSupport);
5698
	});
5699
})( jQuery );
5700
</script>
5701
<?php
5702
	}
5703
5704
	/**
5705
	 * Displays an admin_notice, alerting the user to an identity crisis.
5706
	 */
5707
	public function alert_identity_crisis() {
5708
		// @todo temporary killing of feature in 3.8.1 as it revealed a number of scenarios not foreseen.
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
5709
		if ( ! Jetpack::is_development_version() ) {
5710
			return;
5711
		}
5712
5713
		// @todo temporary copout for dealing with domain mapping
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
5714
		// @see https://github.com/Automattic/jetpack/issues/2702
5715
		if ( is_multisite() && defined( 'SUNRISE' ) && ! Jetpack::is_development_version() ) {
5716
			return;
5717
		}
5718
5719
		if ( ! current_user_can( 'jetpack_disconnect' ) ) {
5720
			return;
5721
		}
5722
5723
		if ( ! $errors = self::check_identity_crisis() ) {
5724
			return;
5725
		}
5726
5727
		// Only show on dashboard and jetpack pages
5728
		$screen = get_current_screen();
5729
		if ( 'dashboard' !== $screen->base && ! did_action( 'jetpack_notices' ) ) {
5730
			return;
5731
		}
5732
5733
		// Include the js!
5734
		$ajax_nonce = wp_create_nonce( 'resolve-identity-crisis' );
5735
		$this->identity_crisis_js( $ajax_nonce );
5736
5737
		// Include the CSS!
5738
		if ( ! wp_script_is( 'jetpack', 'done' ) ) {
5739
			$this->admin_banner_styles();
5740
		}
5741
5742
		if ( ! array_key_exists( 'error_code', $errors ) ) {
5743
			$key = 'siteurl';
5744
			if ( ! $errors[ $key ] ) {
5745
				$key = 'home';
5746
			}
5747
		} else {
5748
			$key = 'error_code';
5749
			// 401 is the only error we care about.  Any other errors should not trigger the alert.
5750
			if ( 401 !== $errors[ $key ] ) {
5751
				return;
5752
			}
5753
		}
5754
5755
		?>
5756
5757
		<style>
5758
			.jp-identity-crisis .jp-btn-group {
5759
					margin: 15px 0;
5760
				}
5761
			.jp-identity-crisis strong {
5762
					color: #518d2a;
5763
				}
5764
			.jp-identity-crisis.dismiss {
5765
				display: none;
5766
			}
5767
			.jp-identity-crisis .button {
5768
				margin-right: 4px;
5769
			}
5770
		</style>
5771
5772
		<div id="message" class="error jetpack-message jp-identity-crisis stay-visible">
5773
			<div class="service-mark"></div>
5774
			<div class="jp-id-banner__content">
5775
				<!-- <h3 class="banner-title"><?php _e( 'Something\'s not quite right with your Jetpack connection! Let\'s fix that.', 'jetpack' ); ?></h3> -->
5776
5777
				<div class="jp-id-crisis-question" id="jp-id-crisis-question-1">
5778
					<?php
5779
					// 401 means that this site has been disconnected from wpcom, but the remote site still thinks it's connected.
5780
					if ( 'error_code' == $key && '401' == $errors[ $key ] ) : ?>
5781
						<div class="banner-content">
5782
							<p><?php
5783
								/* translators: %s is a URL */
5784
								printf( __( 'Our records show that this site does not have a valid connection to WordPress.com. Please reset your connection to fix this. <a href="%s" target="_blank">What caused this?</a>', 'jetpack' ), 'https://jetpack.com/support/no-valid-wordpress-com-connection/' );
5785
							?></p>
5786
						</div>
5787
						<div class="jp-btn-group">
5788
							<a href="#" class="reset-connection"><?php _e( 'Reset the connection', 'jetpack' ); ?></a>
5789
							<span class="idc-separator">|</span>
5790
							<a href="<?php echo esc_url( wp_nonce_url( Jetpack::admin_url( 'jetpack-notice=dismiss' ), 'jetpack-deactivate' ) ); ?>"><?php _e( 'Deactivate Jetpack', 'jetpack' ); ?></a>
5791
						</div>
5792
					<?php else : ?>
5793
							<div class="banner-content">
5794
							<p><?php printf( __( 'It looks like you may have changed your domain. Is <strong>%1$s</strong> still your site\'s domain, or have you updated it to <strong> %2$s </strong>?', 'jetpack' ), $errors[ $key ], (string) get_option( $key ) ); ?></p>
5795
							</div>
5796
						<div class="jp-btn-group">
5797
							<a href="#" class="regular site-moved"><?php printf( __( '%s is now my domain.', 'jetpack' ), $errors[ $key ] ); ?></a> <span class="idc-separator">|</span> <a href="#" class="site-not-moved" ><?php printf( __( '%s is still my domain.', 'jetpack' ), (string) get_option( $key ) ); ?></a>
5798
							<span class="spinner"></span>
5799
						</div>
5800
					<?php endif ; ?>
5801
				</div>
5802
5803
				<div class="jp-id-crisis-question" id="jp-id-crisis-question-2" style="display: none;">
5804
					<div class="banner-content">
5805
						<p><?php printf(
5806
							/* translators: %1$s, %2$s and %3$s are URLs */
5807
							__(
5808
								'Are <strong> %2$s </strong> and <strong> %1$s </strong> two completely separate websites? If so we should create a new connection, which will reset your followers and linked services. <a href="%3$s"><em>What does this mean?</em></a>',
5809
								'jetpack'
5810
							),
5811
							$errors[ $key ],
5812
							(string) get_option( $key ),
5813
							'https://jetpack.com/support/what-does-resetting-the-connection-mean/'
5814
						); ?></p>
5815
					</div>
5816
					<div class="jp-btn-group">
5817
						<a href="#" class="reset-connection"><?php _e( 'Reset the connection', 'jetpack' ); ?></a> <span class="idc-separator">|</span>
5818
						<a href="#" class="is-dev-env"><?php _e( 'This is a development environment', 'jetpack' ); ?></a> <span class="idc-separator">|</span>
5819
						<a href="https://jetpack.com/contact-support/" class="contact-support"><?php _e( 'Submit a support ticket', 'jetpack' ); ?></a>
5820
						<span class="spinner"></span>
5821
					</div>
5822
				</div>
5823
5824
				<div class="jp-id-crisis-success" id="jp-id-crisis-success" style="display: none;">
5825
					<h3 class="success-notice"><?php printf( __( 'Thanks for taking the time to sort things out. We&#039;ve updated our records accordingly!', 'jetpack' ) ); ?></h3>
5826
				</div>
5827
			</div>
5828
		</div>
5829
5830
		<?php
5831
	}
5832
5833
	/**
5834
	 * Maybe Use a .min.css stylesheet, maybe not.
5835
	 *
5836
	 * Hooks onto `plugins_url` filter at priority 1, and accepts all 3 args.
5837
	 */
5838
	public static function maybe_min_asset( $url, $path, $plugin ) {
5839
		// Short out on things trying to find actual paths.
5840
		if ( ! $path || empty( $plugin ) ) {
5841
			return $url;
5842
		}
5843
5844
		// Strip out the abspath.
5845
		$base = dirname( plugin_basename( $plugin ) );
5846
5847
		// Short out on non-Jetpack assets.
5848
		if ( 'jetpack/' !== substr( $base, 0, 8 ) ) {
5849
			return $url;
5850
		}
5851
5852
		// File name parsing.
5853
		$file              = "{$base}/{$path}";
5854
		$full_path         = JETPACK__PLUGIN_DIR . substr( $file, 8 );
5855
		$file_name         = substr( $full_path, strrpos( $full_path, '/' ) + 1 );
5856
		$file_name_parts_r = array_reverse( explode( '.', $file_name ) );
5857
		$extension         = array_shift( $file_name_parts_r );
5858
5859
		if ( in_array( strtolower( $extension ), array( 'css', 'js' ) ) ) {
5860
			// Already pointing at the minified version.
5861
			if ( 'min' === $file_name_parts_r[0] ) {
5862
				return $url;
5863
			}
5864
5865
			$min_full_path = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $full_path );
5866
			if ( file_exists( $min_full_path ) ) {
5867
				$url = preg_replace( "#\.{$extension}$#", ".min.{$extension}", $url );
5868
			}
5869
		}
5870
5871
		return $url;
5872
	}
5873
5874
	/**
5875
	 * Maybe inlines a stylesheet.
5876
	 *
5877
	 * If you'd like to inline a stylesheet instead of printing a link to it,
5878
	 * wp_style_add_data( 'handle', 'jetpack-inline', true );
5879
	 *
5880
	 * Attached to `style_loader_tag` filter.
5881
	 *
5882
	 * @param string $tag The tag that would link to the external asset.
5883
	 * @param string $handle The registered handle of the script in question.
5884
	 *
5885
	 * @return string
5886
	 */
5887
	public static function maybe_inline_style( $tag, $handle ) {
5888
		global $wp_styles;
5889
		$item = $wp_styles->registered[ $handle ];
5890
5891
		if ( ! isset( $item->extra['jetpack-inline'] ) || ! $item->extra['jetpack-inline'] ) {
5892
			return $tag;
5893
		}
5894
5895
		if ( preg_match( '# href=\'([^\']+)\' #i', $tag, $matches ) ) {
5896
			$href = $matches[1];
5897
			// Strip off query string
5898
			if ( $pos = strpos( $href, '?' ) ) {
5899
				$href = substr( $href, 0, $pos );
5900
			}
5901
			// Strip off fragment
5902
			if ( $pos = strpos( $href, '#' ) ) {
5903
				$href = substr( $href, 0, $pos );
5904
			}
5905
		} else {
5906
			return $tag;
5907
		}
5908
5909
		$plugins_dir = plugin_dir_url( JETPACK__PLUGIN_FILE );
5910
		if ( $plugins_dir !== substr( $href, 0, strlen( $plugins_dir ) ) ) {
5911
			return $tag;
5912
		}
5913
5914
		// If this stylesheet has a RTL version, and the RTL version replaces normal...
5915
		if ( isset( $item->extra['rtl'] ) && 'replace' === $item->extra['rtl'] && is_rtl() ) {
5916
			// And this isn't the pass that actually deals with the RTL version...
5917
			if ( false === strpos( $tag, " id='$handle-rtl-css' " ) ) {
5918
				// Short out, as the RTL version will deal with it in a moment.
5919
				return $tag;
5920
			}
5921
		}
5922
5923
		$file = JETPACK__PLUGIN_DIR . substr( $href, strlen( $plugins_dir ) );
5924
		$css  = Jetpack::absolutize_css_urls( file_get_contents( $file ), $href );
5925
		if ( $css ) {
5926
			$tag = "<!-- Inline {$item->handle} -->\r\n";
5927
			if ( empty( $item->extra['after'] ) ) {
5928
				wp_add_inline_style( $handle, $css );
5929
			} else {
5930
				array_unshift( $item->extra['after'], $css );
5931
				wp_style_add_data( $handle, 'after', $item->extra['after'] );
5932
			}
5933
		}
5934
5935
		return $tag;
5936
	}
5937
5938
	/**
5939
	 * Loads a view file from the views
5940
	 *
5941
	 * Data passed in with the $data parameter will be available in the
5942
	 * template file as $data['value']
5943
	 *
5944
	 * @param string $template - Template file to load
5945
	 * @param array $data - Any data to pass along to the template
5946
	 * @return boolean - If template file was found
5947
	 **/
5948
	public function load_view( $template, $data = array() ) {
5949
		$views_dir = JETPACK__PLUGIN_DIR . 'views/';
5950
5951
		if( file_exists( $views_dir . $template ) ) {
5952
			require_once( $views_dir . $template );
5953
			return true;
5954
		}
5955
5956
		error_log( "Jetpack: Unable to find view file $views_dir$template" );
5957
		return false;
5958
	}
5959
5960
	/**
5961
	 * Throws warnings for deprecated hooks to be removed from Jetpack
5962
	 */
5963
	public function deprecated_hooks() {
5964
		global $wp_filter;
5965
5966
		/*
5967
		 * Format:
5968
		 * deprecated_filter_name => replacement_name
5969
		 *
5970
		 * If there is no replacement us null for replacement_name
5971
		 */
5972
		$deprecated_list = array(
5973
			'jetpack_bail_on_shortcode'                => 'jetpack_shortcodes_to_include',
5974
			'wpl_sharing_2014_1'                       => null,
5975
			'jetpack-tools-to-include'                 => 'jetpack_tools_to_include',
5976
			'jetpack_identity_crisis_options_to_check' => null,
5977
			'update_option_jetpack_single_user_site'   => null,
5978
			'audio_player_default_colors'              => null,
5979
		);
5980
5981
		// This is a silly loop depth. Better way?
5982
		foreach( $deprecated_list AS $hook => $hook_alt ) {
5983
			if( isset( $wp_filter[ $hook ] ) && is_array( $wp_filter[ $hook ] ) ) {
5984
				foreach( $wp_filter[$hook] AS $func => $values ) {
5985
					foreach( $values AS $hooked ) {
5986
						_deprecated_function( $hook . ' used for ' . $hooked['function'], null, $hook_alt );
5987
					}
5988
				}
5989
			}
5990
		}
5991
	}
5992
5993
	/**
5994
	 * Converts any url in a stylesheet, to the correct absolute url.
5995
	 *
5996
	 * Considerations:
5997
	 *  - Normal, relative URLs     `feh.png`
5998
	 *  - Data URLs                 `data:image/gif;base64,eh129ehiuehjdhsa==`
5999
	 *  - Schema-agnostic URLs      `//domain.com/feh.png`
6000
	 *  - Absolute URLs             `http://domain.com/feh.png`
6001
	 *  - Domain root relative URLs `/feh.png`
6002
	 *
6003
	 * @param $css string: The raw CSS -- should be read in directly from the file.
6004
	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6005
	 *
6006
	 * @return mixed|string
6007
	 */
6008
	public static function absolutize_css_urls( $css, $css_file_url ) {
6009
		$pattern = '#url\((?P<path>[^)]*)\)#i';
6010
		$css_dir = dirname( $css_file_url );
6011
		$p       = parse_url( $css_dir );
6012
		$domain  = sprintf(
6013
					'%1$s//%2$s%3$s%4$s',
6014
					isset( $p['scheme'] )           ? "{$p['scheme']}:" : '',
6015
					isset( $p['user'], $p['pass'] ) ? "{$p['user']}:{$p['pass']}@" : '',
6016
					$p['host'],
6017
					isset( $p['port'] )             ? ":{$p['port']}" : ''
6018
				);
6019
6020
		if ( preg_match_all( $pattern, $css, $matches, PREG_SET_ORDER ) ) {
6021
			$find = $replace = array();
6022
			foreach ( $matches as $match ) {
6023
				$url = trim( $match['path'], "'\" \t" );
6024
6025
				// If this is a data url, we don't want to mess with it.
6026
				if ( 'data:' === substr( $url, 0, 5 ) ) {
6027
					continue;
6028
				}
6029
6030
				// If this is an absolute or protocol-agnostic url,
6031
				// we don't want to mess with it.
6032
				if ( preg_match( '#^(https?:)?//#i', $url ) ) {
6033
					continue;
6034
				}
6035
6036
				switch ( substr( $url, 0, 1 ) ) {
6037
					case '/':
6038
						$absolute = $domain . $url;
6039
						break;
6040
					default:
6041
						$absolute = $css_dir . '/' . $url;
6042
				}
6043
6044
				$find[]    = $match[0];
6045
				$replace[] = sprintf( 'url("%s")', $absolute );
6046
			}
6047
			$css = str_replace( $find, $replace, $css );
6048
		}
6049
6050
		return $css;
6051
	}
6052
6053
	/**
6054
	 * This method checks to see if SSL is required by the site in
6055
	 * order to visit it in some way other than only setting the
6056
	 * https value in the home or siteurl values.
6057
	 *
6058
	 * @since 3.2
6059
	 * @return boolean
6060
	 **/
6061
	private function is_ssl_required_to_visit_site() {
6062
		global $wp_version;
6063
		$ssl = is_ssl();
6064
6065
		if ( force_ssl_admin() ) {
6066
			$ssl = true;
6067
		}
6068
		return $ssl;
6069
	}
6070
6071
	/**
6072
	 * This methods removes all of the registered css files on the frontend
6073
	 * from Jetpack in favor of using a single file. In effect "imploding"
6074
	 * all the files into one file.
6075
	 *
6076
	 * Pros:
6077
	 * - Uses only ONE css asset connection instead of 15
6078
	 * - Saves a minimum of 56k
6079
	 * - Reduces server load
6080
	 * - Reduces time to first painted byte
6081
	 *
6082
	 * Cons:
6083
	 * - Loads css for ALL modules. However all selectors are prefixed so it
6084
	 *		should not cause any issues with themes.
6085
	 * - Plugins/themes dequeuing styles no longer do anything. See
6086
	 *		jetpack_implode_frontend_css filter for a workaround
6087
	 *
6088
	 * For some situations developers may wish to disable css imploding and
6089
	 * instead operate in legacy mode where each file loads seperately and
6090
	 * can be edited individually or dequeued. This can be accomplished with
6091
	 * the following line:
6092
	 *
6093
	 * add_filter( 'jetpack_implode_frontend_css', '__return_false' );
6094
	 *
6095
	 * @since 3.2
6096
	 **/
6097
	public function implode_frontend_css( $travis_test = false ) {
6098
		$do_implode = true;
6099
		if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
6100
			$do_implode = false;
6101
		}
6102
6103
		/**
6104
		 * Allow CSS to be concatenated into a single jetpack.css file.
6105
		 *
6106
		 * @since 3.2.0
6107
		 *
6108
		 * @param bool $do_implode Should CSS be concatenated? Default to true.
6109
		 */
6110
		$do_implode = apply_filters( 'jetpack_implode_frontend_css', $do_implode );
6111
6112
		// Do not use the imploded file when default behaviour was altered through the filter
6113
		if ( ! $do_implode ) {
6114
			return;
6115
		}
6116
6117
		// We do not want to use the imploded file in dev mode, or if not connected
6118
		if ( Jetpack::is_development_mode() || ! self::is_active() ) {
6119
			if ( ! $travis_test ) {
6120
				return;
6121
			}
6122
		}
6123
6124
		// Do not use the imploded file if sharing css was dequeued via the sharing settings screen
6125
		if ( get_option( 'sharedaddy_disable_resources' ) ) {
6126
			return;
6127
		}
6128
6129
		/*
6130
		 * Now we assume Jetpack is connected and able to serve the single
6131
		 * file.
6132
		 *
6133
		 * In the future there will be a check here to serve the file locally
6134
		 * or potentially from the Jetpack CDN
6135
		 *
6136
		 * For now:
6137
		 * - Enqueue a single imploded css file
6138
		 * - Zero out the style_loader_tag for the bundled ones
6139
		 * - Be happy, drink scotch
6140
		 */
6141
6142
		add_filter( 'style_loader_tag', array( $this, 'concat_remove_style_loader_tag' ), 10, 2 );
6143
6144
		$version = Jetpack::is_development_version() ? filemtime( JETPACK__PLUGIN_DIR . 'css/jetpack.css' ) : JETPACK__VERSION;
6145
6146
		wp_enqueue_style( 'jetpack_css', plugins_url( 'css/jetpack.css', __FILE__ ), array(), $version );
6147
		wp_style_add_data( 'jetpack_css', 'rtl', 'replace' );
6148
	}
6149
6150
	function concat_remove_style_loader_tag( $tag, $handle ) {
6151
		if ( in_array( $handle, $this->concatenated_style_handles ) ) {
6152
			$tag = '';
6153
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
6154
				$tag = "<!-- `" . esc_html( $handle ) . "` is included in the concatenated jetpack.css -->\r\n";
6155
			}
6156
		}
6157
6158
		return $tag;
6159
	}
6160
6161
	/*
6162
	 * Check the heartbeat data
6163
	 *
6164
	 * Organizes the heartbeat data by severity.  For example, if the site
6165
	 * is in an ID crisis, it will be in the $filtered_data['bad'] array.
6166
	 *
6167
	 * Data will be added to "caution" array, if it either:
6168
	 *  - Out of date Jetpack version
6169
	 *  - Out of date WP version
6170
	 *  - Out of date PHP version
6171
	 *
6172
	 * $return array $filtered_data
6173
	 */
6174
	public static function jetpack_check_heartbeat_data() {
6175
		$raw_data = Jetpack_Heartbeat::generate_stats_array();
6176
6177
		$good    = array();
6178
		$caution = array();
6179
		$bad     = array();
6180
6181
		foreach ( $raw_data as $stat => $value ) {
6182
6183
			// Check jetpack version
6184
			if ( 'version' == $stat ) {
6185
				if ( version_compare( $value, JETPACK__VERSION, '<' ) ) {
6186
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__VERSION;
6187
					continue;
6188
				}
6189
			}
6190
6191
			// Check WP version
6192
			if ( 'wp-version' == $stat ) {
6193
				if ( version_compare( $value, JETPACK__MINIMUM_WP_VERSION, '<' ) ) {
6194
					$caution[ $stat ] = $value . " - min supported is " . JETPACK__MINIMUM_WP_VERSION;
6195
					continue;
6196
				}
6197
			}
6198
6199
			// Check PHP version
6200
			if ( 'php-version' == $stat ) {
6201
				if ( version_compare( PHP_VERSION, '5.2.4', '<' ) ) {
6202
					$caution[ $stat ] = $value . " - min supported is 5.2.4";
6203
					continue;
6204
				}
6205
			}
6206
6207
			// Check ID crisis
6208
			if ( 'identitycrisis' == $stat ) {
6209
				if ( 'yes' == $value ) {
6210
					$bad[ $stat ] = $value;
6211
					continue;
6212
				}
6213
			}
6214
6215
			// The rest are good :)
6216
			$good[ $stat ] = $value;
6217
		}
6218
6219
		$filtered_data = array(
6220
			'good'    => $good,
6221
			'caution' => $caution,
6222
			'bad'     => $bad
6223
		);
6224
6225
		return $filtered_data;
6226
	}
6227
6228
6229
	/*
6230
	 * This method is used to organize all options that can be reset
6231
	 * without disconnecting Jetpack.
6232
	 *
6233
	 * It is used in class.jetpack-cli.php to reset options
6234
	 *
6235
	 * @return array of options to delete.
6236
	 */
6237
	public static function get_jetpack_options_for_reset() {
6238
		$jetpack_options            = Jetpack_Options::get_option_names();
6239
		$jetpack_options_non_compat = Jetpack_Options::get_option_names( 'non_compact' );
6240
		$jetpack_options_private    = Jetpack_Options::get_option_names( 'private' );
6241
6242
		$all_jp_options = array_merge( $jetpack_options, $jetpack_options_non_compat, $jetpack_options_private );
6243
6244
		// A manual build of the wp options
6245
		$wp_options = array(
6246
			'sharing-options',
6247
			'disabled_likes',
6248
			'disabled_reblogs',
6249
			'jetpack_comments_likes_enabled',
6250
			'wp_mobile_excerpt',
6251
			'wp_mobile_featured_images',
6252
			'wp_mobile_app_promos',
6253
			'stats_options',
6254
			'stats_dashboard_widget',
6255
			'safecss_preview_rev',
6256
			'safecss_rev',
6257
			'safecss_revision_migrated',
6258
			'nova_menu_order',
6259
			'jetpack_portfolio',
6260
			'jetpack_portfolio_posts_per_page',
6261
			'jetpack_testimonial',
6262
			'jetpack_testimonial_posts_per_page',
6263
			'wp_mobile_custom_css',
6264
			'sharedaddy_disable_resources',
6265
			'sharing-options',
6266
			'sharing-services',
6267
			'site_icon_temp_data',
6268
			'featured-content',
6269
			'site_logo',
6270
			'jetpack_dismissed_notices',
6271
		);
6272
6273
		// Flag some Jetpack options as unsafe
6274
		$unsafe_options = array(
6275
			'id',                           // (int)    The Client ID/WP.com Blog ID of this site.
6276
			'master_user',                  // (int)    The local User ID of the user who connected this site to jetpack.wordpress.com.
6277
			'version',                      // (string) Used during upgrade procedure to auto-activate new modules. version:time
6278
			'jumpstart',                    // (string) A flag for whether or not to show the Jump Start.  Accepts: new_connection, jumpstart_activated, jetpack_action_taken, jumpstart_dismissed.
6279
6280
			// non_compact
6281
			'activated',
6282
6283
			// private
6284
			'register',
6285
			'blog_token',                  // (string) The Client Secret/Blog Token of this site.
6286
			'user_token',                  // (string) The User Token of this site. (deprecated)
6287
			'user_tokens'
6288
		);
6289
6290
		// Remove the unsafe Jetpack options
6291
		foreach ( $unsafe_options as $unsafe_option ) {
6292
			if ( false !== ( $key = array_search( $unsafe_option, $all_jp_options ) ) ) {
6293
				unset( $all_jp_options[ $key ] );
6294
			}
6295
		}
6296
6297
		$options = array(
6298
			'jp_options' => $all_jp_options,
6299
			'wp_options' => $wp_options
6300
		);
6301
6302
		return $options;
6303
	}
6304
6305
	/**
6306
	 * Check if an option of a Jetpack module has been updated.
6307
	 *
6308
	 * If any module option has been updated before Jump Start has been dismissed,
6309
	 * update the 'jumpstart' option so we can hide Jump Start.
6310
	 *
6311
	 * @param string $option_name
6312
	 *
6313
	 * @return bool
6314
	 */
6315
	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6316
		// Bail if Jump Start has already been dismissed
6317
		if ( 'new_connection' !== Jetpack_Options::get_option( 'jumpstart' ) ) {
6318
			return false;
6319
		}
6320
6321
		$jetpack = Jetpack::init();
6322
6323
		// Manual build of module options
6324
		$option_names = self::get_jetpack_options_for_reset();
6325
6326
		if ( in_array( $option_name, $option_names['wp_options'] ) ) {
6327
			Jetpack_Options::update_option( 'jumpstart', 'jetpack_action_taken' );
6328
6329
			//Jump start is being dismissed send data to MC Stats
6330
			$jetpack->stat( 'jumpstart', 'manual,'.$option_name );
6331
6332
			$jetpack->do_stats( 'server_side' );
6333
		}
6334
6335
	}
6336
6337
	/*
6338
	 * Strip http:// or https:// from a url, replaces forward slash with ::,
6339
	 * so we can bring them directly to their site in calypso.
6340
	 *
6341
	 * @param string | url
6342
	 * @return string | url without the guff
6343
	 */
6344
	public static function build_raw_urls( $url ) {
6345
		$strip_http = '/.*?:\/\//i';
6346
		$url = preg_replace( $strip_http, '', $url  );
6347
		$url = str_replace( '/', '::', $url );
6348
		return $url;
6349
	}
6350
6351
	/**
6352
	 * Stores and prints out domains to prefetch for page speed optimization.
6353
	 *
6354
	 * @param mixed $new_urls
6355
	 */
6356
	public static function dns_prefetch( $new_urls = null ) {
6357
		static $prefetch_urls = array();
6358
		if ( empty( $new_urls ) && ! empty( $prefetch_urls ) ) {
6359
			echo "\r\n";
6360
			foreach ( $prefetch_urls as $this_prefetch_url ) {
6361
				printf( "<link rel='dns-prefetch' href='%s'>\r\n", esc_attr( $this_prefetch_url ) );
6362
			}
6363
		} elseif ( ! empty( $new_urls ) ) {
6364
			if ( ! has_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) ) ) {
6365
				add_action( 'wp_head', array( __CLASS__, __FUNCTION__ ) );
6366
			}
6367
			foreach ( (array) $new_urls as $this_new_url ) {
6368
				$prefetch_urls[] = strtolower( untrailingslashit( preg_replace( '#^https?://#i', '//', $this_new_url ) ) );
6369
			}
6370
			$prefetch_urls = array_unique( $prefetch_urls );
6371
		}
6372
	}
6373
6374
	public function wp_dashboard_setup() {
6375
		if ( self::is_active() ) {
6376
			add_action( 'jetpack_dashboard_widget', array( __CLASS__, 'dashboard_widget_footer' ), 999 );
6377
			$widget_title = __( 'Site Stats', 'jetpack' );
6378
		} elseif ( ! self::is_development_mode() && current_user_can( 'jetpack_connect' ) ) {
6379
			add_action( 'jetpack_dashboard_widget', array( $this, 'dashboard_widget_connect_to_wpcom' ) );
6380
			$widget_title = __( 'Please Connect Jetpack', 'jetpack' );
6381
		}
6382
6383
		if ( has_action( 'jetpack_dashboard_widget' ) ) {
6384
			wp_add_dashboard_widget(
6385
				'jetpack_summary_widget',
6386
				$widget_title,
0 ignored issues
show
Bug introduced by
The variable $widget_title does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
6387
				array( __CLASS__, 'dashboard_widget' )
6388
			);
6389
			wp_enqueue_style( 'jetpack-dashboard-widget', plugins_url( 'css/dashboard-widget.css', JETPACK__PLUGIN_FILE ), array(), JETPACK__VERSION );
6390
6391
			// If we're inactive and not in development mode, sort our box to the top.
6392
			if ( ! self::is_active() && ! self::is_development_mode() ) {
6393
				global $wp_meta_boxes;
6394
6395
				$dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
6396
				$ours      = array( 'jetpack_summary_widget' => $dashboard['jetpack_summary_widget'] );
6397
6398
				$wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
6399
			}
6400
		}
6401
	}
6402
6403
	/**
6404
	 * @param mixed $result Value for the user's option
0 ignored issues
show
Bug introduced by
There is no parameter named $result. Was it maybe removed?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.

Consider the following example. The parameter $italy is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
6405
	 * @return mixed
6406
	 */
6407
	function get_user_option_meta_box_order_dashboard( $sorted ) {
6408
		if ( ! is_array( $sorted ) ) {
6409
			return $sorted;
6410
		}
6411
6412
		foreach ( $sorted as $box_context => $ids ) {
6413
			if ( false === strpos( $ids, 'dashboard_stats' ) ) {
6414
				// If the old id isn't anywhere in the ids, don't bother exploding and fail out.
6415
				continue;
6416
			}
6417
6418
			$ids_array = explode( ',', $ids );
6419
			$key = array_search( 'dashboard_stats', $ids_array );
6420
6421
			if ( false !== $key ) {
6422
				// If we've found that exact value in the option (and not `google_dashboard_stats` for example)
6423
				$ids_array[ $key ] = 'jetpack_summary_widget';
6424
				$sorted[ $box_context ] = implode( ',', $ids_array );
6425
				// We've found it, stop searching, and just return.
6426
				break;
6427
			}
6428
		}
6429
6430
		return $sorted;
6431
	}
6432
6433
	public static function dashboard_widget() {
6434
		/**
6435
		 * Fires when the dashboard is loaded.
6436
		 *
6437
		 * @since 3.4.0
6438
		 */
6439
		do_action( 'jetpack_dashboard_widget' );
6440
	}
6441
6442
	public static function dashboard_widget_footer() {
6443
		?>
6444
		<footer>
6445
6446
		<div class="protect">
6447
			<?php if ( Jetpack::is_module_active( 'protect' ) ) : ?>
6448
				<h3><?php echo number_format_i18n( get_site_option( 'jetpack_protect_blocked_attempts', 0 ) ); ?></h3>
6449
				<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>
6450
			<?php elseif ( current_user_can( 'jetpack_activate_modules' ) && ! self::is_development_mode() ) : ?>
6451
				<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' ); ?>">
6452
					<?php esc_html_e( 'Activate Protect', 'jetpack' ); ?>
6453
				</a>
6454
			<?php else : ?>
6455
				<?php esc_html_e( 'Protect is inactive.', 'jetpack' ); ?>
6456
			<?php endif; ?>
6457
		</div>
6458
6459
		<div class="akismet">
6460
			<?php if ( is_plugin_active( 'akismet/akismet.php' ) ) : ?>
6461
				<h3><?php echo number_format_i18n( get_option( 'akismet_spam_count', 0 ) ); ?></h3>
6462
				<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>
6463
			<?php elseif ( current_user_can( 'activate_plugins' ) && ! is_wp_error( validate_plugin( 'akismet/akismet.php' ) ) ) : ?>
6464
				<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">
6465
					<?php esc_html_e( 'Activate Akismet', 'jetpack' ); ?>
6466
				</a>
6467
			<?php else : ?>
6468
				<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>
6469
			<?php endif; ?>
6470
		</div>
6471
6472
		</footer>
6473
		<?php
6474
	}
6475
6476
	public function dashboard_widget_connect_to_wpcom() {
6477
		if ( Jetpack::is_active() || Jetpack::is_development_mode() || ! current_user_can( 'jetpack_connect' ) ) {
6478
			return;
6479
		}
6480
		?>
6481
		<div class="wpcom-connect">
6482
			<div class="jp-emblem">
6483
			<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">
6484
				<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"/>
6485
			</svg>
6486
			</div>
6487
			<h3><?php esc_html_e( 'Please Connect Jetpack', 'jetpack' ); ?></h3>
6488
			<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>
6489
6490
			<div class="actions">
6491
				<a href="<?php echo $this->build_connect_url( false, false, 'widget-btn' ); ?>" class="button button-primary">
6492
					<?php esc_html_e( 'Connect Jetpack', 'jetpack' ); ?>
6493
				</a>
6494
			</div>
6495
		</div>
6496
		<?php
6497
	}
6498
6499
	/*
6500
	 * A graceful transition to using Core's site icon.
6501
	 *
6502
	 * All of the hard work has already been done with the image
6503
	 * in all_done_page(). All that needs to be done now is update
6504
	 * the option and display proper messaging.
6505
	 *
6506
	 * @todo remove when WP 4.3 is minimum
0 ignored issues
show
Coding Style Best Practice introduced by
Comments for TODO tasks are often forgotten in the code; it might be better to use a dedicated issue tracker.
Loading history...
6507
	 *
6508
	 * @since 3.6.1
6509
	 *
6510
	 * @return bool false = Core's icon not available || true = Core's icon is available
6511
	 */
6512
	public static function jetpack_site_icon_available_in_core() {
6513
		global $wp_version;
6514
		$core_icon_available = function_exists( 'has_site_icon' ) && version_compare( $wp_version, '4.3-beta' ) >= 0;
6515
6516
		if ( ! $core_icon_available ) {
6517
			return false;
6518
		}
6519
6520
		// No need for Jetpack's site icon anymore if core's is already set
6521
		if ( has_site_icon() ) {
6522
			if ( Jetpack::is_module_active( 'site-icon' ) ) {
6523
				Jetpack::log( 'deactivate', 'site-icon' );
6524
				Jetpack::deactivate_module( 'site-icon' );
6525
			}
6526
			return true;
6527
		}
6528
6529
		// Transfer Jetpack's site icon to use core.
6530
		$site_icon_id = Jetpack::get_option( 'site_icon_id' );
6531
		if ( $site_icon_id ) {
6532
			// Update core's site icon
6533
			update_option( 'site_icon', $site_icon_id );
6534
6535
			// Delete Jetpack's icon option. We still want the blavatar and attached data though.
6536
			delete_option( 'site_icon_id' );
6537
		}
6538
6539
		// No need for Jetpack's site icon anymore
6540
		if ( Jetpack::is_module_active( 'site-icon' ) ) {
6541
			Jetpack::log( 'deactivate', 'site-icon' );
6542
			Jetpack::deactivate_module( 'site-icon' );
6543
		}
6544
6545
		return true;
6546
	}
6547
6548
	/**
6549
	 * Return string containing the Jetpack logo.
6550
	 *
6551
	 * @since 3.9.0
6552
	 *
6553
	 * @return string
6554
	 */
6555
	public static function get_jp_emblem() {
6556
		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>';
6557
	}
6558
6559
	/*
6560
	 * Adds a "blank" column in the user admin table to display indication of user connection.
6561
	 */
6562
	function jetpack_icon_user_connected( $columns ) {
6563
		$columns['user_jetpack'] = '';
6564
		return $columns;
6565
	}
6566
6567
	/*
6568
	 * Show Jetpack icon if the user is linked.
6569
	 */
6570
	function jetpack_show_user_connected_icon( $val, $col, $user_id ) {
6571
		if ( 'user_jetpack' == $col && Jetpack::is_user_connected( $user_id ) ) {
6572
			$emblem_html = sprintf(
6573
				'<a title="%1$s" class="jp-emblem-user-admin">%2$s</a>',
6574
				esc_attr__( 'This user is linked and ready to fly with Jetpack.', 'jetpack' ),
6575
				Jetpack::get_jp_emblem()
6576
			);
6577
			return $emblem_html;
6578
		}
6579
6580
		return $val;
6581
	}
6582
6583
	/*
6584
	 * Style the Jetpack user column
6585
	 */
6586
	function jetpack_user_col_style() {
6587
		global $current_screen;
6588
		if ( 'users' == $current_screen->base ) { ?>
6589
			<style>
6590
				.fixed .column-user_jetpack {
6591
					width: 21px;
6592
				}
6593
				.jp-emblem-user-admin path {
6594
					fill: #8cc258;
6595
				}
6596
			</style>
6597
		<?php }
6598
	}
6599
6600
}
6601