fix(momo): block EC404 auto-open with end-to-end URL guard
Some checks failed
CD Pipeline / deploy (push) Has been cancelled
Some checks failed
CD Pipeline / deploy (push) Has been cancelled
- normalize URLs at write time (scheduler crawlers, routes) to drop javascript:/EC404/placeholder i_code (momo_/manual_/pchome_) - add global click+auxclick guard in base.html and ewoooc_base.html that intercepts blocked MOMO URLs and redirects to safe i_code URL - per-page dashboards reuse the same isLikelyMomoIcode validation - /api/track_momo_link records blocked events for diagnosis - ship sanitize_momo_urls.py to clean existing polluted DB rows Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -157,6 +157,226 @@
|
||||
<!-- Bootstrap JS -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<!-- MOMO 404 防呆攔截:避免自動打開 EC404 頁面 -->
|
||||
<script>
|
||||
(function () {
|
||||
if (window.__momoLinkGuardInstalled) {
|
||||
return;
|
||||
}
|
||||
window.__momoLinkGuardInstalled = true;
|
||||
|
||||
const MOMO_HOSTS = new Set(['www.momoshop.com.tw', 'm.momoshop.com.tw']);
|
||||
const MOMO_CODE_RE = /^[A-Za-z0-9_-]{4,}$/;
|
||||
|
||||
const toText = value => (value == null ? '' : String(value));
|
||||
|
||||
const hasMomoHost = function (url) {
|
||||
const target = toText(url).trim();
|
||||
if (!target) {
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
const parsed = new URL(target, location.origin);
|
||||
return MOMO_HOSTS.has((parsed.hostname || '').toLowerCase());
|
||||
} catch (error) {
|
||||
return /(^|\/)m(?:\.momoshop\.com\.tw|\.momoshop\.com\.tw)(\/|$)|www\.momoshop\.com\.tw/i.test(target);
|
||||
}
|
||||
};
|
||||
|
||||
const isBlockedMomoUrl = function (url) {
|
||||
const lowered = toText(url).toLowerCase();
|
||||
if (lowered.includes('ec404.html') || lowered.includes('/ecm/js/err404/')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
try {
|
||||
const parsed = new URL(url, location.origin);
|
||||
const path = (parsed.pathname || '').toLowerCase();
|
||||
if (!path.includes('goodsdetail')) {
|
||||
return false;
|
||||
}
|
||||
const iCode = (parsed.searchParams.get('i_code') || '').trim();
|
||||
if (iCode) {
|
||||
return !isLikelyMomoIcode(iCode);
|
||||
}
|
||||
return !/\/goodsdetail\/[^/?#]+/i.test(path);
|
||||
} catch (error) {
|
||||
const hasGoodsDetail = /goodsdetail\.jsp/i.test(lowered);
|
||||
if (!hasGoodsDetail) {
|
||||
return false;
|
||||
}
|
||||
const hasIcode = /[?&]i_code=([^&#]+)/i.test(lowered);
|
||||
if (!hasIcode) {
|
||||
return true;
|
||||
}
|
||||
const match = /[?&]i_code=([^&#]+)/i.exec(lowered);
|
||||
const extracted = match ? (match[1] || '').trim() : '';
|
||||
return !isLikelyMomoIcode(extracted);
|
||||
}
|
||||
};
|
||||
|
||||
const isLikelyMomoIcode = function (value) {
|
||||
const cleaned = toText(value).trim();
|
||||
if (!cleaned) {
|
||||
return false;
|
||||
}
|
||||
const lowered = cleaned.toLowerCase();
|
||||
if (lowered === 'nan' || lowered === 'none' || lowered === 'null' || lowered === 'undefined') {
|
||||
return false;
|
||||
}
|
||||
if (lowered.startsWith('momo_')) {
|
||||
return false;
|
||||
}
|
||||
return MOMO_CODE_RE.test(cleaned);
|
||||
};
|
||||
|
||||
const getIcodeFromUrl = function (url) {
|
||||
const target = toText(url).trim();
|
||||
if (!target) {
|
||||
return '';
|
||||
}
|
||||
|
||||
try {
|
||||
const parsed = new URL(target, location.origin);
|
||||
const iCode = parsed.searchParams.get('i_code');
|
||||
if (iCode) {
|
||||
return iCode.trim();
|
||||
}
|
||||
} catch (error) {
|
||||
// ignore
|
||||
}
|
||||
|
||||
const match = /[?&]i_code=([^&#]+)/i.exec(target);
|
||||
return match ? decodeURIComponent(match[1] || '').trim() : '';
|
||||
};
|
||||
|
||||
const buildSafeMomoUrl = function (iCode) {
|
||||
const cleaned = toText(iCode).trim();
|
||||
if (!isLikelyMomoIcode(cleaned)) {
|
||||
return '';
|
||||
}
|
||||
return `https://www.momoshop.com.tw/goods/GoodsDetail.jsp?i_code=${encodeURIComponent(cleaned)}`;
|
||||
};
|
||||
|
||||
const resolveSafeUrl = function (link, href) {
|
||||
const original = toText(link.dataset && link.dataset.momoOriginalUrl).trim();
|
||||
const explicit = toText(link.dataset && (link.dataset.trackIcode || link.dataset.trackProductId)).trim();
|
||||
const fallbackCode = explicit || getIcodeFromUrl(original) || getIcodeFromUrl(href);
|
||||
|
||||
if (fallbackCode) {
|
||||
return buildSafeMomoUrl(fallbackCode);
|
||||
}
|
||||
return '#';
|
||||
};
|
||||
|
||||
const openMomoUrl = function (link, url) {
|
||||
if (!url || url === '#') {
|
||||
return;
|
||||
}
|
||||
|
||||
const target = toText(link.getAttribute('target') || '_self').toLowerCase();
|
||||
if (target === '_blank') {
|
||||
window.open(url, '_blank', 'noopener,noreferrer');
|
||||
return;
|
||||
}
|
||||
if (target === '_self' || target === '' ) {
|
||||
window.location.href = url;
|
||||
return;
|
||||
}
|
||||
window.open(url, target);
|
||||
};
|
||||
|
||||
const trackMomoLink = function (payload) {
|
||||
const csrfToken = document.querySelector('meta[name="csrf-token"]')?.getAttribute('content');
|
||||
const body = {
|
||||
status: 'tracked',
|
||||
...payload
|
||||
};
|
||||
|
||||
const headers = {
|
||||
'Content-Type': 'application/json'
|
||||
};
|
||||
if (csrfToken) {
|
||||
headers['X-CSRFToken'] = csrfToken;
|
||||
}
|
||||
|
||||
fetch('/api/track_momo_link', {
|
||||
method: 'POST',
|
||||
headers,
|
||||
body: JSON.stringify(body),
|
||||
keepalive: true
|
||||
}).catch(() => {});
|
||||
};
|
||||
|
||||
const guardMomoLink = function (event) {
|
||||
if (event.defaultPrevented) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.type === 'click' && event.button && event.button !== 0) {
|
||||
return;
|
||||
}
|
||||
if (event.type === 'auxclick' && event.button !== 1) {
|
||||
return;
|
||||
}
|
||||
|
||||
const link = event.target.closest ? event.target.closest('a') : null;
|
||||
if (!link) {
|
||||
return;
|
||||
}
|
||||
|
||||
const href = toText(link.getAttribute('href') || '').trim();
|
||||
if (!href || href === '#') {
|
||||
return;
|
||||
}
|
||||
|
||||
const isTrackedClass = link.classList && link.classList.contains('momo-tracked-link');
|
||||
const raw = toText(link.getAttribute('href') || '').trim();
|
||||
const original = toText(link.dataset && link.dataset.momoOriginalUrl).trim();
|
||||
if (!isTrackedClass && !hasMomoHost(raw) && !hasMomoHost(original)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const blocked = isBlockedMomoUrl(href) || isBlockedMomoUrl(original);
|
||||
const payload = {
|
||||
url: original || href,
|
||||
page: location.pathname,
|
||||
source: toText(link.dataset && link.dataset.trackSource) || 'auto-guard',
|
||||
platform: toText(link.dataset && link.dataset.trackPlatform) || 'momo',
|
||||
product_id: toText(link.dataset && link.dataset.trackProductId) || '',
|
||||
i_code: toText(link.dataset && link.dataset.trackIcode) || '',
|
||||
product_name: toText(link.dataset && link.dataset.trackProductName) || '',
|
||||
label: toText(link.textContent || '').trim(),
|
||||
effective_url: href,
|
||||
blocked: blocked
|
||||
};
|
||||
|
||||
if (!blocked && !isTrackedClass) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (blocked) {
|
||||
event.preventDefault();
|
||||
|
||||
const safeUrl = resolveSafeUrl(link, href);
|
||||
if (safeUrl && safeUrl !== href) {
|
||||
link.setAttribute('href', safeUrl);
|
||||
payload.effective_url = safeUrl;
|
||||
openMomoUrl(link, safeUrl);
|
||||
}
|
||||
|
||||
trackMomoLink(payload);
|
||||
return;
|
||||
}
|
||||
|
||||
trackMomoLink(payload);
|
||||
};
|
||||
|
||||
document.addEventListener('click', guardMomoLink, true);
|
||||
document.addEventListener('auxclick', guardMomoLink, true);
|
||||
})();
|
||||
</script>
|
||||
|
||||
<!-- 共用 JavaScript -->
|
||||
<script>
|
||||
// CSRF Token 設定 (供 AJAX 使用)
|
||||
|
||||
Reference in New Issue
Block a user