File size: 9,681 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 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 |
# <============================================== IMPORTS =========================================================>
from datetime import datetime
from functools import wraps
from telegram.constants import ChatType
from telegram.ext import ContextTypes
from Mikobot import function
from Mikobot.plugins.helper_funcs.misc import is_module_loaded
FILENAME = __name__.rsplit(".", 1)[-1]
if is_module_loaded(FILENAME):
from telegram import Update
from telegram.constants import ParseMode
from telegram.error import BadRequest, Forbidden
from telegram.ext import CommandHandler, JobQueue
from telegram.helpers import escape_markdown
from Database.sql import log_channel_sql as sql
from Mikobot import EVENT_LOGS, LOGGER, dispatcher
from Mikobot.plugins.helper_funcs.chat_status import check_admin
# <=======================================================================================================>
# <================================================ FUNCTION =======================================================>
def loggable(func):
@wraps(func)
async def log_action(
update: Update,
context: ContextTypes.DEFAULT_TYPE,
job_queue: JobQueue = None,
*args,
**kwargs,
):
if not job_queue:
result = await func(update, context, *args, **kwargs)
else:
result = await func(update, context, job_queue, *args, **kwargs)
chat = update.effective_chat
message = update.effective_message
if result and isinstance(result, str):
datetime_fmt = "%H:%M - %d-%m-%Y"
result += f"\nEvent stamp: {datetime.utcnow().strftime(datetime_fmt)}"
if chat.is_forum and chat.username:
result += f"\nLink: https://t.me/{chat.username}/{message.message_thread_id}/{message.message_id}"
if message.chat.type == chat.SUPERGROUP and message.chat.username:
result += (
f"\nLink: https://t.me/{chat.username}/{message.message_id}"
)
log_chat = sql.get_chat_log_channel(chat.id)
if log_chat:
await send_log(context, log_chat, chat.id, result)
return result
return log_action
def gloggable(func):
@wraps(func)
async def glog_action(
update: Update, context: ContextTypes.DEFAULT_TYPE, *args, **kwargs
):
result = await func(update, context, *args, **kwargs)
chat = update.effective_chat
message = update.effective_message
if result:
datetime_fmt = "%H:%M - %d-%m-%Y"
result += f"\nEvent stamp: {datetime.utcnow().strftime(datetime_fmt)}"
if chat.is_forum and chat.username:
result += f"\nLink: https://t.me/{chat.username}/{message.message_thread_id}/{message.message_id}"
elif message.chat.type == chat.SUPERGROUP and message.chat.username:
result += (
f"\nLink: https://t.me/{chat.username}/{message.message_id}"
)
log_chat = str(EVENT_LOGS)
if log_chat:
await send_log(context, log_chat, chat.id, result)
return result
return glog_action
async def send_log(
context: ContextTypes.DEFAULT_TYPE,
log_chat_id: str,
orig_chat_id: str,
result: str,
):
bot = context.bot
try:
await bot.send_message(
log_chat_id,
result,
parse_mode=ParseMode.HTML,
disable_web_page_preview=True,
)
except BadRequest as excp:
if excp.message == "Chat not found":
try:
await bot.send_message(
orig_chat_id,
"This log channel has been deleted - unsetting.",
message_thread_id=1,
)
except:
await bot.send_message(
orig_chat_id,
"This log channel has been deleted - unsetting.",
)
sql.stop_chat_logging(orig_chat_id)
else:
LOGGER.warning(excp.message)
LOGGER.warning(result)
LOGGER.exception("Could not parse")
await bot.send_message(
log_chat_id,
result
+ "\n\nFormatting has been disabled due to an unexpected error.",
)
@check_admin(is_user=True)
async def logging(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
message = update.effective_message
chat = update.effective_chat
log_channel = sql.get_chat_log_channel(chat.id)
if log_channel:
log_channel_info = await bot.get_chat(log_channel)
await message.reply_text(
f"This group has all its logs sent to: {escape_markdown(log_channel_info.title)} (`{log_channel}`)",
parse_mode=ParseMode.MARKDOWN,
)
else:
await message.reply_text("No log channel has been set for this group!")
@check_admin(is_user=True)
async def setlog(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
message = update.effective_message
chat = update.effective_chat
if chat.type == ChatType.CHANNEL:
await bot.send_message(
chat.id,
"Now, forward the /setlog to the group you want to tie this channel to!",
)
elif message.forward_from_chat:
sql.set_chat_log_channel(chat.id, message.forward_from_chat.id)
try:
await bot.send_message(
message.forward_from_chat.id,
f"This channel has been set as the log channel for {chat.title or chat.first_name}.",
)
except Forbidden as excp:
if excp.message == "Forbidden: Bot is not a member of the channel chat":
if chat.is_forum:
await bot.send_message(
chat.id,
"Successfully set log channel!",
message_thread_id=message.message_thread_id,
)
else:
await bot.send_message(chat.id, "Successfully set log channel!")
else:
LOGGER.exception("Error in setting the log channel.")
if chat.is_forum:
await bot.send_message(
chat.id,
"Successfully set log channel!",
message_thread_id=message.message_thread_id,
)
else:
await bot.send_message(chat.id, "Successfully set log channel!")
else:
await message.reply_text(
"The steps to set a log channel are:\n"
" - Add bot to the desired channel (as an admin!)\n"
" - Send /setlog in the channel\n"
" - Forward the /setlog to the group\n",
)
@check_admin(is_user=True)
async def unsetlog(update: Update, context: ContextTypes.DEFAULT_TYPE):
bot = context.bot
message = update.effective_message
chat = update.effective_chat
log_channel = sql.stop_chat_logging(chat.id)
if log_channel:
await bot.send_message(
log_channel,
f"Channel has been unlinked from {chat.title}",
)
await message.reply_text("Log channel has been un-set.")
else:
await message.reply_text("No log channel is set yet!")
def __stats__():
return f"• {sql.num_logchannels()} log channels set."
def __migrate__(old_chat_id, new_chat_id):
sql.migrate_chat(old_chat_id, new_chat_id)
async def __chat_settings__(chat_id, user_id):
log_channel = sql.get_chat_log_channel(chat_id)
if log_channel:
log_channel_info = await dispatcher.bot.get_chat(log_channel)
return f"This group has all its logs sent to: {escape_markdown(log_channel_info.title)} (`{log_channel}`)"
return "No log channel is set for this group!"
# <=================================================== HELP ====================================================>
__help__ = """
➠ *Admins Only*:
» /logchannel: Get log channel info.
» /setlog: Set the log channel.
» /unsetlog: Unset the log channel.
➠ *Setting the log channel is done by:*
➠ *Adding the bot to the desired channel (as an admin!)*
» Sending /setlog in the channel
» Forwarding the /setlog to the group
"""
__mod_name__ = "LOG-SET"
# <================================================ HANDLER =======================================================>
function(CommandHandler("logchannel", logging, block=False))
function(CommandHandler("setlog", setlog, block=False))
function(CommandHandler("unsetlog", unsetlog, block=False))
else:
# run anyway if module not loaded
def loggable(func):
return func
def gloggable(func):
return func
# <================================================ END =======================================================>
|