mirror of
https://github.com/fastapi-admin/fastapi-admin.git
synced 2025-08-14 10:47:30 +08:00
95 lines
2.9 KiB
Python
95 lines
2.9 KiB
Python
import json
|
|
|
|
import jwt
|
|
from fastapi import Query, Path, Depends, HTTPException
|
|
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
|
|
from pydantic import BaseModel
|
|
from starlette.requests import Request
|
|
from starlette.status import HTTP_401_UNAUTHORIZED, HTTP_403_FORBIDDEN, HTTP_404_NOT_FOUND
|
|
|
|
from . import enums
|
|
from .factory import app
|
|
|
|
auth_schema = HTTPBearer()
|
|
|
|
|
|
async def jwt_required(request: Request, token: HTTPAuthorizationCredentials = Depends(auth_schema)):
|
|
credentials_exception = HTTPException(HTTP_401_UNAUTHORIZED)
|
|
try:
|
|
payload = jwt.decode(token.credentials, app.admin_secret)
|
|
user_id = payload.get('user_id')
|
|
if user_id is None:
|
|
raise credentials_exception
|
|
except jwt.PyJWTError:
|
|
raise credentials_exception
|
|
request.scope['user_id'] = user_id
|
|
return user_id
|
|
|
|
|
|
class QueryItem(BaseModel):
|
|
page: int = 1
|
|
sort: dict
|
|
where: dict
|
|
with_: dict = {}
|
|
size: int = 10
|
|
sort: dict = {}
|
|
|
|
class Config:
|
|
fields = {
|
|
'with_': 'with'
|
|
}
|
|
|
|
|
|
def get_query(query=Query(...)):
|
|
query = json.loads(query)
|
|
return QueryItem.parse_obj(query)
|
|
|
|
|
|
def get_model(resource: str = Path(...)):
|
|
model = getattr(app.models, resource)
|
|
return model
|
|
|
|
|
|
async def parse_body(request: Request, resource: str = Path(...)):
|
|
body = await request.json()
|
|
resource = await app.get_resource(resource, exclude_pk=True, exclude_m2m_field=False)
|
|
resource_fields = resource.resource_fields.keys()
|
|
ret = {}
|
|
for key in resource_fields:
|
|
v = body.get(key)
|
|
if v is not None:
|
|
ret[key] = v
|
|
return ret, resource_fields
|
|
|
|
|
|
async def get_current_user(user_id=Depends(jwt_required)):
|
|
user = await app.user_model.get_or_none(pk=user_id)
|
|
if not user:
|
|
raise HTTPException(HTTP_404_NOT_FOUND)
|
|
return user
|
|
|
|
|
|
class PermissionsChecker:
|
|
def __init__(self, action: enums.PermissionAction):
|
|
self.action = action
|
|
|
|
async def __call__(self, resource: str = Path(...), user=Depends(get_current_user)):
|
|
if not app.permission or user.is_superuser:
|
|
return
|
|
if not user.is_active:
|
|
raise HTTPException(status_code=HTTP_403_FORBIDDEN, detail='User is not Active!')
|
|
has_permission = False
|
|
await user.fetch_related('roles')
|
|
for role in user.roles:
|
|
if await role.permissions.filter(model=resource, action=self.action):
|
|
has_permission = True
|
|
break
|
|
if not has_permission:
|
|
raise HTTPException(status_code=HTTP_403_FORBIDDEN, detail='No Permission!')
|
|
|
|
|
|
read_checker = PermissionsChecker(action=enums.PermissionAction.read)
|
|
create_checker = PermissionsChecker(action=enums.PermissionAction.create)
|
|
update_checker = PermissionsChecker(action=enums.PermissionAction.update)
|
|
delete_checker = PermissionsChecker(action=enums.PermissionAction.delete)
|