Spaces:
Running
Running
File size: 28,878 Bytes
e2ab8a3 e2e9f4b e2ab8a3 e00ef83 e2ab8a3 e00ef83 e2ab8a3 e2e9f4b 2e6c81a e2e9f4b 2e6c81a e2e9f4b 2e6c81a e2e9f4b e2ab8a3 e00ef83 e2ab8a3 1bdfa3a e2ab8a3 1bdfa3a e2ab8a3 2e6c81a e2ab8a3 e00ef83 e2ab8a3 f12ea8b e2ab8a3 e00ef83 e2ab8a3 e2e9f4b e2ab8a3 e00ef83 e2ab8a3 2c96fd3 e00ef83 2c96fd3 e00ef83 2c96fd3 e2ab8a3 |
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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 |
import os
import json
import uuid
import time
import sqlite3
import importlib.util
import random
import threading
from pathlib import Path
from typing import Dict, Optional, List, Any, Generator, Tuple
from fastapi import FastAPI, Depends, HTTPException, Header
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, StreamingResponse, HTMLResponse, FileResponse
from pydantic import BaseModel
from dotenv import load_dotenv
import requests
# ------------------------------------------------------------------------------
# Bootstrap
# ------------------------------------------------------------------------------
BASE_DIR = Path(__file__).resolve().parent
DB_PATH = BASE_DIR / "data.sqlite3"
load_dotenv(BASE_DIR / ".env")
app = FastAPI(title="v2 OpenAI-compatible Server (Amazon Q Backend)")
# CORS for simple testing in browser
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
# ------------------------------------------------------------------------------
# Dynamic import of replicate.py to avoid package __init__ needs
# ------------------------------------------------------------------------------
def _load_replicate_module():
mod_path = BASE_DIR / "replicate.py"
spec = importlib.util.spec_from_file_location("v2_replicate", str(mod_path))
module = importlib.util.module_from_spec(spec) # type: ignore[arg-type]
assert spec is not None and spec.loader is not None
spec.loader.exec_module(module) # type: ignore[attr-defined]
return module
_replicate = _load_replicate_module()
send_chat_request = _replicate.send_chat_request
# ------------------------------------------------------------------------------
# SQLite helpers
# ------------------------------------------------------------------------------
def _ensure_db():
DB_PATH.parent.mkdir(parents=True, exist_ok=True)
with sqlite3.connect(DB_PATH) as conn:
conn.execute(
"""
CREATE TABLE IF NOT EXISTS accounts (
id TEXT PRIMARY KEY,
label TEXT,
clientId TEXT,
clientSecret TEXT,
refreshToken TEXT,
accessToken TEXT,
other TEXT,
last_refresh_time TEXT,
last_refresh_status TEXT,
created_at TEXT,
updated_at TEXT
)
"""
)
# add columns if missing
try:
cols = [row[1] for row in conn.execute("PRAGMA table_info(accounts)").fetchall()]
if "enabled" not in cols:
conn.execute("ALTER TABLE accounts ADD COLUMN enabled INTEGER DEFAULT 1")
if "error_count" not in cols:
conn.execute("ALTER TABLE accounts ADD COLUMN error_count INTEGER DEFAULT 0")
if "success_count" not in cols:
conn.execute("ALTER TABLE accounts ADD COLUMN success_count INTEGER DEFAULT 0")
except Exception:
pass
conn.commit()
def _conn() -> sqlite3.Connection:
conn = sqlite3.connect(DB_PATH, check_same_thread=False)
conn.row_factory = sqlite3.Row
return conn
def _row_to_dict(r: sqlite3.Row) -> Dict[str, Any]:
d = dict(r)
if d.get("other"):
try:
d["other"] = json.loads(d["other"])
except Exception:
pass
# normalize enabled to bool
if "enabled" in d and d["enabled"] is not None:
try:
d["enabled"] = bool(int(d["enabled"]))
except Exception:
d["enabled"] = bool(d["enabled"])
return d
_ensure_db()
# ------------------------------------------------------------------------------
# Background token refresh thread
# ------------------------------------------------------------------------------
def _refresh_stale_tokens():
while True:
try:
time.sleep(300) # 5 minutes
now = time.time()
with _conn() as conn:
rows = conn.execute("SELECT id, last_refresh_time FROM accounts WHERE enabled=1").fetchall()
for row in rows:
acc_id, last_refresh = row[0], row[1]
should_refresh = False
if not last_refresh or last_refresh == "never":
should_refresh = True
else:
try:
last_time = time.mktime(time.strptime(last_refresh, "%Y-%m-%dT%H:%M:%S"))
if now - last_time > 1500: # 25 minutes
should_refresh = True
except Exception:
# Malformed or unparsable timestamp; force refresh
should_refresh = True
if should_refresh:
try:
refresh_access_token_in_db(acc_id)
except Exception:
# Ignore per-account refresh failure; timestamp/status are recorded inside
pass
except Exception:
pass
threading.Thread(target=_refresh_stale_tokens, daemon=True).start()
# ------------------------------------------------------------------------------
# Env and API Key authorization (keys are independent of AWS accounts)
# ------------------------------------------------------------------------------
def _parse_allowed_keys_env() -> List[str]:
"""
OPENAI_KEYS is a comma-separated whitelist of API keys for authorization only.
Example: OPENAI_KEYS="key1,key2,key3"
- When the list is non-empty, incoming Authorization: Bearer {key} must be one of them.
- When empty or unset, authorization is effectively disabled (dev mode).
"""
s = os.getenv("OPENAI_KEYS", "") or ""
keys: List[str] = []
for k in [x.strip() for x in s.split(",") if x.strip()]:
keys.append(k)
return keys
ALLOWED_API_KEYS: List[str] = _parse_allowed_keys_env()
MAX_ERROR_COUNT: int = int(os.getenv("MAX_ERROR_COUNT", "100"))
def _extract_bearer(token_header: Optional[str]) -> Optional[str]:
if not token_header:
return None
if token_header.startswith("Bearer "):
return token_header.split(" ", 1)[1].strip()
return token_header.strip()
def _list_enabled_accounts(conn: sqlite3.Connection) -> List[Dict[str, Any]]:
rows = conn.execute("SELECT * FROM accounts WHERE enabled=1 ORDER BY created_at DESC").fetchall()
return [_row_to_dict(r) for r in rows]
def resolve_account_for_key(bearer_key: Optional[str]) -> Dict[str, Any]:
"""
Authorize request by OPENAI_KEYS (if configured), then select an AWS account.
Selection strategy: random among all enabled accounts. Authorization key does NOT map to any account.
"""
# Authorization
if ALLOWED_API_KEYS:
if not bearer_key or bearer_key not in ALLOWED_API_KEYS:
raise HTTPException(status_code=401, detail="Invalid or missing API key")
# Selection: random among enabled accounts
with _conn() as conn:
candidates = _list_enabled_accounts(conn)
if not candidates:
raise HTTPException(status_code=401, detail="No enabled account available")
return random.choice(candidates)
# ------------------------------------------------------------------------------
# Pydantic Schemas
# ------------------------------------------------------------------------------
class AccountCreate(BaseModel):
label: Optional[str] = None
clientId: str
clientSecret: str
refreshToken: Optional[str] = None
accessToken: Optional[str] = None
other: Optional[Dict[str, Any]] = None
enabled: Optional[bool] = True
class AccountUpdate(BaseModel):
label: Optional[str] = None
clientId: Optional[str] = None
clientSecret: Optional[str] = None
refreshToken: Optional[str] = None
accessToken: Optional[str] = None
other: Optional[Dict[str, Any]] = None
enabled: Optional[bool] = None
class ChatMessage(BaseModel):
role: str
content: Any
class ChatCompletionRequest(BaseModel):
model: Optional[str] = None
messages: List[ChatMessage]
stream: Optional[bool] = False
# ------------------------------------------------------------------------------
# Token refresh (OIDC)
# ------------------------------------------------------------------------------
OIDC_BASE = "https://oidc.us-east-1.amazonaws.com"
TOKEN_URL = f"{OIDC_BASE}/token"
def _get_proxies() -> Optional[Dict[str, str]]:
proxy = os.getenv("HTTP_PROXY", "").strip()
if proxy:
return {"http": proxy, "https": proxy}
return None
def _oidc_headers() -> Dict[str, str]:
return {
"content-type": "application/json",
"user-agent": "aws-sdk-rust/1.3.9 os/windows lang/rust/1.87.0",
"x-amz-user-agent": "aws-sdk-rust/1.3.9 ua/2.1 api/ssooidc/1.88.0 os/windows lang/rust/1.87.0 m/E app/AmazonQ-For-CLI",
"amz-sdk-request": "attempt=1; max=3",
"amz-sdk-invocation-id": str(uuid.uuid4()),
}
def refresh_access_token_in_db(account_id: str) -> Dict[str, Any]:
with _conn() as conn:
row = conn.execute("SELECT * FROM accounts WHERE id=?", (account_id,)).fetchone()
if not row:
raise HTTPException(status_code=404, detail="Account not found")
acc = _row_to_dict(row)
if not acc.get("clientId") or not acc.get("clientSecret") or not acc.get("refreshToken"):
raise HTTPException(status_code=400, detail="Account missing clientId/clientSecret/refreshToken for refresh")
payload = {
"grantType": "refresh_token",
"clientId": acc["clientId"],
"clientSecret": acc["clientSecret"],
"refreshToken": acc["refreshToken"],
}
try:
r = requests.post(TOKEN_URL, headers=_oidc_headers(), json=payload, timeout=(15, 60), proxies=_get_proxies())
r.raise_for_status()
data = r.json()
new_access = data.get("accessToken")
new_refresh = data.get("refreshToken", acc.get("refreshToken"))
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
status = "success"
except requests.RequestException as e:
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
status = "failed"
conn.execute(
"""
UPDATE accounts
SET last_refresh_time=?, last_refresh_status=?, updated_at=?
WHERE id=?
""",
(now, status, now, account_id),
)
conn.commit()
raise HTTPException(status_code=502, detail=f"Token refresh failed: {str(e)}")
except Exception as e:
# Ensure last_refresh_time is recorded even on unexpected errors
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
status = "failed"
conn.execute(
"""
UPDATE accounts
SET last_refresh_time=?, last_refresh_status=?, updated_at=?
WHERE id=?
""",
(now, status, now, account_id),
)
conn.commit()
raise
conn.execute(
"""
UPDATE accounts
SET accessToken=?, refreshToken=?, last_refresh_time=?, last_refresh_status=?, updated_at=?
WHERE id=?
""",
(new_access, new_refresh, now, status, now, account_id),
)
conn.commit()
row2 = conn.execute("SELECT * FROM accounts WHERE id=?", (account_id,)).fetchone()
return _row_to_dict(row2)
def get_account(account_id: str) -> Dict[str, Any]:
with _conn() as conn:
row = conn.execute("SELECT * FROM accounts WHERE id=?", (account_id,)).fetchone()
if not row:
raise HTTPException(status_code=404, detail="Account not found")
return _row_to_dict(row)
def _update_stats(account_id: str, success: bool) -> None:
with _conn() as conn:
if success:
conn.execute("UPDATE accounts SET success_count=success_count+1, error_count=0, updated_at=? WHERE id=?",
(time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime()), account_id))
else:
row = conn.execute("SELECT error_count FROM accounts WHERE id=?", (account_id,)).fetchone()
if row:
new_count = (row[0] or 0) + 1
if new_count >= MAX_ERROR_COUNT:
conn.execute("UPDATE accounts SET error_count=?, enabled=0, updated_at=? WHERE id=?",
(new_count, time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime()), account_id))
else:
conn.execute("UPDATE accounts SET error_count=?, updated_at=? WHERE id=?",
(new_count, time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime()), account_id))
conn.commit()
# ------------------------------------------------------------------------------
# Dependencies
# ------------------------------------------------------------------------------
def require_account(authorization: Optional[str] = Header(default=None)) -> Dict[str, Any]:
bearer = _extract_bearer(authorization)
return resolve_account_for_key(bearer)
# ------------------------------------------------------------------------------
# OpenAI-compatible Chat endpoint
# ------------------------------------------------------------------------------
def _openai_non_streaming_response(text: str, model: Optional[str]) -> Dict[str, Any]:
created = int(time.time())
return {
"id": f"chatcmpl-{uuid.uuid4()}",
"object": "chat.completion",
"created": created,
"model": model or "unknown",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": text,
},
"finish_reason": "stop",
}
],
"usage": {
"prompt_tokens": None,
"completion_tokens": None,
"total_tokens": None,
},
}
def _sse_format(obj: Dict[str, Any]) -> str:
return f"data: {json.dumps(obj, ensure_ascii=False)}\n\n"
@app.get("/v1/models")
def list_models():
"""
OpenAI-compatible models endpoint.
Returns the available models that can be used with this API.
"""
return {
"object": "list",
"data": [
{
"id": "claude-sonnet-4",
"object": "model",
"created": int(time.time()),
"owned_by": "amazon-q"
}
]
}
@app.post("/v1/chat/completions")
def chat_completions(req: ChatCompletionRequest, account: Dict[str, Any] = Depends(require_account)):
"""
OpenAI-compatible chat endpoint.
- stream default False
- messages will be converted into "{role}:\n{content}" and injected into template
- account is chosen randomly among enabled accounts (API key is for authorization only)
"""
model = req.model
do_stream = bool(req.stream)
def _send_upstream(stream: bool) -> Tuple[Optional[str], Optional[Generator[str, None, None]], Any]:
access = account.get("accessToken")
if not access:
refreshed = refresh_access_token_in_db(account["id"])
access = refreshed.get("accessToken")
if not access:
raise HTTPException(status_code=502, detail="Access token unavailable after refresh")
return send_chat_request(access, [m.model_dump() for m in req.messages], model=model, stream=stream)
if not do_stream:
try:
text, _, tracker = _send_upstream(stream=False)
_update_stats(account["id"], bool(text))
return JSONResponse(content=_openai_non_streaming_response(text or "", model))
except Exception as e:
_update_stats(account["id"], False)
raise
else:
created = int(time.time())
stream_id = f"chatcmpl-{uuid.uuid4()}"
model_used = model or "unknown"
try:
_, it, tracker = _send_upstream(stream=True)
assert it is not None
first_piece = next(it, None)
if not first_piece:
_update_stats(account["id"], False)
raise HTTPException(status_code=502, detail="No content from upstream")
def event_gen() -> Generator[str, None, None]:
try:
yield _sse_format({
"id": stream_id,
"object": "chat.completion.chunk",
"created": created,
"model": model_used,
"choices": [{"index": 0, "delta": {"role": "assistant"}, "finish_reason": None}],
})
yield _sse_format({
"id": stream_id,
"object": "chat.completion.chunk",
"created": created,
"model": model_used,
"choices": [{"index": 0, "delta": {"content": first_piece}, "finish_reason": None}],
})
for piece in it:
if piece:
yield _sse_format({
"id": stream_id,
"object": "chat.completion.chunk",
"created": created,
"model": model_used,
"choices": [{"index": 0, "delta": {"content": piece}, "finish_reason": None}],
})
yield _sse_format({
"id": stream_id,
"object": "chat.completion.chunk",
"created": created,
"model": model_used,
"choices": [{"index": 0, "delta": {}, "finish_reason": "stop"}],
})
yield "data: [DONE]\n\n"
_update_stats(account["id"], True)
except Exception:
_update_stats(account["id"], tracker.has_content if tracker else False)
raise
return StreamingResponse(event_gen(), media_type="text/event-stream")
except Exception as e:
_update_stats(account["id"], False)
raise
# ------------------------------------------------------------------------------
# Device Authorization (URL Login, 5-minute timeout)
# ------------------------------------------------------------------------------
# Dynamic import of auth_flow.py (device-code login helpers)
def _load_auth_flow_module():
mod_path = BASE_DIR / "auth_flow.py"
spec = importlib.util.spec_from_file_location("v2_auth_flow", str(mod_path))
module = importlib.util.module_from_spec(spec) # type: ignore[arg-type]
assert spec is not None and spec.loader is not None
spec.loader.exec_module(module) # type: ignore[attr-defined]
return module
_auth_flow = _load_auth_flow_module()
register_client_min = _auth_flow.register_client_min
device_authorize = _auth_flow.device_authorize
poll_token_device_code = _auth_flow.poll_token_device_code
# In-memory auth sessions (ephemeral)
AUTH_SESSIONS: Dict[str, Dict[str, Any]] = {}
class AuthStartBody(BaseModel):
label: Optional[str] = None
enabled: Optional[bool] = True
def _create_account_from_tokens(
client_id: str,
client_secret: str,
access_token: str,
refresh_token: Optional[str],
label: Optional[str],
enabled: bool,
) -> Dict[str, Any]:
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
acc_id = str(uuid.uuid4())
with _conn() as conn:
conn.execute(
"""
INSERT INTO accounts (id, label, clientId, clientSecret, refreshToken, accessToken, other, last_refresh_time, last_refresh_status, created_at, updated_at, enabled)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
""",
(
acc_id,
label,
client_id,
client_secret,
refresh_token,
access_token,
None,
now,
"success",
now,
now,
1 if enabled else 0,
),
)
conn.commit()
row = conn.execute("SELECT * FROM accounts WHERE id=?", (acc_id,)).fetchone()
return _row_to_dict(row)
@app.post("/v2/auth/start")
def auth_start(body: AuthStartBody):
"""
Start device authorization and return verification URL for user login.
Session lifetime capped at 5 minutes on claim.
"""
try:
cid, csec = register_client_min()
dev = device_authorize(cid, csec)
except requests.RequestException as e:
raise HTTPException(status_code=502, detail=f"OIDC error: {str(e)}")
auth_id = str(uuid.uuid4())
sess = {
"clientId": cid,
"clientSecret": csec,
"deviceCode": dev.get("deviceCode"),
"interval": int(dev.get("interval", 1)),
"expiresIn": int(dev.get("expiresIn", 600)),
"verificationUriComplete": dev.get("verificationUriComplete"),
"userCode": dev.get("userCode"),
"startTime": int(time.time()),
"label": body.label,
"enabled": True if body.enabled is None else bool(body.enabled),
"status": "pending",
"error": None,
"accountId": None,
}
AUTH_SESSIONS[auth_id] = sess
return {
"authId": auth_id,
"verificationUriComplete": sess["verificationUriComplete"],
"userCode": sess["userCode"],
"expiresIn": sess["expiresIn"],
"interval": sess["interval"],
}
@app.get("/v2/auth/status/{auth_id}")
def auth_status(auth_id: str):
sess = AUTH_SESSIONS.get(auth_id)
if not sess:
raise HTTPException(status_code=404, detail="Auth session not found")
now_ts = int(time.time())
deadline = sess["startTime"] + min(int(sess.get("expiresIn", 600)), 300)
remaining = max(0, deadline - now_ts)
return {
"status": sess.get("status"),
"remaining": remaining,
"error": sess.get("error"),
"accountId": sess.get("accountId"),
}
@app.post("/v2/auth/claim/{auth_id}")
def auth_claim(auth_id: str):
"""
Block up to 5 minutes to exchange the device code for tokens after user completed login.
On success, creates an enabled account and returns it.
"""
sess = AUTH_SESSIONS.get(auth_id)
if not sess:
raise HTTPException(status_code=404, detail="Auth session not found")
if sess.get("status") in ("completed", "timeout", "error"):
return {
"status": sess["status"],
"accountId": sess.get("accountId"),
"error": sess.get("error"),
}
try:
toks = poll_token_device_code(
sess["clientId"],
sess["clientSecret"],
sess["deviceCode"],
sess["interval"],
sess["expiresIn"],
max_timeout_sec=300, # 5 minutes
)
access_token = toks.get("accessToken")
refresh_token = toks.get("refreshToken")
if not access_token:
raise HTTPException(status_code=502, detail="No accessToken returned from OIDC")
acc = _create_account_from_tokens(
sess["clientId"],
sess["clientSecret"],
access_token,
refresh_token,
sess.get("label"),
sess.get("enabled", True),
)
sess["status"] = "completed"
sess["accountId"] = acc["id"]
return {
"status": "completed",
"account": acc,
}
except TimeoutError:
sess["status"] = "timeout"
raise HTTPException(status_code=408, detail="Authorization timeout (5 minutes)")
except requests.RequestException as e:
sess["status"] = "error"
sess["error"] = str(e)
raise HTTPException(status_code=502, detail=f"OIDC error: {str(e)}")
# ------------------------------------------------------------------------------
# Accounts Management API
# ------------------------------------------------------------------------------
@app.post("/v2/accounts")
def create_account(body: AccountCreate):
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
acc_id = str(uuid.uuid4())
other_str = json.dumps(body.other, ensure_ascii=False) if body.other is not None else None
enabled_val = 1 if (body.enabled is None or body.enabled) else 0
with _conn() as conn:
conn.execute(
"""
INSERT INTO accounts (id, label, clientId, clientSecret, refreshToken, accessToken, other, last_refresh_time, last_refresh_status, created_at, updated_at, enabled)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
""",
(
acc_id,
body.label,
body.clientId,
body.clientSecret,
body.refreshToken,
body.accessToken,
other_str,
None,
"never",
now,
now,
enabled_val,
),
)
conn.commit()
row = conn.execute("SELECT * FROM accounts WHERE id=?", (acc_id,)).fetchone()
return _row_to_dict(row)
@app.get("/v2/accounts")
def list_accounts():
with _conn() as conn:
rows = conn.execute("SELECT * FROM accounts ORDER BY created_at DESC").fetchall()
return [_row_to_dict(r) for r in rows]
@app.get("/v2/accounts/{account_id}")
def get_account_detail(account_id: str):
return get_account(account_id)
@app.delete("/v2/accounts/{account_id}")
def delete_account(account_id: str):
with _conn() as conn:
cur = conn.execute("DELETE FROM accounts WHERE id=?", (account_id,))
conn.commit()
if cur.rowcount == 0:
raise HTTPException(status_code=404, detail="Account not found")
return {"deleted": account_id}
@app.patch("/v2/accounts/{account_id}")
def update_account(account_id: str, body: AccountUpdate):
now = time.strftime("%Y-%m-%dT%H:%M:%S", time.gmtime())
fields = []
values: List[Any] = []
if body.label is not None:
fields.append("label=?"); values.append(body.label)
if body.clientId is not None:
fields.append("clientId=?"); values.append(body.clientId)
if body.clientSecret is not None:
fields.append("clientSecret=?"); values.append(body.clientSecret)
if body.refreshToken is not None:
fields.append("refreshToken=?"); values.append(body.refreshToken)
if body.accessToken is not None:
fields.append("accessToken=?"); values.append(body.accessToken)
if body.other is not None:
fields.append("other=?"); values.append(json.dumps(body.other, ensure_ascii=False))
if body.enabled is not None:
fields.append("enabled=?"); values.append(1 if body.enabled else 0)
if not fields:
return get_account(account_id)
fields.append("updated_at=?"); values.append(now)
values.append(account_id)
with _conn() as conn:
cur = conn.execute(f"UPDATE accounts SET {', '.join(fields)} WHERE id=?", values)
conn.commit()
if cur.rowcount == 0:
raise HTTPException(status_code=404, detail="Account not found")
row = conn.execute("SELECT * FROM accounts WHERE id=?", (account_id,)).fetchone()
return _row_to_dict(row)
@app.post("/v2/accounts/{account_id}/refresh")
def manual_refresh(account_id: str):
return refresh_access_token_in_db(account_id)
# ------------------------------------------------------------------------------
# Simple Frontend (minimal dev test page; full UI in v2/frontend/index.html)
# ------------------------------------------------------------------------------
# Frontend inline HTML removed; serving ./frontend/index.html instead (see route below)
@app.get("/", response_class=FileResponse)
def index():
path = BASE_DIR / "frontend" / "index.html"
if not path.exists():
raise HTTPException(status_code=404, detail="frontend/index.html not found")
return FileResponse(str(path))
# ------------------------------------------------------------------------------
# Health
# ------------------------------------------------------------------------------
@app.get("/healthz")
def health():
return {"status": "ok"} |