File size: 17,747 Bytes
056f521 |
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
# <============================================== IMPORTS =========================================================>
import re
import time
from telegram import Bot, InlineKeyboardButton, InlineKeyboardMarkup, Update
from telegram.constants import ParseMode
from telegram.error import BadRequest, Forbidden
from telegram.ext import CallbackQueryHandler, CommandHandler, ContextTypes
import Database.sql.connection_sql as sql
from Mikobot import DEV_USERS, DRAGONS, dispatcher, function
from Mikobot.plugins.helper_funcs import chat_status
from Mikobot.plugins.helper_funcs.alternate import send_message, typing_action
# <=======================================================================================================>
check_admin = chat_status.check_admin
# <================================================ FUNCTION =======================================================>
@check_admin(is_user=True)
@typing_action
async def allow_connections(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = update.effective_chat
args = context.args
if chat.type != chat.PRIVATE:
if len(args) >= 1:
var = args[0]
if var == "no":
sql.set_allow_connect_to_chat(chat.id, False)
await send_message(
update.effective_message,
"Connection has been disabled for this chat.",
)
elif var == "yes":
sql.set_allow_connect_to_chat(chat.id, True)
await send_message(
update.effective_message,
"Connection has been enabled for this chat.",
)
else:
await send_message(
update.effective_message,
"Please enter 'yes' or 'no'!",
parse_mode=ParseMode.MARKDOWN,
)
else:
get_settings = sql.allow_connect_to_chat(chat.id)
if get_settings:
await send_message(
update.effective_message,
"Connections to this group are *allowed* for members!",
parse_mode=ParseMode.MARKDOWN,
)
else:
await send_message(
update.effective_message,
"Connection to this group is *not allowed* for members!",
parse_mode=ParseMode.MARKDOWN,
)
else:
await send_message(
update.effective_message,
"This command is for groups only, not in PM!",
)
@typing_action
async def connection_chat(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = update.effective_chat
user = update.effective_user
conn = await connected(context.bot, update, chat, user.id, need_admin=True)
if conn:
chat = await dispatcher.bot.getChat(conn)
chat_obj = await dispatcher.bot.getChat(conn)
chat_name = chat_obj.title
else:
if update.effective_message.chat.type != "private":
return
chat = update.effective_chat
chat_name = update.effective_message.chat.title
if conn:
message = "You are currently connected to {}.\n".format(chat_name)
else:
message = "You are currently not connected in any group.\n"
await send_message(update.effective_message, message, parse_mode="markdown")
@typing_action
async def connect_chat(update: Update, context: ContextTypes.DEFAULT_TYPE):
chat = update.effective_chat
user = update.effective_user
args = context.args
if update.effective_chat.type == "private":
if args and len(args) >= 1:
try:
connect_chat = int(args[0])
getstatusadmin = await context.bot.get_chat_member(
connect_chat,
update.effective_message.from_user.id,
)
except ValueError:
try:
connect_chat = str(args[0])
get_chat = await context.bot.getChat(connect_chat)
connect_chat = get_chat.id
getstatusadmin = await context.bot.get_chat_member(
connect_chat,
update.effective_message.from_user.id,
)
except BadRequest:
await send_message(update.effective_message, "Invalid Chat ID!")
return
except BadRequest:
await send_message(update.effective_message, "Invalid Chat ID!")
return
isadmin = getstatusadmin.status in ("administrator", "creator")
ismember = getstatusadmin.status in ("member")
isallow = sql.allow_connect_to_chat(connect_chat)
if (isadmin) or (isallow and ismember) or (user.id in DRAGONS):
connection_status = sql.connect(
update.effective_message.from_user.id,
connect_chat,
)
if connection_status:
conn = await connected(
context.bot, update, chat, user.id, need_admin=False
)
conn_chat = await dispatcher.bot.getChat(conn)
chat_name = conn_chat.title
await send_message(
update.effective_message,
"Successfully connected to *{}*. Use /helpconnect to check available commands.".format(
chat_name,
),
parse_mode=ParseMode.MARKDOWN,
)
sql.add_history_conn(user.id, str(conn_chat.id), chat_name)
else:
await send_message(update.effective_message, "Connection failed!")
else:
await send_message(
update.effective_message,
"Connection to this chat is not allowed!",
)
else:
gethistory = sql.get_history_conn(user.id)
if gethistory:
buttons = [
InlineKeyboardButton(
text="❎ Close Button",
callback_data="connect_close",
),
InlineKeyboardButton(
text="🧹 Clear History",
callback_data="connect_clear",
),
]
else:
buttons = []
conn = await connected(context.bot, update, chat, user.id, need_admin=False)
if conn:
connectedchat = await dispatcher.bot.getChat(conn)
text = "You are currently connected to *{}* (`{}`)".format(
connectedchat.title,
conn,
)
buttons.append(
InlineKeyboardButton(
text="🔌 Disconnect",
callback_data="connect_disconnect",
),
)
else:
text = "Write the chat ID or tag to connect!"
if gethistory:
text += "\n\n*Connection History:*\n"
text += "╒═══「 *Info* 」\n"
text += "│ Sorted: `Newest`\n"
text += "│\n"
buttons = [buttons]
for x in sorted(gethistory.keys(), reverse=True):
htime = time.strftime("%d/%m/%Y", time.localtime(x))
text += "╞═「 *{}* 」\n│ `{}`\n│ `{}`\n".format(
gethistory[x]["chat_name"],
gethistory[x]["chat_id"],
htime,
)
text += "│\n"
buttons.append(
[
InlineKeyboardButton(
text=gethistory[x]["chat_name"],
callback_data="connect({})".format(
gethistory[x]["chat_id"],
),
),
],
)
text += "╘══「 Total {} Chats 」".format(
(
str(len(gethistory)) + " (max)"
if len(gethistory) == 5
else str(len(gethistory))
),
)
conn_hist = InlineKeyboardMarkup(buttons)
elif buttons:
conn_hist = InlineKeyboardMarkup([buttons])
else:
conn_hist = None
await send_message(
update.effective_message,
text,
parse_mode="markdown",
reply_markup=conn_hist,
)
else:
getstatusadmin = await context.bot.get_chat_member(
chat.id,
update.effective_message.from_user.id,
)
isadmin = getstatusadmin.status in ("administrator", "creator")
ismember = getstatusadmin.status in ("member")
isallow = sql.allow_connect_to_chat(chat.id)
if (isadmin) or (isallow and ismember) or (user.id in DRAGONS):
connection_status = sql.connect(
update.effective_message.from_user.id,
chat.id,
)
if connection_status:
chat_obj = await dispatcher.bot.getChat(chat.id)
chat_name = chat_obj.title
await send_message(
update.effective_message,
"Successfully connected to *{}*.".format(chat_name),
parse_mode=ParseMode.MARKDOWN,
)
try:
sql.add_history_conn(user.id, str(chat.id), chat_name)
await context.bot.send_message(
update.effective_message.from_user.id,
"You are connected to *{}*. \nUse `/helpconnect` to check available commands.".format(
chat_name,
),
parse_mode="markdown",
)
except BadRequest:
pass
except Forbidden:
pass
else:
await send_message(update.effective_message, "ᴄᴏɴɴᴇᴄᴛɪᴏɴ ғᴀɪʟᴇᴅ!")
else:
await send_message(
update.effective_message,
"Connection to this chat is not allowed!",
)
async def disconnect_chat(update: Update, context: ContextTypes.DEFAULT_TYPE):
if update.effective_chat.type == "private":
disconnection_status = sql.disconnect(update.effective_message.from_user.id)
if disconnection_status:
sql.disconnected_chat = await send_message(
update.effective_message,
"Disconnected from chat!",
)
else:
await send_message(update.effective_message, "You're not connected!")
else:
await send_message(
update.effective_message, "This command is only available in PM."
)
async def connected(bot: Bot, update: Update, chat, user_id, need_admin=True):
user = update.effective_user
if chat.type == chat.PRIVATE and sql.get_connected_chat(user_id):
conn_id = sql.get_connected_chat(user_id).chat_id
getstatusadmin = await bot.get_chat_member(
conn_id,
update.effective_message.from_user.id,
)
isadmin = getstatusadmin.status in ("administrator", "creator")
ismember = getstatusadmin.status in ("member")
isallow = sql.allow_connect_to_chat(conn_id)
if (
(isadmin)
or (isallow and ismember)
or (user.id in DRAGONS)
or (user.id in DEV_USERS)
):
if need_admin is True:
if (
getstatusadmin.status in ("administrator", "creator")
or user_id in DRAGONS
or user.id in DEV_USERS
):
return conn_id
else:
await send_message(
update.effective_message,
"You must be an admin in the connected group!",
)
else:
return conn_id
else:
await send_message(
update.effective_message,
"The group changed the connection rights or you are no longer an admin.\nI've disconnected you.",
)
disconnect_chat(update, bot)
else:
return False
CONN_HELP = """
Actions are available with connected groups:
• View and edit Notes.
• View and edit Filters.
• Get invite link of chat.
• Set and control AntiFlood settings.
• Set and control Blacklist settings.
• Set Locks and Unlocks in chat.
• Enable and Disable commands in chat.
• Export and Imports of chat backup.
"""
async def help_connect_chat(update: Update, context: ContextTypes.DEFAULT_TYPE):
context.args
if update.effective_message.chat.type != "private":
await send_message(
update.effective_message, "PM me with that command to get help."
)
return
else:
await send_message(update.effective_message, CONN_HELP, parse_mode="markdown")
async def connect_button(update: Update, context: ContextTypes.DEFAULT_TYPE):
query = update.callback_query
chat = update.effective_chat
user = update.effective_user
connect_match = re.match(r"connect\((.+?)\)", query.data)
disconnect_match = query.data == "connect_disconnect"
clear_match = query.data == "connect_clear"
connect_close = query.data == "connect_close"
if connect_match:
target_chat = connect_match.group(1)
getstatusadmin = await context.bot.get_chat_member(
target_chat, query.from_user.id
)
isadmin = getstatusadmin.status in ("administrator", "creator")
ismember = getstatusadmin.status in ("member")
isallow = sql.allow_connect_to_chat(target_chat)
if (isadmin) or (isallow and ismember) or (user.id in DRAGONS):
connection_status = sql.connect(query.from_user.id, target_chat)
if connection_status:
conn = await connected(
context.bot, update, chat, user.id, need_admin=False
)
conn_chat = await dispatcher.bot.getChat(conn)
chat_name = conn_chat.title
await query.message.edit_text(
"Successfully connected to *{}*. Use `/helpconnect` to check available commands.".format(
chat_name,
),
parse_mode=ParseMode.MARKDOWN,
)
sql.add_history_conn(user.id, str(conn_chat.id), chat_name)
else:
await query.message.edit_text("Connection failed!")
else:
await context.bot.answer_callback_query(
query.id,
"Connection to this chat is not allowed!",
show_alert=True,
)
elif disconnect_match:
disconnection_status = sql.disconnect(query.from_user.id)
if disconnection_status:
sql.disconnected_chat = await query.message.edit_text(
"Disconnected from chat!"
)
else:
await context.bot.answer_callback_query(
query.id,
"You're not connected!",
show_alert=True,
)
elif clear_match:
sql.clear_history_conn(query.from_user.id)
await query.message.edit_text("History connected has been cleared!")
elif connect_close:
await query.message.edit_text("Closed. To open again, type /connect")
else:
connect_chat(update, context)
# <=================================================== HELP ====================================================>
__mod_name__ = "CONNECT"
__help__ = """
➠ *Sometimes, you just want to add some notes and filters to a group chat, but you don't want everyone to see; this is where connections come in. This allows you to connect to a chat's database and add things to it without the commands appearing in chat! For obvious reasons, you need to be an admin to add things, but any member in the group can view your data.*
» /connect: Connects to chat (can be done in a group by /connect or /connect <chat id> in PM)
» /connection: List connected chats
» /disconnect: Disconnect from a chat
» /helpconnect: List available commands that can be used remotely
➠ *Admin Only:*
» /allowconnect <yes/no>: Allow a user to connect to a chat
"""
# <================================================ HANDLER =======================================================>
function(CommandHandler("connect", connect_chat, block=False))
function(CommandHandler("connection", connection_chat, block=False))
function(CommandHandler("disconnect", disconnect_chat, block=False))
function(CommandHandler("allowconnect", allow_connections, block=False))
function(CommandHandler("helpconnect", help_connect_chat, block=False))
function(CallbackQueryHandler(connect_button, pattern=r"connect", block=False))
# <================================================ END =======================================================>
|