Spaces:
Sleeping
Sleeping
from threading import RLock | |
from Powers import LOGGER | |
from Powers.database import MongoDB | |
INSERTION_LOCK = RLock() | |
class Approve(MongoDB): | |
"""Class for managing Approves in Chats in Bot.""" | |
# Database name to connect to to preform operations | |
db_name = "approve" | |
def __init__(self, chat_id: int) -> None: | |
super().__init__(self.db_name) | |
self.chat_id = chat_id | |
self.chat_info = self.__ensure_in_db() | |
def check_approve(self, user_id: int): | |
with INSERTION_LOCK: | |
if not self.chat_info["users"]: | |
return False | |
for i in self.chat_info["users"]: | |
if user_id in i: | |
j = True | |
break | |
else: | |
j = False | |
return j | |
def add_approve(self, user_id: int, user_name: str): | |
with INSERTION_LOCK: | |
if not self.check_approve(user_id): | |
self.chat_info["users"].append((user_id, user_name)) | |
return self.update( | |
{"_id": self.chat_id}, | |
{"users": self.chat_info["users"]}, | |
) | |
return True | |
def remove_approve(self, user_id: int): | |
with INSERTION_LOCK: | |
if self.check_approve(user_id): | |
inde = next( | |
( | |
index | |
for index, user in enumerate(self.chat_info["users"]) | |
if user[0] == user_id | |
), | |
0, | |
) | |
self.chat_info["users"].pop(inde) | |
return self.update( | |
{"_id": self.chat_id}, | |
{"users": self.chat_info["users"]}, | |
) | |
return True | |
def unapprove_all(self): | |
with INSERTION_LOCK: | |
return self.delete_one( | |
{"_id": self.chat_id}, | |
) | |
def clean_approve(self): | |
with INSERTION_LOCK: | |
return self.delete_one( | |
{"_id": self.chat_id} | |
) | |
def list_approved(self): | |
with INSERTION_LOCK: | |
return self.chat_info["users"] | |
def count_approved(self): | |
with INSERTION_LOCK: | |
return len(self.chat_info["users"]) | |
def load_from_db(self): | |
return self.find_all() | |
def __ensure_in_db(self): | |
chat_data = self.find_one({"_id": self.chat_id}) | |
if not chat_data: | |
new_data = {"_id": self.chat_id, "users": []} | |
self.insert_one(new_data) | |
return new_data | |
return chat_data | |
# Migrate if chat id changes! | |
def migrate_chat(self, new_chat_id: int): | |
old_chat_db = self.find_one({"_id": self.chat_id}) | |
new_data = old_chat_db.update({"_id": new_chat_id}) | |
self.insert_one(new_data) | |
self.delete_one({"_id": self.chat_id}) | |
def count_all_approved(): | |
with INSERTION_LOCK: | |
collection = MongoDB(Approve.db_name) | |
all_data = collection.find_all() | |
return sum(len(i["users"]) for i in all_data if len(i["users"]) >= 1) | |
def count_approved_chats(): | |
with INSERTION_LOCK: | |
collection = MongoDB(Approve.db_name) | |
all_data = collection.find_all() | |
return sum(len(i["users"]) >= 1 for i in all_data) | |
def repair_db(collection): | |
all_data = collection.find_all() | |
keys = {"users": []} | |
for data in all_data: | |
for key, val in keys.items(): | |
try: | |
_ = data[key] | |
except KeyError: | |
LOGGER.warning( | |
f"Repairing Approve Database - setting '{key}:{val}' for {data['_id']}", | |
) | |
collection.update({"_id": data["_id"]}, {key: val}) | |