ForcePilot/server/utils/auth_utils.py

80 lines
2.4 KiB
Python
Raw Normal View History

2025-05-02 23:56:59 +08:00
import hashlib
import os
from datetime import timedelta
from typing import Any
2025-05-02 23:56:59 +08:00
import jwt
from src.utils.datetime_utils import utc_now
2025-05-02 23:56:59 +08:00
# JWT配置
JWT_SECRET_KEY = os.environ.get("JWT_SECRET_KEY", "yuxi_know_secure_key")
JWT_ALGORITHM = "HS256"
JWT_EXPIRATION = 7 * 24 * 60 * 60 # 7天过期
2025-05-02 23:56:59 +08:00
2025-05-02 23:56:59 +08:00
class AuthUtils:
"""认证工具类"""
@staticmethod
def hash_password(password: str) -> str:
"""使用SHA-256哈希密码"""
# 生成盐
salt = os.urandom(32).hex()
# 哈希密码
hashed = hashlib.sha256((password + salt).encode()).hexdigest()
# 返回格式: "哈希值:盐"
return f"{hashed}:{salt}"
@staticmethod
def verify_password(stored_password: str, provided_password: str) -> bool:
"""验证密码"""
# 分离哈希值和盐
if ":" not in stored_password:
return False
hashed, salt = stored_password.split(":")
# 使用相同的盐哈希提供的密码
check_hash = hashlib.sha256((provided_password + salt).encode()).hexdigest()
# 比较哈希值
return hashed == check_hash
@staticmethod
def create_access_token(data: dict[str, Any], expires_delta: timedelta | None = None) -> str:
2025-05-02 23:56:59 +08:00
"""创建JWT访问令牌"""
to_encode = data.copy()
# 设置过期时间
if expires_delta:
expire = utc_now() + expires_delta
2025-05-02 23:56:59 +08:00
else:
expire = utc_now() + timedelta(seconds=JWT_EXPIRATION)
2025-05-02 23:56:59 +08:00
to_encode.update({"exp": expire})
# 编码JWT
encoded_jwt = jwt.encode(to_encode, JWT_SECRET_KEY, algorithm=JWT_ALGORITHM)
return encoded_jwt
@staticmethod
def decode_token(token: str) -> dict[str, Any] | None:
2025-05-02 23:56:59 +08:00
"""解码验证JWT令牌"""
try:
payload = jwt.decode(token, JWT_SECRET_KEY, algorithms=[JWT_ALGORITHM])
return payload
except jwt.PyJWTError:
return None
@staticmethod
def verify_access_token(token: str) -> dict[str, Any]:
2025-05-02 23:56:59 +08:00
"""验证访问令牌,如果无效则抛出异常"""
try:
payload = jwt.decode(token, JWT_SECRET_KEY, algorithms=[JWT_ALGORITHM])
return payload
except jwt.ExpiredSignatureError:
raise ValueError("令牌已过期")
except jwt.InvalidTokenError:
raise ValueError("无效的令牌")