重写封装类,规范路由以符合restful风格
This commit is contained in:
parent
0a749ff31a
commit
f58831a6d3
Binary file not shown.
@ -1,32 +1,32 @@
|
|||||||
import json
|
import json
|
||||||
|
|
||||||
from fastapi import APIRouter
|
from fastapi import APIRouter
|
||||||
|
|
||||||
from src.backtest.service import start_backtest_service, stock_chart_service
|
from src.backtest.service import start_backtest_service, stock_chart_service
|
||||||
from src.pydantic.backtest_request import BackRequest
|
from src.pydantic.backtest_request import BackRequest
|
||||||
|
|
||||||
router = APIRouter() # 创建一个 FastAPI 路由器实例
|
router = APIRouter() # 创建一个 FastAPI 路由器实例
|
||||||
|
|
||||||
|
|
||||||
@router.get("/start_backtest")
|
@router.get("/start_backtest")
|
||||||
async def start_backtest(request: BackRequest):
|
async def start_backtest(request: BackRequest):
|
||||||
result = await start_backtest_service(field_list=['close', 'time'],
|
result = await start_backtest_service(field_list=['close', 'time'],
|
||||||
stock_list=request.stock_list,
|
stock_list=request.stock_list,
|
||||||
period=request.period,
|
period=request.period,
|
||||||
start_time=request.start_time,
|
start_time=request.start_time,
|
||||||
end_time=request.end_time,
|
end_time=request.end_time,
|
||||||
count=request.count,
|
count=request.count,
|
||||||
dividend_type=request.dividend_type,
|
dividend_type=request.dividend_type,
|
||||||
fill_data=request.fill_data,
|
fill_data=request.fill_data,
|
||||||
ma_type=request.ma_type,
|
ma_type=request.ma_type,
|
||||||
short_window=request.short_window,
|
short_window=request.short_window,
|
||||||
long_window=request.long_window
|
long_window=request.long_window
|
||||||
)
|
)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
@router.get('/stock_chart')
|
@router.get('/stock_chart')
|
||||||
async def stock_chart(request: BackRequest):
|
async def stock_chart(request: BackRequest):
|
||||||
result = await stock_chart_service(stock_code=request.stock_code,
|
result = await stock_chart_service(stock_code=request.stock_code,
|
||||||
benchmark_code=request.benchmark_code)
|
benchmark_code=request.benchmark_code)
|
||||||
return result
|
return result
|
||||||
|
@ -3,6 +3,7 @@ from fastapi.responses import JSONResponse
|
|||||||
|
|
||||||
from src.financial_reports.schemas import *
|
from src.financial_reports.schemas import *
|
||||||
from src.financial_reports.service import *
|
from src.financial_reports.service import *
|
||||||
|
from src.responses import response_list_response
|
||||||
|
|
||||||
financial_reports_router = APIRouter()
|
financial_reports_router = APIRouter()
|
||||||
|
|
||||||
@ -15,11 +16,12 @@ async def financial_repoets_query(request: FinancialReportQuery )-> JSONResponse
|
|||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@financial_reports_router.post("/keyword_search")
|
@financial_reports_router.post("/keyword-search")
|
||||||
async def financial_repoets_query_keyword_search(query: SearchKeywordQuery) -> list:
|
async def financial_repoets_query_keyword_search(query: SearchKeywordQuery) -> list:
|
||||||
"""
|
"""
|
||||||
模糊查询接口
|
模糊查询接口
|
||||||
"""
|
"""
|
||||||
result = await user_keyword_search_service(query.searchKeyword)
|
result = await user_keyword_search_service(query.searchKeyword)
|
||||||
|
|
||||||
return result
|
# 使用封装类返回列表响应
|
||||||
|
return response_list_response(data=result, message="联想词查询成功")
|
@ -1,5 +1,9 @@
|
|||||||
from tortoise import fields, Model
|
from tortoise import fields, Model
|
||||||
|
|
||||||
|
"""
|
||||||
|
待补全每日更新表的爬虫
|
||||||
|
"""
|
||||||
|
|
||||||
class StockHuShenJingA(Model):
|
class StockHuShenJingA(Model):
|
||||||
"""
|
"""
|
||||||
沪深京 A 股实时行情数据
|
沪深京 A 股实时行情数据
|
||||||
|
114
src/responses.py
114
src/responses.py
@ -1,68 +1,46 @@
|
|||||||
import typing
|
import typing
|
||||||
from typing import Generic, Sequence, TypeVar
|
from typing import Generic, Sequence, TypeVar
|
||||||
|
from fastapi import status
|
||||||
from fastapi import status
|
from fastapi.encoders import jsonable_encoder
|
||||||
from fastapi.encoders import jsonable_encoder
|
from fastapi.responses import JSONResponse
|
||||||
from fastapi.responses import JSONResponse
|
from pydantic import BaseModel
|
||||||
from pydantic import BaseModel
|
|
||||||
|
T = TypeVar("T")
|
||||||
T = TypeVar("T")
|
|
||||||
|
class BaseResponse(BaseModel, Generic[T]):
|
||||||
|
"""通用响应类"""
|
||||||
class EntityResponse(BaseModel, Generic[T]):
|
status_code: int
|
||||||
"""实体数据"""
|
message: str
|
||||||
status_code: int = 200
|
data: typing.Optional[T] = None
|
||||||
message: str = "Success"
|
|
||||||
data: T
|
def json_response(self) -> JSONResponse:
|
||||||
|
"""返回 JSONResponse 响应"""
|
||||||
|
return JSONResponse(
|
||||||
class ListResponse(BaseModel, Generic[T]):
|
status_code=self.status_code,
|
||||||
"""列表数据"""
|
content=jsonable_encoder(self.dict())
|
||||||
status_code: int = 200
|
)
|
||||||
message: str = "Success"
|
|
||||||
data: Sequence[T]
|
|
||||||
|
def create_response(data: T = None, status_code: int = 200, message: str = "Success") -> JSONResponse:
|
||||||
|
"""通用响应函数"""
|
||||||
# 包装响应的 Pydantic 模型
|
response = BaseResponse(status_code=status_code, message=message, data=data)
|
||||||
# class EntityPageResponse(BaseModel, Generic[T]):
|
return response.json_response()
|
||||||
# status_code: int
|
|
||||||
# message: str
|
|
||||||
# data: PageData
|
# 使用示例
|
||||||
|
def response_success(message: str = 'Success') -> JSONResponse:
|
||||||
|
return create_response(status_code=status.HTTP_200_OK, message=message)
|
||||||
def response_entity_response(data, status_code=200, message="Success") -> EntityResponse:
|
|
||||||
"""普通实体类"""
|
|
||||||
return EntityResponse(data=data, status_code=status_code, message=message)
|
def response_unauthorized(message: str = "用户认证失败") -> JSONResponse:
|
||||||
|
return create_response(status_code=status.HTTP_401_UNAUTHORIZED, message=message)
|
||||||
|
|
||||||
# def response_page_response(data, status_code=200, message="Success") -> EntityPageResponse:
|
|
||||||
# """普通分页类"""
|
def response_entity_response(data: T, message: str = "Success") -> JSONResponse:
|
||||||
# return EntityPageResponse(data=data, status_code=status_code, message=message)
|
"""单个实体数据响应"""
|
||||||
|
return create_response(data=data, status_code=200, message=message)
|
||||||
|
|
||||||
def response_list_response(data, status_code=200, message="Success") -> ListResponse:
|
|
||||||
"""普通列表数据"""
|
def response_list_response(data: Sequence[T], message: str = "Success") -> JSONResponse:
|
||||||
return ListResponse(data=data, status_code=status_code, message=message)
|
"""列表数据响应"""
|
||||||
|
return create_response(data=data, status_code=200, message=message)
|
||||||
|
|
||||||
def response_success(message: str = 'Success',
|
|
||||||
headers: typing.Optional[typing.Dict[str, str]] = None) -> JSONResponse:
|
|
||||||
"""成功返回"""
|
|
||||||
return JSONResponse(
|
|
||||||
status_code=status.HTTP_200_OK,
|
|
||||||
headers=headers,
|
|
||||||
content=jsonable_encoder({
|
|
||||||
"status_code": status.HTTP_200_OK,
|
|
||||||
"message": message,
|
|
||||||
}))
|
|
||||||
|
|
||||||
|
|
||||||
def response_unauthorized() -> JSONResponse:
|
|
||||||
"""未登录"""
|
|
||||||
return JSONResponse(
|
|
||||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
||||||
headers={"WWW-Authenticate": "Bearer"},
|
|
||||||
content=jsonable_encoder({
|
|
||||||
"status_code": status.HTTP_401_UNAUTHORIZED,
|
|
||||||
"message": '用户认证失败',
|
|
||||||
}))
|
|
||||||
|
@ -3,7 +3,7 @@ from src.models.stock import Stock
|
|||||||
|
|
||||||
async def generate_pinyin_abbreviation():
|
async def generate_pinyin_abbreviation():
|
||||||
"""
|
"""
|
||||||
更新数据库中所有股票记录的拼音缩写,如果字段为空则生成并保存。
|
更新数据库中所有股票记录的拼音缩写,如果字段为空则生成并保存。,待抽象为通用组件
|
||||||
"""
|
"""
|
||||||
stocks = await Stock.filter(stock_pinyin__isnull=True) # 查找拼音字段为空的记录
|
stocks = await Stock.filter(stock_pinyin__isnull=True) # 查找拼音字段为空的记录
|
||||||
for stock in stocks:
|
for stock in stocks:
|
||||||
|
Loading…
Reference in New Issue
Block a user