Completed
Push — fix/reduce-db-queries ( 61f6a8...ad3872 )
by
unknown
21:01 queued 11:50
created

Jetpack::alert_identity_crisis()   D

Complexity

Conditions 15
Paths 19

Size

Total Lines 125
Code Lines 54

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 15
eloc 54
nc 19
nop 0
dl 0
loc 125
rs 4.9121
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
C Jetpack::maybe_inline_style() 0 50 13
A Jetpack::load_view() 0 11 2

How to fix   Long Method    Complexity   

Long Method

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

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

Commonly applied refactorings include:

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