File size: 1,294 Bytes
c7dfe8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
import threading
from sqlalchemy import Column, String, UnicodeText, distinct, func
from Database.sql import BASE, SESSION
class Rules(BASE):
__tablename__ = "rules"
chat_id = Column(String(14), primary_key=True)
rules = Column(UnicodeText, default="")
def __init__(self, chat_id):
self.chat_id = chat_id
def __repr__(self):
return "<Chat {} rules: {}>".format(self.chat_id, self.rules)
Rules.__table__.create(checkfirst=True)
INSERTION_LOCK = threading.RLock()
def set_rules(chat_id, rules_text):
with INSERTION_LOCK:
rules = SESSION.query(Rules).get(str(chat_id))
if not rules:
rules = Rules(str(chat_id))
rules.rules = rules_text
SESSION.add(rules)
SESSION.commit()
def get_rules(chat_id):
rules = SESSION.query(Rules).get(str(chat_id))
ret = ""
if rules:
ret = rules.rules
SESSION.close()
return ret
def num_chats():
try:
return SESSION.query(func.count(distinct(Rules.chat_id))).scalar()
finally:
SESSION.close()
def migrate_chat(old_chat_id, new_chat_id):
with INSERTION_LOCK:
chat = SESSION.query(Rules).get(str(old_chat_id))
if chat:
chat.chat_id = str(new_chat_id)
SESSION.commit()
|