Skip to content

Commit 371e998

Browse files
committed
Improve naming for REST API endpoint args
1 parent 08f8f8a commit 371e998

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

plugins/optimization-detective/detect.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function extendElementData( xpath, properties ) {
237237
* @param {number} args.maxViewportAspectRatio Maximum aspect ratio allowed for the viewport.
238238
* @param {boolean} args.isDebug Whether to show debug messages.
239239
* @param {string} args.restApiEndpoint URL for where to send the detection data.
240-
* @param {string} args.currentETag ETag for URL Metric.
240+
* @param {string} args.currentETag Current ETag.
241241
* @param {string} args.currentUrl Current URL.
242242
* @param {string} args.urlMetricSlug Slug for URL Metric.
243243
* @param {number|null} args.cachePurgePostId Cache purge post ID.
@@ -541,7 +541,7 @@ export default async function detect( {
541541

542542
const url = new URL( restApiEndpoint );
543543
url.searchParams.set( 'slug', urlMetricSlug );
544-
url.searchParams.set( 'eTag', currentETag );
544+
url.searchParams.set( 'current_etag', currentETag );
545545
if ( typeof cachePurgePostId === 'number' ) {
546546
url.searchParams.set(
547547
'cache_purge_post_id',

plugins/optimization-detective/storage/rest-api.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function od_register_endpoint(): void {
4646
'required' => true,
4747
'pattern' => '^[0-9a-f]{32}$',
4848
),
49-
'eTag' => array(
49+
'current_etag' => array(
5050
'type' => 'string',
5151
'description' => __( 'ETag for the current environment.', 'optimization-detective' ),
5252
'required' => true,
@@ -63,7 +63,7 @@ function od_register_endpoint(): void {
6363
'required' => true,
6464
'pattern' => '^[0-9a-f]+$',
6565
'validate_callback' => static function ( string $hmac, WP_REST_Request $request ) {
66-
if ( ! od_verify_url_metrics_storage_hmac( $hmac, $request['slug'], $request['eTag'], $request['url'], $request['cache_purge_post_id'] ?? null ) ) {
66+
if ( ! od_verify_url_metrics_storage_hmac( $hmac, $request['slug'], $request['current_etag'], $request['url'], $request['cache_purge_post_id'] ?? null ) ) {
6767
return new WP_Error( 'invalid_hmac', __( 'URL Metrics HMAC verification failure.', 'optimization-detective' ) );
6868
}
6969
return true;
@@ -146,7 +146,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
146146

147147
$url_metric_group_collection = new OD_URL_Metric_Group_Collection(
148148
$post instanceof WP_Post ? OD_URL_Metrics_Post_Type::get_url_metrics_from_post( $post ) : array(),
149-
$request->get_param( 'eTag' ),
149+
$request->get_param( 'current_etag' ),
150150
od_get_breakpoint_max_widths(),
151151
od_get_url_metrics_breakpoint_sample_size(),
152152
od_get_url_metric_freshness_ttl()
@@ -188,7 +188,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
188188
// Now supply the readonly args which were omitted from the REST API params due to being `readonly`.
189189
'timestamp' => microtime( true ),
190190
'uuid' => wp_generate_uuid4(),
191-
'etag' => $request->get_param( 'eTag' ),
191+
'etag' => $request->get_param( 'current_etag' ),
192192
)
193193
)
194194
);

0 commit comments

Comments
 (0)