mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-13 23:45:05 +08:00
35 lines
949 B
Python
35 lines
949 B
Python
from sqlalchemy import Column, String, JSON, select
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.db import db_query, db_update, Base, async_db_query, get_id_column
|
|
|
|
|
|
class SystemConfig(Base):
|
|
"""
|
|
配置表
|
|
"""
|
|
id = get_id_column()
|
|
# 主键
|
|
key = Column(String, index=True)
|
|
# 值
|
|
value = Column(JSON)
|
|
|
|
@classmethod
|
|
@db_query
|
|
def get_by_key(cls, db: Session, key: str):
|
|
return db.query(cls).filter(cls.key == key).first()
|
|
|
|
@classmethod
|
|
@async_db_query
|
|
async def async_get_by_key(cls, db: AsyncSession, key: str):
|
|
result = await db.execute(select(cls).where(cls.key == key))
|
|
return result.scalar_one_or_none()
|
|
|
|
@db_update
|
|
def delete_by_key(self, db: Session, key: str):
|
|
systemconfig = self.get_by_key(db, key)
|
|
if systemconfig:
|
|
systemconfig.delete(db, systemconfig.id)
|
|
return True
|