Browse Source

perf: 优化验证码模块异常处理

master
insistence 7 months ago
parent
commit
95b0cdebfb
  1. 5
      ruoyi-fastapi-backend/module_admin/controller/captcha_controller.py

5
ruoyi-fastapi-backend/module_admin/controller/captcha_controller.py

@ -13,7 +13,6 @@ captchaController = APIRouter()
@captchaController.get("/captchaImage")
async def get_captcha_image(request: Request):
try:
captcha_enabled = True if await request.app.state.redis.get(f"{RedisInitKeyConfig.SYS_CONFIG.get('key')}:sys.account.captchaEnabled") == 'true' else False
register_enabled = True if await request.app.state.redis.get(
f"{RedisInitKeyConfig.SYS_CONFIG.get('key')}:sys.account.registerUser") == 'true' else False
@ -23,9 +22,7 @@ async def get_captcha_image(request: Request):
computed_result = captcha_result[1]
await request.app.state.redis.set(f"{RedisInitKeyConfig.CAPTCHA_CODES.get('key')}:{session_id}", computed_result, ex=timedelta(minutes=2))
logger.info(f'编号为{session_id}的会话获取图片验证码成功')
return ResponseUtil.success(
model_content=CaptchaCode(captchaEnabled=captcha_enabled, registerEnabled=register_enabled, img=image, uuid=session_id)
)
except Exception as e:
logger.exception(e)
return ResponseUtil.error(msg=str(e))

Loading…
Cancel
Save