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
|
|
|
* Determine whether a user can access the Jetpack Settings page. |
66
|
|
|
* |
67
|
|
|
* Rules are: |
68
|
|
|
* - user is allowed to see the Jetpack Admin |
69
|
|
|
* - site is connected or in offline mode |
70
|
|
|
* - non-admins only need access to the settings when there are modules they can manage. |
71
|
|
|
* |
72
|
|
|
* @return bool $can_access_settings Can the user access settings. |
73
|
|
|
*/ |
74
|
|
|
private function can_access_settings() { |
75
|
|
|
$connection = new Connection_Manager( 'jetpack' ); |
76
|
|
|
$status = new Status(); |
77
|
|
|
|
78
|
|
|
// User must have the necessary permissions to see the Jetpack settings pages. |
79
|
|
|
if ( ! current_user_can( 'edit_posts' ) ) { |
80
|
|
|
return false; |
81
|
|
|
} |
82
|
|
|
|
83
|
|
|
// In offline mode, allow access to admins. |
84
|
|
|
if ( $status->is_offline_mode() && current_user_can( 'manage_options' ) ) { |
85
|
|
|
return true; |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
// If not in offline mode but site is not connected, bail. |
89
|
|
|
if ( ! Jetpack::is_connection_ready() ) { |
90
|
|
|
return false; |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
/* |
94
|
|
|
* Additional checks for non-admins. |
95
|
|
|
*/ |
96
|
|
|
if ( ! current_user_can( 'manage_options' ) ) { |
97
|
|
|
// If the site isn't connected at all, bail. |
98
|
|
|
if ( ! $connection->has_connected_owner() ) { |
99
|
|
|
return false; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/* |
103
|
|
|
* If they haven't connected their own account yet, |
104
|
|
|
* they have no use for the settings page. |
105
|
|
|
* They will not be able to manage any settings. |
106
|
|
|
*/ |
107
|
|
|
if ( ! $connection->is_user_connected() ) { |
108
|
|
|
return false; |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/* |
112
|
|
|
* Non-admins only have access to settings |
113
|
|
|
* for the following modules: |
114
|
|
|
* - Publicize |
115
|
|
|
* - Post By Email |
116
|
|
|
* If those modules are not available, bail. |
117
|
|
|
*/ |
118
|
|
|
if ( |
119
|
|
|
! Jetpack::is_module_active( 'post-by-email' ) |
120
|
|
|
&& ! Jetpack::is_module_active( 'publicize' ) |
121
|
|
|
) { |
122
|
|
|
return false; |
123
|
|
|
} |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
// fallback. |
127
|
|
|
return true; |
128
|
|
|
} |
129
|
|
|
|
130
|
|
|
/** |
131
|
|
|
* Jetpack Settings sub-link. |
132
|
|
|
* |
133
|
|
|
* @since 4.3.0 |
134
|
|
|
* @since 9.7.0 If Connection does not have an owner, restrict it to admins |
135
|
|
|
*/ |
136
|
|
|
function jetpack_add_settings_sub_nav_item() { |
137
|
|
|
if ( $this->can_access_settings() ) { |
138
|
|
|
add_submenu_page( 'jetpack', __( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'jetpack_admin_page', 'jetpack#/settings', '__return_null' ); |
139
|
|
|
} |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
function add_fallback_head_meta() { |
143
|
|
|
echo '<meta http-equiv="refresh" content="0; url=?page=jetpack_modules">'; |
144
|
|
|
} |
145
|
|
|
|
146
|
|
|
function add_noscript_head_meta() { |
147
|
|
|
echo '<noscript>'; |
148
|
|
|
$this->add_fallback_head_meta(); |
149
|
|
|
echo '</noscript>'; |
150
|
|
|
} |
151
|
|
|
|
152
|
|
|
/** |
153
|
|
|
* Custom menu order. |
154
|
|
|
* |
155
|
|
|
* @deprecated since 9.2.0 |
156
|
|
|
* @param array $menu_order Menu order. |
157
|
|
|
* @return array |
158
|
|
|
*/ |
159
|
|
|
function jetpack_menu_order( $menu_order ) { |
160
|
|
|
_deprecated_function( __METHOD__, 'jetpack-9.2' ); |
161
|
|
|
|
162
|
|
|
return $menu_order; |
163
|
|
|
} |
164
|
|
|
|
165
|
|
|
function page_render() { |
166
|
|
|
/** This action is already documented in views/admin/admin-page.php */ |
167
|
|
|
do_action( 'jetpack_notices' ); |
168
|
|
|
|
169
|
|
|
// Try fetching by patch |
170
|
|
|
$static_html = @file_get_contents( JETPACK__PLUGIN_DIR . '_inc/build/static.html' ); |
171
|
|
|
|
172
|
|
|
if ( false === $static_html ) { |
173
|
|
|
|
174
|
|
|
// If we still have nothing, display an error |
175
|
|
|
echo '<p>'; |
176
|
|
|
esc_html_e( 'Error fetching static.html. Try running: ', 'jetpack' ); |
177
|
|
|
echo '<code>yarn distclean && yarn build</code>'; |
178
|
|
|
echo '</p>'; |
179
|
|
|
} else { |
180
|
|
|
|
181
|
|
|
// We got the static.html so let's display it |
182
|
|
|
echo $static_html; |
183
|
|
|
} |
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
/** |
187
|
|
|
* Gets array of any Jetpack notices that have been dismissed. |
188
|
|
|
* |
189
|
|
|
* @since 4.0.1 |
190
|
|
|
* @return mixed|void |
191
|
|
|
*/ |
192
|
|
|
function get_dismissed_jetpack_notices() { |
193
|
|
|
$jetpack_dismissed_notices = get_option( 'jetpack_dismissed_notices', array() ); |
194
|
|
|
/** |
195
|
|
|
* Array of notices that have been dismissed. |
196
|
|
|
* |
197
|
|
|
* @since 4.0.1 |
198
|
|
|
* |
199
|
|
|
* @param array $jetpack_dismissed_notices If empty, will not show any Jetpack notices. |
200
|
|
|
*/ |
201
|
|
|
$dismissed_notices = apply_filters( 'jetpack_dismissed_notices', $jetpack_dismissed_notices ); |
202
|
|
|
return $dismissed_notices; |
203
|
|
|
} |
204
|
|
|
|
205
|
|
|
function additional_styles() { |
206
|
|
|
Jetpack_Admin_Page::load_wrapper_styles(); |
207
|
|
|
} |
208
|
|
|
|
209
|
|
|
function page_admin_scripts() { |
210
|
|
|
if ( $this->is_redirecting ) { |
211
|
|
|
return; // No need for scripts on a fallback page |
212
|
|
|
} |
213
|
|
|
|
214
|
|
|
$status = new Status(); |
215
|
|
|
$is_offline_mode = $status->is_offline_mode(); |
216
|
|
|
$site_suffix = $status->get_site_suffix(); |
217
|
|
|
$script_deps_path = JETPACK__PLUGIN_DIR . '_inc/build/admin.asset.php'; |
218
|
|
|
$script_dependencies = array( 'wp-polyfill' ); |
219
|
|
|
if ( file_exists( $script_deps_path ) ) { |
220
|
|
|
$asset_manifest = include $script_deps_path; |
221
|
|
|
$script_dependencies = $asset_manifest['dependencies']; |
222
|
|
|
} |
223
|
|
|
|
224
|
|
|
wp_enqueue_script( |
225
|
|
|
'react-plugin', |
226
|
|
|
plugins_url( '_inc/build/admin.js', JETPACK__PLUGIN_FILE ), |
227
|
|
|
$script_dependencies, |
228
|
|
|
JETPACK__VERSION, |
229
|
|
|
true |
230
|
|
|
); |
231
|
|
|
|
232
|
|
|
if ( ! $is_offline_mode && Jetpack::is_connection_ready() ) { |
233
|
|
|
// Required for Analytics. |
234
|
|
|
wp_enqueue_script( 'jp-tracks', '//stats.wp.com/w.js', array(), gmdate( 'YW' ), true ); |
235
|
|
|
} |
236
|
|
|
|
237
|
|
|
wp_set_script_translations( 'react-plugin', 'jetpack' ); |
238
|
|
|
|
239
|
|
|
// Add objects to be passed to the initial state of the app. |
240
|
|
|
// Use wp_add_inline_script instead of wp_localize_script, see https://core.trac.wordpress.org/ticket/25280. |
241
|
|
|
wp_add_inline_script( 'react-plugin', 'var Initial_State=JSON.parse(decodeURIComponent("' . rawurlencode( wp_json_encode( $this->get_initial_state() ) ) . '"));', 'before' ); |
242
|
|
|
|
243
|
|
|
// This will set the default URL of the jp_redirects lib. |
244
|
|
|
wp_add_inline_script( 'react-plugin', 'var jetpack_redirects = { currentSiteRawUrl: "' . $site_suffix . '" };', 'before' ); |
245
|
|
|
} |
246
|
|
|
|
247
|
|
|
function get_initial_state() { |
248
|
|
|
global $is_safari; |
249
|
|
|
|
250
|
|
|
// Load API endpoint base classes and endpoints for getting the module list fed into the JS Admin Page |
251
|
|
|
require_once JETPACK__PLUGIN_DIR . '_inc/lib/core-api/class.jetpack-core-api-xmlrpc-consumer-endpoint.php'; |
252
|
|
|
require_once JETPACK__PLUGIN_DIR . '_inc/lib/core-api/class.jetpack-core-api-module-endpoints.php'; |
253
|
|
|
$moduleListEndpoint = new Jetpack_Core_API_Module_List_Endpoint(); |
254
|
|
|
$modules = $moduleListEndpoint->get_modules(); |
255
|
|
|
|
256
|
|
|
// Preparing translated fields for JSON encoding by transforming all HTML entities to |
257
|
|
|
// respective characters. |
258
|
|
|
foreach( $modules as $slug => $data ) { |
|
|
|
|
259
|
|
|
$modules[ $slug ]['name'] = html_entity_decode( $data['name'] ); |
260
|
|
|
$modules[ $slug ]['description'] = html_entity_decode( $data['description'] ); |
261
|
|
|
$modules[ $slug ]['short_description'] = html_entity_decode( $data['short_description'] ); |
262
|
|
|
$modules[ $slug ]['long_description'] = html_entity_decode( $data['long_description'] ); |
263
|
|
|
} |
264
|
|
|
|
265
|
|
|
// Collecting roles that can view site stats. |
266
|
|
|
$stats_roles = array(); |
267
|
|
|
$enabled_roles = function_exists( 'stats_get_option' ) ? stats_get_option( 'roles' ) : array( 'administrator' ); |
268
|
|
|
|
269
|
|
|
if ( ! function_exists( 'get_editable_roles' ) ) { |
270
|
|
|
require_once ABSPATH . 'wp-admin/includes/user.php'; |
271
|
|
|
} |
272
|
|
|
foreach ( get_editable_roles() as $slug => $role ) { |
273
|
|
|
$stats_roles[ $slug ] = array( |
274
|
|
|
'name' => translate_user_role( $role['name'] ), |
275
|
|
|
'canView' => is_array( $enabled_roles ) ? in_array( $slug, $enabled_roles, true ) : false, |
276
|
|
|
); |
277
|
|
|
} |
278
|
|
|
|
279
|
|
|
// Get information about current theme. |
280
|
|
|
$current_theme = wp_get_theme(); |
281
|
|
|
|
282
|
|
|
// Get all themes that Infinite Scroll provides support for natively. |
283
|
|
|
$inf_scr_support_themes = array(); |
284
|
|
|
foreach ( Jetpack::glob_php( JETPACK__PLUGIN_DIR . 'modules/infinite-scroll/themes' ) as $path ) { |
285
|
|
|
if ( is_readable( $path ) ) { |
286
|
|
|
$inf_scr_support_themes[] = basename( $path, '.php' ); |
287
|
|
|
} |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
// Get last post, to build the link to Customizer in the Related Posts module. |
291
|
|
|
$last_post = get_posts( array( 'posts_per_page' => 1 ) ); |
292
|
|
|
$last_post = isset( $last_post[0] ) && $last_post[0] instanceof WP_Post |
|
|
|
|
293
|
|
|
? get_permalink( $last_post[0]->ID ) |
294
|
|
|
: get_home_url(); |
295
|
|
|
|
296
|
|
|
$current_user_data = jetpack_current_user_data(); |
297
|
|
|
|
298
|
|
|
/** |
299
|
|
|
* Adds information to the `connectionStatus` API field that is unique to the Jetpack React dashboard. |
300
|
|
|
*/ |
301
|
|
|
$connection_status = array( |
302
|
|
|
'isInIdentityCrisis' => Jetpack::validate_sync_error_idc_option(), |
303
|
|
|
'sandboxDomain' => JETPACK__SANDBOX_DOMAIN, |
304
|
|
|
|
305
|
|
|
/** |
306
|
|
|
* Filter to add connection errors |
307
|
|
|
* Format: array( array( 'code' => '...', 'message' => '...', 'action' => '...' ), ... ) |
308
|
|
|
* |
309
|
|
|
* @since 8.7.0 |
310
|
|
|
* |
311
|
|
|
* @param array $errors Connection errors. |
312
|
|
|
*/ |
313
|
|
|
'errors' => apply_filters( 'react_connection_errors_initial_state', array() ), |
314
|
|
|
); |
315
|
|
|
|
316
|
|
|
$connection_status = array_merge( REST_Connector::connection_status( false ), $connection_status ); |
317
|
|
|
|
318
|
|
|
return array( |
319
|
|
|
'WP_API_root' => esc_url_raw( rest_url() ), |
320
|
|
|
'WP_API_nonce' => wp_create_nonce( 'wp_rest' ), |
321
|
|
|
'pluginBaseUrl' => plugins_url( '', JETPACK__PLUGIN_FILE ), |
322
|
|
|
'connectionStatus' => $connection_status, |
323
|
|
|
'connectUrl' => false == $current_user_data['isConnected'] // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison |
324
|
|
|
? Jetpack::init()->build_connect_url( true, false, false ) |
325
|
|
|
: '', |
326
|
|
|
'dismissedNotices' => $this->get_dismissed_jetpack_notices(), |
327
|
|
|
'isDevVersion' => Jetpack::is_development_version(), |
328
|
|
|
'currentVersion' => JETPACK__VERSION, |
329
|
|
|
'is_gutenberg_available' => true, |
330
|
|
|
'getModules' => $modules, |
331
|
|
|
'rawUrl' => ( new Status() )->get_site_suffix(), |
332
|
|
|
'adminUrl' => esc_url( admin_url() ), |
333
|
|
|
'siteTitle' => (string) htmlspecialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), |
334
|
|
|
'stats' => array( |
335
|
|
|
// data is populated asynchronously on page load. |
336
|
|
|
'data' => array( |
337
|
|
|
'general' => false, |
338
|
|
|
'day' => false, |
339
|
|
|
'week' => false, |
340
|
|
|
'month' => false, |
341
|
|
|
), |
342
|
|
|
'roles' => $stats_roles, |
343
|
|
|
), |
344
|
|
|
'aff' => Partner::init()->get_partner_code( Partner::AFFILIATE_CODE ), |
345
|
|
|
'partnerSubsidiaryId' => Partner::init()->get_partner_code( Partner::SUBSIDIARY_CODE ), |
346
|
|
|
'settings' => $this->get_flattened_settings( $modules ), |
|
|
|
|
347
|
|
|
'userData' => array( |
348
|
|
|
'currentUser' => $current_user_data, |
349
|
|
|
), |
350
|
|
|
'siteData' => array( |
351
|
|
|
'icon' => has_site_icon() |
352
|
|
|
? apply_filters( 'jetpack_photon_url', get_site_icon_url(), array( 'w' => 64 ) ) |
|
|
|
|
353
|
|
|
: '', |
354
|
|
|
'siteVisibleToSearchEngines' => '1' == get_option( 'blog_public' ), // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison |
355
|
|
|
/** |
356
|
|
|
* Whether promotions are visible or not. |
357
|
|
|
* |
358
|
|
|
* @since 4.8.0 |
359
|
|
|
* |
360
|
|
|
* @param bool $are_promotions_active Status of promotions visibility. True by default. |
361
|
|
|
*/ |
362
|
|
|
'showPromotions' => apply_filters( 'jetpack_show_promotions', true ), |
363
|
|
|
'isAtomicSite' => jetpack_is_atomic_site(), |
364
|
|
|
'plan' => Jetpack_Plan::get(), |
365
|
|
|
'showBackups' => Jetpack::show_backups_ui(), |
366
|
|
|
'showRecommendations' => Jetpack_Recommendations::is_enabled(), |
367
|
|
|
'isMultisite' => is_multisite(), |
368
|
|
|
'dateFormat' => get_option( 'date_format' ), |
369
|
|
|
), |
370
|
|
|
'themeData' => array( |
371
|
|
|
'name' => $current_theme->get( 'Name' ), |
372
|
|
|
'hasUpdate' => (bool) get_theme_update_available( $current_theme ), |
373
|
|
|
'support' => array( |
374
|
|
|
'infinite-scroll' => current_theme_supports( 'infinite-scroll' ) || in_array( $current_theme->get_stylesheet(), $inf_scr_support_themes, true ), |
375
|
|
|
), |
376
|
|
|
), |
377
|
|
|
'jetpackStateNotices' => array( |
378
|
|
|
'messageCode' => Jetpack::state( 'message' ), |
379
|
|
|
'errorCode' => Jetpack::state( 'error' ), |
380
|
|
|
'errorDescription' => Jetpack::state( 'error_description' ), |
381
|
|
|
'messageContent' => Jetpack::state( 'display_update_modal' ) ? $this->get_update_modal_data() : null, |
382
|
|
|
), |
383
|
|
|
'tracksUserData' => Jetpack_Tracks_Client::get_connected_user_tracks_identity(), |
384
|
|
|
'currentIp' => function_exists( 'jetpack_protect_get_ip' ) ? jetpack_protect_get_ip() : false, |
385
|
|
|
'lastPostUrl' => esc_url( $last_post ), |
386
|
|
|
'externalServicesConnectUrls' => $this->get_external_services_connect_urls(), |
387
|
|
|
'calypsoEnv' => Jetpack::get_calypso_env(), |
388
|
|
|
'products' => Jetpack::get_products_for_purchase(), |
389
|
|
|
'recommendationsStep' => Jetpack_Core_Json_Api_Endpoints::get_recommendations_step()['step'], |
390
|
|
|
'isSafari' => $is_safari || User_Agent_Info::is_opera_desktop(), // @todo Rename isSafari everywhere. |
391
|
|
|
'doNotUseConnectionIframe' => Constants::is_true( 'JETPACK_SHOULD_NOT_USE_CONNECTION_IFRAME' ), |
392
|
|
|
'licensing' => array( |
393
|
|
|
'error' => Licensing::instance()->last_error(), |
394
|
|
|
'showLicensingUi' => Licensing::instance()->is_licensing_input_enabled(), |
395
|
|
|
), |
396
|
|
|
); |
397
|
|
|
} |
398
|
|
|
|
399
|
|
|
function get_external_services_connect_urls() { |
400
|
|
|
$connect_urls = array(); |
401
|
|
|
jetpack_require_lib( 'class.jetpack-keyring-service-helper' ); |
402
|
|
|
foreach ( Jetpack_Keyring_Service_Helper::$SERVICES as $service_name => $service_info ) { |
403
|
|
|
$connect_urls[ $service_name ] = Jetpack_Keyring_Service_Helper::connect_url( $service_name, $service_info[ 'for' ] ); |
404
|
|
|
} |
405
|
|
|
return $connect_urls; |
406
|
|
|
} |
407
|
|
|
|
408
|
|
|
/** |
409
|
|
|
* Returns an array of modules and settings both as first class members of the object. |
410
|
|
|
* |
411
|
|
|
* @param array $modules the result of an API request to get all modules. |
412
|
|
|
* |
413
|
|
|
* @return array flattened settings with modules. |
414
|
|
|
*/ |
415
|
|
|
function get_flattened_settings( $modules ) { |
416
|
|
|
$core_api_endpoint = new Jetpack_Core_API_Data(); |
417
|
|
|
$settings = $core_api_endpoint->get_all_options(); |
418
|
|
|
return $settings->data; |
419
|
|
|
} |
420
|
|
|
|
421
|
|
|
/** |
422
|
|
|
* Returns the release post content and image data as an associative array. |
423
|
|
|
* This data is used to create the update modal. |
424
|
|
|
*/ |
425
|
|
|
public function get_update_modal_data() { |
426
|
|
|
$post_data = $this->get_release_post_data(); |
427
|
|
|
|
428
|
|
|
if ( ! isset( $post_data['posts'][0] ) ) { |
429
|
|
|
return; |
430
|
|
|
} |
431
|
|
|
|
432
|
|
|
$post = $post_data['posts'][0]; |
433
|
|
|
|
434
|
|
|
if ( empty( $post['content'] ) ) { |
435
|
|
|
return; |
436
|
|
|
} |
437
|
|
|
|
438
|
|
|
// This allows us to embed videopress videos into the release post. |
439
|
|
|
add_filter( 'wp_kses_allowed_html', array( $this, 'allow_post_embed_iframe' ), 10, 2 ); |
440
|
|
|
$content = wp_kses_post( $post['content'] ); |
441
|
|
|
remove_filter( 'wp_kses_allowed_html', array( $this, 'allow_post_embed_iframe' ), 10, 2 ); |
|
|
|
|
442
|
|
|
|
443
|
|
|
$post_title = isset( $post['title'] ) ? $post['title'] : null; |
444
|
|
|
$title = wp_kses( $post_title, array() ); |
445
|
|
|
|
446
|
|
|
$post_thumbnail = isset( $post['post_thumbnail'] ) ? $post['post_thumbnail'] : null; |
447
|
|
|
if ( ! empty( $post_thumbnail ) ) { |
448
|
|
|
jetpack_require_lib( 'class.jetpack-photon-image' ); |
449
|
|
|
$photon_image = new Jetpack_Photon_Image( |
450
|
|
|
array( |
451
|
|
|
'file' => jetpack_photon_url( $post_thumbnail['URL'] ), |
452
|
|
|
'width' => $post_thumbnail['width'], |
453
|
|
|
'height' => $post_thumbnail['height'], |
454
|
|
|
), |
455
|
|
|
$post_thumbnail['mime_type'] |
456
|
|
|
); |
457
|
|
|
$photon_image->resize( |
458
|
|
|
array( |
459
|
|
|
'width' => 600, |
460
|
|
|
'height' => null, |
461
|
|
|
'crop' => false, |
462
|
|
|
) |
463
|
|
|
); |
464
|
|
|
$post_thumbnail_url = $photon_image->get_raw_filename(); |
465
|
|
|
} else { |
466
|
|
|
$post_thumbnail_url = null; |
467
|
|
|
} |
468
|
|
|
|
469
|
|
|
$post_array = array( |
470
|
|
|
'release_post_content' => $content, |
471
|
|
|
'release_post_featured_image' => $post_thumbnail_url, |
472
|
|
|
'release_post_title' => $title, |
473
|
|
|
); |
474
|
|
|
|
475
|
|
|
return $post_array; |
476
|
|
|
} |
477
|
|
|
|
478
|
|
|
/** |
479
|
|
|
* Temporarily allow post content to contain iframes, e.g. for videopress. |
480
|
|
|
* |
481
|
|
|
* @param string $tags The tags. |
482
|
|
|
* @param string $context The context. |
483
|
|
|
*/ |
484
|
|
|
public function allow_post_embed_iframe( $tags, $context ) { |
485
|
|
|
if ( 'post' === $context ) { |
486
|
|
|
$tags['iframe'] = array( |
487
|
|
|
'src' => true, |
488
|
|
|
'height' => true, |
489
|
|
|
'width' => true, |
490
|
|
|
'frameborder' => true, |
491
|
|
|
'allowfullscreen' => true, |
492
|
|
|
); |
493
|
|
|
} |
494
|
|
|
|
495
|
|
|
return $tags; |
496
|
|
|
} |
497
|
|
|
|
498
|
|
|
/** |
499
|
|
|
* Obtains the release post from the Jetpack release post blog. A release post will be displayed in the |
500
|
|
|
* update modal when a post has a tag equal to the Jetpack version number. |
501
|
|
|
* |
502
|
|
|
* The response parameters for the post array can be found here: |
503
|
|
|
* https://developer.wordpress.com/docs/api/1.1/get/sites/%24site/posts/%24post_ID/#apidoc-response |
504
|
|
|
* |
505
|
|
|
* @return array|null Returns an associative array containing the release post data at index ['posts'][0]. |
506
|
|
|
* Returns null if the release post data is not available. |
507
|
|
|
*/ |
508
|
|
|
private function get_release_post_data() { |
509
|
|
|
if ( Constants::is_defined( 'TESTING_IN_JETPACK' ) && Constants::get_constant( 'TESTING_IN_JETPACK' ) ) { |
510
|
|
|
return null; |
511
|
|
|
} |
512
|
|
|
|
513
|
|
|
$release_post_src = add_query_arg( |
514
|
|
|
array( |
515
|
|
|
'order_by' => 'date', |
516
|
|
|
'tag' => JETPACK__VERSION, |
517
|
|
|
'number' => '1', |
518
|
|
|
), |
519
|
|
|
'https://public-api.wordpress.com/rest/v1/sites/' . JETPACK__RELEASE_POST_BLOG_SLUG . '/posts' |
520
|
|
|
); |
521
|
|
|
|
522
|
|
|
$response = wp_remote_get( $release_post_src ); |
523
|
|
|
|
524
|
|
|
if ( ! is_array( $response ) ) { |
525
|
|
|
return null; |
526
|
|
|
} |
527
|
|
|
|
528
|
|
|
return json_decode( wp_remote_retrieve_body( $response ), true ); |
529
|
|
|
} |
530
|
|
|
} |
531
|
|
|
|
532
|
|
|
/** |
533
|
|
|
* Gather data about the current user. |
534
|
|
|
* |
535
|
|
|
* @since 4.1.0 |
536
|
|
|
* |
537
|
|
|
* @return array |
538
|
|
|
*/ |
539
|
|
|
function jetpack_current_user_data() { |
540
|
|
|
$jetpack_connection = new Connection_Manager( 'jetpack' ); |
541
|
|
|
|
542
|
|
|
$current_user = wp_get_current_user(); |
543
|
|
|
$is_master_user = $current_user->ID == Jetpack_Options::get_option( 'master_user' ); |
544
|
|
|
$dotcom_data = $jetpack_connection->get_connected_user_data(); |
545
|
|
|
|
546
|
|
|
// Add connected user gravatar to the returned dotcom_data. |
547
|
|
|
$dotcom_data['avatar'] = ( ! empty( $dotcom_data['email'] ) ? |
548
|
|
|
get_avatar_url( |
549
|
|
|
$dotcom_data['email'], |
550
|
|
|
array( |
551
|
|
|
'size' => 64, |
552
|
|
|
'default' => 'mysteryman', |
553
|
|
|
) |
554
|
|
|
) |
555
|
|
|
: false ); |
556
|
|
|
|
557
|
|
|
$current_user_data = array( |
558
|
|
|
'isConnected' => $jetpack_connection->is_user_connected( $current_user->ID ), |
559
|
|
|
'isMaster' => $is_master_user, |
560
|
|
|
'username' => $current_user->user_login, |
561
|
|
|
'id' => $current_user->ID, |
562
|
|
|
'wpcomUser' => $dotcom_data, |
563
|
|
|
'gravatar' => get_avatar_url( $current_user->ID, 64, 'mm', '', array( 'force_display' => true ) ), |
564
|
|
|
'permissions' => array( |
565
|
|
|
'admin_page' => current_user_can( 'jetpack_admin_page' ), |
566
|
|
|
'connect' => current_user_can( 'jetpack_connect' ), |
567
|
|
|
'connect_user' => current_user_can( 'jetpack_connect_user' ), |
568
|
|
|
'disconnect' => current_user_can( 'jetpack_disconnect' ), |
569
|
|
|
'manage_modules' => current_user_can( 'jetpack_manage_modules' ), |
570
|
|
|
'network_admin' => current_user_can( 'jetpack_network_admin_page' ), |
571
|
|
|
'network_sites_page' => current_user_can( 'jetpack_network_sites_page' ), |
572
|
|
|
'edit_posts' => current_user_can( 'edit_posts' ), |
573
|
|
|
'publish_posts' => current_user_can( 'publish_posts' ), |
574
|
|
|
'manage_options' => current_user_can( 'manage_options' ), |
575
|
|
|
'view_stats' => current_user_can( 'view_stats' ), |
576
|
|
|
'manage_plugins' => current_user_can( 'install_plugins' ) |
577
|
|
|
&& current_user_can( 'activate_plugins' ) |
578
|
|
|
&& current_user_can( 'update_plugins' ) |
579
|
|
|
&& current_user_can( 'delete_plugins' ), |
580
|
|
|
), |
581
|
|
|
); |
582
|
|
|
|
583
|
|
|
return $current_user_data; |
584
|
|
|
} |
585
|
|
|
|
There are different options of fixing this problem.
If you want to be on the safe side, you can add an additional type-check:
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:
Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.