revert: 撤回登录相关鉴权改动,恢复星阙原登录逻辑

UFO 登录问题应只在前端处理(登录请求不带旧 Token),不应改共享后端登录接口。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
XingQue
2026-07-23 01:15:03 +08:00
parent d7f40409d6
commit 44f13e3310
3 changed files with 6 additions and 25 deletions

View File

@@ -61,7 +61,6 @@ import logging
logger = logging.getLogger(__name__)
class GetDynamicConfigView(APIView):
authentication_classes = ()
permission_classes = [AllowAny]
parser_classes = [JSONParser]

View File

@@ -48,18 +48,9 @@ class ClubWechatLoginView(APIView):
多俱乐部微信小程序登录(新接口,旧 /yonghu/wechatlogin 不变)。
POST /jituan/auth/wechat-login
body: { code, club_id?, app_id? }
注意:必须完全跳过 JWT/权限/限流。
DRF 在 authentication_classes=[] 时若仍抛 AuthenticationFailed
会因无 WWW-Authenticate 头被改写成 HTTP 403前端显示「权限不足」
"""
authentication_classes = ()
permission_classes = ()
throttle_classes = ()
def initial(self, request, *args, **kwargs):
# 登录接口不做任何鉴权/权限/限流,避免 403「权限不足」
return
throttle_classes = [AnonRateThrottle]
permission_classes = [AllowAny]
def post(self, request):
code = (request.data.get('code') or '').strip()
@@ -123,12 +114,8 @@ class ClubKefuLoginView(APIView):
POST /jituan/auth/kefu-login
body: { phone, password, erjimima }
"""
authentication_classes = ()
permission_classes = ()
throttle_classes = ()
def initial(self, request, *args, **kwargs):
return
throttle_classes = [AnonRateThrottle]
permission_classes = [AllowAny]
def post(self, request):
phone = (request.data.get('phone') or '').strip()

View File

@@ -103,13 +103,8 @@ class WechatMiniProgramLoginView(APIView):
"""
微信小程序登录接口
"""
authentication_classes = ()
permission_classes = ()
throttle_classes = ()
def initial(self, request, *args, **kwargs):
# 与 /jituan/auth/wechat-login 一致:登录绝不走 JWT避免 403「权限不足」
return
throttle_classes = [AnonRateThrottle]
permission_classes = [AllowAny]
def post(self, request):
try: