Current File : /home/aventura/www/site/wp-content/plugins/wp-smushit/lib/class-wp-smush-rest.php
<?php
/**
 * Smush integration with Rest API: WP_Smush_Rest class
 *
 * @package WP_Smush
 * @subpackage Admin
 * @since 2.8.0
 *
 * @author Anton Vanyukov <anton@incsub.com>
 *
 * @copyright (c) 2018, Incsub (http://incsub.com)
 */

/**
 * Singleton class WP_Smush_Rest for extending the WordPress REST API interface.
 *
 * @since 2.8.0
 */
class WP_Smush_Rest {
	/**
	 * Class instance variable.
	 *
	 * @since 2.8.0
	 * @var null|WP_Smush_Rest
	 */
	private static $_instance = null;

	/**
	 * WP_Smush_Rest constructor.
	 */
	private function __construct() {}

	/**
	 * Get class instance.
	 *
	 * @since 2.8.0
	 *
	 * @return null|WP_Smush_Rest
	 */
	public static function get_instance() {
		if ( null !== self::$_instance ) {
			return self::$_instance;
		}

		return new self;
	}

	/**
	 * Register smush meta fields and callbacks for the image object in the
	 * wp-json/wp/v2/media REST API endpoint.
	 *
	 * @since 2.8.0
	 */
	public function register_metas() {
		add_action( 'rest_api_init', array( $this, 'register_smush_meta' ) );
	}

	/**
	 * Callback for rest_api_init action.
	 *
	 * @since 2.8.0
	 */
	public function register_smush_meta() {
		register_rest_field( 'attachment', 'smush', array(
			'get_callback' => array( $this, 'register_image_stats' ),
			'schema' => array(
				'description' => __( 'Smush data.', 'wp-smushit' ),
				'type'        => 'string',
			),
		) );
	}

	/**
	 * Add image stats to the wp-json/wp/v2/media REST API endpoint.
	 *
	 * Will add the stats from wp-smpro-smush-data image meta key to the media REST API endpoint.
	 * If image is Smushed, the stats from the meta can be queried, if the not - the status of Smushing
	 * will be displayed as a string in the API.
	 *
	 * @since 2.8.0
	 *
	 * @link https://developer.wordpress.org/rest-api/reference/media/
	 * @global WP_Smush $wp_smush  Smush instance.
	 *
	 * @param array $image  Image array.
	 *
	 * @return array|string
	 */
	public function register_image_stats( $image ) {
		/* @var WP_Smush $wp_smush */
		global $wp_smush;

		if ( get_option( 'smush-in-progress-' . $image['id'], false ) ) {
			$status_txt = __( 'Smushing in progress', 'wp-smushit' );
			return $status_txt;
		}

		$wp_smush_data = get_post_meta( $image['id'], $wp_smush->smushed_meta_key, true );

		if ( empty( $wp_smush_data ) ) {
			$status_txt = __( 'Not processed', 'wp-smushit' );
			return $status_txt;
		}

		$wp_resize_savings  = get_post_meta( $image['id'], WP_SMUSH_PREFIX . 'resize_savings', true );
		$conversion_savings = get_post_meta( $image['id'], WP_SMUSH_PREFIX . 'pngjpg_savings', true );

		$combined_stats = $wp_smush->combined_stats( $wp_smush_data, $wp_resize_savings );
		$combined_stats = $wp_smush->combine_conversion_stats( $combined_stats, $conversion_savings );

		return $combined_stats;
	}

}