diff --git a/README.md b/README.md index 3c74afa..91f0d58 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,13 @@ Financial은 개인 금융 데이터를 서버 렌더링 PHP 화면에서 관리 - `app/lib/recurring_service.php`: 반복거래 처리 - `app/lib/merchant_pattern_service.php`: 가맹점 규칙과 추천 - `public/*.php`: 사용자 화면과 form 처리 +- `public/asset-version.php`: 앱/PWA 파일 묶음의 현재 hash를 내려주는 JSON 엔드포인트 - `public/assets/app.css`: 화면 스타일 +- `public/assets/asset-reload.js`: 열린 브라우저에서 파일 묶음 hash가 달라졌는지 확인하고 새로 여는 스크립트 - `public/assets/pwa.js`, `public/sw.js`: PWA 동작 +`asset-version.php`는 `app`의 PHP 파일과 `public`의 PHP/HTML/JS/CSS/manifest/icon 파일을 읽어 크기, 수정 시각, sha256 hash를 묶은 버전을 만듭니다. 공통 헤더, 로그인, 회원가입 화면에서 `asset-reload.js`를 불러오며, 파일 묶음 hash가 달라지면 Cache Storage를 비우고 현재 화면을 다시 엽니다. + ## 데이터/저장소 - financial DB tables: 계좌, 거래, 카테고리, 할부, 대출, 반복거래, 가맹점 규칙 @@ -73,4 +77,3 @@ Financial은 개인 금융 데이터를 서버 렌더링 PHP 화면에서 관리 - 삭제된 미사용 테이블이 다시 참조되지 않는지 확인합니다. - 가맹점 추천 규칙의 우선순위 충돌을 주기적으로 점검합니다. - DB 백업과 secret 파일 권한을 관리합니다. - diff --git a/app/views/header.php b/app/views/header.php index 104199d..36f0751 100644 --- a/app/views/header.php +++ b/app/views/header.php @@ -22,8 +22,8 @@ - - + + @@ -37,6 +37,7 @@ + diff --git a/public/asset-version.php b/public/asset-version.php new file mode 100644 index 0000000..bd38b75 --- /dev/null +++ b/public/asset-version.php @@ -0,0 +1,76 @@ + ['php'], + 'public' => ['php', 'html', 'js', 'css', 'webmanifest', 'png', 'ico'], +]; + +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); diff --git a/public/assets/asset-reload.js b/public/assets/asset-reload.js new file mode 100644 index 0000000..1b291bb --- /dev/null +++ b/public/assets/asset-reload.js @@ -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); +})(); diff --git a/public/login.php b/public/login.php index 5f7fafa..bf98534 100644 --- a/public/login.php +++ b/public/login.php @@ -78,6 +78,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { +
diff --git a/public/register.php b/public/register.php index 04c719b..cba83b3 100644 --- a/public/register.php +++ b/public/register.php @@ -87,6 +87,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { +