2025-04-14 12:11:23 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: qabot
|
|
|
|
|
|
@Author:虎虎
|
|
|
|
|
|
@file: authenticate.py
|
|
|
|
|
|
@date:2023/9/4 11:16
|
|
|
|
|
|
@desc: 认证类
|
|
|
|
|
|
"""
|
|
|
|
|
|
import traceback
|
|
|
|
|
|
from importlib import import_module
|
|
|
|
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
from django.core import cache
|
|
|
|
|
|
from django.core import signing
|
2025-04-15 12:37:38 +00:00
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
2025-04-17 06:27:58 +00:00
|
|
|
|
from drf_spectacular.extensions import OpenApiAuthenticationExtension
|
2025-04-14 12:11:23 +00:00
|
|
|
|
from rest_framework.authentication import TokenAuthentication
|
|
|
|
|
|
|
|
|
|
|
|
from common.exception.app_exception import AppAuthenticationFailed, AppEmbedIdentityFailed, AppChatNumOutOfBoundsFailed, \
|
2025-04-15 12:37:38 +00:00
|
|
|
|
AppApiException
|
2025-04-14 12:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
token_cache = cache.caches['default']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AnonymousAuthentication(TokenAuthentication):
|
|
|
|
|
|
def authenticate(self, request):
|
|
|
|
|
|
return None, None
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-17 06:27:58 +00:00
|
|
|
|
class AnonymousAuthenticationScheme(OpenApiAuthenticationExtension):
|
|
|
|
|
|
target_class = AnonymousAuthentication # 绑定到你的自定义认证类
|
|
|
|
|
|
name = "AnonymousAuth" # 自定义认证名称(显示在 Swagger UI 中)
|
|
|
|
|
|
|
|
|
|
|
|
def get_security_definition(self, auto_schema):
|
|
|
|
|
|
# 定义认证方式,这里假设匿名认证不需要凭证
|
|
|
|
|
|
return {
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def get_security_requirement(self, auto_schema):
|
|
|
|
|
|
# 返回安全要求(空字典表示无需认证)
|
|
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-04-14 12:11:23 +00:00
|
|
|
|
def new_instance_by_class_path(class_path: str):
|
|
|
|
|
|
parts = class_path.rpartition('.')
|
|
|
|
|
|
package_path = parts[0]
|
|
|
|
|
|
class_name = parts[2]
|
|
|
|
|
|
module = import_module(package_path)
|
|
|
|
|
|
HandlerClass = getattr(module, class_name)
|
|
|
|
|
|
return HandlerClass()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handles = [new_instance_by_class_path(class_path) for class_path in settings.AUTH_HANDLES]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TokenDetails:
|
|
|
|
|
|
token_details = None
|
|
|
|
|
|
is_load = False
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, token: str):
|
|
|
|
|
|
self.token = token
|
|
|
|
|
|
|
|
|
|
|
|
def get_token_details(self):
|
|
|
|
|
|
if self.token_details is None and not self.is_load:
|
|
|
|
|
|
try:
|
|
|
|
|
|
self.token_details = signing.loads(self.token)
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
self.is_load = True
|
|
|
|
|
|
return self.token_details
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TokenAuth(TokenAuthentication):
|
2025-04-17 06:27:58 +00:00
|
|
|
|
keyword = "Bearer"
|
|
|
|
|
|
|
2025-04-14 12:11:23 +00:00
|
|
|
|
# 重新 authenticate 方法,自定义认证规则
|
|
|
|
|
|
def authenticate(self, request):
|
|
|
|
|
|
auth = request.META.get('HTTP_AUTHORIZATION')
|
|
|
|
|
|
# 未认证
|
|
|
|
|
|
if auth is None:
|
|
|
|
|
|
raise AppAuthenticationFailed(1003, _('Not logged in, please log in first'))
|
2025-04-17 06:27:58 +00:00
|
|
|
|
if not auth.startswith("Bearer "):
|
|
|
|
|
|
raise AppAuthenticationFailed(1002, _('Authentication information is incorrect! illegal user'))
|
2025-04-14 12:11:23 +00:00
|
|
|
|
try:
|
2025-04-17 06:27:58 +00:00
|
|
|
|
token = auth[7:]
|
|
|
|
|
|
token_details = TokenDetails(token)
|
2025-04-14 12:11:23 +00:00
|
|
|
|
for handle in handles:
|
2025-04-17 06:27:58 +00:00
|
|
|
|
if handle.support(request, token, token_details.get_token_details):
|
|
|
|
|
|
return handle.handle(request, token, token_details.get_token_details)
|
2025-04-14 12:11:23 +00:00
|
|
|
|
raise AppAuthenticationFailed(1002, _('Authentication information is incorrect! illegal user'))
|
|
|
|
|
|
except Exception as e:
|
2025-04-27 10:14:50 +00:00
|
|
|
|
traceback.print_stack()
|
2025-04-14 12:11:23 +00:00
|
|
|
|
if isinstance(e, AppEmbedIdentityFailed) or isinstance(e, AppChatNumOutOfBoundsFailed) or isinstance(e,
|
|
|
|
|
|
AppApiException):
|
|
|
|
|
|
raise e
|
|
|
|
|
|
raise AppAuthenticationFailed(1002, _('Authentication information is incorrect! illegal user'))
|