feat: sync full workspace including web modules, docs, and configurations to Gitea

Optimized the root .gitignore to exclude virtual environments, node modules,
and temp folders to ensure clean and lightweight version tracking.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
王冕
2026-06-09 18:12:25 +08:00
parent 351688006e
commit a27e3b8e43
1510 changed files with 162044 additions and 1517 deletions

View File

@@ -0,0 +1,60 @@
import type { IncomingMessage, ServerResponse } from 'http';
import fs from 'fs';
import path from 'path';
function hasVersionQuery(requestUrl: string) {
return /[?&]v=/.test(requestUrl);
}
function setNoStoreHeaders(res: ServerResponse) {
res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate');
res.setHeader('Pragma', 'no-cache');
res.setHeader('Expires', '0');
}
function setImmutableAssetHeaders(res: ServerResponse) {
res.setHeader('Cache-Control', 'public, max-age=31536000, immutable');
}
export function handleAssetsRequest(req: IncomingMessage, res: ServerResponse): boolean {
if (req.url && req.url.startsWith('/assets/')) {
const pathname = req.url.split('?')[0];
const relativePath = pathname.startsWith('/') ? pathname.slice(1) : pathname;
const assetPath = path.resolve(process.cwd(), 'admin', relativePath);
console.log('[主项目] 请求 asset:', req.url, '-> 路径:', assetPath, '存在:', fs.existsSync(assetPath));
if (fs.existsSync(assetPath)) {
try {
const content = fs.readFileSync(assetPath);
const ext = path.extname(assetPath);
const contentTypes: Record<string, string> = {
'.js': 'application/javascript',
'.css': 'text/css',
'.json': 'application/json',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.svg': 'image/svg+xml',
'.gif': 'image/gif'
};
if (hasVersionQuery(req.url)) {
setImmutableAssetHeaders(res);
} else {
setNoStoreHeaders(res);
}
res.setHeader('Content-Type', contentTypes[ext] || 'application/octet-stream');
res.statusCode = 200;
res.end(content);
console.log('[主项目] ✅ 成功返回 asset:', req.url);
return true;
} catch (err) {
console.error('[主项目] ❌ 读取 assets 文件失败:', err);
}
} else {
console.log('[主项目] ❌ asset 文件不存在');
}
}
return false;
}