2025-04-28 19:27:16 +08:00
|
|
|
|
from zhenxun.services.log import logger
|
|
|
|
|
|
|
2025-04-29 18:11:09 +08:00
|
|
|
|
from .database import CSqlManager
|
|
|
|
|
|
|
2025-04-28 19:27:16 +08:00
|
|
|
|
|
|
|
|
|
|
class CUserPlantDB(CSqlManager):
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def initDB(cls):
|
|
|
|
|
|
userPlant = {
|
2025-06-06 10:56:22 +08:00
|
|
|
|
"uid": "TEXT NOT NULL", # 用户Uid
|
|
|
|
|
|
"plant": "TEXT NOT NULL", # 作物名称
|
|
|
|
|
|
"count": "INTEGER NOT NULL DEFAULT 0", # 数量
|
2025-08-06 17:51:26 +08:00
|
|
|
|
"isLock": "INTEGER NOT NULL DEFAULT 0", # 是否上锁 0=没有,非0=有
|
2025-06-06 10:56:22 +08:00
|
|
|
|
"PRIMARY KEY": "(uid, plant)",
|
2025-04-28 19:27:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
await cls.ensureTableSchema("userPlant", userPlant)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def addUserPlantByUid(cls, uid: str, plant: str, count: int = 1) -> bool:
|
|
|
|
|
|
"""根据用户uid添加作物信息
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
count (int): 数量
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否添加成功
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls._transaction():
|
2025-06-06 10:56:22 +08:00
|
|
|
|
# 检查是否已存在该作物
|
2025-04-28 19:27:16 +08:00
|
|
|
|
async with cls.m_pDB.execute(
|
|
|
|
|
|
"SELECT count FROM userPlant WHERE uid = ? AND plant = ?",
|
2025-06-06 10:56:22 +08:00
|
|
|
|
(uid, plant),
|
2025-04-28 19:27:16 +08:00
|
|
|
|
) as cursor:
|
|
|
|
|
|
row = await cursor.fetchone()
|
|
|
|
|
|
|
|
|
|
|
|
if row:
|
2025-06-06 10:56:22 +08:00
|
|
|
|
# 如果作物已存在,则更新数量
|
2025-04-28 19:27:16 +08:00
|
|
|
|
new_count = row[0] + count
|
|
|
|
|
|
await cls.m_pDB.execute(
|
|
|
|
|
|
"UPDATE userPlant SET count = ? WHERE uid = ? AND plant = ?",
|
2025-06-06 10:56:22 +08:00
|
|
|
|
(new_count, uid, plant),
|
2025-04-28 19:27:16 +08:00
|
|
|
|
)
|
|
|
|
|
|
else:
|
2025-06-06 10:56:22 +08:00
|
|
|
|
# 如果作物不存在,则插入新记录
|
2025-04-28 19:27:16 +08:00
|
|
|
|
await cls.m_pDB.execute(
|
|
|
|
|
|
"INSERT INTO userPlant (uid, plant, count) VALUES (?, ?, ?)",
|
2025-06-06 10:56:22 +08:00
|
|
|
|
(uid, plant, count),
|
2025-04-28 19:27:16 +08:00
|
|
|
|
)
|
|
|
|
|
|
return True
|
|
|
|
|
|
except Exception as e:
|
2025-06-06 10:56:22 +08:00
|
|
|
|
logger.warning("addUserPlantByUid 失败!", e=e)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
2025-06-06 10:56:22 +08:00
|
|
|
|
async def getUserPlantByUid(cls, uid: str) -> dict[str, int]:
|
2025-04-28 19:27:16 +08:00
|
|
|
|
"""根据用户uid获取全部作物信息
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
Dict[str, int]: 作物名称和数量
|
|
|
|
|
|
"""
|
|
|
|
|
|
cursor = await cls.m_pDB.execute(
|
2025-06-06 10:56:22 +08:00
|
|
|
|
"SELECT plant, count FROM userPlant WHERE uid=?", (uid,)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
)
|
|
|
|
|
|
rows = await cursor.fetchall()
|
|
|
|
|
|
return {row["plant"]: row["count"] for row in rows}
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
2025-06-06 10:56:22 +08:00
|
|
|
|
async def getUserPlantByName(cls, uid: str, plant: str) -> int | None:
|
2025-04-28 19:27:16 +08:00
|
|
|
|
"""根据作物名称获取用户的作物数量
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
Optional[int]: 作物数量
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls.m_pDB.execute(
|
2025-06-06 10:56:22 +08:00
|
|
|
|
"SELECT count FROM userPlant WHERE uid = ? AND plant = ?", (uid, plant)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
) as cursor:
|
|
|
|
|
|
row = await cursor.fetchone()
|
|
|
|
|
|
return row[0] if row else None
|
|
|
|
|
|
except Exception as e:
|
2025-06-06 10:56:22 +08:00
|
|
|
|
logger.warning("getUserPlantByName 查询失败!", e=e)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
return None
|
|
|
|
|
|
|
2025-08-06 17:51:26 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
|
async def checkUserPlantByName(cls, uid: str, plant: str) -> bool:
|
|
|
|
|
|
"""根据作物名称判断用户作物仓库是否存在该作物
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否存在
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls.m_pDB.execute(
|
|
|
|
|
|
"SELECT * FROM userPlant WHERE uid = ? AND plant = ?", (uid, plant)
|
|
|
|
|
|
) as cursor:
|
|
|
|
|
|
row = await cursor.fetchone()
|
|
|
|
|
|
return True if row else False
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.warning("checkUserPlantByName 查询失败!", e=e)
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
2025-04-28 19:27:16 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
|
async def updateUserPlantByName(cls, uid: str, plant: str, count: int) -> bool:
|
|
|
|
|
|
"""更新 userPlant 表中某个作物的数量
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
count (int): 新的作物数量
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否更新成功
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
if count <= 0:
|
|
|
|
|
|
return await cls.deleteUserPlantByName(uid, plant)
|
|
|
|
|
|
|
|
|
|
|
|
async with cls._transaction():
|
|
|
|
|
|
await cls.m_pDB.execute(
|
|
|
|
|
|
"UPDATE userPlant SET count = ? WHERE uid = ? AND plant = ?",
|
2025-06-06 10:56:22 +08:00
|
|
|
|
(count, uid, plant),
|
2025-04-28 19:27:16 +08:00
|
|
|
|
)
|
|
|
|
|
|
return True
|
|
|
|
|
|
except Exception as e:
|
2025-08-06 17:51:26 +08:00
|
|
|
|
logger.warning("updateUserPlantByName 失败!", e=e)
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def lockUserPlantByName(cls, uid: str, plant: str, lock: int) -> bool:
|
|
|
|
|
|
"""给作物加锁,防止一键售卖
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
lock (int): 0为解锁,非0均为加锁
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否加锁成功
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls._transaction():
|
|
|
|
|
|
await cls.m_pDB.execute(
|
|
|
|
|
|
"UPDATE userPlant SET isLock = ? WHERE uid = ? AND plant = ?",
|
|
|
|
|
|
(lock, uid, plant),
|
|
|
|
|
|
)
|
|
|
|
|
|
return True
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.warning("lockUserPlantByName 失败!", e=e)
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def checkPlantLockByName(cls, uid: str, plant: str) -> bool:
|
|
|
|
|
|
"""根据作物名称判断是否加锁
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否加锁
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls.m_pDB.execute(
|
|
|
|
|
|
"SELECT isLock FROM userPlant WHERE uid = ? AND plant = ?", (uid, plant)
|
|
|
|
|
|
) as cursor:
|
|
|
|
|
|
row = await cursor.fetchone()
|
|
|
|
|
|
return row[0] > 0 if row else False
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.warning("checkUserPlantByName 查询失败!", e=e)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def deleteUserPlantByName(cls, uid: str, plant: str) -> bool:
|
|
|
|
|
|
"""从 userPlant 表中删除某个作物记录
|
|
|
|
|
|
|
|
|
|
|
|
Args:
|
|
|
|
|
|
uid (str): 用户uid
|
|
|
|
|
|
plant (str): 作物名称
|
|
|
|
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
|
bool: 是否删除成功
|
|
|
|
|
|
"""
|
|
|
|
|
|
try:
|
|
|
|
|
|
async with cls._transaction():
|
|
|
|
|
|
await cls.m_pDB.execute(
|
2025-06-06 10:56:22 +08:00
|
|
|
|
"DELETE FROM userPlant WHERE uid = ? AND plant = ?", (uid, plant)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
)
|
|
|
|
|
|
return True
|
|
|
|
|
|
except Exception as e:
|
2025-06-06 10:56:22 +08:00
|
|
|
|
logger.warning("deleteUserPlantByName 失败!", e=e)
|
2025-04-28 19:27:16 +08:00
|
|
|
|
return False
|