oont-contents/plugins/jetpack/jetpack_vendor/automattic/jetpack-stats-admin/src/class-odyssey-config-data.php
2025-02-08 15:10:23 +01:00

236 lines
7.9 KiB
PHP

<?php
/**
* Stats Initial State
*
* @package automattic/jetpack-stats-admin
*/
namespace Automattic\Jetpack\Stats_Admin;
use Automattic\Jetpack\Current_Plan as Jetpack_Plan;
use Automattic\Jetpack\Modules;
use Automattic\Jetpack\Status\Host;
use Jetpack_Options;
/**
* Class Odyssey_Config_Data
*
* @package automattic/jetpack-stats-admin
*/
class Odyssey_Config_Data {
/**
* Set configData to window.configData.
*
* @param string $config_variable_name The config variable name.
* @param array $config_data The config data.
*/
public function get_js_config_data( $config_variable_name = 'configData', $config_data = null ) {
return "window.{$config_variable_name} = " . wp_json_encode(
$config_data === null ? $this->get_data() : $config_data
) . ';';
}
/**
* Return the config for the app.
*/
public function get_data() {
global $wp_version;
$blog_id = Jetpack_Options::get_option( 'id' );
$host = new Host();
return array(
'admin_page_base' => $this->get_admin_path(),
'api_root' => esc_url_raw( rest_url() ),
'blog_id' => Jetpack_Options::get_option( 'id' ),
'enable_all_sections' => false,
'env_id' => 'production',
'google_analytics_key' => 'UA-10673494-15',
'google_maps_and_places_api_key' => '',
'hostname' => wp_parse_url( get_site_url(), PHP_URL_HOST ),
'i18n_default_locale_slug' => 'en',
'i18n_locale_slug' => $this->get_user_locale(),
'mc_analytics_enabled' => false,
'meta' => array(),
'nonce' => wp_create_nonce( 'wp_rest' ),
'site_name' => \get_bloginfo( 'name' ),
'sections' => array(),
// Features are inlined @see https://github.com/Automattic/wp-calypso/pull/70122
'features' => array(
'is_running_in_jetpack_site' => ! $host->is_wpcom_simple(),
),
// Intended for apps that do not use redux.
'gmt_offset' => $this->get_gmt_offset(),
'odyssey_stats_base_url' => admin_url( 'admin.php?page=stats' ),
'intial_state' => array(
'currentUser' => array(
'id' => 1000,
'user' => array(
'ID' => 1000,
'username' => 'no-user',
),
'capabilities' => array(
"$blog_id" => $this->get_current_user_capabilities(),
),
),
'sites' => array(
'items' => array(
"$blog_id" => array(
'ID' => $blog_id,
'URL' => site_url(),
// Atomic and jetpack sites should return true.
'jetpack' => ! $host->is_wpcom_simple(),
'visible' => true,
'capabilities' => $this->get_current_user_capabilities(),
'products' => Jetpack_Plan::get_products(),
'plan' => $this->get_plan(),
'options' => array(
'wordads' => ( new Modules() )->is_active( 'wordads' ),
'admin_url' => admin_url(),
'gmt_offset' => $this->get_gmt_offset(),
'is_automated_transfer' => $this->is_automated_transfer( $blog_id ),
'is_wpcom_atomic' => $host->is_woa_site(),
'is_wpcom_simple' => $host->is_wpcom_simple(),
'is_vip' => $host->is_vip_site(),
'jetpack_version' => defined( 'JETPACK__VERSION' ) ? JETPACK__VERSION : '',
'stats_admin_version' => Main::VERSION,
'software_version' => $wp_version,
),
),
),
'features' => array( "$blog_id" => array( 'data' => $this->get_plan_features() ) ),
),
),
);
}
/**
* Defines a filter to set whether a site is an automated_transfer site or not.
*
* Default is false. On Atomic, this is set to true by `wpcomsh`.
*
* @param int $blog_id Blog ID.
*
* @return bool
*/
public function is_automated_transfer( $blog_id ) {
/**
* Filter if a site is an automated-transfer site.
*
* @module json-api
*
* @since 6.4.0
*
* @param bool is_automated_transfer( $this->blog_id )
* @param int $blog_id Blog identifier.
*/
return apply_filters(
'jetpack_site_automated_transfer',
false,
$blog_id
);
}
/**
* Get the current site GMT Offset.
*
* @return float The current site GMT Offset by hours.
*/
protected function get_gmt_offset() {
return (float) get_option( 'gmt_offset' );
}
/**
* Page base for the Calypso admin page.
*/
protected function get_admin_path() {
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
if ( ! isset( $_SERVER['PHP_SELF'] ) || ! isset( $_SERVER['QUERY_STRING'] ) ) {
$parsed = wp_parse_url( admin_url( 'admin.php?page=stats' ) );
return $parsed['path'] . '?' . $parsed['query'];
}
// We do this because page.js requires the exactly page base to be set otherwise it will not work properly.
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
return wp_unslash( $_SERVER['PHP_SELF'] ) . '?' . wp_unslash( $_SERVER['QUERY_STRING'] );
}
/**
* Get locale acceptable by Calypso.
*/
protected function get_user_locale() {
/**
* In WP, locales are formatted as LANGUAGE_REGION, for example `en`, `en_US`, `es_AR`,
* but Calypso expects language-region, e.g. `en-us`, `en`, `es-ar`. So we need to convert
* them to lower case and replace the underscore with a dash.
*/
$locale = strtolower( get_user_locale() );
$locale = str_replace( '_', '-', $locale );
return $locale;
}
/**
* Get the features of the current plan.
*/
protected function get_plan_features() {
$plan = Jetpack_Plan::get();
if ( empty( $plan['features'] ) ) {
return array();
}
return $plan['features'];
}
/**
* Get the current plan.
*
* @return array
*/
protected function get_plan() {
$plan = Jetpack_Plan::get();
unset( $plan['features'] );
unset( $plan['supports'] );
return $plan;
}
/**
* Get the capabilities of the current user.
*
* @return array An array of capabilities.
*/
protected function get_current_user_capabilities() {
return array(
'edit_pages' => current_user_can( 'edit_pages' ),
'edit_posts' => current_user_can( 'edit_posts' ),
'edit_others_posts' => current_user_can( 'edit_others_posts' ),
'edit_others_pages' => current_user_can( 'edit_others_pages' ),
'delete_posts' => current_user_can( 'delete_posts' ),
'delete_others_posts' => current_user_can( 'delete_others_posts' ),
'edit_theme_options' => current_user_can( 'edit_theme_options' ),
'edit_users' => current_user_can( 'edit_users' ),
'list_users' => current_user_can( 'list_users' ),
'manage_categories' => current_user_can( 'manage_categories' ),
'manage_options' => current_user_can( 'manage_options' ),
'moderate_comments' => current_user_can( 'moderate_comments' ),
'activate_wordads' => current_user_can( 'manage_options' ),
'promote_users' => current_user_can( 'promote_users' ),
'publish_posts' => current_user_can( 'publish_posts' ),
'upload_files' => current_user_can( 'upload_files' ),
'delete_users' => current_user_can( 'delete_users' ),
'remove_users' => current_user_can( 'remove_users' ),
'own_site' => current_user_can( 'manage_options' ), // Administrators are considered owners on site.
/**
* Filter whether the Hosting section in Calypso should be available for site.
*
* @module json-api
*
* @since 8.2.0
*
* @param bool $view_hosting Can site access Hosting section. Default to false.
*/
'view_hosting' => apply_filters( 'jetpack_json_api_site_can_view_hosting', false ),
'view_stats' => current_user_can( 'view_stats' ),
'activate_plugins' => current_user_can( 'activate_plugins' ),
);
}
}