mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-23 13:33:08 +00:00
* add the get verification code interface * add the login interface captcha * clean up the debugging code
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from fast_captcha import img_captcha
|
|
from fastapi import APIRouter, Depends, Request
|
|
from fastapi_limiter.depends import RateLimiter
|
|
from starlette.concurrency import run_in_threadpool
|
|
|
|
from backend.app.common.redis import redis_client
|
|
from backend.app.common.response.response_schema import response_base
|
|
from backend.app.core.conf import settings
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get(
|
|
'/captcha',
|
|
summary='获取登录验证码',
|
|
dependencies=[Depends(RateLimiter(times=5, seconds=10))],
|
|
)
|
|
async def get_captcha(request: Request):
|
|
"""
|
|
此接口可能存在性能损耗,尽管是异步接口,但是验证码生成是同步IO事件,使用线程池处理尽量减少性能损耗
|
|
"""
|
|
img_type: str = 'base64'
|
|
img, code = await run_in_threadpool(img_captcha, img_byte=img_type)
|
|
ip = request.state.ip
|
|
await redis_client.set(
|
|
f'{settings.CAPTCHA_LOGIN_REDIS_PREFIX}:{ip}', code, ex=settings.CAPTCHA_LOGIN_EXPIRE_SECONDS
|
|
)
|
|
return await response_base.success(data={'image_type': img_type, 'image': img})
|