asset hash 새로고침 추가

This commit is contained in:
seo
2026-07-08 03:27:26 +09:00
parent 1bbbe5b694
commit 469bae4037
4 changed files with 174 additions and 0 deletions
+76
View File
@@ -0,0 +1,76 @@
<?php
declare(strict_types=1);
header('Content-Type: application/json; charset=utf-8');
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Pragma: no-cache');
$service = 'control';
$root = dirname(__DIR__);
$scanRoots = [
'public' => ['php', 'js', 'css', 'json', 'webmanifest', 'svg', 'png', 'ico'],
'config' => ['php'],
];
function collect_asset_files(string $root, array $scanRoots): array
{
$files = [];
$rootPath = realpath($root);
if (!$rootPath) {
return $files;
}
foreach ($scanRoots as $relativeRoot => $extensions) {
$base = realpath($rootPath . DIRECTORY_SEPARATOR . $relativeRoot);
if (!$base || strpos($base, $rootPath . DIRECTORY_SEPARATOR) !== 0) {
continue;
}
$allowed = array_fill_keys(array_map('strtolower', $extensions), true);
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($base, FilesystemIterator::SKIP_DOTS)
);
foreach ($iterator as $file) {
if (!$file instanceof SplFileInfo || !$file->isFile()) {
continue;
}
$extension = strtolower($file->getExtension());
if (!isset($allowed[$extension])) {
continue;
}
$path = $file->getRealPath();
if ($path && strpos($path, $rootPath . DIRECTORY_SEPARATOR) === 0) {
$files[] = $path;
}
}
}
sort($files, SORT_STRING);
return array_values(array_unique($files));
}
clearstatcache();
$rootPath = realpath($root);
$fingerprints = [];
foreach (collect_asset_files($root, $scanRoots) as $fullPath) {
$relativePath = ltrim(str_replace($rootPath ?: $root, '', $fullPath), DIRECTORY_SEPARATOR);
$fileHash = is_readable($fullPath) ? (hash_file('sha256', $fullPath) ?: 'hash-failed') : 'unreadable';
$fingerprints[] = implode('|', [
str_replace(DIRECTORY_SEPARATOR, '/', $relativePath),
(string)filesize($fullPath),
(string)filemtime($fullPath),
$fileHash,
]);
}
echo json_encode([
'result' => 'ok',
'service' => $service,
'version' => hash('sha256', implode("\n", $fingerprints)),
'count' => count($fingerprints),
'generatedAt' => time(),
], JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES);
+93
View File
@@ -0,0 +1,93 @@
(function () {
'use strict';
var script = document.currentScript || (function () {
var scripts = document.getElementsByTagName('script');
return scripts[scripts.length - 1] || null;
})();
var service = script && script.dataset ? script.dataset.service : '';
var endpoint = script && script.dataset && script.dataset.endpoint
? script.dataset.endpoint
: new URL('../asset-version.php', script ? script.src : window.location.href).toString();
var interval = script && script.dataset && script.dataset.interval ? Number(script.dataset.interval) : 30000;
if (!service || window.__assetReloadStarted) return;
window.__assetReloadStarted = true;
interval = Math.max(15000, Number.isFinite(interval) ? interval : 30000);
var storageKey = 'assetVersion:' + service;
var reloadKey = 'assetReload:' + service;
var running = false;
function addQuery(url, key, value) {
var parsed = new URL(url, window.location.href);
parsed.searchParams.set(key, value);
return parsed.toString();
}
function deleteCaches() {
if (!window.caches || !window.caches.keys) return Promise.resolve();
return window.caches.keys().then(function (keys) {
return Promise.all(keys.map(function (key) {
return window.caches.delete(key);
}));
}).catch(function () {});
}
function reloadWith(version) {
var token = version.slice(0, 12);
var marker = token + ':' + Math.floor(Date.now() / 10000);
if (sessionStorage.getItem(reloadKey) === marker) return;
sessionStorage.setItem(reloadKey, marker);
deleteCaches().then(function () {
window.location.replace(addQuery(window.location.href, 'assetReload', token));
});
}
function check(force) {
if (running || (!force && document.hidden)) return;
running = true;
fetch(addQuery(endpoint, '_', String(Date.now())), {
cache: 'no-store',
credentials: 'same-origin',
headers: {
'Cache-Control': 'no-cache',
'Pragma': 'no-cache'
}
}).then(function (response) {
if (!response.ok) throw new Error('asset version request failed');
return response.json();
}).then(function (data) {
if (!data || data.result !== 'ok' || !data.version) return;
var previous = localStorage.getItem(storageKey);
localStorage.setItem(storageKey, data.version);
if (previous && previous !== data.version) {
reloadWith(data.version);
}
}).catch(function () {}).finally(function () {
running = false;
});
}
window.addEventListener('pageshow', function () {
check(true);
});
window.addEventListener('focus', function () {
check(true);
});
document.addEventListener('visibilitychange', function () {
if (!document.hidden) check(true);
});
setInterval(function () {
check(false);
}, interval);
check(true);
})();
+1
View File
@@ -76,6 +76,7 @@ $loggedIn = signed_in();
<link rel="icon" href="/assets/icon-192.png" type="image/png" sizes="192x192">
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png">
<link rel="manifest" href="/manifest.json">
<script src="/assets/asset-reload.js" data-service="control" defer></script>
<meta name="theme-color" content="#0f1115">
<script>
try {