This commit is contained in:
2026-06-13 07:33:46 +08:00
parent e2da13bc5c
commit 24017e7454
40 changed files with 3135 additions and 108 deletions
+29 -1
View File
@@ -6,6 +6,7 @@ from sqlalchemy import select, or_, func
from sqlalchemy.ext.asyncio import AsyncSession
from app.models.user import User
from app.utils.security import hash_password, verify_password
class UserService:
@@ -23,11 +24,12 @@ class UserService:
return result.scalars().first()
async def search_users(self, query: str, current_user_id: str, limit: int = 20) -> list[User]:
"""搜索用户"""
"""搜索用户(支持用户名、昵称、邮箱)"""
result = await self.db.execute(
select(User).where(
or_(
User.username.ilike(f"%{query}%"),
User.nickname.ilike(f"%{query}%"),
User.email.ilike(f"%{query}%"),
),
User.id != current_user_id,
@@ -49,6 +51,32 @@ class UserService:
user.updated_at = datetime.utcnow()
return user
async def change_password(self, user_id: str, old_password: str, new_password: str):
"""修改密码"""
user = await self.get_by_id(user_id)
if not user:
raise ValueError("用户不存在")
if not verify_password(old_password, user.password_hash):
raise ValueError("原密码错误")
user.password_hash = hash_password(new_password)
user.updated_at = datetime.utcnow()
async def change_email(self, user_id: str, new_email: str, password: str):
"""更换绑定邮箱"""
user = await self.get_by_id(user_id)
if not user:
raise ValueError("用户不存在")
if not verify_password(password, user.password_hash):
raise ValueError("密码错误")
# 检查邮箱是否已被使用
result = await self.db.execute(
select(User).where(User.email == new_email, User.id != user_id)
)
if result.scalars().first():
raise ValueError("该邮箱已被其他账号使用")
user.email = new_email
user.updated_at = datetime.utcnow()
async def update_status(self, user_id: str, status: str):
"""更新用户在线状态"""
user = await self.get_by_id(user_id)