Files
KCGL/inventory-backend/app/services/auth_service.py

192 lines
6.4 KiB
Python
Raw Normal View History

2026-02-04 13:30:07 +08:00
# app/services/auth_service.py
from app.models.system import SysUser
from app.extensions import db
2026-02-04 15:16:14 +08:00
from flask_jwt_extended import create_access_token
2026-02-04 13:30:07 +08:00
from app.utils.constants import UserRole
from datetime import timedelta
2026-02-04 13:30:07 +08:00
class AuthService:
# 硬编码的“初始”超级管理员凭证 (用于系统初始化或数据库被锁死时)
2026-02-04 13:30:07 +08:00
SUPER_ADMIN_USER = "IRIS"
SUPER_ADMIN_PASS = "licahk"
@staticmethod
def login(data):
username = data.get('username')
password = data.get('password')
user_role = None
user_id = None
user_info = {}
# 1. 优先检查硬编码的超级管理员 (IRIS)
2026-02-04 13:30:07 +08:00
if username == AuthService.SUPER_ADMIN_USER:
if password == AuthService.SUPER_ADMIN_PASS:
# 显式指定角色为 SUPER_ADMIN
2026-02-04 13:30:07 +08:00
user_role = UserRole.SUPER_ADMIN
user_id = 0 # 虚拟ID,区分于数据库ID
2026-02-04 13:30:07 +08:00
user_info = {
'username': username,
'role': user_role,
'department': 'System',
'status': 'active'
2026-02-04 13:30:07 +08:00
}
else:
2026-02-04 15:41:51 +08:00
raise ValueError("密码错误")
2026-02-04 13:30:07 +08:00
# 2. 如果不是硬编码用户,检查数据库用户
2026-02-04 13:30:07 +08:00
else:
user = SysUser.query.filter_by(username=username).first()
2026-02-04 15:41:51 +08:00
if not user:
raise ValueError("用户不存在")
if not user.check_password(password):
raise ValueError("密码错误")
2026-02-04 13:30:07 +08:00
if user.status != 'active':
2026-02-04 15:41:51 +08:00
raise ValueError("账号已被禁用,请联系管理员")
2026-02-04 13:30:07 +08:00
user_role = user.role
user_id = user.id
user_info = user.to_dict()
# 3. 生成 Token (设置为7天过期)
2026-02-04 13:30:07 +08:00
access_token = create_access_token(
identity=user_id,
2026-02-25 10:01:03 +08:00
additional_claims={'role': user_role, 'username': username},
expires_delta=timedelta(days=7)
2026-02-04 13:30:07 +08:00
)
return {
'access_token': access_token,
'user': user_info
}
@staticmethod
def create_user(data, operator_role):
"""
创建新用户
权限控制:只有超级管理员(SUPER_ADMIN) 或 主管(SUPERVISOR) 可以创建
2026-02-04 13:30:07 +08:00
"""
if operator_role not in [UserRole.SUPER_ADMIN, UserRole.SUPERVISOR]:
raise Exception("权限不足:只有超级管理员或主管可以创建新用户")
# 检查用户名是否重复
2026-02-04 13:30:07 +08:00
if SysUser.query.filter_by(username=data.get('username')).first():
raise Exception("用户名已存在")
role = data.get('role')
# 验证角色合法性
# [核心修复] 过滤掉 __开头的属性 和 ROLE_MAP 字典,只保留字符串类型的角色定义
valid_roles = [
v for k, v in UserRole.__dict__.items()
if not k.startswith('__') and isinstance(v, str)
]
2026-02-04 13:30:07 +08:00
if role not in valid_roles:
raise Exception(f"角色无效")
# 如果操作者只是 SUPERVISOR (主管),不允许他创建 SUPER_ADMIN (超管)
if operator_role == UserRole.SUPERVISOR and role == UserRole.SUPER_ADMIN:
raise Exception("权限不足:主管无法创建超级管理员")
2026-02-04 13:30:07 +08:00
2026-02-04 15:16:14 +08:00
email = data.get('email', '')
if email and SysUser.query.filter_by(email=email).first():
raise Exception("邮箱已被使用")
2026-02-04 13:30:07 +08:00
new_user = SysUser(
username=data.get('username'),
2026-02-04 15:16:14 +08:00
email=email,
2026-02-04 13:30:07 +08:00
department=data.get('department', ''),
role=role,
status='active'
)
new_user.set_password(data.get('password'))
db.session.add(new_user)
db.session.commit()
2026-02-04 15:16:14 +08:00
return new_user.to_dict()
2026-02-04 15:55:20 +08:00
@staticmethod
def update_user(user_id, data, operator_role):
"""
更新用户信息
2026-02-04 15:55:20 +08:00
"""
# 权限校验
2026-02-04 15:55:20 +08:00
if operator_role not in [UserRole.SUPER_ADMIN, UserRole.SUPERVISOR]:
raise Exception("权限不足:只有超级管理员或主管可以修改用户信息")
user = SysUser.query.get(user_id)
if not user:
raise Exception("用户不存在")
# 1. 更新角色 (Role)
2026-02-04 15:55:20 +08:00
if 'role' in data:
# [核心修复] 同样添加类型检查
valid_roles = [
v for k, v in UserRole.__dict__.items()
if not k.startswith('__') and isinstance(v, str)
]
new_role = data['role']
if new_role not in valid_roles:
2026-02-04 15:55:20 +08:00
raise Exception(f"角色无效")
# 防止主管把自己或其他用户提升为超管
if operator_role == UserRole.SUPERVISOR and new_role == UserRole.SUPER_ADMIN:
raise Exception("权限不足:主管无法分配超级管理员权限")
user.role = new_role
# 2. 更新部门
2026-02-04 15:55:20 +08:00
if 'department' in data:
user.department = data['department']
# 3. 更新邮箱
2026-02-04 15:55:20 +08:00
if 'email' in data:
email = data['email']
if email and email != user.email:
existing = SysUser.query.filter_by(email=email).first()
if existing:
raise Exception("该邮箱已被其他用户使用")
user.email = email
# 4. 更新状态 (Status) - 例如禁用用户
if 'status' in data:
user.status = data['status']
# 5. 更新密码
2026-02-04 15:55:20 +08:00
new_password = data.get('password')
if new_password and str(new_password).strip():
if len(new_password) < 6:
raise Exception("密码长度至少6位")
user.set_password(new_password)
db.session.commit()
return user.to_dict()
2026-02-04 15:16:14 +08:00
@staticmethod
def get_all_users():
"""获取所有系统用户"""
# 按照 ID 倒序排列
2026-02-04 15:16:14 +08:00
users = SysUser.query.order_by(SysUser.id.desc()).all()
return [user.to_dict() for user in users]
@staticmethod
def delete_user(user_id, operator_role):
"""删除用户"""
# 只有超级管理员可以执行物理删除
if operator_role != UserRole.SUPER_ADMIN:
raise Exception("权限不足:只有超级管理员可以删除用户,建议使用禁用功能")
2026-02-04 15:16:14 +08:00
user = SysUser.query.get(user_id)
if not user:
raise Exception("用户不存在")
db.session.delete(user)
db.session.commit()
return True