Skip to content

Commit 8fe38f7

Browse files
committed
Introduce new function to compute the current ETag
1 parent ba2ea93 commit 8fe38f7

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

plugins/optimization-detective/class-od-url-metric-group.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public function is_complete(): bool {
239239
$current_time > $url_metric->get_timestamp() + $this->freshness_ttl
240240
||
241241
// If the URL Metric's ETag doesn't match the current ETag, consider the URL metric as stale.
242-
( null !== $this->collection && $url_metric->get_etag() !== $this->collection->get_current_etag() )
242+
( null !== $this->collection && ! hash_equals( $url_metric->get_etag() ?? md5( '' ), $this->collection->get_current_etag() ) )
243243
) {
244244
return false;
245245
}

plugins/optimization-detective/optimization.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,7 @@ function od_optimize_template_output_buffer( string $buffer ): string {
206206
*/
207207
do_action( 'od_register_tag_visitors', $tag_visitor_registry );
208208

209-
$visitors = iterator_to_array( $tag_visitor_registry );
210-
$current_etag = implode( ',', array_keys( $visitors ) );
211-
209+
$current_etag = od_compute_current_etag( $tag_visitor_registry );
212210
$group_collection = new OD_URL_Metric_Group_Collection(
213211
$post instanceof WP_Post ? OD_URL_Metrics_Post_Type::get_url_metrics_from_post( $post ) : array(),
214212
$current_etag,
@@ -219,6 +217,7 @@ function od_optimize_template_output_buffer( string $buffer ): string {
219217
$link_collection = new OD_Link_Collection();
220218
$tag_visitor_context = new OD_Tag_Visitor_Context( $processor, $group_collection, $link_collection );
221219
$current_tag_bookmark = 'optimization_detective_current_tag';
220+
$visitors = iterator_to_array( $tag_visitor_registry );
222221

223222
// Whether we need to add the data-od-xpath attribute to elements and whether the detection script should be injected.
224223
$needs_detection = ! $group_collection->is_every_group_complete();

plugins/optimization-detective/storage/class-od-url-metrics-post-type.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public static function store_url_metric( string $slug, OD_URL_Metric $new_url_me
224224
// However, in the context of this store_url_metric() method, which is called by the REST API callback,
225225
// the ETag is a required field and should never be null. This usage satisfies PHPStan's requirements
226226
// until a future release where get_etag() will always return a string.
227-
$new_url_metric->get_etag() ?? '',
227+
$new_url_metric->get_etag() ?? md5( '' ),
228228
od_get_breakpoint_max_widths(),
229229
od_get_url_metrics_breakpoint_sample_size(),
230230
od_get_url_metric_freshness_ttl()

plugins/optimization-detective/storage/data.php

+20
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,26 @@ function od_get_url_metrics_slug( array $query_vars ): string {
140140
return md5( (string) wp_json_encode( $query_vars ) );
141141
}
142142

143+
/**
144+
* Computes the current ETag for URL Metrics.
145+
*
146+
* The ETag is a hash based on the IDs of the registered tag visitors
147+
* in the current environment. It is used for marking the URL Metrics as stale
148+
* when its value changes.
149+
*
150+
* @since n.e.x.t
151+
* @access private
152+
*
153+
* @param OD_Tag_Visitor_Registry $tag_visitor_registry Tag visitor registry.
154+
* @return string Current ETag.
155+
*/
156+
function od_compute_current_etag( OD_Tag_Visitor_Registry $tag_visitor_registry ): string {
157+
$data = array(
158+
'tag_visitors' => array_keys( iterator_to_array( $tag_visitor_registry ) ),
159+
);
160+
return md5( serialize( $data ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.serialize_serialize
161+
}
162+
143163
/**
144164
* Computes HMAC for storing URL Metrics for a specific slug.
145165
*

0 commit comments

Comments
 (0)