File size: 20,030 Bytes
bd4057b f44d788 bd4057b a318da0 bd4057b a318da0 bd4057b a318da0 bd4057b f44d788 bd4057b 07dd5b7 519f85d bd4057b f9a9d62 519f85d f9a9d62 519f85d a318da0 f9a9d62 a318da0 24f4569 f9a9d62 24f4569 f9a9d62 24f4569 a318da0 07dd5b7 a318da0 519f85d a318da0 bd4057b f2888e4 bd4057b 8bb6984 db80fed bd4057b 8bb6984 db80fed bd4057b f44d788 bd4057b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | from __future__ import annotations
import json
from typing import Any
from urllib.parse import quote
import httpx
from fastapi import APIRouter, Header, HTTPException, Request
from fastapi.concurrency import run_in_threadpool
from fastapi.responses import Response, StreamingResponse
from pydantic import BaseModel, ConfigDict
from api.support import require_admin, require_identity, resolve_image_base_url
from services.backup_service import BackupError, backup_service
from services.config import config
from services.auth_service import auth_service
from services.image_service import delete_images, download_images_zip, get_image_download_response, get_image_response, get_thumbnail_response, list_images
from services.image_storage_service import ImageStorageError, image_storage_service
from services.image_tags_service import delete_tag, get_all_tags, set_tags
from services.log_service import log_service
from services.proxy_service import test_proxy
class SettingsUpdateRequest(BaseModel):
model_config = ConfigDict(extra="allow")
class WechatLoginRequest(BaseModel):
code: str = ""
class ProxyTestRequest(BaseModel):
url: str = ""
class ImageDeleteRequest(BaseModel):
paths: list[str] = []
start_date: str = ""
end_date: str = ""
all_matching: bool = False
class ImageDownloadRequest(BaseModel):
paths: list[str]
class ImageTagsRequest(BaseModel):
path: str
tags: list[str]
class LogDeleteRequest(BaseModel):
ids: list[str] = []
class BackupDeleteRequest(BaseModel):
key: str = ""
class UserStorageImportRequest(BaseModel):
payload: Any
dry_run: bool = True
def _parse_json_object(value: object) -> dict[str, Any]:
if isinstance(value, dict):
return dict(value)
if isinstance(value, str):
try:
parsed = json.loads(value)
except json.JSONDecodeError:
return {}
return dict(parsed) if isinstance(parsed, dict) else {}
return {}
def _parse_json_list(value: object) -> list[dict[str, Any]]:
if isinstance(value, list):
return [dict(item) for item in value if isinstance(item, dict)]
if isinstance(value, str):
try:
parsed = json.loads(value)
except json.JSONDecodeError:
return []
return [dict(item) for item in parsed if isinstance(item, dict)] if isinstance(parsed, list) else []
return []
def _normalize_auth_key_import(payload: dict[str, Any]) -> list[dict[str, Any]]:
raw_auth_keys = payload.get("auth_keys")
rows = raw_auth_keys if isinstance(raw_auth_keys, list) else []
items: list[dict[str, Any]] = []
for row in rows:
if not isinstance(row, dict):
continue
item = _parse_json_object(row.get("data")) if "data" in row else dict(row)
item_id = str(item.get("id") or row.get("key_id") or "").strip()
if item_id:
item["id"] = item_id
items.append(item)
return items
def _normalize_shop_state_import(payload: dict[str, Any]) -> tuple[dict[str, Any], dict[str, dict[str, Any]]]:
state: dict[str, Any] = {}
named_states: dict[str, dict[str, Any]] = {}
raw_shop_state = payload.get("shop_state")
if isinstance(raw_shop_state, dict):
state = dict(raw_shop_state)
elif isinstance(raw_shop_state, list):
for row in raw_shop_state:
if not isinstance(row, dict):
continue
key = str(row.get("key") or "default").strip() or "default"
item_state = _parse_json_object(row.get("data")) if "data" in row else dict(row)
if key == "default":
state = item_state
else:
named_states[key] = item_state
imported_codes = _parse_json_list(payload.get("redeem_codes"))
if imported_codes:
existing_codes = state.get("codes") if isinstance(state.get("codes"), list) else []
merged: dict[str, dict[str, Any]] = {}
for item in [*existing_codes, *imported_codes]:
if not isinstance(item, dict):
continue
data = _parse_json_object(item.get("data")) if "data" in item else dict(item)
data.setdefault("id", item.get("code_id") or item.get("id"))
data.setdefault("code_hash", item.get("code_hash"))
data.setdefault("status", item.get("status"))
if item.get("batch_id") and not data.get("batch_id"):
data["batch_id"] = item.get("batch_id")
if item.get("redeemed_by") and not data.get("redeemed_by"):
data["redeemed_by"] = item.get("redeemed_by")
identity = str(data.get("code_hash") or data.get("id") or "").strip()
if identity:
merged[identity] = data
state["codes"] = list(merged.values())
if not isinstance(state.get("ledger"), list):
state["ledger"] = []
if not isinstance(state.get("codes"), list):
state["codes"] = []
return state, named_states
def _normalize_user_storage_import(payload: object) -> tuple[list[dict[str, Any]], dict[str, Any], dict[str, dict[str, Any]]]:
parsed = _parse_json_object(payload)
if "full_backup" in parsed:
parsed = _parse_json_object(parsed.get("full_backup"))
auth_keys = _normalize_auth_key_import(parsed)
shop_state, named_states = _normalize_shop_state_import(parsed)
return auth_keys, shop_state, named_states
def create_router(app_version: str) -> APIRouter:
router = APIRouter()
@router.post("/auth/login")
async def login(authorization: str | None = Header(default=None)):
identity = require_identity(authorization)
return {
"ok": True,
"version": app_version,
"role": identity.get("role"),
"subject_id": identity.get("id"),
"name": identity.get("name"),
"account_pool_enabled": bool(identity.get("role") == "admin" or identity.get("account_pool_enabled")),
"login_session_duration_hours": config.login_session_duration_hours_for_role(identity.get("role")),
}
@router.get("/api/auth/wechat/status")
async def wechat_login_status():
return {
"enabled": config.wechat_login_enabled,
"auto_register_enabled": config.wechat_auto_register_enabled,
"login_session_duration_hours": config.normal_user_login_session_duration_hours,
}
@router.get("/api/branding")
async def get_branding():
return {"branding": config.get_branding()}
@router.post("/api/auth/wechat/login")
async def wechat_login(body: WechatLoginRequest):
if not config.wechat_login_enabled:
raise HTTPException(status_code=403, detail={"error": "微信验证码登录已关闭,请使用登录密钥。"})
code = str(body.code or "").strip()
if not code:
raise HTTPException(status_code=400, detail={"error": "请输入微信验证码"})
try:
async with httpx.AsyncClient(timeout=15.0) as client:
response = await client.post("https://wx.z-l.top/api/auth/verify", json={"code": code})
except httpx.HTTPError as exc:
raise HTTPException(status_code=502, detail={"error": "微信登录服务暂时不可用,请稍后再试"}) from exc
try:
payload = response.json()
except ValueError as exc:
raise HTTPException(status_code=502, detail={"error": "微信登录服务返回异常"}) from exc
if not response.is_success or not payload.get("success"):
message = str(payload.get("message") or "微信验证码无效或已过期")
raise HTTPException(status_code=401, detail={"error": message})
user = payload.get("user") if isinstance(payload.get("user"), dict) else {}
openid = str(user.get("openid") or "").strip()
if not openid:
raise HTTPException(status_code=502, detail={"error": "微信登录服务未返回 openid"})
try:
item, raw_key, created = auth_service.get_or_create_wechat_normal_user(
openid=openid,
nickname=str(user.get("nickname") or "").strip(),
avatar=str(user.get("avatar") or "").strip(),
allow_create=config.wechat_auto_register_enabled,
)
except ValueError as exc:
raise HTTPException(status_code=403, detail={"error": str(exc)}) from exc
except Exception as exc:
print(f"[wechat-login] failed to save user: {exc}")
raise HTTPException(status_code=503, detail={"error": f"微信登录已验证,但保存用户失败:{exc}"}) from exc
return {
"ok": True,
"version": app_version,
"role": "normal",
"subject_id": item.get("id"),
"name": item.get("name"),
"account_pool_enabled": bool(item.get("account_pool_enabled")),
"key": raw_key,
"created": created,
"login_session_duration_hours": config.normal_user_login_session_duration_hours,
"credits": auth_service.credit_summary(item),
"wechat": {
"openid": openid,
"nickname": item.get("wechat_nickname") or user.get("nickname") or "",
"avatar": item.get("wechat_avatar") or user.get("avatar") or "",
},
}
@router.get("/version")
async def get_version():
return {"version": app_version}
@router.get("/api/settings")
async def get_settings(authorization: str | None = Header(default=None)):
require_admin(authorization)
return {"config": config.get()}
@router.get("/api/announcements")
async def get_announcements(authorization: str | None = Header(default=None)):
identity = require_identity(authorization)
return {"items": config.get_announcements(role=str(identity.get("role") or ""))}
@router.post("/api/settings")
async def save_settings(body: SettingsUpdateRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {"config": config.update(body.model_dump(mode="python"))}
except ValueError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.get("/api/images")
async def get_images(request: Request, start_date: str = "", end_date: str = "", authorization: str | None = Header(default=None)):
require_admin(authorization)
return list_images(resolve_image_base_url(request), start_date=start_date.strip(), end_date=end_date.strip())
@router.get("/images/{image_path:path}", include_in_schema=False)
async def get_image(image_path: str):
return get_image_response(image_path)
@router.get("/image-thumbnails/{image_path:path}", include_in_schema=False)
async def get_image_thumbnail(image_path: str):
return get_thumbnail_response(image_path)
@router.post("/api/images/delete")
async def delete_images_endpoint(body: ImageDeleteRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
return delete_images(body.paths, start_date=body.start_date.strip(), end_date=body.end_date.strip(), all_matching=body.all_matching)
@router.post("/api/images/download")
async def download_images_endpoint(body: ImageDownloadRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
buf = download_images_zip(body.paths)
return StreamingResponse(
buf,
media_type="application/zip",
headers={"Content-Disposition": 'attachment; filename="images.zip"'},
)
@router.get("/api/images/download/{image_path:path}")
async def download_single_image_endpoint(image_path: str, authorization: str | None = Header(default=None)):
require_admin(authorization)
return get_image_download_response(image_path)
@router.get("/api/logs")
async def get_logs(type: str = "", start_date: str = "", end_date: str = "", authorization: str | None = Header(default=None)):
require_admin(authorization)
return {"items": log_service.list(type=type.strip(), start_date=start_date.strip(), end_date=end_date.strip())}
@router.post("/api/logs/delete")
async def delete_logs(body: LogDeleteRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
return log_service.delete(body.ids)
@router.post("/api/proxy/test")
async def test_proxy_endpoint(body: ProxyTestRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
candidate = (body.url or "").strip() or config.get_proxy_settings()
if not candidate:
raise HTTPException(status_code=400, detail={"error": "proxy url is required"})
return {"result": await run_in_threadpool(test_proxy, candidate)}
@router.get("/api/storage/info")
async def get_storage_info(authorization: str | None = Header(default=None)):
require_admin(authorization)
storage = config.get_storage_backend()
user_storage = config.get_user_storage_backend()
account_pool_storage = config.get_account_pool_storage_backend()
return {
"backend": storage.get_backend_info(),
"health": storage.health_check(),
"user_backend": user_storage.get_backend_info(),
"user_health": user_storage.health_check(),
"account_pool_backend": account_pool_storage.get_backend_info(),
"account_pool_health": account_pool_storage.health_check(),
}
@router.post("/api/admin/import-user-storage")
async def import_user_storage(body: UserStorageImportRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
auth_keys, shop_state, named_states = _normalize_user_storage_import(body.payload)
code_count = len(shop_state.get("codes") or []) if isinstance(shop_state, dict) else 0
ledger_count = len(shop_state.get("ledger") or []) if isinstance(shop_state, dict) else 0
if body.dry_run:
return {
"ok": True,
"dry_run": True,
"target": "local_primary_storage",
"auth_keys": len(auth_keys),
"codes": code_count,
"ledger": ledger_count,
"named_states": sorted(named_states.keys()),
}
storage = config.get_storage_backend()
try:
await run_in_threadpool(storage.save_auth_keys, auth_keys)
await run_in_threadpool(storage.save_shop_state, shop_state)
save_named_state = getattr(storage, "save_named_state", None)
if callable(save_named_state):
for key, state in named_states.items():
await run_in_threadpool(save_named_state, key, state)
except Exception as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
return {
"ok": True,
"dry_run": False,
"target": "local_primary_storage",
"auth_keys": len(auth_keys),
"codes": code_count,
"ledger": ledger_count,
"named_states": sorted(named_states.keys()),
}
@router.post("/api/backup/test")
async def test_backup_connection(authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {"result": await run_in_threadpool(backup_service.test_connection)}
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.post("/api/image-storage/test")
async def test_image_storage_endpoint(authorization: str | None = Header(default=None)):
require_admin(authorization)
return {"result": await run_in_threadpool(image_storage_service.test_webdav)}
@router.post("/api/image-storage/sync")
async def sync_image_storage_endpoint(authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {"result": await run_in_threadpool(image_storage_service.sync_all)}
except ImageStorageError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.get("/api/backups")
async def get_backups(authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {
"items": await run_in_threadpool(backup_service.list_backups),
"state": backup_service.get_status(),
"settings": backup_service.get_settings(),
}
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.post("/api/backups/run")
async def run_backup_endpoint(authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {"result": await run_in_threadpool(backup_service.run_backup)}
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.post("/api/backups/delete")
async def delete_backup_endpoint(body: BackupDeleteRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
await run_in_threadpool(backup_service.delete_backup, body.key)
return {"ok": True}
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.get("/api/backups/detail")
async def get_backup_detail(key: str = "", authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
return {"item": await run_in_threadpool(backup_service.get_backup_detail, key)}
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
@router.get("/api/backups/download")
async def download_backup_endpoint(key: str = "", authorization: str | None = Header(default=None)):
require_admin(authorization)
try:
item = await run_in_threadpool(backup_service.download_backup, key)
except BackupError as exc:
raise HTTPException(status_code=400, detail={"error": str(exc)}) from exc
filename = str(item.get("name") or "backup.bin")
quoted = quote(filename)
headers = {
"Content-Disposition": f"attachment; filename*=UTF-8''{quoted}",
"Content-Length": str(int(item.get("size") or 0)),
}
return Response(
content=bytes(item.get("payload") or b""),
media_type=str(item.get("content_type") or "application/octet-stream"),
headers=headers,
)
@router.get("/api/images/tags")
async def list_image_tags(authorization: str | None = Header(default=None)):
require_admin(authorization)
return {"tags": get_all_tags()}
@router.post("/api/images/tags")
async def update_image_tags(body: ImageTagsRequest, authorization: str | None = Header(default=None)):
require_admin(authorization)
rel = body.path.strip().lstrip("/")
if not rel:
raise HTTPException(status_code=400, detail={"error": "path is required"})
tags = set_tags(rel, body.tags)
return {"ok": True, "tags": tags}
@router.delete("/api/images/tags/{tag}")
async def delete_image_tag(tag: str, authorization: str | None = Header(default=None)):
require_admin(authorization)
count = delete_tag(tag)
return {"ok": True, "removed_from": count}
return router
|