| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <?php
- use Automattic\Jetpack\Sync\Functions;
- require_once dirname( __FILE__ ) . '/class.json-api-site-jetpack-base.php';
- require_once dirname( __FILE__ ) . '/class.json-api-post-jetpack.php';
- // this code runs on Jetpack (.org) sites
- class Jetpack_Site extends Abstract_Jetpack_Site {
- protected function get_mock_option( $name ) {
- return get_option( 'jetpack_'.$name );
- }
- protected function get_constant( $name ) {
- if ( defined( $name) ) {
- return constant( $name );
- }
- return null;
- }
- protected function main_network_site() {
- return network_site_url();
- }
- protected function wp_version() {
- global $wp_version;
- return $wp_version;
- }
- protected function max_upload_size() {
- return wp_max_upload_size();
- }
- protected function wp_memory_limit() {
- return wp_convert_hr_to_bytes( WP_MEMORY_LIMIT );
- }
- protected function wp_max_memory_limit() {
- return wp_convert_hr_to_bytes( WP_MAX_MEMORY_LIMIT );
- }
- protected function is_main_network() {
- return Jetpack::is_multi_network();
- }
- public function is_multisite() {
- return (bool) is_multisite();
- }
- public function is_single_user_site() {
- return (bool) Jetpack::is_single_user_site();
- }
- protected function is_version_controlled() {
- return Functions::is_version_controlled();
- }
- protected function file_system_write_access() {
- return Functions::file_system_write_access();
- }
- protected function current_theme_supports( $feature_name ) {
- return current_theme_supports( $feature_name );
- }
- protected function get_theme_support( $feature_name ) {
- return get_theme_support( $feature_name );
- }
- /**
- * Fetch a list of active plugins that are using Jetpack Connection.
- *
- * @return array An array of active plugins (by slug) that are using Jetpack Connection.
- */
- protected function get_connection_active_plugins() {
- $plugins = $this->get_mock_option( 'connection_active_plugins' );
- return is_array( $plugins ) ? array_keys( $plugins ) : array();
- }
- public function get_updates() {
- return (array) Jetpack::get_updates();
- }
- function get_id() {
- return $this->platform->token->blog_id;
- }
- function has_videopress() {
- // TODO - this only works on wporg site - need to detect videopress option for remote Jetpack site on WPCOM
- $videopress = Jetpack_Options::get_option( 'videopress', array() );
- if ( isset( $videopress['blog_id'] ) && $videopress['blog_id'] > 0 ) {
- return true;
- }
- return false;
- }
- function upgraded_filetypes_enabled() {
- return true;
- }
- function is_mapped_domain() {
- return true;
- }
- function get_unmapped_url() {
- // Fallback to the home URL since all Jetpack sites don't have an unmapped *.wordpress.com domain.
- return $this->get_url();
- }
- function is_redirect() {
- return false;
- }
- function is_following() {
- return false;
- }
- function has_wordads() {
- return Jetpack::is_module_active( 'wordads' );
- }
- function get_frame_nonce() {
- return false;
- }
- function get_jetpack_frame_nonce() {
- return false;
- }
- function is_headstart_fresh() {
- return false;
- }
- function allowed_file_types() {
- $allowed_file_types = array();
- // https://codex.wordpress.org/Uploading_Files
- $mime_types = get_allowed_mime_types();
- foreach ( $mime_types as $type => $mime_type ) {
- $extras = explode( '|', $type );
- foreach ( $extras as $extra ) {
- $allowed_file_types[] = $extra;
- }
- }
- return $allowed_file_types;
- }
- /**
- * Return site's privacy status.
- *
- * @return boolean Is site private?
- */
- function is_private() {
- return (int) $this->get_atomic_cloud_site_option( 'blog_public' ) === -1;
- }
- /**
- * Return site's coming soon status.
- *
- * @return boolean Is site "Coming soon"?
- */
- function is_coming_soon() {
- return $this->is_private() && (int) $this->get_atomic_cloud_site_option( 'wpcom_coming_soon' ) === 1;
- }
- /**
- * Return site's launch status.
- *
- * @return string|boolean Launch status ('launched', 'unlaunched', or false).
- */
- function get_launch_status() {
- return $this->get_atomic_cloud_site_option( 'launch-status' );
- }
- function get_atomic_cloud_site_option( $option ) {
- if ( ! jetpack_is_atomic_site() ) {
- return false;
- }
- $jetpack = Jetpack::init();
- if ( ! method_exists( $jetpack, 'get_cloud_site_options' ) ) {
- return false;
- }
- $result = $jetpack->get_cloud_site_options( [ $option ] );
- if ( ! array_key_exists( $option, $result ) ) {
- return false;
- }
- return $result[ $option ];
- }
- function get_plan() {
- return false;
- }
- function get_subscribers_count() {
- return 0; // special magic fills this in on the WPCOM side
- }
- function get_capabilities() {
- return false;
- }
- function get_locale() {
- return get_bloginfo( 'language' );
- }
- /**
- * The flag indicates that the site has Jetpack installed
- *
- * @return bool
- */
- public function is_jetpack() {
- return true;
- }
- /**
- * The flag indicates that the site is connected to WP.com via Jetpack Connection
- *
- * @return bool
- */
- public function is_jetpack_connection() {
- return true;
- }
- public function get_jetpack_version() {
- return JETPACK__VERSION;
- }
- function get_ak_vp_bundle_enabled() {}
- function get_jetpack_seo_front_page_description() {
- return Jetpack_SEO_Utils::get_front_page_meta_description();
- }
- function get_jetpack_seo_title_formats() {
- return Jetpack_SEO_Titles::get_custom_title_formats();
- }
- function get_verification_services_codes() {
- return get_option( 'verification_services_codes', null );
- }
- function get_podcasting_archive() {
- return null;
- }
- function is_connected_site() {
- return true;
- }
- function is_wpforteams_site() {
- return false;
- }
- function current_user_can( $role ) {
- return current_user_can( $role );
- }
- /**
- * Check if full site editing should be considered as currently active. Full site editing
- * requires the FSE plugin to be installed and activated, as well the current
- * theme to be FSE compatible. The plugin can also be explicitly disabled via the
- * a8c_disable_full_site_editing filter.
- *
- * @since 7.7.0
- *
- * @return bool true if full site editing is currently active.
- */
- function is_fse_active() {
- if ( ! Jetpack::is_plugin_active( 'full-site-editing/full-site-editing-plugin.php' ) ) {
- return false;
- }
- return function_exists( '\A8C\FSE\is_full_site_editing_active' ) && \A8C\FSE\is_full_site_editing_active();
- }
- /**
- * Check if site should be considered as eligible for full site editing. Full site editing
- * requires the FSE plugin to be installed and activated. For this method to return true
- * the current theme does not need to be FSE compatible. The plugin can also be explicitly
- * disabled via the a8c_disable_full_site_editing filter.
- *
- * @since 8.1.0
- *
- * @return bool true if site is eligible for full site editing
- */
- public function is_fse_eligible() {
- if ( ! Jetpack::is_plugin_active( 'full-site-editing/full-site-editing-plugin.php' ) ) {
- return false;
- }
- return function_exists( '\A8C\FSE\is_site_eligible_for_full_site_editing' ) && \A8C\FSE\is_site_eligible_for_full_site_editing();
- }
- /**
- * Check if site should be considered as eligible for use of the core Site Editor.
- * The Site Editor requires a block based theme to be active.
- *
- * @return bool true if site is eligible for the Site Editor
- */
- public function is_core_site_editor_enabled() {
- return function_exists( 'gutenberg_is_fse_theme' ) && gutenberg_is_fse_theme();
- }
- /**
- * Return the last engine used for an import on the site.
- *
- * This option is not used in Jetpack.
- */
- function get_import_engine() {
- return null;
- }
- /**
- * Post functions
- */
- function wrap_post( $post, $context ) {
- return new Jetpack_Post( $this, $post, $context );
- }
- /**
- * Get the option storing the Anchor podcast ID that identifies a site as a podcasting site.
- *
- * @return string
- */
- public function get_anchor_podcast() {
- return $this->get_atomic_cloud_site_option( 'anchor_podcast' );
- }
- }
|