?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/jetpack-boost/app/rest-api/endpoints/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/jetpack-boost/app/rest-api

?? Viewing: class-update-lcp.php

<?php
/**
 * Save generated LCP data.
 *
 * This endpoint is used by WP.com to push the generated LCP data to the boost plugin.
 */

namespace Automattic\Jetpack_Boost\REST_API\Endpoints;

use Automattic\Jetpack_Boost\Modules\Optimizations\Lcp\LCP_State;
use Automattic\Jetpack_Boost\Modules\Optimizations\Lcp\LCP_Storage;
use Automattic\Jetpack_Boost\REST_API\Contracts\Endpoint;
use Automattic\Jetpack_Boost\REST_API\Permissions\Signed_With_Blog_Token;
use WP_REST_Server;

/**
 * Handler for POST lcp/update. Expects the following body params:
 * - success: boolean - False if the whole LCP job failed.
 * - message: string - Error message if success is false.
 * - data: object - All results from the LCP job:
 *
 * Each data key contains:
 * - key: string - The key of the page.
 * - url: string - The URL of the page.
 * - devices: object - The LCP data for both mobile and desktop.
 *
 * Each device key contains:
 * - success: boolean - False if this device key failed.
 * - element: string - The selector of the LCP element.
 * - type: string - The type of the LCP element. Either 'img' or 'background-image'.
 * - url: string - Only for 'img' elements. The URL of LCP element.
 * - html: string - The HTML of the LCP element.
 * - report: object - The full report of the LCP element.
 */
class Update_LCP implements Endpoint {

	public function name() {
		return 'lcp/update';
	}

	public function request_methods() {
		return WP_REST_Server::EDITABLE;
	}

	public function response( $request ) {
		$state          = new LCP_State();
		$storage        = new LCP_Storage();
		$params         = $request->get_params();
		$pages          = empty( $params['data'] ) || ! is_array( $params['data'] ) ? array() : $params['data'];
		$api_successful = array( 'success' => true );

		// If success is false, the whole LCP generation process failed.
		if ( empty( $params['success'] ) ) {
			if ( empty( $params['message'] ) || ! is_string( $params['message'] ) ) {
				$error = __( 'An unknown error occurred', 'jetpack-boost' );
			} else {
				$error = $params['message'];
			}

			$state->set_error( $error );
			$state->save();

			return $api_successful;
		}

		// @TODO: handle bad payload coming from the Cloud.

		// Update each page.
		foreach ( $pages as $entry ) {
			// Mark the page as successfully analyzed as we don't know what to do if mobile fails but desktop succeeds.
			$state->set_page_success( $entry['key'] );

			// Store the LCP data for this page.
			$storage->store_lcp( $entry['key'], $entry['devices'] );

			// Failures must have an array of urls.
			// @TODO: figure out what to do with failures.
		}

		// Save the state changes.
		$state->save();

		return $api_successful;
	}

	public function permissions() {
		return array(
			new Signed_With_Blog_Token(),
		);
	}
}


??

??