Completed
Push — update/hide-settings-site-leve... ( edd57a )
by
unknown
161:27 queued 151:15
created

get_dismissed_jetpack_notices()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
1
<?php
2
use Automattic\Jetpack\Constants;
3
use Automattic\Jetpack\Connection\Manager as Connection_Manager;
4
use Automattic\Jetpack\Connection\REST_Connector;
5
use Automattic\Jetpack\Device_Detection\User_Agent_Info;
6
use Automattic\Jetpack\Licensing;
7
use Automattic\Jetpack\Partner;
8
use Automattic\Jetpack\Status;
9
10
include_once( 'class.jetpack-admin-page.php' );
11
12
// Builds the landing page and its menu
13
class Jetpack_React_Page extends Jetpack_Admin_Page {
14
15
	protected $dont_show_if_not_active = false;
16
17
	protected $is_redirecting = false;
18
19
	function get_page_hook() {
20
		// Add the main admin Jetpack menu
21
		return add_menu_page( 'Jetpack', 'Jetpack', 'jetpack_admin_page', 'jetpack', array( $this, 'render' ), 'div', 3 );
22
	}
23
24
	function add_page_actions( $hook ) {
25
		/** This action is documented in class.jetpack.php */
26
		do_action( 'jetpack_admin_menu', $hook );
27
28
		if ( ! isset( $_GET['page'] ) || 'jetpack' !== $_GET['page'] ) {
29
			return; // No need to handle the fallback redirection if we are not on the Jetpack page
30
		}
31
32
		// Adding a redirect meta tag if the REST API is disabled
33
		if ( ! $this->is_rest_api_enabled() ) {
34
			$this->is_redirecting = true;
35
			add_action( 'admin_head', array( $this, 'add_fallback_head_meta' ) );
36
		}
37
38
		// Adding a redirect meta tag wrapped in noscript tags for all browsers in case they have JavaScript disabled
39
		add_action( 'admin_head', array( $this, 'add_noscript_head_meta' ) );
40
41
		// If this is the first time the user is viewing the admin, don't show JITMs.
42
		// This filter is added just in time because this function is called on admin_menu
43
		// and JITMs are initialized on admin_init
44
		if ( Jetpack::is_connection_ready() && ! Jetpack_Options::get_option( 'first_admin_view', false ) ) {
45
			Jetpack_Options::update_option( 'first_admin_view', true );
46
			add_filter( 'jetpack_just_in_time_msgs', '__return_false' );
47
		}
48
	}
49
50
	/**
51
	 * Add Jetpack Dashboard sub-link and point it to AAG if the user can view stats, manage modules or if Protect is active.
52
	 *
53
	 * Works in Dev Mode or when user is connected.
54
	 *
55
	 * @since 4.3.0
56
	 */
57
	function jetpack_add_dashboard_sub_nav_item() {
58
		if ( ( new Status() )->is_offline_mode() || Jetpack::is_connection_ready() ) {
59
			add_submenu_page( 'jetpack', __( 'Dashboard', 'jetpack' ), __( 'Dashboard', 'jetpack' ), 'jetpack_admin_page', 'jetpack#/dashboard', '__return_null' );
60
			remove_submenu_page( 'jetpack', 'jetpack' );
61
		}
62
	}
63
64
	/**
65
	 * If user is allowed to see the Jetpack Admin, add Settings sub-link.
66
	 *
67
	 * @since 4.3.0
68
	 * @since 9.7.0 If Connection does not have an owner, restrict it to admins
69
	 */
70
	function jetpack_add_settings_sub_nav_item() {
71
		if (
72
			( ( new Status() )->is_offline_mode() || Jetpack::is_connection_ready() ) &&
73
			current_user_can( 'edit_posts' ) &&
74
			( ( new Connection_Manager( 'jetpack' ) )->has_connected_owner() || current_user_can( 'manage_options' ) )
75
		) {
76
			add_submenu_page( 'jetpack', __( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'jetpack_admin_page', 'jetpack#/settings', '__return_null' );
77
		}
78
	}
79
80
	function add_fallback_head_meta() {
81
		echo '<meta http-equiv="refresh" content="0; url=?page=jetpack_modules">';
82
	}
83
84
	function add_noscript_head_meta() {
85
		echo '<noscript>';
86
		$this->add_fallback_head_meta();
87
		echo '</noscript>';
88
	}
89
90
	/**
91
	 * Custom menu order.
92
	 *
93
	 * @deprecated since 9.2.0
94
	 * @param array $menu_order Menu order.
95
	 * @return array
96
	 */
97
	function jetpack_menu_order( $menu_order ) {
98
		_deprecated_function( __METHOD__, 'jetpack-9.2' );
99
100
		return $menu_order;
101
	}
102
103
	function page_render() {
104
		/** This action is already documented in views/admin/admin-page.php */
105
		do_action( 'jetpack_notices' );
106
107
		// Try fetching by patch
108
		$static_html = @file_get_contents( JETPACK__PLUGIN_DIR . '_inc/build/static.html' );
109
110
		if ( false === $static_html ) {
111
112
			// If we still have nothing, display an error
113
			echo '<p>';
114
			esc_html_e( 'Error fetching static.html. Try running: ', 'jetpack' );
115
			echo '<code>yarn distclean && yarn build</code>';
116
			echo '</p>';
117
		} else {
118
119
			// We got the static.html so let's display it
120
			echo $static_html;
121
		}
122
	}
123
124
	/**
125
	 * Gets array of any Jetpack notices that have been dismissed.
126
	 *
127
	 * @since 4.0.1
128
	 * @return mixed|void
129
	 */
130
	function get_dismissed_jetpack_notices() {
131
		$jetpack_dismissed_notices = get_option( 'jetpack_dismissed_notices', array() );
132
		/**
133
		 * Array of notices that have been dismissed.
134
		 *
135
		 * @since 4.0.1
136
		 *
137
		 * @param array $jetpack_dismissed_notices If empty, will not show any Jetpack notices.
138
		 */
139
		$dismissed_notices = apply_filters( 'jetpack_dismissed_notices', $jetpack_dismissed_notices );
140
		return $dismissed_notices;
141
	}
142
143
	function additional_styles() {
144
		Jetpack_Admin_Page::load_wrapper_styles();
145
	}
146
147
	function page_admin_scripts() {
148
		if ( $this->is_redirecting ) {
149
			return; // No need for scripts on a fallback page
150
		}
151
152
		$status              = new Status();
153
		$is_offline_mode     = $status->is_offline_mode();
154
		$site_suffix         = $status->get_site_suffix();
155
		$script_deps_path    = JETPACK__PLUGIN_DIR . '_inc/build/admin.asset.php';
156
		$script_dependencies = array( 'wp-polyfill' );
157
		if ( file_exists( $script_deps_path ) ) {
158
			$asset_manifest      = include $script_deps_path;
159
			$script_dependencies = $asset_manifest['dependencies'];
160
		}
161
162
		wp_enqueue_script(
163
			'react-plugin',
164
			plugins_url( '_inc/build/admin.js', JETPACK__PLUGIN_FILE ),
165
			$script_dependencies,
166
			JETPACK__VERSION,
167
			true
168
		);
169
170
		if ( ! $is_offline_mode && Jetpack::is_connection_ready() ) {
171
			// Required for Analytics.
172
			wp_enqueue_script( 'jp-tracks', '//stats.wp.com/w.js', array(), gmdate( 'YW' ), true );
173
		}
174
175
		wp_set_script_translations( 'react-plugin', 'jetpack' );
176
177
		// Add objects to be passed to the initial state of the app.
178
		// Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280.
179
		wp_add_inline_script( 'react-plugin', 'var Initial_State=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( $this->get_initial_state() ) ) . '"));', 'before' );
180
181
		// This will set the default URL of the jp_redirects lib.
182
		wp_add_inline_script( 'react-plugin', 'var jetpack_redirects = { currentSiteRawUrl: "' . $site_suffix . '" };', 'before' );
183
	}
184
185
	function get_initial_state() {
186
		global $is_safari;
187
188
		// Load API endpoint base classes and endpoints for getting the module list fed into the JS Admin Page
189
		require_once JETPACK__PLUGIN_DIR . '_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php';
190
		require_once JETPACK__PLUGIN_DIR . '_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php';
191
		$moduleListEndpoint = new Jetpack_Core_API_Module_List_Endpoint();
192
		$modules = $moduleListEndpoint->get_modules();
193
194
		// Preparing translated fields for JSON encoding by transforming all HTML entities to
195
		// respective characters.
196
		foreach( $modules as $slug => $data ) {
0 ignored issues
show
Bug introduced by
The expression $modules of type string|array is not guaranteed to be traversable. How about adding an additional type check?

There are different options of fixing this problem.

  1. If you want to be on the safe side, you can add an additional type-check:

    $collection = json_decode($data, true);
    if ( ! is_array($collection)) {
        throw new \RuntimeException('$collection must be an array.');
    }
    
    foreach ($collection as $item) { /** ... */ }
    
  2. If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:

    /** @var array $collection */
    $collection = json_decode($data, true);
    
    foreach ($collection as $item) { /** .. */ }
    
  3. Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.

Loading history...
197
			$modules[ $slug ]['name'] = html_entity_decode( $data['name'] );
198
			$modules[ $slug ]['description'] = html_entity_decode( $data['description'] );
199
			$modules[ $slug ]['short_description'] = html_entity_decode( $data['short_description'] );
200
			$modules[ $slug ]['long_description'] = html_entity_decode( $data['long_description'] );
201
		}
202
203
		// Collecting roles that can view site stats.
204
		$stats_roles = array();
205
		$enabled_roles = function_exists( 'stats_get_option' ) ? stats_get_option( 'roles' ) : array( 'administrator' );
206
207
		if ( ! function_exists( 'get_editable_roles' ) ) {
208
			require_once ABSPATH . 'wp-admin/includes/user.php';
209
		}
210
		foreach ( get_editable_roles() as $slug => $role ) {
211
			$stats_roles[ $slug ] = array(
212
				'name' => translate_user_role( $role['name'] ),
213
				'canView' => is_array( $enabled_roles ) ? in_array( $slug, $enabled_roles, true ) : false,
214
			);
215
		}
216
217
		// Get information about current theme.
218
		$current_theme = wp_get_theme();
219
220
		// Get all themes that Infinite Scroll provides support for natively.
221
		$inf_scr_support_themes = array();
222
		foreach ( Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules/infinite-scroll/themes' ) as $path ) {
223
			if ( is_readable( $path ) ) {
224
				$inf_scr_support_themes[] = basename( $path, '.php' );
225
			}
226
		}
227
228
		// Get last post, to build the link to Customizer in the Related Posts module.
229
		$last_post = get_posts( array( 'posts_per_page' => 1 ) );
230
		$last_post = isset( $last_post[0] ) && $last_post[0] instanceof WP_Post
0 ignored issues
show
Bug introduced by
The class WP_Post does not exist. Did you forget a USE statement, or did you not list all dependencies?

This error could be the result of:

1. Missing dependencies

PHP Analyzer uses your composer.json file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects the composer.json to be in the root folder of your repository.

Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the require or require-dev section?

2. Missing use statement

PHP does not complain about undefined classes in ìnstanceof checks. For example, the following PHP code will work perfectly fine:

if ($x instanceof DoesNotExist) {
    // Do something.
}

If you have not tested against this specific condition, such errors might go unnoticed.

Loading history...
231
			? get_permalink( $last_post[0]->ID )
232
			: get_home_url();
233
234
		$current_user_data = jetpack_current_user_data();
235
236
		/**
237
		 * Adds information to the `connectionStatus` API field that is unique to the Jetpack React dashboard.
238
		 */
239
		$connection_status = array(
240
			'isInIdentityCrisis' => Jetpack::validate_sync_error_idc_option(),
241
			'sandboxDomain'      => JETPACK__SANDBOX_DOMAIN,
242
243
			/**
244
			 * Filter to add connection errors
245
			 * Format: array( array( 'code' => '...', 'message' => '...', 'action' => '...' ), ... )
246
			 *
247
			 * @since 8.7.0
248
			 *
249
			 * @param array $errors Connection errors.
250
			 */
251
			'errors'             => apply_filters( 'react_connection_errors_initial_state', array() ),
252
		);
253
254
		$connection_status = array_merge( REST_Connector::connection_status( false ), $connection_status );
255
256
		return array(
257
			'WP_API_root'                 => esc_url_raw( rest_url() ),
258
			'WP_API_nonce'                => wp_create_nonce( 'wp_rest' ),
259
			'pluginBaseUrl'               => plugins_url( '', JETPACK__PLUGIN_FILE ),
260
			'connectionStatus'            => $connection_status,
261
			'connectUrl'                  => false == $current_user_data['isConnected'] // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
262
				? Jetpack::init()->build_connect_url( true, false, false )
263
				: '',
264
			'dismissedNotices'            => $this->get_dismissed_jetpack_notices(),
265
			'isDevVersion'                => Jetpack::is_development_version(),
266
			'currentVersion'              => JETPACK__VERSION,
267
			'is_gutenberg_available'      => true,
268
			'getModules'                  => $modules,
269
			'rawUrl'                      => ( new Status() )->get_site_suffix(),
270
			'adminUrl'                    => esc_url( admin_url() ),
271
			'siteTitle'                   => (string) htmlspecialchars_decode( get_option( 'blogname' ), ENT_QUOTES ),
272
			'stats'                       => array(
273
				// data is populated asynchronously on page load.
274
				'data'  => array(
275
					'general' => false,
276
					'day'     => false,
277
					'week'    => false,
278
					'month'   => false,
279
				),
280
				'roles' => $stats_roles,
281
			),
282
			'aff'                         => Partner::init()->get_partner_code( Partner::AFFILIATE_CODE ),
283
			'partnerSubsidiaryId'         => Partner::init()->get_partner_code( Partner::SUBSIDIARY_CODE ),
284
			'settings'                    => $this->get_flattened_settings( $modules ),
0 ignored issues
show
Bug introduced by
It seems like $modules defined by $moduleListEndpoint->get_modules() on line 192 can also be of type string; however, Jetpack_React_Page::get_flattened_settings() does only seem to accept array, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
285
			'userData'                    => array(
286
				'currentUser' => $current_user_data,
287
			),
288
			'siteData'                    => array(
289
				'icon'                       => has_site_icon()
290
					? apply_filters( 'jetpack_photon_url', get_site_icon_url(), array( 'w' => 64 ) )
0 ignored issues
show
Unused Code introduced by
The call to apply_filters() has too many arguments starting with array('w' => 64).

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
291
					: '',
292
				'siteVisibleToSearchEngines' => '1' == get_option( 'blog_public' ), // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
293
				/**
294
				 * Whether promotions are visible or not.
295
				 *
296
				 * @since 4.8.0
297
				 *
298
				 * @param bool $are_promotions_active Status of promotions visibility. True by default.
299
				 */
300
				'showPromotions'             => apply_filters( 'jetpack_show_promotions', true ),
301
				'isAtomicSite'               => jetpack_is_atomic_site(),
302
				'plan'                       => Jetpack_Plan::get(),
303
				'showBackups'                => Jetpack::show_backups_ui(),
304
				'showRecommendations'        => Jetpack_Recommendations::is_enabled(),
305
				'isMultisite'                => is_multisite(),
306
				'dateFormat'                 => get_option( 'date_format' ),
307
			),
308
			'themeData'                   => array(
309
				'name'      => $current_theme->get( 'Name' ),
310
				'hasUpdate' => (bool) get_theme_update_available( $current_theme ),
311
				'support'   => array(
312
					'infinite-scroll' => current_theme_supports( 'infinite-scroll' ) || in_array( $current_theme->get_stylesheet(), $inf_scr_support_themes, true ),
313
				),
314
			),
315
			'jetpackStateNotices'         => array(
316
				'messageCode'      => Jetpack::state( 'message' ),
317
				'errorCode'        => Jetpack::state( 'error' ),
318
				'errorDescription' => Jetpack::state( 'error_description' ),
319
				'messageContent'   => Jetpack::state( 'display_update_modal' ) ? $this->get_update_modal_data() : null,
320
			),
321
			'tracksUserData'              => Jetpack_Tracks_Client::get_connected_user_tracks_identity(),
322
			'currentIp'                   => function_exists( 'jetpack_protect_get_ip' ) ? jetpack_protect_get_ip() : false,
323
			'lastPostUrl'                 => esc_url( $last_post ),
324
			'externalServicesConnectUrls' => $this->get_external_services_connect_urls(),
325
			'calypsoEnv'                  => Jetpack::get_calypso_env(),
326
			'products'                    => Jetpack::get_products_for_purchase(),
327
			'recommendationsStep'         => Jetpack_Core_Json_Api_Endpoints::get_recommendations_step()['step'],
328
			'isSafari'                    => $is_safari || User_Agent_Info::is_opera_desktop(), // @todo Rename isSafari everywhere.
329
			'doNotUseConnectionIframe'    => Constants::is_true( 'JETPACK_SHOULD_NOT_USE_CONNECTION_IFRAME' ),
330
			'licensing'                   => array(
331
				'error'           => Licensing::instance()->last_error(),
332
				'showLicensingUi' => Licensing::instance()->is_licensing_input_enabled(),
333
			),
334
		);
335
	}
336
337
	function get_external_services_connect_urls() {
338
		$connect_urls = array();
339
		jetpack_require_lib( 'class.jetpack-keyring-service-helper' );
340
		foreach ( Jetpack_Keyring_Service_Helper::$SERVICES as $service_name => $service_info ) {
341
			$connect_urls[ $service_name ] = Jetpack_Keyring_Service_Helper::connect_url( $service_name, $service_info[ 'for' ] );
342
		}
343
		return $connect_urls;
344
	}
345
346
	/**
347
	 * Returns an array of modules and settings both as first class members of the object.
348
	 *
349
	 * @param array $modules the result of an API request to get all modules.
350
	 *
351
	 * @return array flattened settings with modules.
352
	 */
353
	function get_flattened_settings( $modules ) {
354
		$core_api_endpoint = new Jetpack_Core_API_Data();
355
		$settings = $core_api_endpoint->get_all_options();
356
		return $settings->data;
357
	}
358
359
	/**
360
	 * Returns the release post content and image data as an associative array.
361
	 * This data is used to create the update modal.
362
	 */
363
	public function get_update_modal_data() {
364
		$post_data = $this->get_release_post_data();
365
366
		if ( ! isset( $post_data['posts'][0] ) ) {
367
			return;
368
		}
369
370
		$post = $post_data['posts'][0];
371
372
		if ( empty( $post['content'] ) ) {
373
			return;
374
		}
375
376
		// This allows us to embed videopress videos into the release post.
377
		add_filter( 'wp_kses_allowed_html', array( $this, 'allow_post_embed_iframe' ), 10, 2 );
378
		$content = wp_kses_post( $post['content'] );
379
		remove_filter( 'wp_kses_allowed_html', array( $this, 'allow_post_embed_iframe' ), 10, 2 );
0 ignored issues
show
Unused Code introduced by
The call to remove_filter() has too many arguments starting with 2.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
380
381
		$post_title = isset( $post['title'] ) ? $post['title'] : null;
382
		$title      = wp_kses( $post_title, array() );
383
384
		$post_thumbnail = isset( $post['post_thumbnail'] ) ? $post['post_thumbnail'] : null;
385
		if ( ! empty( $post_thumbnail ) ) {
386
			jetpack_require_lib( 'class.jetpack-photon-image' );
387
			$photon_image = new Jetpack_Photon_Image(
388
				array(
389
					'file'   => jetpack_photon_url( $post_thumbnail['URL'] ),
390
					'width'  => $post_thumbnail['width'],
391
					'height' => $post_thumbnail['height'],
392
				),
393
				$post_thumbnail['mime_type']
394
			);
395
			$photon_image->resize(
396
				array(
397
					'width'  => 600,
398
					'height' => null,
399
					'crop'   => false,
400
				)
401
			);
402
			$post_thumbnail_url = $photon_image->get_raw_filename();
403
		} else {
404
			$post_thumbnail_url = null;
405
		}
406
407
		$post_array = array(
408
			'release_post_content'        => $content,
409
			'release_post_featured_image' => $post_thumbnail_url,
410
			'release_post_title'          => $title,
411
		);
412
413
		return $post_array;
414
	}
415
416
	/**
417
	 * Temporarily allow post content to contain iframes, e.g. for videopress.
418
	 *
419
	 * @param string $tags    The tags.
420
	 * @param string $context The context.
421
	 */
422
	public function allow_post_embed_iframe( $tags, $context ) {
423
		if ( 'post' === $context ) {
424
			$tags['iframe'] = array(
425
				'src'             => true,
426
				'height'          => true,
427
				'width'           => true,
428
				'frameborder'     => true,
429
				'allowfullscreen' => true,
430
			);
431
		}
432
433
		return $tags;
434
	}
435
436
	/**
437
	 * Obtains the release post from the Jetpack release post blog. A release post will be displayed in the
438
	 * update modal when a post has a tag equal to the Jetpack version number.
439
	 *
440
	 * The response parameters for the post array can be found here:
441
	 * https://developer.wordpress.com/docs/api/1.1/get/sites/%24site/posts/%24post_ID/#apidoc-response
442
	 *
443
	 * @return array|null Returns an associative array containing the release post data at index ['posts'][0].
444
	 *                    Returns null if the release post data is not available.
445
	 */
446
	private function get_release_post_data() {
447
		if ( Constants::is_defined( 'TESTING_IN_JETPACK' ) && Constants::get_constant( 'TESTING_IN_JETPACK' ) ) {
448
			return null;
449
		}
450
451
		$release_post_src = add_query_arg(
452
			array(
453
				'order_by' => 'date',
454
				'tag'      => JETPACK__VERSION,
455
				'number'   => '1',
456
			),
457
			'https://public-api.wordpress.com/rest/v1/sites/' . JETPACK__RELEASE_POST_BLOG_SLUG . '/posts'
458
		);
459
460
		$response = wp_remote_get( $release_post_src );
461
462
		if ( ! is_array( $response ) ) {
463
			return null;
464
		}
465
466
		return json_decode( wp_remote_retrieve_body( $response ), true );
467
	}
468
}
469
470
/**
471
 * Gather data about the current user.
472
 *
473
 * @since 4.1.0
474
 *
475
 * @return array
476
 */
477
function jetpack_current_user_data() {
478
	$jetpack_connection = new Connection_Manager( 'jetpack' );
479
480
	$current_user   = wp_get_current_user();
481
	$is_master_user = $current_user->ID == Jetpack_Options::get_option( 'master_user' );
482
	$dotcom_data    = $jetpack_connection->get_connected_user_data();
483
484
	// Add connected user gravatar to the returned dotcom_data.
485
	$dotcom_data['avatar'] = ( ! empty( $dotcom_data['email'] ) ?
486
		get_avatar_url(
487
			$dotcom_data['email'],
488
			array(
489
				'size'    => 64,
490
				'default' => 'mysteryman',
491
			)
492
		)
493
		: false );
494
495
	$current_user_data = array(
496
		'isConnected' => $jetpack_connection->is_user_connected( $current_user->ID ),
497
		'isMaster'    => $is_master_user,
498
		'username'    => $current_user->user_login,
499
		'id'          => $current_user->ID,
500
		'wpcomUser'   => $dotcom_data,
501
		'gravatar'    => get_avatar_url( $current_user->ID, 64, 'mm', '', array( 'force_display' => true ) ),
502
		'permissions' => array(
503
			'admin_page'         => current_user_can( 'jetpack_admin_page' ),
504
			'connect'            => current_user_can( 'jetpack_connect' ),
505
			'connect_user'       => current_user_can( 'jetpack_connect_user' ),
506
			'disconnect'         => current_user_can( 'jetpack_disconnect' ),
507
			'manage_modules'     => current_user_can( 'jetpack_manage_modules' ),
508
			'network_admin'      => current_user_can( 'jetpack_network_admin_page' ),
509
			'network_sites_page' => current_user_can( 'jetpack_network_sites_page' ),
510
			'edit_posts'         => current_user_can( 'edit_posts' ),
511
			'publish_posts'      => current_user_can( 'publish_posts' ),
512
			'manage_options'     => current_user_can( 'manage_options' ),
513
			'view_stats'         => current_user_can( 'view_stats' ),
514
			'manage_plugins'     => current_user_can( 'install_plugins' )
515
									&& current_user_can( 'activate_plugins' )
516
									&& current_user_can( 'update_plugins' )
517
									&& current_user_can( 'delete_plugins' ),
518
		),
519
	);
520
521
	return $current_user_data;
522
}
523