107 lines
2.7 KiB
PHP
107 lines
2.7 KiB
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Blog Stats Block.
|
||
|
|
*
|
||
|
|
* @since $$next_version$$
|
||
|
|
*
|
||
|
|
* @package automattic/jetpack
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace Automattic\Jetpack\Extensions\Blog_Stats;
|
||
|
|
|
||
|
|
use Automattic\Jetpack\Blocks;
|
||
|
|
use Automattic\Jetpack\Connection\Manager as Connection_Manager;
|
||
|
|
use Automattic\Jetpack\Stats\WPCOM_Stats;
|
||
|
|
use Automattic\Jetpack\Status;
|
||
|
|
use Jetpack_Gutenberg;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Registers the block for use in Gutenberg.
|
||
|
|
* This is done via an action so that we can disable
|
||
|
|
* registration if we need to.
|
||
|
|
*/
|
||
|
|
function register_block() {
|
||
|
|
if (
|
||
|
|
! defined( 'IS_WPCOM' )
|
||
|
|
&& ( ( new Connection_Manager( 'jetpack' ) )->has_connected_owner()
|
||
|
|
&& ! ( new Status() )->is_offline_mode() )
|
||
|
|
) {
|
||
|
|
Blocks::jetpack_register_block(
|
||
|
|
__DIR__,
|
||
|
|
array( 'render_callback' => __NAMESPACE__ . '\load_assets' )
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
add_action( 'init', __NAMESPACE__ . '\register_block' );
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Blog Stats block registration/dependency declaration.
|
||
|
|
*
|
||
|
|
* @param array $attributes Array containing the Blog Stats block attributes.
|
||
|
|
*
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
function load_assets( $attributes ) {
|
||
|
|
Jetpack_Gutenberg::load_assets_as_required( __DIR__ );
|
||
|
|
|
||
|
|
$views = 0;
|
||
|
|
|
||
|
|
// For when there's no post ID - eg. search pages.
|
||
|
|
if ( $attributes['statsOption'] === 'post' && ! get_the_ID() ) {
|
||
|
|
if ( current_user_can( 'edit_theme_options' ) ) {
|
||
|
|
return sprintf(
|
||
|
|
'<p>%s</p>',
|
||
|
|
esc_html( __( 'There are no stats to display for this post.', 'jetpack' ) )
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
if ( $attributes['statsOption'] === 'post' ) {
|
||
|
|
// Cache in post meta to prevent wp_options blowing up when retrieving views
|
||
|
|
// for multiple posts simultaneously (eg. when inserted into template).
|
||
|
|
$cache_in_meta = true;
|
||
|
|
$data = convert_stats_array_to_object(
|
||
|
|
( new WPCOM_Stats() )->get_post_views(
|
||
|
|
get_the_ID(),
|
||
|
|
array( 'fields' => 'views' ),
|
||
|
|
$cache_in_meta
|
||
|
|
)
|
||
|
|
);
|
||
|
|
|
||
|
|
if ( isset( $data->views ) ) {
|
||
|
|
$views = $data->views;
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
$data = convert_stats_array_to_object(
|
||
|
|
( new WPCOM_Stats() )->get_stats( array( 'fields' => 'stats' ) )
|
||
|
|
);
|
||
|
|
|
||
|
|
if ( isset( $data->stats->views ) ) {
|
||
|
|
$views = $data->stats->views;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
$label = $attributes['label'] ? $attributes['label'] : esc_html(
|
||
|
|
/* Translators: Number of views */
|
||
|
|
_n(
|
||
|
|
'hit',
|
||
|
|
'hits',
|
||
|
|
$views,
|
||
|
|
'jetpack'
|
||
|
|
)
|
||
|
|
);
|
||
|
|
|
||
|
|
$wrapper_attributes = \WP_Block_Supports::get_instance()->apply_block_supports();
|
||
|
|
|
||
|
|
return sprintf(
|
||
|
|
'<div class="jetpack-blog-stats%s%s"%s><p>%s %s</p></div>',
|
||
|
|
! empty( $attributes['className'] ) ? ' ' . esc_attr( $attributes['className'] ) : '',
|
||
|
|
! empty( $wrapper_attributes['class'] ) ? ' ' . esc_attr( $wrapper_attributes['class'] ) : '',
|
||
|
|
! empty( $wrapper_attributes['style'] ) ? ' style="' . esc_attr( $wrapper_attributes['style'] ) . '"' : '',
|
||
|
|
esc_html( number_format_i18n( $views ) ),
|
||
|
|
wp_kses_post( $label )
|
||
|
|
);
|
||
|
|
}
|