forked from TGExplore/Marie-2.0-English
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
300 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
import threading | ||
|
||
from sqlalchemy import Column, String, Boolean, UnicodeText, Integer, BigInteger | ||
|
||
from tg_bot.modules.helper_funcs.msg_types import Types | ||
from tg_bot.modules.sql import SESSION, BASE | ||
|
||
DEFAULT_WELCOME = "Hey {first}, how are you?" | ||
DEFAULT_GOODBYE = "Nice knowing ya!" | ||
|
||
|
||
class Welcome(BASE): | ||
__tablename__ = "welcome_pref" | ||
chat_id = Column(String(14), primary_key=True) | ||
should_welcome = Column(Boolean, default=True) | ||
should_goodbye = Column(Boolean, default=True) | ||
|
||
custom_welcome = Column(UnicodeText, default=DEFAULT_WELCOME) | ||
welcome_type = Column(Integer, default=Types.TEXT.value) | ||
|
||
custom_leave = Column(UnicodeText, default=DEFAULT_GOODBYE) | ||
leave_type = Column(Integer, default=Types.TEXT.value) | ||
|
||
clean_welcome = Column(BigInteger) | ||
del_joined = Column(BigInteger) | ||
del_commands = Column(BigInteger) | ||
|
||
def __init__(self, chat_id, should_welcome=True, should_goodbye=True): | ||
self.chat_id = chat_id | ||
self.should_welcome = should_welcome | ||
self.should_goodbye = should_goodbye | ||
|
||
def __repr__(self): | ||
return "<Chat {} should Welcome new users: {}>".format(self.chat_id, self.should_welcome) | ||
|
||
|
||
class WelcomeButtons(BASE): | ||
__tablename__ = "welcome_urls" | ||
id = Column(Integer, primary_key=True, autoincrement=True) | ||
chat_id = Column(String(14), primary_key=True) | ||
name = Column(UnicodeText, nullable=False) | ||
url = Column(UnicodeText, nullable=False) | ||
same_line = Column(Boolean, default=False) | ||
|
||
def __init__(self, chat_id, name, url, same_line=False): | ||
self.chat_id = str(chat_id) | ||
self.name = name | ||
self.url = url | ||
self.same_line = same_line | ||
|
||
|
||
class GoodbyeButtons(BASE): | ||
__tablename__ = "leave_urls" | ||
id = Column(Integer, primary_key=True, autoincrement=True) | ||
chat_id = Column(String(14), primary_key=True) | ||
name = Column(UnicodeText, nullable=False) | ||
url = Column(UnicodeText, nullable=False) | ||
same_line = Column(Boolean, default=False) | ||
|
||
def __init__(self, chat_id, name, url, same_line=False): | ||
self.chat_id = str(chat_id) | ||
self.name = name | ||
self.url = url | ||
self.same_line = same_line | ||
|
||
|
||
Welcome.__table__.create(checkfirst=True) | ||
WelcomeButtons.__table__.create(checkfirst=True) | ||
GoodbyeButtons.__table__.create(checkfirst=True) | ||
|
||
INSERTION_LOCK = threading.RLock() | ||
WELC_BTN_LOCK = threading.RLock() | ||
LEAVE_BTN_LOCK = threading.RLock() | ||
|
||
|
||
def get_welc_pref(chat_id): | ||
welc = SESSION.query(Welcome).get(str(chat_id)) | ||
SESSION.close() | ||
if welc: | ||
return welc.should_welcome, welc.custom_welcome, welc.welcome_type | ||
else: | ||
# Welcome by default. | ||
return True, DEFAULT_WELCOME, Types.TEXT | ||
|
||
|
||
def get_gdbye_pref(chat_id): | ||
welc = SESSION.query(Welcome).get(str(chat_id)) | ||
SESSION.close() | ||
if welc: | ||
return welc.should_goodbye, welc.custom_leave, welc.leave_type | ||
else: | ||
# Welcome by default. | ||
return True, DEFAULT_GOODBYE, Types.TEXT | ||
|
||
|
||
def set_clean_welcome(chat_id, clean_welcome): | ||
with INSERTION_LOCK: | ||
curr = SESSION.query(Welcome).get(str(chat_id)) | ||
if not curr: | ||
curr = Welcome(str(chat_id)) | ||
|
||
curr.clean_welcome = int(clean_welcome) | ||
|
||
SESSION.add(curr) | ||
SESSION.commit() | ||
|
||
|
||
def get_clean_pref(chat_id): | ||
welc = SESSION.query(Welcome).get(str(chat_id)) | ||
SESSION.close() | ||
|
||
if welc: | ||
return welc.clean_welcome | ||
|
||
return False | ||
|
||
|
||
def set_del_joined(chat_id, del_joined): | ||
with INSERTION_LOCK: | ||
curr = SESSION.query(Welcome).get(str(chat_id)) | ||
if not curr: | ||
curr = Welcome(str(chat_id)) | ||
|
||
curr.del_joined = int(del_joined) | ||
|
||
SESSION.add(curr) | ||
SESSION.commit() | ||
|
||
|
||
def get_del_pref(chat_id): | ||
welc = SESSION.query(Welcome).get(str(chat_id)) | ||
SESSION.close() | ||
|
||
if welc: | ||
return welc.del_joined | ||
|
||
return False | ||
|
||
|
||
def set_cmd_joined(chat_id, cmd_joined): | ||
with INSERTION_LOCK: | ||
curr = SESSION.query(Welcome).get(str(chat_id)) | ||
if not curr: | ||
curr = Welcome(str(chat_id)) | ||
|
||
curr.del_commands = int(cmd_joined) | ||
|
||
SESSION.add(curr) | ||
SESSION.commit() | ||
|
||
|
||
def get_cmd_pref(chat_id): | ||
welc = SESSION.query(Welcome).get(str(chat_id)) | ||
SESSION.close() | ||
|
||
if welc: | ||
return welc.del_commands | ||
|
||
return False | ||
|
||
|
||
def set_welc_preference(chat_id, should_welcome): | ||
with INSERTION_LOCK: | ||
curr = SESSION.query(Welcome).get(str(chat_id)) | ||
if not curr: | ||
curr = Welcome(str(chat_id), should_welcome=should_welcome) | ||
else: | ||
curr.should_welcome = should_welcome | ||
|
||
SESSION.add(curr) | ||
SESSION.commit() | ||
|
||
|
||
def set_gdbye_preference(chat_id, should_goodbye): | ||
with INSERTION_LOCK: | ||
curr = SESSION.query(Welcome).get(str(chat_id)) | ||
if not curr: | ||
curr = Welcome(str(chat_id), should_goodbye=should_goodbye) | ||
else: | ||
curr.should_goodbye = should_goodbye | ||
|
||
SESSION.add(curr) | ||
SESSION.commit() | ||
|
||
|
||
def set_custom_welcome(chat_id, custom_welcome, welcome_type, buttons=None): | ||
if buttons is None: | ||
buttons = [] | ||
|
||
with INSERTION_LOCK: | ||
welcome_settings = SESSION.query(Welcome).get(str(chat_id)) | ||
if not welcome_settings: | ||
welcome_settings = Welcome(str(chat_id), True) | ||
|
||
if custom_welcome: | ||
welcome_settings.custom_welcome = custom_welcome | ||
welcome_settings.welcome_type = welcome_type.value | ||
|
||
else: | ||
welcome_settings.custom_welcome = DEFAULT_GOODBYE | ||
welcome_settings.welcome_type = Types.TEXT.value | ||
|
||
SESSION.add(welcome_settings) | ||
|
||
with WELC_BTN_LOCK: | ||
prev_buttons = SESSION.query(WelcomeButtons).filter(WelcomeButtons.chat_id == str(chat_id)).all() | ||
for btn in prev_buttons: | ||
SESSION.delete(btn) | ||
|
||
for b_name, url, same_line in buttons: | ||
button = WelcomeButtons(chat_id, b_name, url, same_line) | ||
SESSION.add(button) | ||
|
||
SESSION.commit() | ||
|
||
|
||
def get_custom_welcome(chat_id): | ||
welcome_settings = SESSION.query(Welcome).get(str(chat_id)) | ||
ret = DEFAULT_WELCOME | ||
if welcome_settings and welcome_settings.custom_welcome: | ||
ret = welcome_settings.custom_welcome | ||
|
||
SESSION.close() | ||
return ret | ||
|
||
|
||
def set_custom_gdbye(chat_id, custom_goodbye, goodbye_type, buttons=None): | ||
if buttons is None: | ||
buttons = [] | ||
|
||
with INSERTION_LOCK: | ||
welcome_settings = SESSION.query(Welcome).get(str(chat_id)) | ||
if not welcome_settings: | ||
welcome_settings = Welcome(str(chat_id), True) | ||
|
||
if custom_goodbye: | ||
welcome_settings.custom_leave = custom_goodbye | ||
welcome_settings.leave_type = goodbye_type.value | ||
|
||
else: | ||
welcome_settings.custom_leave = DEFAULT_GOODBYE | ||
welcome_settings.leave_type = Types.TEXT.value | ||
|
||
SESSION.add(welcome_settings) | ||
|
||
with LEAVE_BTN_LOCK: | ||
prev_buttons = SESSION.query(GoodbyeButtons).filter(GoodbyeButtons.chat_id == str(chat_id)).all() | ||
for btn in prev_buttons: | ||
SESSION.delete(btn) | ||
|
||
for b_name, url, same_line in buttons: | ||
button = GoodbyeButtons(chat_id, b_name, url, same_line) | ||
SESSION.add(button) | ||
|
||
SESSION.commit() | ||
|
||
|
||
def get_custom_gdbye(chat_id): | ||
welcome_settings = SESSION.query(Welcome).get(str(chat_id)) | ||
ret = DEFAULT_GOODBYE | ||
if welcome_settings and welcome_settings.custom_leave: | ||
ret = welcome_settings.custom_leave | ||
|
||
SESSION.close() | ||
return ret | ||
|
||
|
||
def get_welc_buttons(chat_id): | ||
try: | ||
return SESSION.query(WelcomeButtons).filter(WelcomeButtons.chat_id == str(chat_id)).order_by( | ||
WelcomeButtons.id).all() | ||
finally: | ||
SESSION.close() | ||
|
||
|
||
def get_gdbye_buttons(chat_id): | ||
try: | ||
return SESSION.query(GoodbyeButtons).filter(GoodbyeButtons.chat_id == str(chat_id)).order_by( | ||
GoodbyeButtons.id).all() | ||
finally: | ||
SESSION.close() | ||
|
||
|
||
def migrate_chat(old_chat_id, new_chat_id): | ||
with INSERTION_LOCK: | ||
chat = SESSION.query(Welcome).get(str(old_chat_id)) | ||
if chat: | ||
chat.chat_id = str(new_chat_id) | ||
|
||
with WELC_BTN_LOCK: | ||
chat_buttons = SESSION.query(WelcomeButtons).filter(WelcomeButtons.chat_id == str(old_chat_id)).all() | ||
for btn in chat_buttons: | ||
btn.chat_id = str(new_chat_id) | ||
|
||
with LEAVE_BTN_LOCK: | ||
chat_buttons = SESSION.query(GoodbyeButtons).filter(GoodbyeButtons.chat_id == str(old_chat_id)).all() | ||
for btn in chat_buttons: | ||
btn.chat_id = str(new_chat_id) | ||
|
||
SESSION.commit() |