Skip to content

Commit 7273897

Browse files
Krinkletimmywil
andauthored
All: add jq_url_append_version() (#470)
* Switch from central list to per-url hash. This removes the need to know about and remember updating a central list. I noticed one file missing already, namely the typesense-minibar.js file. This slightly improves cache use by not invalidating them all together. * The filemtime timestamp values are so short that an MD5 hash of three filemtime() values is actually longer than just the three numbers concatenated. This means we lack the benefit a hash usually provides, which is that you get exposure to high entropy input in a format shorter than that same input. * Switch from mtime (or mtime-hash) to content-hash. This has a few benefits: - Note that Git does not track modified times. Instead, mtime is whenever a `git clone`, `checkout` or `pull` last created or modified the file locally on that server. For example, if you `git checkout OLD` and then back to `git checkout main`, the files get a newer mtime. This is what happens by default at the OS level. Git isn't setting these mtime values. This means the URL ends up alternating depending on which server (e.g. wp-04 and wp-05) last generated the page. It also means different pages on the site may have a different URLs for the same asset, thus making ineffective use of caching. If the site was statically generated in CI, it would bump the cache after every commit instead of only when that file has changed, because in CI the "git clone" woulld create/modify all files at that time. - It is the same between local, staging, and production, which might ease debugging in some cases. - It allows continuing and re-using old browser (and CDN) caches if a commit is rolled back for some reason, since it would literally be the same content and thus URL again. Follows-up 2015fcb. Ref #469 Ref #468 Co-authored-by: Timmy Willison <[email protected]>
1 parent 2015fcb commit 7273897

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

themes/jquery/functions.jquery.php

+13-6
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,19 @@ function jq_search_get_provider() {
185185
}
186186

187187
/**
188-
* Get a checksum of styles used in the header
188+
* Try to append a "?v=" cache buster to a static CSS or JS file URI.
189189
*/
190-
function jq_css_checksum() {
191-
$base = get_template_directory() . '/css/base.css';
192-
$typesense = get_template_directory() . '/lib/typesense-minibar/typesense-minibar.css';
193-
$styles = get_stylesheet_directory() . '/style.css';
190+
function jq_url_append_version( $uri ) {
191+
foreach ( [
192+
get_stylesheet_directory_uri() => get_stylesheet_directory(),
193+
get_template_directory_uri() => get_template_directory(),
194+
] as $uriPrefix => $directory ) {
195+
if ( str_starts_with( $uri, $uriPrefix ) ) {
196+
$filepath = strtr( $uri, [ $uriPrefix => $directory ] );
197+
return $uri . '?v=' . substr( @md5_file( $filepath ) ?: '', 0, 8 );
198+
}
199+
}
194200

195-
return md5( filemtime( $base ) . filemtime( $typesense ) . filemtime( $styles ) );
201+
// Unchanged
202+
return $uri;
196203
}

themes/jquery/header.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
<meta name="viewport" content="width=device-width">
1818

1919
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/i/favicon.ico">
20-
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/lib/typesense-minibar/typesense-minibar.css?v=<?php echo jq_css_checksum(); ?>">
21-
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/base.css?v=<?php echo jq_css_checksum(); ?>">
22-
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>?v=<?php echo jq_css_checksum(); ?>">
20+
<link rel="stylesheet" href="<?php echo jq_url_append_version( get_template_directory_uri() . '/lib/typesense-minibar/typesense-minibar.css' ); ?>">
21+
<link rel="stylesheet" href="<?php echo jq_url_append_version( get_template_directory_uri() . '/css/base.css' ); ?>">
22+
<link rel="stylesheet" href="<?php echo jq_url_append_version( get_bloginfo( 'stylesheet_url' ) ); ?>">
2323

2424
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
25-
<script src="<?php echo get_template_directory_uri(); ?>/js/main.js"></script>
25+
<script src="<?php echo jq_url_append_version( get_template_directory_uri() . '/js/main.js' ); ?>"></script>
2626
<?php
2727
if ( jq_search_get_provider() === 'typesense' ) :
2828
?>
29-
<script defer type="module" src="<?php echo get_template_directory_uri(); ?>/lib/typesense-minibar/typesense-minibar.js?v=<?php echo jq_css_checksum(); ?>"></script>
29+
<script defer type="module" src="<?php echo jq_url_append_version( get_template_directory_uri() . '/lib/typesense-minibar/typesense-minibar.js' ); ?>"></script>
3030
<?php
3131
endif;
3232

0 commit comments

Comments
 (0)