mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
* define the basic architecture * Update script and deployment file locations * Update the route registration * Fix CI download dependencies * Updated ruff to 0.3.3 * Update app subdirectory naming * Update the model import * fix pre-commit pdm lock * Update the service directory naming * Add CRUD method documents * Fix the issue of circular import * Update the README document * Update the SQL statement for create tables * Update docker scripts and documentation * Fix docker scripts * Update the backend README.md * Add the security folder and move the redis client * Update the configuration item * Fix environment configuration reads * Update the default configuration * Updated README description * Updated the user registration API * Fix test cases * Update the celery configuration * Update and fix celery configuration * Updated the celery structure * Update celery tasks and api * Add celery flower * Update the import style * Update contributors
91 lines
2.7 KiB
Python
91 lines
2.7 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from typing import Annotated
|
|
|
|
from fastapi import APIRouter, Depends, Path, Query
|
|
|
|
from backend.app.admin.schema.api import CreateApiParam, GetApiListDetails, UpdateApiParam
|
|
from backend.app.admin.service.api_service import api_service
|
|
from backend.common.pagination import DependsPagination, paging_data
|
|
from backend.common.response.response_schema import ResponseModel, response_base
|
|
from backend.common.security.jwt import DependsJwtAuth
|
|
from backend.common.security.permission import RequestPermission
|
|
from backend.common.security.rbac import DependsRBAC
|
|
from backend.database.db_mysql import CurrentSession
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get('/all', summary='获取所有接口', dependencies=[DependsJwtAuth])
|
|
async def get_all_apis() -> ResponseModel:
|
|
data = await api_service.get_all()
|
|
return await response_base.success(data=data)
|
|
|
|
|
|
@router.get('/{pk}', summary='获取接口详情', dependencies=[DependsJwtAuth])
|
|
async def get_api(pk: Annotated[int, Path(...)]) -> ResponseModel:
|
|
api = await api_service.get(pk=pk)
|
|
return await response_base.success(data=api)
|
|
|
|
|
|
@router.get(
|
|
'',
|
|
summary='(模糊条件)分页获取所有接口',
|
|
dependencies=[
|
|
DependsJwtAuth,
|
|
DependsPagination,
|
|
],
|
|
)
|
|
async def get_pagination_apis(
|
|
db: CurrentSession,
|
|
name: Annotated[str | None, Query()] = None,
|
|
method: Annotated[str | None, Query()] = None,
|
|
path: Annotated[str | None, Query()] = None,
|
|
) -> ResponseModel:
|
|
api_select = await api_service.get_select(name=name, method=method, path=path)
|
|
page_data = await paging_data(db, api_select, GetApiListDetails)
|
|
return await response_base.success(data=page_data)
|
|
|
|
|
|
@router.post(
|
|
'',
|
|
summary='创建接口',
|
|
dependencies=[
|
|
Depends(RequestPermission('sys:api:add')),
|
|
DependsRBAC,
|
|
],
|
|
)
|
|
async def create_api(obj: CreateApiParam) -> ResponseModel:
|
|
await api_service.create(obj=obj)
|
|
return await response_base.success()
|
|
|
|
|
|
@router.put(
|
|
'/{pk}',
|
|
summary='更新接口',
|
|
dependencies=[
|
|
Depends(RequestPermission('sys:api:edit')),
|
|
DependsRBAC,
|
|
],
|
|
)
|
|
async def update_api(pk: Annotated[int, Path(...)], obj: UpdateApiParam) -> ResponseModel:
|
|
count = await api_service.update(pk=pk, obj=obj)
|
|
if count > 0:
|
|
return await response_base.success()
|
|
return await response_base.fail()
|
|
|
|
|
|
@router.delete(
|
|
'',
|
|
summary='(批量)删除接口',
|
|
dependencies=[
|
|
Depends(RequestPermission('sys:api:del')),
|
|
DependsRBAC,
|
|
],
|
|
)
|
|
async def delete_api(pk: Annotated[list[int], Query(...)]) -> ResponseModel:
|
|
count = await api_service.delete(pk=pk)
|
|
if count > 0:
|
|
return await response_base.success()
|
|
return await response_base.fail()
|