mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-06-22 07:54:06 +08:00
124 lines
3.1 KiB
Python
124 lines
3.1 KiB
Python
from typing import List, Optional
|
||
|
||
from sqlalchemy import Column, Integer, String, JSON, Index, select
|
||
from sqlalchemy.ext.asyncio import AsyncSession
|
||
from sqlalchemy.orm import Session
|
||
|
||
from app.db import db_query, db_update, Base, get_id_column, async_db_query
|
||
|
||
|
||
class Message(Base):
|
||
"""
|
||
消息表
|
||
"""
|
||
id = get_id_column()
|
||
# 消息渠道
|
||
channel = Column(String)
|
||
# 消息来源
|
||
source = Column(String)
|
||
# 消息类型
|
||
mtype = Column(String)
|
||
# 标题
|
||
title = Column(String)
|
||
# 文本内容
|
||
text = Column(String)
|
||
# 图片
|
||
image = Column(String)
|
||
# 链接
|
||
link = Column(String)
|
||
# 用户ID
|
||
userid = Column(String)
|
||
# 登记时间
|
||
reg_time = Column(String)
|
||
# 消息方向:0-接收息,1-发送消息
|
||
action = Column(Integer)
|
||
# 附件json
|
||
note = Column(JSON)
|
||
|
||
__table_args__ = (
|
||
Index('ix_message_reg_time_id', 'reg_time', 'id'),
|
||
)
|
||
|
||
@db_update
|
||
def create_and_to_dict(self, db: Session) -> dict:
|
||
"""
|
||
创建消息记录并返回写入后的字段字典。
|
||
"""
|
||
db.add(self)
|
||
db.flush()
|
||
return self.to_dict()
|
||
|
||
@classmethod
|
||
@db_query
|
||
def list_by_page(cls, db: Session, page: Optional[int] = 1, count: Optional[int] = 30) -> List["Message"]:
|
||
"""
|
||
分页获取消息记录。
|
||
"""
|
||
return (
|
||
db.query(cls)
|
||
.order_by(cls.reg_time.desc(), cls.id.desc())
|
||
.offset((page - 1) * count)
|
||
.limit(count)
|
||
.all()
|
||
)
|
||
|
||
@classmethod
|
||
@async_db_query
|
||
async def async_list_by_page(
|
||
cls, db: AsyncSession, page: Optional[int] = 1, count: Optional[int] = 30
|
||
) -> List["Message"]:
|
||
"""
|
||
异步分页获取消息记录。
|
||
"""
|
||
result = await db.execute(
|
||
select(cls)
|
||
.order_by(cls.reg_time.desc(), cls.id.desc())
|
||
.offset((page - 1) * count)
|
||
.limit(count)
|
||
)
|
||
return result.scalars().all()
|
||
|
||
@classmethod
|
||
@async_db_query
|
||
async def async_list_sent_by_page(
|
||
cls, db: AsyncSession, page: Optional[int] = 1, count: Optional[int] = 30
|
||
) -> List["Message"]:
|
||
"""
|
||
分页获取系统发送的通知消息。
|
||
"""
|
||
result = await db.execute(
|
||
select(cls)
|
||
.where(cls.action == 1)
|
||
.order_by(cls.reg_time.desc(), cls.id.desc())
|
||
.offset((page - 1) * count)
|
||
.limit(count)
|
||
)
|
||
return result.scalars().all()
|
||
|
||
@classmethod
|
||
@db_update
|
||
def delete_before(
|
||
cls,
|
||
db: Session,
|
||
before_time: str,
|
||
limit: Optional[int] = 500,
|
||
) -> int:
|
||
"""
|
||
分批删除指定时间之前的消息记录。
|
||
"""
|
||
ids = [
|
||
row[0]
|
||
for row in db.query(cls.id)
|
||
.filter(cls.reg_time < before_time)
|
||
.order_by(cls.id.asc())
|
||
.limit(limit)
|
||
.all()
|
||
]
|
||
if not ids:
|
||
return 0
|
||
return (
|
||
db.query(cls)
|
||
.filter(cls.id.in_(ids))
|
||
.delete(synchronize_session=False)
|
||
)
|