from pathlib import Path import gzip import re assets = Path('/app/themes/2024/assets') def rewrite_gzip(path: Path, content: str) -> None: path.write_text(content, encoding='utf-8') with gzip.open(path.with_suffix(path.suffix + '.gz'), 'wb', compresslevel=9) as gz: gz.write(content.encode('utf-8')) def patch_chunk_size() -> None: changed = [] for path in assets.glob('SendFileView-*.js'): text = path.read_text(encoding='utf-8') if 'chunk/upload/init/' not in text and 'initChunkUpload' not in text: continue old = text for source, target in [ ('re=5*1024*1024,ft=', 're=50*1024*1024,ft='), ('const i=5*1024*1024,d=Math.ceil(o.size/i),k=await ae.post("chunk/upload/init/"', 'const i=50*1024*1024,d=Math.ceil(o.size/i),k=await ae.post("chunk/upload/init/"'), ('const i=5*1024*1024,d=Math.ceil(o.size/i),S=await ae.post("chunk/upload/init/"', 'const i=50*1024*1024,d=Math.ceil(o.size/i),S=await ae.post("chunk/upload/init/"'), ('// 默认切片大小为5MB\n const chunkSize = 5 * 1024 * 1024', '// 默认切片大小为50MB\n const chunkSize = 50 * 1024 * 1024'), ]: text = text.replace(source, target) if text == old: idx = text.find('chunk/upload/init/') if idx < 0: idx = text.find('initChunkUpload') start = max(0, idx - 700) end = min(len(text), idx + 300) window = text[start:end] patched = re.sub(r'5\s*\*\s*1024\s*\*\s*1024', '50*1024*1024', window, count=1) if patched != window: text = text[:start] + patched + text[end:] if text != old: rewrite_gzip(path, text) changed.append(path.name) schema = Path('/app/apps/base/schemas.py') if schema.exists(): text = schema.read_text(encoding='utf-8') old = text text = text.replace('chunk_size: int = 5 * 1024 * 1024', 'chunk_size: int = 50 * 1024 * 1024') text = re.sub(r'chunk_size:\s*int\s*=\s*5\s*\*\s*1024\s*\*\s*1024', 'chunk_size: int = 50 * 1024 * 1024', text) if text != old: schema.write_text(text, encoding='utf-8') print('chunk patch:', changed or 'no frontend marker changed') def patch_models_and_migration() -> None: models = Path('/app/apps/base/models.py') text = models.read_text(encoding='utf-8') if 'class TransferStats(models.Model):' not in text: insert = ''' class TransferStats(models.Model): id = fields.IntField(pk=True) action = fields.CharField(max_length=16, index=True) file_code_id = fields.IntField(null=True, index=True) code = fields.CharField(max_length=255, null=True, index=True) name = fields.CharField(max_length=512, default="") size = fields.BigIntField(default=0) ip = fields.CharField(max_length=64, default="") file_path = fields.CharField(max_length=1024, default="") expired_at = fields.DatetimeField(null=True) deleted_at = fields.DatetimeField(null=True, index=True) meta = fields.TextField(null=True) created_at = fields.DatetimeField(auto_now_add=True, index=True) class Meta: table = "transfer_stats" ''' text = text.replace('\n\nclass KeyValue(Model):', insert + '\n\nclass KeyValue(Model):') models.write_text(text, encoding='utf-8') migration = Path('/app/apps/base/migrations/migrations_099_transfer_stats.py') migration.write_text('\n'.join([ 'from tortoise import Tortoise', '', '', 'async def migrate():', ' conn = Tortoise.get_connection("default")', ' await conn.execute_script("""', ' CREATE TABLE IF NOT EXISTS transfer_stats (', ' id INTEGER PRIMARY KEY AUTOINCREMENT,', ' action VARCHAR(16) NOT NULL,', ' file_code_id INT NULL,', ' code VARCHAR(255) NULL,', " name VARCHAR(512) NOT NULL DEFAULT '',", ' size BIGINT NOT NULL DEFAULT 0,', " ip VARCHAR(64) NOT NULL DEFAULT '',", ' created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP', ' );', ' CREATE INDEX IF NOT EXISTS idx_transfer_stats_action_created ON transfer_stats(action, created_at);', ' CREATE INDEX IF NOT EXISTS idx_transfer_stats_file_code_id ON transfer_stats(file_code_id);', ' CREATE INDEX IF NOT EXISTS idx_transfer_stats_code ON transfer_stats(code);', ' CREATE INDEX IF NOT EXISTS idx_transfer_stats_deleted_at ON transfer_stats(deleted_at);', ' """)', ]) + '\n', encoding='utf-8') # Keep existing SQLite databases compatible when the table already exists. import sqlite3 db = Path('/app/data/filecodebox.db') if db.exists(): con = sqlite3.connect(db) cols = {row[1] for row in con.execute('PRAGMA table_info(transfer_stats)').fetchall()} for col, ddl in { 'file_path': "ALTER TABLE transfer_stats ADD COLUMN file_path VARCHAR(1024) NOT NULL DEFAULT ''", 'expired_at': 'ALTER TABLE transfer_stats ADD COLUMN expired_at TIMESTAMP NULL', 'deleted_at': 'ALTER TABLE transfer_stats ADD COLUMN deleted_at TIMESTAMP NULL', 'meta': 'ALTER TABLE transfer_stats ADD COLUMN meta TEXT NULL', }.items(): if col not in cols: con.execute(ddl) con.execute('CREATE INDEX IF NOT EXISTS idx_transfer_stats_deleted_at ON transfer_stats(deleted_at)') con.commit(); con.close() def patch_base_views() -> None: views = Path('/app/apps/base/views.py') text = views.read_text(encoding='utf-8') text = text.replace('from apps.base.models import FileCodes, UploadChunk, PresignUploadSession', 'from apps.base.models import FileCodes, UploadChunk, PresignUploadSession, TransferStats') helper = ''' async def record_transfer_stat(action: str, file_code: FileCodes, size: Optional[int] = None, ip: str = "", deleted_at=None, meta: str = "") -> None: async def _write(): name = f"{file_code.prefix or ''}{file_code.suffix or ''}" or file_code.uuid_file_name or file_code.code await TransferStats.create( action=action, file_code_id=file_code.id, code=file_code.code, name=name, size=int(size if size is not None else (file_code.size or 0)), ip=ip or "", file_path=file_code.file_path or "", expired_at=file_code.expired_at, deleted_at=deleted_at, meta=meta or "", ) try: await _write() except Exception: for ddl in [ "ALTER TABLE transfer_stats ADD COLUMN file_path VARCHAR(1024) NOT NULL DEFAULT ''", "ALTER TABLE transfer_stats ADD COLUMN expired_at TIMESTAMP NULL", "ALTER TABLE transfer_stats ADD COLUMN deleted_at TIMESTAMP NULL", "ALTER TABLE transfer_stats ADD COLUMN meta TEXT NULL", "CREATE INDEX IF NOT EXISTS idx_transfer_stats_deleted_at ON transfer_stats(deleted_at)", ]: try: await TransferStats._meta.db.execute_script(ddl) except Exception: pass try: await _write() except Exception: pass ''' if 'async def record_transfer_stat(' not in text: text = text.replace('async def create_file_code(code, **kwargs):\n return await FileCodes.create(code=code, **kwargs)\n', 'async def create_file_code(code, **kwargs):\n return await FileCodes.create(code=code, **kwargs)\n' + helper + '\n') replacements = [ (''' await FileCodes.create(\n code=code,\n prefix=prefix,''', ''' file_code = await FileCodes.create(\n code=code,\n prefix=prefix,'''), (''' )\n return code\n''', ''' )\n await record_transfer_stat("upload", file_code, file_size)\n return code\n''', 1), (''' await create_file_code(\n code=code,\n text=text,''', ''' file_code = await create_file_code(\n code=code,\n text=text,'''), (''' prefix="Text",\n )\n ip_limit["upload"].add_ip(ip)''', ''' prefix="Text",\n )\n await record_transfer_stat("upload", file_code, text_size, ip)\n ip_limit["upload"].add_ip(ip)'''), (''' await create_file_code(\n code=code,\n prefix=prefix,''', ''' file_code = await create_file_code(\n code=code,\n prefix=prefix,'''), (''' used_count=used_count,\n )\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": file.filename})''', ''' used_count=used_count,\n )\n await record_transfer_stat("upload", file_code, file_size, ip)\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": file.filename})'''), (''' await update_file_usage(file_code)\n return await file_storage.get_file_response(file_code)''', ''' await update_file_usage(file_code)\n await record_transfer_stat("download", file_code, file_code.size, ip)\n return await file_storage.get_file_response(file_code)'''), (''' await update_file_usage(file_code)\n return APIResponse(\n detail={''', ''' await update_file_usage(file_code)\n await record_transfer_stat("download", file_code, file_code.size, ip)\n return APIResponse(\n detail={'''), (''' await FileCodes.create(\n code=code,\n file_hash=file_hash,''', ''' file_code = await FileCodes.create(\n code=code,\n file_hash=file_hash,'''), (''' )\n # 清理临时文件\n await storage.clean_chunks(upload_id, save_path)''', ''' )\n await record_transfer_stat("upload", file_code, chunk_info.file_size, ip)\n # 清理临时文件\n await storage.clean_chunks(upload_id, save_path)'''), ] for item in replacements: source, target = item[0], item[1] count = item[2] if len(item) > 2 else -1 if source in text and target not in text: text = text.replace(source, target, count) for source, target in [ (''' await session.delete()\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": session.file_name})''', ''' file_code = await FileCodes.filter(code=code).first()\n if file_code:\n await record_transfer_stat("upload", file_code, file_size, ip)\n await session.delete()\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": session.file_name})'''), (''' await session.delete()\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": session.file_name})''', ''' file_code = await FileCodes.filter(code=code).first()\n if file_code:\n await record_transfer_stat("upload", file_code, session.file_size, ip)\n await session.delete()\n ip_limit["upload"].add_ip(ip)\n return APIResponse(detail={"code": code, "name": session.file_name})'''), ]: if source in text: text = text.replace(source, target, 1) views.write_text(text, encoding='utf-8') def patch_admin_views() -> None: admin = Path('/app/apps/admin/views.py') text = admin.read_text(encoding='utf-8') text = text.replace('from apps.base.models import FileCodes, KeyValue', 'from apps.base.models import FileCodes, KeyValue, TransferStats') analytics = r''' @admin_api.get("/analytics") async def analytics(start: str = "", end: str = ""): try: conn = TransferStats._meta.db await conn.execute_script(""" ALTER TABLE transfer_stats ADD COLUMN file_path VARCHAR(1024) NOT NULL DEFAULT ''; """) except Exception: pass for ddl in [ "ALTER TABLE transfer_stats ADD COLUMN expired_at TIMESTAMP NULL", "ALTER TABLE transfer_stats ADD COLUMN deleted_at TIMESTAMP NULL", "ALTER TABLE transfer_stats ADD COLUMN meta TEXT NULL", "CREATE INDEX IF NOT EXISTS idx_transfer_stats_deleted_at ON transfer_stats(deleted_at)", ]: try: await TransferStats._meta.db.execute_script(ddl) except Exception: pass now = await get_now() def parse_day(value, fallback): if not value: return fallback try: return datetime.datetime.strptime(value[:10], "%Y-%m-%d") except Exception: return fallback end_day = parse_day(end, now.replace(hour=0, minute=0, second=0, microsecond=0)) start_day = parse_day(start, end_day - datetime.timedelta(days=29)) end_exclusive = end_day + datetime.timedelta(days=1) stats = await TransferStats.filter(created_at__gte=start_day, created_at__lt=end_exclusive) files = await FileCodes.all() file_map = {item.code: item for item in files} total_downloads = sum(1 for item in stats if item.action == "download") total_uploads = sum(1 for item in stats if item.action == "upload") download_traffic = sum(item.size or 0 for item in stats if item.action == "download") upload_traffic = sum(item.size or 0 for item in stats if item.action == "upload") downloaded_files = len({item.code for item in stats if item.action == "download" and item.code}) historical_codes = {item.code for item in stats if item.code} day_map = {} cursor = start_day while cursor < end_exclusive: key = cursor.strftime("%Y-%m-%d") day_map[key] = {"date": key, "downloads": 0, "uploads": 0, "downloadTraffic": 0, "uploadTraffic": 0} cursor += datetime.timedelta(days=1) file_stats = {} for item in stats: key = item.created_at.strftime("%Y-%m-%d") row = day_map.get(key) if row: if item.action == "download": row["downloads"] += 1 row["downloadTraffic"] += item.size or 0 elif item.action == "upload": row["uploads"] += 1 row["uploadTraffic"] += item.size or 0 if item.code and item.action in {"upload", "download", "delete"}: bucket = file_stats.setdefault(item.code, {"downloads": 0, "downloadTraffic": 0, "uploads": 0, "uploadTraffic": 0, "name": item.name or item.code, "size": 0, "file_path": "", "uploaded_at": None, "expired_at": None, "deleted_at": None, "deleted": False}) bucket["name"] = bucket["name"] or item.name or item.code bucket["size"] = item.size or bucket["size"] bucket["file_path"] = getattr(item, "file_path", "") or bucket["file_path"] if getattr(item, "expired_at", None): bucket["expired_at"] = item.expired_at if item.action == "upload": bucket["uploads"] += 1 bucket["uploadTraffic"] += item.size or 0 bucket["uploaded_at"] = bucket["uploaded_at"] or item.created_at elif item.action == "download": bucket["downloads"] += 1 bucket["downloadTraffic"] += item.size or 0 elif item.action == "delete": bucket["deleted"] = True bucket["deleted_at"] = getattr(item, "deleted_at", None) or item.created_at for file_item in files: current_name = f"{file_item.prefix or ''}{file_item.suffix or ''}" or file_item.uuid_file_name or file_item.code bucket = file_stats.setdefault(file_item.code, {"downloads": 0, "downloadTraffic": 0, "uploads": 0, "uploadTraffic": 0, "name": current_name, "size": int(file_item.size or 0), "file_path": file_item.file_path or "", "uploaded_at": file_item.created_at, "expired_at": file_item.expired_at, "deleted_at": None, "deleted": False}) bucket["name"] = bucket.get("name") or current_name bucket["size"] = bucket.get("size") or int(file_item.size or 0) bucket["file_path"] = bucket.get("file_path") or file_item.file_path or "" bucket["uploaded_at"] = bucket.get("uploaded_at") or file_item.created_at bucket["expired_at"] = bucket.get("expired_at") or file_item.expired_at historical_codes.add(file_item.code) # Current files are always part of history metadata, even if upload events were missed before instrumentation. all_history_files = sorted(file_stats.items(), key=lambda kv: (kv[1].get("deleted_at") or kv[1].get("uploaded_at") or datetime.datetime.min.replace(tzinfo=datetime.timezone.utc), kv[1]["downloads"], kv[1]["downloadTraffic"]), reverse=True) top_files = sorted([kv for kv in all_history_files if kv[1]["downloads"] > 0], key=lambda kv: (kv[1]["downloads"], kv[1]["downloadTraffic"]), reverse=True)[:5] def dt_value(value): return value.isoformat() if value else "" def file_history_row(code, data): file_item = file_map.get(code) current_name = f"{file_item.prefix or ''}{file_item.suffix or ''}" if file_item else "" uploaded_at = data.get("uploaded_at") or (file_item.created_at if file_item else None) expired_at = data.get("expired_at") or (file_item.expired_at if file_item else None) return { "code": code, "name": data["name"] or current_name or code, "size": str(data["size"] or (file_item.size if file_item else 0) or 0), "download_count": data["downloads"], "used_count": data["downloads"], "download_traffic": str(data["downloadTraffic"]), "upload_count": data.get("uploads", 0), "upload_traffic": str(data.get("uploadTraffic", 0)), "current": bool(file_item), "deleted": bool(data.get("deleted")) and not bool(file_item), "file_path": data.get("file_path") or (file_item.file_path if file_item else ""), "created_at": dt_value(uploaded_at), "uploaded_at": dt_value(uploaded_at), "expired_at": dt_value(expired_at), "deleted_at": dt_value(data.get("deleted_at")), } return APIResponse(detail={ "range": {"start": start_day.strftime("%Y-%m-%d"), "end": end_day.strftime("%Y-%m-%d")}, "totals": { "totalDownloads": total_downloads, "downloadedFiles": downloaded_files, "downloadTraffic": str(download_traffic), "historicalFiles": len(historical_codes), "currentFiles": len(files), "totalUploads": total_uploads, "uploadTraffic": str(upload_traffic), }, "daily": list(day_map.values()), "topFiles": [file_history_row(code, data) for code, data in top_files], "historyFiles": [file_history_row(code, data) for code, data in all_history_files], }) ''' text = re.sub(r'\n@admin_api\.get\("/analytics"\)\nasync def analytics\(start: str = "", end: str = ""\):.*?\n\n@admin_api\.delete\("/file/delete"\)', '\n' + analytics + '\n\n@admin_api.delete("/file/delete")', text, flags=re.S) if '@admin_api.get("/analytics")' not in text: text = text.replace('\n\n@admin_api.delete("/file/delete")', '\n' + analytics + '\n\n@admin_api.delete("/file/delete")') admin.write_text(text, encoding='utf-8') def patch_admin_services() -> None: services = Path('/app/apps/admin/services.py') text = services.read_text(encoding='utf-8') text = text.replace('from apps.base.models import FileCodes, KeyValue, file_codes_pydantic', 'from apps.base.models import FileCodes, KeyValue, TransferStats, file_codes_pydantic') if 'import json' not in text: text = 'import json\n' + text if 'import datetime' not in text and 'from datetime import datetime' not in text: text = 'import datetime\n' + text marker = ' item = await file_codes_pydantic.from_tortoise_orm(file_code)\n data = item.model_dump()\n' replacement = ''' item = await file_codes_pydantic.from_tortoise_orm(file_code) data = item.model_dump() download_events = await TransferStats.filter(action="download", file_code_id=file_code.id) download_count = len(download_events) download_traffic = sum(event.size or 0 for event in download_events) ''' if marker in text and 'download_events = await TransferStats.filter(action="download", file_code_id=file_code.id)' not in text: text = text.replace(marker, replacement, 1) data_marker = ''' "usedCount": file_code.used_count, "used_count": file_code.used_count, "createdAt": file_code.created_at,''' data_repl = ''' "usedCount": file_code.used_count, "used_count": file_code.used_count, "downloadCount": download_count, "download_count": download_count, "downloadTraffic": str(download_traffic), "download_traffic": str(download_traffic), "createdAt": file_code.created_at,''' if data_marker in text and '"downloadCount": download_count' not in text: text = text.replace(data_marker, data_repl, 1) old_delete = ' async def _delete_file_code(self, file_code: FileCodes):\n if file_code.text is None:\n await self.file_storage.delete_file(file_code)\n await KeyValue.filter(key=self._file_metadata_key(file_code.id)).delete()\n await file_code.delete()\n' new_delete = ' async def _delete_file_code(self, file_code: FileCodes):\n try:\n name = f"{file_code.prefix or \'\'}{file_code.suffix or \'\'}" or file_code.uuid_file_name or file_code.code\n await TransferStats.create(\n action="delete",\n file_code_id=file_code.id,\n code=file_code.code,\n name=name,\n size=int(file_code.size or 0),\n ip="admin-delete",\n file_path=file_code.file_path or "",\n expired_at=file_code.expired_at,\n deleted_at=datetime.now(),\n meta=json.dumps({\n "prefix": file_code.prefix or "",\n "suffix": file_code.suffix or "",\n "uuid_file_name": file_code.uuid_file_name or "",\n "file_hash": file_code.file_hash or "",\n "is_chunked": bool(file_code.is_chunked),\n "upload_id": file_code.upload_id or "",\n "used_count": file_code.used_count,\n "expired_count": file_code.expired_count,\n "created_at": str(file_code.created_at),\n "expired_at": str(file_code.expired_at) if file_code.expired_at else "",\n }, ensure_ascii=False),\n )\n except Exception:\n pass\n if file_code.text is None:\n await self.file_storage.delete_file(file_code)\n await KeyValue.filter(key=self._file_metadata_key(file_code.id)).delete()\n await file_code.delete()\n' if old_delete in text and 'action="delete"' not in text: text = text.replace(old_delete, new_delete, 1) text = text.replace('deleted_at=datetime.datetime.now(datetime.timezone.utc),', 'deleted_at=datetime.now(),') if 'meta=json.dumps(' in text and 'import json' not in text: text = 'import json\n' + text # Ensure every lifecycle row has a visible, meaningful timestamp. text = text.replace(''' "timestamp": None, } ) elif file_code.expired_at is not None:''', ''' "timestamp": file_code.created_at, } ) elif file_code.expired_at is not None:''') text = text.replace(''' "timestamp": None, "value": remaining_downloads, } ) else:''', ''' "timestamp": file_code.created_at, "value": remaining_downloads, } ) else:''') text = text.replace(''' "timestamp": None, "value": None, } ) timeline.append(''', ''' "timestamp": file_code.created_at, "value": None, } ) timeline.append(''') text = text.replace(''' "timestamp": None, "value": file_code.used_count, } )''', ''' "timestamp": now if file_code.used_count > 0 else file_code.created_at, "value": file_code.used_count, } )''') services.write_text(text, encoding='utf-8') def patch_official_admin_assets() -> None: changed = [] for path in assets.glob('index-*.js'): text = path.read_text(encoding='utf-8') old = text replacements = { 'monitor:"Keep monitoring"': 'monitor:""', 'nextAction:"Next Action"': 'nextAction:""', 'neutral:"Watch"': 'neutral:""', 'extend24h:"Extend 24h"': 'extend24h:""', 'extend7d:"Extend 7d"': 'extend7d:""', 'makePermanent:"Make Permanent"': 'makePermanent:""', 'monitor:"保持观察"': 'monitor:""', 'nextAction:"下一步"': 'nextAction:""', 'neutral:"观察"': 'neutral:""', } for source, target in replacements.items(): text = text.replace(source, target) if text != old: rewrite_gzip(path, text) changed.append(path.name) for path in assets.glob('FileManageView-*.js'): text = path.read_text(encoding='utf-8') old = text text = text.replace('"mt-4 flex items-center justify-between px-6 py-4 border-t"', '"mt-4 flex items-center justify-between gap-3 px-6 py-4 border-t fcbx-native-pagination"') text = text.replace('"flex items-center space-x-2"', '"flex items-center space-x-2 fcbx-native-pagination-buttons"') text = text.replace('"flex items-center space-x-1"', '"flex items-center space-x-1 fcbx-native-pagination-pages"') if text != old: rewrite_gzip(path, text) changed.append(path.name) print('official admin asset patch:', changed or 'no official asset marker changed') def write_frontend_enhancement() -> None: js = r'''(() => { const css = `:root{--fcbx-radius:16px;--fcbx-border:#e5e7eb;--fcbx-surface:rgba(255,255,255,.92);--fcbx-surface-2:rgba(249,250,251,.96);--fcbx-card-shadow:0 10px 15px -3px rgba(0,0,0,.10),0 4px 6px -4px rgba(0,0,0,.10);--fcbx-shadow:0 10px 15px -3px rgba(0,0,0,.10),0 4px 6px -4px rgba(0,0,0,.10)} html.dark,html.dark body,body.dark{--fcbx-border:#374151;--fcbx-surface:rgba(31,41,55,.78);--fcbx-surface-2:rgba(17,24,39,.88);--fcbx-card-shadow:0 16px 28px -14px rgba(0,0,0,.62),0 8px 18px -12px rgba(0,0,0,.55);--fcbx-shadow:0 14px 24px -12px rgba(0,0,0,.55),0 8px 16px -12px rgba(0,0,0,.48)} body.fcbx-admin #app .rounded-md,body.fcbx-admin #app .rounded-lg,body.fcbx-admin #app .rounded-xl,body.fcbx-admin #app .rounded-2xl,body.fcbx-admin #app section[class*="rounded"],body.fcbx-admin #app div[class*="rounded"]{border-radius:16px!important} body.fcbx-admin #app button,body.fcbx-admin #app input:not([type="checkbox"]),body.fcbx-admin #app textarea,body.fcbx-admin #app select{border-radius:16px!important} body.fcbx-admin #app table{border-radius:0!important;overflow:visible!important} body.fcbx-admin main section[class*="rounded"],body.fcbx-admin main div[class*="rounded"][class*="border"],body.fcbx-admin main div[class*="shadow"]{box-shadow:var(--fcbx-card-shadow)!important;border-color:var(--fcbx-border)!important} body.fcbx-admin main section[class*="rounded"]:hover,body.fcbx-admin main div[class*="rounded"][class*="border"]:hover{box-shadow:0 18px 28px -12px rgba(15,23,42,.22),0 8px 14px -10px rgba(15,23,42,.18)!important} html.dark body.fcbx-admin main section[class*="rounded"],html.dark body.fcbx-admin main div[class*="rounded"][class*="border"],body.dark.fcbx-admin main section[class*="rounded"],body.dark.fcbx-admin main div[class*="rounded"][class*="border"]{box-shadow:var(--fcbx-card-shadow)!important} body.fcbx-admin main .grid{gap:1.5rem!important} .fcbx-native-pagination-hidden{display:none!important} .fcbx-official-pager{display:flex!important;visibility:visible!important;opacity:1!important;align-items:center!important;justify-content:flex-end!important;gap:10px!important;flex-wrap:wrap!important;margin:14px 0 0!important;padding:14px!important;border-top:1px solid var(--fcbx-border)!important;background:var(--fcbx-surface-2)!important;border-radius:0 0 16px 16px!important} .fcbx-official-pager .fcbx-muted{margin-right:auto!important}.fcbx-official-pager select,.fcbx-official-pager input{height:40px;border:1px solid var(--fcbx-border);padding:0 12px;background:var(--fcbx-surface);color:inherit}.fcbx-official-pager button{height:40px;border:1px solid #4f46e5;background:#4f46e5;color:#fff;padding:0 14px;font-weight:700}.fcbx-official-pager button:disabled{opacity:.45;cursor:not-allowed;background:var(--fcbx-surface-2);color:#6b7280;border-color:var(--fcbx-border)} @media(max-width:768px){body.fcbx-admin main .grid{gap:1rem!important}.fcbx-official-pager{justify-content:stretch!important}.fcbx-official-pager>*{flex:1 1 auto!important}.fcbx-official-pager .fcbx-muted{flex:1 1 100%!important}.fcbx-official-pager input{width:76px!important;flex:0 0 76px!important}}`; const ensureStyle = () => { let style = document.getElementById('fcbx-style'); if (!style) { style = document.createElement('style'); style.id='fcbx-style'; document.head.appendChild(style); } style.textContent = css; }; const updateMode = () => { const login = location.hash.includes('/login') || location.hash.includes('/admin/login'); const admin = location.hash.includes('/admin') && !login; document.body.classList.toggle('fcbx-admin', admin); }; const closeMobileDrawer = () => { if (window.innerWidth >= 1024) return; const aside = document.querySelector('aside'); if (!aside) return; aside.classList.remove('translate-x-0'); aside.classList.add('-translate-x-full'); }; const bindDrawer = () => { if (window.__fcbxSafeDrawerBound) return; window.__fcbxSafeDrawerBound = true; document.addEventListener('click', e => { if (e.target?.closest?.('aside a, aside nav a') && window.innerWidth < 1024) { setTimeout(closeMobileDrawer,0); setTimeout(closeMobileDrawer,160); } }, true); window.addEventListener('hashchange', () => { setTimeout(closeMobileDrawer,0); setTimeout(closeMobileDrawer,180); }); }; const findFilesTableCard = () => { const table = [...document.querySelectorAll('main table')].find(t => /Retrieve Code|取件码/.test([...t.querySelectorAll('th')].map(th=>th.textContent).join('|'))); return table?.closest('section,div[class*="rounded"]') || null; }; const mountFilesPager = () => { if (!location.hash.includes('/admin/files')) return; const native = document.querySelector('.fcbx-native-pagination'); const card = findFilesTableCard(); const mount = native || card; if (!mount) return; native?.classList.add('fcbx-native-pagination-hidden'); let pager = document.getElementById('fcbx-allfiles-pager'); if (!pager) { pager = document.createElement('div'); pager.id='fcbx-allfiles-pager'; pager.className='fcbx-official-pager'; native ? native.after(pager) : card.appendChild(pager); } const text = native?.textContent?.replace(/\s+/g,' ') || card?.textContent || ''; const m = text.match(/显示第\s*(\d+)\s*到\s*(\d+)\s*条,共\s*(\d+)\s*条/); const total = Number(m?.[3] || card?.querySelectorAll('tbody tr')?.length || 0); const params = new URLSearchParams((location.hash.split('?')[1] || '')); const size = Number(params.get('size') || 10); const page = Number(params.get('page') || 1); const pages = Math.max(1, Math.ceil(total / size)); pager.innerHTML = `第 ${Math.min(page,pages)} / ${pages} 页,共 ${total} 条`; const setHash = patch => { const [path, query=''] = location.hash.split('?'); const p = new URLSearchParams(query); Object.entries(patch).forEach(([k,v])=>p.set(k,String(v))); location.hash = `${path || '#/admin/files'}?${p.toString()}`; }; document.getElementById('fcbx-allfiles-size').onchange = e => setHash({page:1,size:e.target.value}); document.getElementById('fcbx-allfiles-prev').onclick = () => setHash({page:Math.max(1,page-1),size}); document.getElementById('fcbx-allfiles-next').onclick = () => setHash({page:Math.min(pages,page+1),size}); document.getElementById('fcbx-allfiles-go').onclick = () => setHash({page:Math.min(pages,Math.max(1,Number(document.getElementById('fcbx-allfiles-page').value)||1)),size}); }; const run = () => { ensureStyle(); updateMode(); bindDrawer(); mountFilesPager(); }; window.addEventListener('hashchange', run); document.addEventListener('DOMContentLoaded', run); setInterval(run, 1500); run(); })();''' rewrite_gzip(assets / 'fcb-analytics.js', js) index = Path('/app/themes/2024/index.html') text = index.read_text(encoding='utf-8') if '/assets/fcb-analytics.js' not in text: text = text.replace('', '\n') else: text = re.sub(r'', '', text) index.write_text(text, encoding='utf-8') patch_chunk_size() patch_models_and_migration() patch_base_views() patch_admin_views() patch_admin_services() patch_official_admin_assets() write_frontend_enhancement() print('filecodebox liquid analytics patch done')