Spaces:
Sleeping
Sleeping
File size: 13,171 Bytes
5718d27 | 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 | from fastapi import APIRouter, Depends, HTTPException, Header, Request
from pydantic import BaseModel
from backend.core.config import settings
from backend.core.database import AsyncJsonDB
from backend.core.account_pool import AccountPool, Account
import secrets
router = APIRouter()
def verify_admin(authorization: str = Header(None)):
if not authorization or not authorization.startswith("Bearer "):
raise HTTPException(status_code=401, detail="Unauthorized")
token = authorization.split("Bearer ")[1]
from backend.core.config import API_KEYS, settings as backend_settings
# 允许使用默认管理员 Key (ADMIN_KEY) 或者任何已生成的 API_KEYS 作为管理凭证
if token != backend_settings.ADMIN_KEY and token not in API_KEYS:
raise HTTPException(status_code=403, detail="Forbidden: Admin Key Mismatch")
return token
class UserCreate(BaseModel):
name: str
quota: int = 1000000
class User(BaseModel):
id: str
name: str
quota: int
used_tokens: int
@router.get("/status", dependencies=[Depends(verify_admin)])
async def get_system_status(request: Request):
pool = request.app.state.account_pool
# 账号层细粒度 inflight / 状态
per_account = []
for acc in getattr(pool, "accounts", []):
per_account.append({
"email": acc.email,
"status": acc.get_status_code(),
"inflight": getattr(acc, "inflight", 0),
"max_inflight": getattr(pool, "max_inflight_per_account", 0),
"consecutive_failures": getattr(acc, "consecutive_failures", 0),
"rate_limit_strikes": getattr(acc, "rate_limit_strikes", 0),
"last_request_finished": getattr(acc, "last_request_finished", 0),
})
# chat_id 预热池指标(若已启用)
chat_id_pool_stats = None
cp = getattr(request.app.state, "chat_id_pool", None)
if cp is not None:
try:
per_account_pool: dict[str, int] = {}
for acc in getattr(pool, "accounts", []):
per_account_pool[acc.email] = await cp.size(acc.email)
chat_id_pool_stats = {
"total_cached": await cp.total_size(),
"target_per_account": cp._target,
"ttl_seconds": cp._ttl,
"per_account": per_account_pool,
}
except Exception:
chat_id_pool_stats = {"error": "snapshot failed"}
# 向运行时拿全局任务计数 / asyncio 状态
import asyncio
try:
tasks = asyncio.all_tasks()
running_tasks = sum(1 for t in tasks if not t.done())
except Exception:
running_tasks = -1
return {
"accounts": pool.status(),
"per_account": per_account,
"chat_id_pool": chat_id_pool_stats,
"runtime": {
"asyncio_running_tasks": running_tasks,
},
"request_runtime": {
"mode": "direct_http",
"browser_required_for_requests": False,
"description": "普通请求直连 HTTP,不经过浏览器",
},
"browser_automation": {
"mode": "on_demand_registration_only",
"description": "仅注册/激活/刷新 Token 时按需启动真实浏览器",
}
}
@router.get("/users", dependencies=[Depends(verify_admin)])
async def list_users(request: Request):
db: AsyncJsonDB = request.app.state.users_db
data = await db.get()
return {"users": data}
@router.post("/users", dependencies=[Depends(verify_admin)])
async def create_user(user: UserCreate, request: Request):
import uuid
db: AsyncJsonDB = request.app.state.users_db
data = await db.get()
new_user = {
"id": f"sk-{uuid.uuid4().hex}",
"name": user.name,
"quota": user.quota,
"used_tokens": 0
}
data.append(new_user)
await db.save(data)
return new_user
@router.post("/accounts", dependencies=[Depends(verify_admin)])
async def add_account(request: Request):
import time
from backend.core.account_pool import Account, AccountPool
from backend.services.qwen_client import QwenClient
pool: AccountPool = request.app.state.account_pool
client: QwenClient = request.app.state.qwen_client
try:
data = await request.json()
except Exception:
raise HTTPException(400, detail="Invalid JSON body")
token = data.get("token", "")
if not token:
raise HTTPException(400, detail="token is required")
acc = Account(
email=data.get("email", f"manual_{int(time.time())}@qwen"),
password=data.get("password", ""),
token=token,
cookies=data.get("cookies", ""),
username=data.get("username", "")
)
is_valid = await client.verify_token(token)
if not is_valid:
return {"ok": False, "error": "Invalid token (验证失败,请确认Token有效)"}
await pool.add(acc)
return {"ok": True, "email": acc.email}
@router.get("/accounts", dependencies=[Depends(verify_admin)])
async def list_accounts(request: Request):
pool: AccountPool = request.app.state.account_pool
# 模拟原始 FastAPI 序列化,包含运行时状态
accs = []
for a in pool.accounts:
d = a.to_dict()
d["valid"] = a.valid
d["inflight"] = a.inflight
d["rate_limited_until"] = a.rate_limited_until
accs.append(d)
return {"accounts": accs}
@router.post("/accounts/register", dependencies=[Depends(verify_admin)])
async def register_new_account(request: Request):
"""一键调用浏览器无头注册新千问账号"""
import logging
from backend.services.auth_resolver import register_qwen_account
from backend.core.account_pool import AccountPool
pool: AccountPool = request.app.state.account_pool
log = logging.getLogger("backend.api.admin")
client_ip = request.client.host if request.client else "127.0.0.1"
log.info(f"[注册] 管理员触发注册,来源IP: {client_ip}")
# 简单的频率限制保护
current = len(pool.accounts)
if current >= 100:
return {"ok": False, "error": "账号池已满,请先清理死号"}
try:
acc = await register_qwen_account()
if acc:
await pool.add(acc)
log.info(f"[注册] 注册成功: {acc.email}(当前账号数: {len(pool.accounts)}/100)")
return {"ok": True, "email": acc.email, "message": "新账号注册成功并已入池"}
return {"ok": False, "error": "自动化注册失败,可能遇到风控或页面元素改变"}
except Exception as e:
return {"ok": False, "error": f"注册发生异常: {str(e)}"}
@router.post("/verify", dependencies=[Depends(verify_admin)])
async def verify_all_accounts(request: Request):
"""验证所有账号的有效性 (完全复原单文件逻辑)"""
from backend.core.account_pool import AccountPool
from backend.services.qwen_client import QwenClient
import logging
log = logging.getLogger("qwen2api.admin")
pool: AccountPool = request.app.state.account_pool
client: QwenClient = request.app.state.qwen_client
results = []
for acc in pool.accounts:
is_valid = await client.verify_token(acc.token)
if not is_valid and acc.password:
log.info(f"[校验] {acc.email} token失效,尝试自动刷新...")
is_valid = await client.auth_resolver.refresh_token(acc)
acc.valid = is_valid
results.append({"email": acc.email, "valid": is_valid, "refreshed": not is_valid})
await pool.save() # 直接保存全部状态,不调用 mark_invalid 以免熔断影响测试
return {"ok": True, "results": results}
@router.post("/accounts/{email}/activate", dependencies=[Depends(verify_admin)])
async def activate_account(email: str, request: Request):
"""单独激活某个账号"""
from backend.services.auth_resolver import activate_account as activate_logic
from backend.core.account_pool import AccountPool
pool: AccountPool = request.app.state.account_pool
acc = next((a for a in pool.accounts if a.email == email), None)
if not acc:
raise HTTPException(status_code=404, detail="Account not found")
# 防止并发点击:检查一个运行时标志
if getattr(acc, "_is_activating", False):
return {"ok": False, "error": "该账号正在激活中,请勿重复点击"}
try:
setattr(acc, "_is_activating", True)
success = await activate_logic(acc)
if success:
acc.valid = True
acc.activation_pending = False
await pool.add(acc) # 这会触发覆盖保存
return {"ok": True, "message": "账号激活成功"}
return {"ok": False, "error": "未能找到激活链接或获取Token"}
finally:
setattr(acc, "_is_activating", False)
@router.post("/accounts/{email}/verify", dependencies=[Depends(verify_admin)])
async def verify_account(email: str, request: Request):
"""单独验证某个账号的有效性 (完全复原单文件逻辑)"""
from backend.services.qwen_client import QwenClient
from backend.core.account_pool import AccountPool
import logging
log = logging.getLogger("qwen2api.admin")
pool: AccountPool = request.app.state.account_pool
client: QwenClient = request.app.state.qwen_client
acc = next((a for a in pool.accounts if a.email == email), None)
if not acc:
raise HTTPException(status_code=404, detail="Account not found")
is_valid = await client.verify_token(acc.token)
if not is_valid and acc.password:
log.info(f"[校验] {acc.email} token失效,尝试自动刷新...")
is_valid = await client.auth_resolver.refresh_token(acc)
acc.valid = is_valid
await pool.save() # 直接保存,不调用 mark_invalid 以免熔断影响正常测试
return {"email": acc.email, "valid": is_valid}
@router.delete("/accounts/{email}", dependencies=[Depends(verify_admin)])
async def delete_account(email: str, request: Request):
from backend.core.account_pool import AccountPool
pool: AccountPool = request.app.state.account_pool
await pool.remove(email)
return {"ok": True}
@router.get("/settings", dependencies=[Depends(verify_admin)])
async def get_settings(request: Request):
from backend.core.config import MODEL_MAP
from backend.core.config import settings as backend_settings
safe_map = {k: v for k, v in MODEL_MAP.items()}
pool = getattr(request.app.state, "chat_id_pool", None)
acc_pool = getattr(request.app.state, "account_pool", None)
return {
"version": "2.0.0",
"max_inflight_per_account": backend_settings.MAX_INFLIGHT_PER_ACCOUNT,
"global_max_inflight": getattr(acc_pool, "global_max_inflight", 0),
"max_queue_size": getattr(acc_pool, "max_queue_size", 0),
"chat_id_pool_target": pool.target if pool else 0,
"chat_id_pool_ttl_seconds": pool.ttl if pool else 0,
"model_aliases": safe_map,
}
@router.put("/settings", dependencies=[Depends(verify_admin)])
async def update_settings(data: dict, request: Request):
from backend.core.config import MODEL_MAP
if "max_inflight_per_account" in data:
try:
val = int(data["max_inflight_per_account"])
settings.MAX_INFLIGHT_PER_ACCOUNT = val
pool = getattr(request.app.state, "account_pool", None)
if pool is not None and hasattr(pool, "set_max_inflight"):
pool.set_max_inflight(val)
except (TypeError, ValueError):
pass
if "global_max_inflight" in data:
try:
val = int(data["global_max_inflight"])
pool = getattr(request.app.state, "account_pool", None)
if pool is not None and val > 0:
pool.global_max_inflight = val
except (TypeError, ValueError):
pass
if "chat_id_pool_target" in data or "chat_id_pool_ttl_seconds" in data:
cp = getattr(request.app.state, "chat_id_pool", None)
if cp is not None:
cp.update_config(
target=data.get("chat_id_pool_target"),
ttl_seconds=data.get("chat_id_pool_ttl_seconds"),
)
if "model_aliases" in data:
MODEL_MAP.clear()
MODEL_MAP.update(data["model_aliases"])
return {"ok": True}
@router.get("/keys", dependencies=[Depends(verify_admin)])
async def get_keys():
from backend.core.config import API_KEYS
return {"keys": list(API_KEYS)}
@router.post("/keys", dependencies=[Depends(verify_admin)])
async def create_key():
from backend.core.config import API_KEYS, save_api_keys_async
new_key = f"sk-{secrets.token_hex(24)}"
API_KEYS.add(new_key)
await save_api_keys_async(API_KEYS)
return {"ok": True, "key": new_key}
@router.delete("/keys/{key}", dependencies=[Depends(verify_admin)])
async def delete_key(key: str):
from backend.core.config import API_KEYS, save_api_keys_async
if key in API_KEYS:
API_KEYS.remove(key)
await save_api_keys_async(API_KEYS)
return {"ok": True}
|