diff options
author | romangraef <roman.graef@gmail.com> | 2018-03-17 22:11:47 +0100 |
---|---|---|
committer | romangraef <roman.graef@gmail.com> | 2018-03-17 22:11:47 +0100 |
commit | 50afa23b9dc26f914522a55fe5cbb893d34ad27c (patch) | |
tree | 9711c076e4af283523f51fbd72ceb67bde4f5366 /lib/__init__.py | |
parent | 473d84ec2c82932fa1c09e4b96d6e8198bbb71df (diff) | |
download | telegramuserbot-master.tar.gz telegramuserbot-master.tar.bz2 telegramuserbot-master.zip |
Diffstat (limited to 'lib/__init__.py')
-rw-r--r-- | lib/__init__.py | 64 |
1 files changed, 4 insertions, 60 deletions
diff --git a/lib/__init__.py b/lib/__init__.py index edb1b42..0cec7cf 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -1,61 +1,5 @@ -from typing import List +from .commands import CommandContext, get_all_commands, get_command_name, get_command_description, description, name, \ + is_command, register_command, get_command_by_name -import pyrogram -from pyrogram.api import types as tgtypes - - -def property_decorator(key): - def decorator(value): - def wrapper(func): - setattr(func, key, value) - return func - - return wrapper - - return decorator - - -name = property_decorator('name') -description = property_decorator('description') - - -def is_command(func): - return hasattr(func, 'name') and func.name is not None - - -def get_command_name(func): - return func.name - - -def get_command_description(func): - return func.description - - -commands = {} - - -def get_all_commands(): - return commands.values() - - -class CommandContext(object): - def __init__(self, client: pyrogram.Client, channel, args: List[str], message: tgtypes.Message): - import re - self.args = args - self.client = client - self.channel = channel - self.message = message - self.rest_content = re.sub('^.*? ', '', message.message) - self.author = message.from_id - - def respond(self, text): - self.client.send_message(self.channel, text=text) - - def edit(self, text): - self.client.edit_message_text(chat_id=self.channel, message_id=self.message.id, text=text) - - -def register_command(func): - if not is_command(func): - return - commands[get_command_name(func)] = func +from .match_script import get_match_script_matcher, is_match_script, match_text, register_match_script, \ + get_match_scripts, MatchContext |