mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-07 10:12:27 +08:00
14 lines
355 B
Python
14 lines
355 B
Python
|
|
from fastapi import HTTPException
|
||
|
|
|
||
|
|
from .adapter import ApiAdapter, ApiMode
|
||
|
|
|
||
|
|
|
||
|
|
class AuthenticatedApiAdapter(ApiAdapter):
|
||
|
|
"""通用需要登录的适配器基类。"""
|
||
|
|
|
||
|
|
mode = ApiMode.USER
|
||
|
|
|
||
|
|
def authorize(self, context): # type: ignore[override]
|
||
|
|
if not context.user:
|
||
|
|
raise HTTPException(status_code=401, detail="未登录")
|