Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
76.19% |
16 / 21 |
|
50.00% |
2 / 4 |
CRAP | |
0.00% |
0 / 1 |
| Initial_State | |
76.19% |
16 / 21 |
|
50.00% |
2 / 4 |
5.34 | |
0.00% |
0 / 1 |
| get_data | |
100.00% |
14 / 14 |
|
100.00% |
1 / 1 |
1 | |||
| set_connection_script_data | |
0.00% |
0 / 4 |
|
0.00% |
0 / 1 |
6 | |||
| render | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
| render_script | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * The React initial state. |
| 4 | * |
| 5 | * @package automattic/jetpack-connection |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Connection; |
| 9 | |
| 10 | use Automattic\Jetpack\Status; |
| 11 | |
| 12 | /** |
| 13 | * The React initial state. |
| 14 | */ |
| 15 | class Initial_State { |
| 16 | |
| 17 | /** |
| 18 | * Get the initial state data. |
| 19 | * |
| 20 | * @return array |
| 21 | */ |
| 22 | private static function get_data() { |
| 23 | global $wp_version; |
| 24 | |
| 25 | $status = new Status(); |
| 26 | |
| 27 | return array( |
| 28 | 'apiRoot' => esc_url_raw( rest_url() ), |
| 29 | 'apiNonce' => wp_create_nonce( 'wp_rest' ), |
| 30 | 'registrationNonce' => wp_create_nonce( 'jetpack-registration-nonce' ), |
| 31 | 'connectionStatus' => REST_Connector::connection_status( false ), |
| 32 | 'userConnectionData' => REST_Connector::get_user_connection_data( false ), |
| 33 | 'connectedPlugins' => REST_Connector::get_connection_plugins( false ), |
| 34 | 'wpVersion' => $wp_version, |
| 35 | 'siteSuffix' => $status->get_site_suffix(), |
| 36 | 'connectionErrors' => Error_Handler::get_instance()->get_displayable_errors(), |
| 37 | 'isOfflineMode' => $status->is_offline_mode(), |
| 38 | 'calypsoEnv' => ( new Status\Host() )->get_calypso_env(), |
| 39 | ); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Set the connection script data. |
| 44 | * |
| 45 | * @param array $data The script data. |
| 46 | */ |
| 47 | public static function set_connection_script_data( $data ) { |
| 48 | |
| 49 | $data['connection'] = self::get_data(); |
| 50 | |
| 51 | if ( empty( $data['site']['wpcom']['blog_id'] ) ) { |
| 52 | $data['site']['wpcom']['blog_id'] = absint( \Jetpack_Options::get_option( 'id', 0 ) ); |
| 53 | } |
| 54 | |
| 55 | return $data; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Render the initial state into a JavaScript variable. |
| 60 | * |
| 61 | * @return string |
| 62 | */ |
| 63 | public static function render() { |
| 64 | /* |
| 65 | * `window.jpTracksContext` is an intentionally minimal, Tracks-specific global used by the |
| 66 | * @automattic/jetpack-analytics package to read `blog_id` at event-fire time. It exists |
| 67 | * separately from `window.JetpackScriptData` because the analytics package is consumed in |
| 68 | * contexts (e.g. Boost frontend) where `JetpackScriptData` is not reliably available, and |
| 69 | * coupling the analytics package to that schema would widen its surface unnecessarily. |
| 70 | * When both are present, `JetpackScriptData.site.wpcom.blog_id` is populated via |
| 71 | * `set_connection_script_data()` above for other consumers. |
| 72 | */ |
| 73 | return 'var JP_CONNECTION_INITIAL_STATE; typeof JP_CONNECTION_INITIAL_STATE === "object" || (JP_CONNECTION_INITIAL_STATE = ' . wp_json_encode( self::get_data(), JSON_UNESCAPED_SLASHES | JSON_HEX_TAG | JSON_HEX_AMP ) . ');' |
| 74 | . sprintf( 'window.jpTracksContext = window.jpTracksContext || {}; window.jpTracksContext.blog_id = %s;', absint( \Jetpack_Options::get_option( 'id', 0 ) ) ); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Render the initial state using an inline script. |
| 79 | * |
| 80 | * @param string $handle The JS script handle. |
| 81 | * |
| 82 | * @return void |
| 83 | */ |
| 84 | public static function render_script( $handle ) { |
| 85 | wp_add_inline_script( $handle, static::render(), 'before' ); |
| 86 | } |
| 87 | } |