@@ -46,7 +46,7 @@ function od_register_endpoint(): void {
46
46
'required ' => true ,
47
47
'pattern ' => '^[0-9a-f]{32}$ ' ,
48
48
),
49
- 'eTag ' => array (
49
+ 'current_etag ' => array (
50
50
'type ' => 'string ' ,
51
51
'description ' => __ ( 'ETag for the current environment. ' , 'optimization-detective ' ),
52
52
'required ' => true ,
@@ -63,7 +63,7 @@ function od_register_endpoint(): void {
63
63
'required ' => true ,
64
64
'pattern ' => '^[0-9a-f]+$ ' ,
65
65
'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 ) ) {
67
67
return new WP_Error ( 'invalid_hmac ' , __ ( 'URL Metrics HMAC verification failure. ' , 'optimization-detective ' ) );
68
68
}
69
69
return true ;
@@ -146,7 +146,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
146
146
147
147
$ url_metric_group_collection = new OD_URL_Metric_Group_Collection (
148
148
$ 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 ' ),
150
150
od_get_breakpoint_max_widths (),
151
151
od_get_url_metrics_breakpoint_sample_size (),
152
152
od_get_url_metric_freshness_ttl ()
@@ -188,7 +188,7 @@ function od_handle_rest_request( WP_REST_Request $request ) {
188
188
// Now supply the readonly args which were omitted from the REST API params due to being `readonly`.
189
189
'timestamp ' => microtime ( true ),
190
190
'uuid ' => wp_generate_uuid4 (),
191
- 'etag ' => $ request ->get_param ( 'eTag ' ),
191
+ 'etag ' => $ request ->get_param ( 'current_etag ' ),
192
192
)
193
193
)
194
194
);
0 commit comments