randydev commited on
Commit
6da515e
·
1 Parent(s): 12a37e9

fix maintance

Browse files
akn/AllDownloaderBot/main.py CHANGED
@@ -638,7 +638,7 @@ async def twdl_cmd(client: Client, message: Message):
638
  )
639
  async def fbdl_cmd(client: Client, message: Message):
640
  user_id = message.from_user.id
641
- if await db.get_maintance(OWNER_BOT_ID):
642
  return await message.reply_text("Bot is in maintance mode. By @xpushz")
643
 
644
  if await db.get_alldlbot_is_blacklist_user(client.me.id, user_id):
@@ -713,7 +713,7 @@ async def fbdl_cmd(client: Client, message: Message):
713
  )
714
  async def igdl_cmd(client: Client, message: Message):
715
  user_id = message.from_user.id
716
- if await db.get_maintance(OWNER_BOT_ID):
717
  return await message.reply_text("Bot is in maintance mode. By @xpushz")
718
 
719
  if await db.get_alldlbot_is_blacklist_user(client.me.id, user_id):
 
638
  )
639
  async def fbdl_cmd(client: Client, message: Message):
640
  user_id = message.from_user.id
641
+ if await db.get_maintance():
642
  return await message.reply_text("Bot is in maintance mode. By @xpushz")
643
 
644
  if await db.get_alldlbot_is_blacklist_user(client.me.id, user_id):
 
713
  )
714
  async def igdl_cmd(client: Client, message: Message):
715
  user_id = message.from_user.id
716
+ if await db.get_maintance():
717
  return await message.reply_text("Bot is in maintance mode. By @xpushz")
718
 
719
  if await db.get_alldlbot_is_blacklist_user(client.me.id, user_id):
akn/manage/account.py CHANGED
@@ -713,7 +713,7 @@ MAGIC_BOT_TEXT = (
713
  @ren.on_callback_query(filters.regex("^alldl_bot$"))
714
  async def new_alldlbot_clone(bot: Client, cb: CallbackQuery):
715
  user_id = cb.from_user.id
716
- if await db_client.get_maintance(bot.me.id):
717
  return await cb.message.reply_text("Bot is in maintance mode. By @xpushz")
718
 
719
  client_name = generate_random_string(12)
 
713
  @ren.on_callback_query(filters.regex("^alldl_bot$"))
714
  async def new_alldlbot_clone(bot: Client, cb: CallbackQuery):
715
  user_id = cb.from_user.id
716
+ if await db_client.get_maintance():
717
  return await cb.message.reply_text("Bot is in maintance mode. By @xpushz")
718
 
719
  client_name = generate_random_string(12)
akn/manage/antiban.py CHANGED
@@ -74,10 +74,10 @@ async def maintance_cmd(client: Client, message: Message):
74
  if not cmd_main:
75
  return await message.reply_text("Invalid Command")
76
  if cmd_main == "on":
77
- await db_client.fixed_maintance(client.me.id, True)
78
  await message.reply_text("Maintance Mode On")
79
  elif cmd_main == "off":
80
- await db_client.fixed_maintance(client.me.id, False)
81
  await message.reply_text("Maintance Mode Off")
82
  else:
83
  await message.reply_text("Invalid Command")
 
74
  if not cmd_main:
75
  return await message.reply_text("Invalid Command")
76
  if cmd_main == "on":
77
+ await db_client.fixed_maintance(True)
78
  await message.reply_text("Maintance Mode On")
79
  elif cmd_main == "off":
80
+ await db_client.fixed_maintance(False)
81
  await message.reply_text("Maintance Mode Off")
82
  else:
83
  await message.reply_text("Invalid Command")
akn/manage/callback.py CHANGED
@@ -1301,7 +1301,7 @@ It only takes a few minutes to activate your own unique bot with 0 coding:
1301
  @ren.on_callback_query(filters.regex("^tutorial_alldlbot$"))
1302
  async def tutor_alldlbot(client, cb: CallbackQuery):
1303
  user_id = cb.from_user.id
1304
- if await db_client.get_maintance(client.me.id):
1305
  return await cb.answer("Bot is under maintenance, please try again later.", True)
1306
 
1307
  if not await db_client.get_privacy_policy(user_id):
 
1301
  @ren.on_callback_query(filters.regex("^tutorial_alldlbot$"))
1302
  async def tutor_alldlbot(client, cb: CallbackQuery):
1303
  user_id = cb.from_user.id
1304
+ if await db_client.get_maintance():
1305
  return await cb.answer("Bot is under maintenance, please try again later.", True)
1306
 
1307
  if not await db_client.get_privacy_policy(user_id):
akn/utils/database.py CHANGED
@@ -100,15 +100,15 @@ class Database:
100
  upsert=True
101
  )
102
 
103
- async def fixed_maintance(self, id, is_maintance):
104
  return await self.maintance_bot.update_one(
105
- {"bot_id": id},
106
  {"$set": {"is_maintance": is_maintance}},
107
  upsert=True
108
  )
109
 
110
- async def get_maintance(self, id):
111
- user_data = await self.maintance_bot.find_one({"bot_id": id})
112
  return user_data.get("is_maintance") if user_data else False
113
 
114
  async def get_privacy_policy(self, user_id):
 
100
  upsert=True
101
  )
102
 
103
+ async def fixed_maintance(self, is_maintance):
104
  return await self.maintance_bot.update_one(
105
+ {"bot_id": 1},
106
  {"$set": {"is_maintance": is_maintance}},
107
  upsert=True
108
  )
109
 
110
+ async def get_maintance(self):
111
+ user_data = await self.maintance_bot.find_one({"bot_id": 1})
112
  return user_data.get("is_maintance") if user_data else False
113
 
114
  async def get_privacy_policy(self, user_id):