Skip to content

Commit 9f89cd4

Browse files
committed
Include REST API nonce in URL Metric storage requests when the user is logged-in
1 parent 85ce02b commit 9f89cd4

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

plugins/optimization-detective/detect.js

+5
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ function extendElementData( xpath, properties ) {
253253
* @param {number} args.maxViewportAspectRatio Maximum aspect ratio allowed for the viewport.
254254
* @param {boolean} args.isDebug Whether to show debug messages.
255255
* @param {string} args.restApiEndpoint URL for where to send the detection data.
256+
* @param {string} [args.restApiNonce] Nonce for the REST API when the user is logged-in.
256257
* @param {string} args.currentETag Current ETag.
257258
* @param {string} args.currentUrl Current URL.
258259
* @param {string} args.urlMetricSlug Slug for URL Metric.
@@ -269,6 +270,7 @@ export default async function detect( {
269270
isDebug,
270271
extensionModuleUrls,
271272
restApiEndpoint,
273+
restApiNonce,
272274
currentETag,
273275
currentUrl,
274276
urlMetricSlug,
@@ -664,6 +666,9 @@ export default async function detect( {
664666
}
665667

666668
const url = new URL( restApiEndpoint );
669+
if ( typeof restApiNonce === 'string' ) {
670+
url.searchParams.set( '_wpnonce', restApiNonce );
671+
}
667672
url.searchParams.set( 'slug', urlMetricSlug );
668673
url.searchParams.set( 'current_etag', currentETag );
669674
if ( typeof cachePurgePostId === 'number' ) {

plugins/optimization-detective/detection.php

+3
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,9 @@ static function ( OD_URL_Metric_Group $group ): array {
137137
'storageLockTTL' => OD_Storage_Lock::get_ttl(),
138138
'webVitalsLibrarySrc' => $web_vitals_lib_src,
139139
);
140+
if ( is_user_logged_in() ) {
141+
$detect_args['restApiNonce'] = wp_create_nonce( 'wp_rest' );
142+
}
140143
if ( WP_DEBUG ) {
141144
$detect_args['urlMetricGroupCollection'] = $group_collection;
142145
}

plugins/optimization-detective/docs/hooks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ add_filter( 'od_url_metrics_breakpoint_sample_size', function (): int {
102102
} );
103103
```
104104

105-
### Filter: `od_url_metric_storage_lock_ttl` (default: 60 seconds, except 0 for admins)
105+
### Filter: `od_url_metric_storage_lock_ttl` (default: 60 seconds, except 0 for authorized logged-in users)
106106

107107
Filters how long the current IP is locked from submitting another URL metric storage REST API request.
108108

@@ -114,7 +114,7 @@ add_filter( 'od_metrics_storage_lock_ttl', function ( int $ttl ): int {
114114
} );
115115
```
116116

117-
By default, the TTL is zero (0) for administrator users and sixty (60) for everyone else. Whether the current user is an administrator is determined by whether the user has the `od_store_url_metric_now` capability. This meta capability by default maps to the `manage_options` capability via the `map_meta_cap` filter.
117+
By default, the TTL is zero (0) for authorized users and sixty (60) for everyone else. Whether the current user is authorized is determined by whether the user has the `od_store_url_metric_now` capability. This meta capability by default maps to the `manage_options` primitive capability via the `map_meta_cap` filter.
118118

119119
During development this is useful to set to zero so you can quickly collect new URL Metrics by reloading the page without having to wait for the storage lock to release:
120120

plugins/optimization-detective/storage/class-od-storage-lock.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ public static function get_ttl(): int {
8484
* return is_user_logged_in() ? 0 : $ttl;
8585
* } );
8686
*
87-
* By default, the TTL is zero (0) for administrator users and sixty (60) for everyone else. Whether the current
88-
* user is an administrator is determined by whether the user has the `od_store_url_metric_now` capability. This
89-
* meta capability by default maps to the `manage_options` capability via the `map_meta_cap` filter.
87+
* By default, the TTL is zero (0) for authorized users and sixty (60) for everyone else. Whether the current
88+
* user is authorized is determined by whether the user has the `od_store_url_metric_now` capability. This
89+
* meta capability by default maps to the `manage_options` primitive capability via the `map_meta_cap` filter.
9090
*
9191
* @since 0.1.0
9292
* @since 1.0.0 This now defaults to zero (0) for administrator users.

plugins/optimization-detective/tests/test-detection.php

+5
Original file line numberDiff line numberDiff line change
@@ -210,5 +210,10 @@ public function test_od_get_detection_script_returns_script( Closure $set_up, ar
210210
$this->assertStringContainsString( '"minimumViewportWidth":601', $script );
211211
$this->assertStringContainsString( '"minimumViewportWidth":783', $script );
212212
$this->assertStringContainsString( '"complete":false', $script );
213+
if ( is_user_logged_in() ) {
214+
$this->assertStringContainsString( '"restApiNonce":', $script );
215+
} else {
216+
$this->assertStringNotContainsString( '"restApiNonce":', $script );
217+
}
213218
}
214219
}

0 commit comments

Comments
 (0)