2020-02-19 15:31:39 +00:00
|
|
|
""" PagerMaid event listener. """
|
|
|
|
|
2021-10-03 16:42:16 +00:00
|
|
|
import re
|
|
|
|
import sentry_sdk
|
|
|
|
import sys
|
|
|
|
from distutils.util import strtobool
|
|
|
|
from time import gmtime, strftime, time
|
|
|
|
from traceback import format_exc
|
2020-08-09 15:17:55 +00:00
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
from telethon import events
|
|
|
|
from telethon.errors import MessageTooLongError
|
|
|
|
from telethon.events import StopPropagation
|
2021-10-03 16:42:16 +00:00
|
|
|
from telethon.tl.types import PeerUser
|
|
|
|
|
|
|
|
from pagermaid import bot, config, help_messages, logs, user_id, analytics, user_bot
|
|
|
|
from pagermaid.utils import attach_report, lang, alias_command, admin_check
|
2020-10-01 04:16:54 +00:00
|
|
|
|
2021-07-17 17:25:54 +00:00
|
|
|
try:
|
2021-07-19 03:27:02 +00:00
|
|
|
allow_analytics = strtobool(config['allow_analytic'])
|
2021-07-17 17:25:54 +00:00
|
|
|
except KeyError:
|
|
|
|
allow_analytics = True
|
|
|
|
except ValueError:
|
|
|
|
allow_analytics = True
|
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
|
2020-08-09 15:46:25 +00:00
|
|
|
def noop(*args, **kw):
|
|
|
|
pass
|
2020-02-19 15:31:39 +00:00
|
|
|
|
2021-04-12 16:25:32 +00:00
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
def listener(**args):
|
|
|
|
""" Register an event listener. """
|
|
|
|
command = args.get('command', None)
|
|
|
|
description = args.get('description', None)
|
|
|
|
parameters = args.get('parameters', None)
|
|
|
|
pattern = args.get('pattern', None)
|
|
|
|
diagnostics = args.get('diagnostics', True)
|
|
|
|
ignore_edited = args.get('ignore_edited', False)
|
2020-08-09 15:17:55 +00:00
|
|
|
is_plugin = args.get('is_plugin', True)
|
2021-10-03 16:42:16 +00:00
|
|
|
owners_only = args.get("owners_only", False)
|
|
|
|
admins_only = args.get("admins_only", False)
|
2021-10-09 13:55:28 +00:00
|
|
|
groups_only = args.get("groups_only", False)
|
2022-01-04 11:34:14 +00:00
|
|
|
support_inline = args.get("support_inline", False)
|
2020-02-19 15:31:39 +00:00
|
|
|
if command is not None:
|
|
|
|
if command in help_messages:
|
2021-04-12 16:25:32 +00:00
|
|
|
raise ValueError(f"{lang('error_prefix')} {lang('command')} \"{command}\" {lang('has_reg')}")
|
2020-02-19 15:31:39 +00:00
|
|
|
pattern = fr"^-{command}(?: |$)([\s\S]*)"
|
2021-10-03 16:42:16 +00:00
|
|
|
if user_bot:
|
|
|
|
pattern = fr"^/{command}(@{user_bot})?(?: |$)([\s\S]*)"
|
2020-02-19 15:31:39 +00:00
|
|
|
if pattern is not None and not pattern.startswith('(?i)'):
|
|
|
|
args['pattern'] = f"(?i){pattern}"
|
|
|
|
else:
|
|
|
|
args['pattern'] = pattern
|
|
|
|
if 'ignore_edited' in args:
|
|
|
|
del args['ignore_edited']
|
|
|
|
if 'command' in args:
|
|
|
|
del args['command']
|
|
|
|
if 'diagnostics' in args:
|
|
|
|
del args['diagnostics']
|
|
|
|
if 'description' in args:
|
|
|
|
del args['description']
|
|
|
|
if 'parameters' in args:
|
|
|
|
del args['parameters']
|
2020-08-09 15:17:55 +00:00
|
|
|
if 'is_plugin' in args:
|
|
|
|
del args['is_plugin']
|
2021-10-03 16:42:16 +00:00
|
|
|
if 'owners_only' in args:
|
|
|
|
del args['owners_only']
|
|
|
|
if 'admins_only' in args:
|
|
|
|
del args['admins_only']
|
2021-10-09 13:55:28 +00:00
|
|
|
if 'groups_only' in args:
|
|
|
|
del args['groups_only']
|
2022-01-04 11:34:14 +00:00
|
|
|
if 'support_inline' in args:
|
|
|
|
del args['support_inline']
|
2020-02-19 15:31:39 +00:00
|
|
|
|
|
|
|
def decorator(function):
|
|
|
|
|
|
|
|
async def handler(context):
|
2021-10-03 16:42:16 +00:00
|
|
|
# bot admin command
|
|
|
|
if owners_only:
|
|
|
|
if context.sender_id and 'bot_admins' in config:
|
|
|
|
if config['bot_admins'].count(context.sender_id) == 0:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
# group admin command
|
|
|
|
if admins_only:
|
|
|
|
if not (await admin_check(context)):
|
|
|
|
return
|
2021-10-09 13:55:28 +00:00
|
|
|
# groups only
|
|
|
|
if groups_only:
|
|
|
|
if not context.is_group:
|
|
|
|
return
|
2022-01-04 11:34:14 +00:00
|
|
|
# filter inline bot msg
|
|
|
|
if not support_inline and context.via_bot_id:
|
|
|
|
return
|
2020-02-19 15:31:39 +00:00
|
|
|
try:
|
2021-07-19 03:27:02 +00:00
|
|
|
analytic = True
|
2020-02-19 15:31:39 +00:00
|
|
|
try:
|
2021-10-03 16:42:16 +00:00
|
|
|
if user_bot:
|
|
|
|
parameter = context.pattern_match.group(2).split(' ')
|
|
|
|
else:
|
|
|
|
parameter = context.pattern_match.group(1).split(' ')
|
2020-02-19 15:31:39 +00:00
|
|
|
if parameter == ['']:
|
|
|
|
parameter = []
|
|
|
|
context.parameter = parameter
|
2021-10-03 16:42:16 +00:00
|
|
|
if user_bot:
|
|
|
|
context.arguments = context.pattern_match.group(2)
|
|
|
|
else:
|
|
|
|
context.arguments = context.pattern_match.group(1)
|
2020-02-19 15:31:39 +00:00
|
|
|
except BaseException:
|
2021-07-19 03:27:02 +00:00
|
|
|
analytic = False
|
2020-02-19 15:31:39 +00:00
|
|
|
context.parameter = None
|
|
|
|
context.arguments = None
|
|
|
|
await function(context)
|
2021-09-24 14:30:48 +00:00
|
|
|
# analytic
|
2021-07-19 03:27:02 +00:00
|
|
|
if analytic and allow_analytics:
|
2021-07-17 17:25:54 +00:00
|
|
|
try:
|
2021-10-03 16:42:16 +00:00
|
|
|
upload_command = context.text.split()[0][1:].split("@")[0]
|
2021-07-18 05:52:17 +00:00
|
|
|
upload_command = alias_command(upload_command)
|
2021-07-17 17:25:54 +00:00
|
|
|
if context.sender_id:
|
|
|
|
if context.sender_id > 0:
|
2021-07-19 03:27:02 +00:00
|
|
|
analytics.track(context.sender_id, f'Function {upload_command}',
|
|
|
|
{'command': upload_command})
|
2021-07-17 17:25:54 +00:00
|
|
|
else:
|
2021-07-19 03:27:02 +00:00
|
|
|
analytics.track(user_id, f'Function {upload_command}',
|
|
|
|
{'command': upload_command})
|
2021-07-17 17:25:54 +00:00
|
|
|
else:
|
2021-07-19 03:27:02 +00:00
|
|
|
analytics.track(user_id, f'Function {upload_command}',
|
|
|
|
{'command': upload_command})
|
2021-07-17 17:25:54 +00:00
|
|
|
except Exception as e:
|
|
|
|
logs.info(f"Analytics Error ~ {e}")
|
2020-02-19 15:31:39 +00:00
|
|
|
except StopPropagation:
|
|
|
|
raise StopPropagation
|
|
|
|
except MessageTooLongError:
|
2021-04-12 16:25:32 +00:00
|
|
|
await context.edit(lang('too_long'))
|
2021-04-03 15:24:07 +00:00
|
|
|
except BaseException as e:
|
2020-08-11 15:49:16 +00:00
|
|
|
exc_info = sys.exc_info()[1]
|
|
|
|
exc_format = format_exc()
|
2020-02-19 15:31:39 +00:00
|
|
|
try:
|
2022-01-17 15:55:40 +00:00
|
|
|
await context.edit(lang('run_error'))
|
2020-02-19 15:31:39 +00:00
|
|
|
except BaseException:
|
|
|
|
pass
|
|
|
|
if not diagnostics:
|
|
|
|
return
|
2020-04-06 06:16:23 +00:00
|
|
|
if strtobool(config['error_report']):
|
|
|
|
report = f"# Generated: {strftime('%H:%M %d/%m/%Y', gmtime())}. \n" \
|
|
|
|
f"# ChatID: {str(context.chat_id)}. \n" \
|
|
|
|
f"# UserID: {str(context.sender_id)}. \n" \
|
|
|
|
f"# Message: \n-----BEGIN TARGET MESSAGE-----\n" \
|
|
|
|
f"{context.text}\n-----END TARGET MESSAGE-----\n" \
|
|
|
|
f"# Traceback: \n-----BEGIN TRACEBACK-----\n" \
|
2020-08-11 15:49:16 +00:00
|
|
|
f"{str(exc_format)}\n-----END TRACEBACK-----\n" \
|
|
|
|
f"# Error: \"{str(exc_info)}\". \n"
|
2020-10-01 04:16:54 +00:00
|
|
|
await attach_report(report, f"exception.{time()}.pagermaid", None,
|
2021-04-12 16:25:32 +00:00
|
|
|
"Error report generated.")
|
2020-10-01 04:16:54 +00:00
|
|
|
try:
|
2021-07-19 03:27:02 +00:00
|
|
|
sentry_sdk.set_context("Target",
|
|
|
|
{"ChatID": str(context.chat_id), "UserID": str(context.sender_id),
|
|
|
|
"Msg": context.text})
|
|
|
|
sentry_sdk.set_tag('com', re.findall("\w+", str.lower(context.text.split()[0]))[0])
|
2021-04-03 15:24:07 +00:00
|
|
|
sentry_sdk.capture_exception(e)
|
2020-10-01 04:16:54 +00:00
|
|
|
except:
|
|
|
|
logs.info(
|
2021-04-12 16:25:32 +00:00
|
|
|
lang('report_error')
|
2020-10-01 04:16:54 +00:00
|
|
|
)
|
2020-02-19 15:31:39 +00:00
|
|
|
|
|
|
|
if not ignore_edited:
|
|
|
|
bot.add_event_handler(handler, events.MessageEdited(**args))
|
|
|
|
bot.add_event_handler(handler, events.NewMessage(**args))
|
|
|
|
|
|
|
|
return handler
|
|
|
|
|
2020-08-09 15:46:25 +00:00
|
|
|
if not is_plugin and 'disabled_cmd' in config:
|
|
|
|
if config['disabled_cmd'].count(command) != 0:
|
|
|
|
return noop
|
|
|
|
|
2020-02-19 15:31:39 +00:00
|
|
|
if description is not None and command is not None:
|
|
|
|
if parameters is None:
|
|
|
|
parameters = ""
|
|
|
|
help_messages.update({
|
2021-04-12 16:25:32 +00:00
|
|
|
f"{command}": f"**{lang('use_method')}:** `-{command} {parameters}`\
|
2020-02-19 15:31:39 +00:00
|
|
|
\n{description}"
|
|
|
|
})
|
|
|
|
|
|
|
|
return decorator
|