MTPyroger/docs/source/resources/SmartPlugins.rst

359 lines
11 KiB
ReStructuredText
Raw Normal View History

2018-10-18 11:04:57 +00:00
Smart Plugins
=============
2019-01-17 14:21:50 +00:00
Pyrogram embeds a **smart**, lightweight yet powerful plugin system that is meant to further simplify the organization
of large projects and to provide a way for creating pluggable (modular) components that can be **easily shared** across
different Pyrogram applications with **minimal boilerplate code**.
2018-11-03 10:00:26 +00:00
.. tip::
Smart Plugins are completely optional and disabled by default.
Introduction
------------
2018-10-18 11:04:57 +00:00
Prior to the Smart Plugin system, pluggable handlers were already possible. For example, if you wanted to modularize
your applications, you had to put your function definitions in separate files and register them inside your main script,
like this:
2018-11-03 10:00:26 +00:00
.. note::
This is an example application that replies in private chats with two messages: one containing the same
text message you sent and the other containing the reversed text message.
Example: *"Pyrogram"* replies with *"Pyrogram"* and *"margoryP"*
2018-10-21 07:43:35 +00:00
.. code-block:: text
2018-10-21 07:43:35 +00:00
myproject/
config.ini
handlers.py
main.py
2018-10-21 07:43:35 +00:00
- ``handlers.py``
2018-10-21 07:43:35 +00:00
.. code-block:: python
2018-10-21 07:43:35 +00:00
def echo(client, message):
message.reply(message.text)
2018-10-21 07:43:35 +00:00
def echo_reversed(client, message):
message.reply(message.text[::-1])
2018-10-21 07:43:35 +00:00
- ``main.py``
2018-10-21 07:43:35 +00:00
.. code-block:: python
2018-10-21 07:43:35 +00:00
from pyrogram import Client, MessageHandler, Filters
2018-10-21 07:43:35 +00:00
from handlers import echo, echo_reversed
2018-10-21 07:43:35 +00:00
app = Client("my_account")
2018-10-21 07:43:35 +00:00
app.add_handler(
MessageHandler(
echo,
Filters.text & Filters.private))
2018-10-21 07:43:35 +00:00
app.add_handler(
MessageHandler(
echo_reversed,
Filters.text & Filters.private),
group=1)
2018-10-21 07:43:35 +00:00
app.run()
2019-01-17 14:21:50 +00:00
This is already nice and doesn't add *too much* boilerplate code, but things can get boring still; you have to
manually ``import``, manually :meth:`add_handler <pyrogram.Client.add_handler>` and manually instantiate each
:obj:`MessageHandler <pyrogram.MessageHandler>` object because **you can't use those cool decorators** for your
functions. So, what if you could? Smart Plugins solve this issue by taking care of handlers registration automatically.
2018-10-18 11:04:57 +00:00
Using Smart Plugins
-------------------
Setting up your Pyrogram project to accommodate Smart Plugins is straightforward:
2018-10-21 07:43:35 +00:00
#. Create a new folder to store all the plugins (e.g.: "plugins", "handlers", ...).
#. Put your python files full of plugins inside. Organize them as you wish.
2019-01-17 14:21:50 +00:00
#. Enable plugins in your Client or via the *config.ini* file.
2018-10-21 07:43:35 +00:00
.. note::
2018-10-18 11:04:57 +00:00
2018-10-21 07:43:35 +00:00
This is the same example application `as shown above <#introduction>`_, written using the Smart Plugin system.
2018-10-21 07:43:35 +00:00
.. code-block:: text
:emphasize-lines: 2, 3
2018-10-21 07:43:35 +00:00
myproject/
plugins/
handlers.py
config.ini
main.py
2018-10-21 07:43:35 +00:00
- ``plugins/handlers.py``
2018-10-21 07:43:35 +00:00
.. code-block:: python
:emphasize-lines: 4, 9
2018-10-21 07:43:35 +00:00
from pyrogram import Client, Filters
2018-10-21 07:43:35 +00:00
@Client.on_message(Filters.text & Filters.private)
def echo(client, message):
message.reply(message.text)
2018-10-21 07:43:35 +00:00
@Client.on_message(Filters.text & Filters.private, group=1)
def echo_reversed(client, message):
message.reply(message.text[::-1])
2019-01-17 14:21:50 +00:00
- ``config.ini``
.. code-block:: ini
[plugins]
root = plugins
2018-10-21 07:43:35 +00:00
- ``main.py``
2018-10-21 07:43:35 +00:00
.. code-block:: python
2018-10-21 07:43:35 +00:00
from pyrogram import Client
2019-01-17 14:21:50 +00:00
Client("my_account").run()
Alternatively, without using the *config.ini* file:
.. code-block:: python
from pyrogram import Client
plugins = dict(
root="plugins"
)
2019-01-17 14:21:50 +00:00
Client("my_account", plugins=plugins).run()
The first important thing to note is the new ``plugins`` folder. You can put *any python file* in *any subfolder* and
each file can contain *any decorated function* (handlers) with one limitation: within a single module (file) you must
use different names for each decorated function.
The second thing is telling Pyrogram where to look for your plugins: you can either use the *config.ini* file or
the Client parameter "plugins"; the *root* value must match the name of your plugins folder. Your Pyrogram Client
instance will **automatically** scan the folder upon starting to search for valid handlers and register them for you.
2018-10-18 11:04:57 +00:00
Then you'll notice you can now use decorators. That's right, you can apply the usual decorators to your callback
functions in a static way, i.e. **without having the Client instance around**: simply use ``@Client`` (Client class)
2019-01-17 14:21:50 +00:00
instead of the usual ``@app`` (Client instance) and things will work just the same.
Specifying the Plugins to include
---------------------------------
By default, if you don't explicitly supply a list of plugins, every valid one found inside your plugins root folder will
be included by following the alphabetical order of the directory structure (files and subfolders); the single handlers
found inside each module will be, instead, loaded in the order they are defined, from top to bottom.
.. note::
Remember: there can be at most one handler, within a group, dealing with a specific update. Plugins with overlapping
filters included a second time will not work. Learn more at `More on Updates <MoreOnUpdates.html>`_.
This default loading behaviour is usually enough, but sometimes you want to have more control on what to include (or
exclude) and in which exact order to load plugins. The way to do this is to make use of ``include`` and ``exclude``
keys, either in the *config.ini* file or in the dictionary passed as Client argument. Here's how they work:
2019-01-17 14:21:50 +00:00
- If both ``include`` and ``exclude`` are omitted, all plugins are loaded as described above.
- If ``include`` is given, only the specified plugins will be loaded, in the order they are passed.
- If ``exclude`` is given, the plugins specified here will be unloaded.
The ``include`` and ``exclude`` value is a **list of strings**. Each string containing the path of the module relative
to the plugins root folder, in Python notation (dots instead of slashes).
E.g.: ``subfolder.module`` refers to ``plugins/subfolder/module.py``, with ``root="plugins"`.
2019-01-17 14:21:50 +00:00
You can also choose the order in which the single handlers inside a module are loaded, thus overriding the default
top-to-bottom loading policy. You can do this by appending the name of the functions to the module path, each one
separated by a blank space.
E.g.: ``subfolder.module fn2 fn1 fn3`` will load *fn2*, *fn1* and *fn3* from *subfolder.module*, in this order.
Examples
^^^^^^^^
Given this plugins folder structure with three modules, each containing their own handlers (fn1, fn2, etc...), which are
also organized in subfolders:
.. code-block:: text
myproject/
plugins/
subfolder1/
plugins1.py
- fn1
- fn2
- fn3
subfolder2/
plugins2.py
...
plugins0.py
...
...
- Load every handler from every module, namely *plugins0.py*, *plugins1.py* and *plugins2.py* in alphabetical order
(files) and definition order (handlers inside files):
Using *config.ini* file:
.. code-block:: ini
[plugins]
root = plugins
Using *Client*'s parameter:
.. code-block:: python
plugins = dict(
root="plugins"
)
Client("my_account", plugins=plugins).run()
- Load only handlers defined inside *plugins2.py* and *plugins0.py*, in this order:
Using *config.ini* file:
.. code-block:: ini
[plugins]
root = plugins
include =
subfolder2.plugins2
plugins0
Using *Client*'s parameter:
.. code-block:: python
plugins = dict(
root="plugins",
include=[
"subfolder2.plugins2",
"plugins0"
]
)
Client("my_account", plugins=plugins).run()
- Load everything except the handlers inside *plugins2.py*:
Using *config.ini* file:
.. code-block:: ini
[plugins]
root = plugins
exclude = subfolder2.plugins2
Using *Client*'s parameter:
.. code-block:: python
plugins = dict(
root="plugins",
exclude=["subfolder2.plugins2"]
)
Client("my_account", plugins=plugins).run()
- Load only *fn3*, *fn1* and *fn2* (in this order) from *plugins1.py*:
Using *config.ini* file:
.. code-block:: ini
[plugins]
root = plugins
include = subfolder1.plugins1 fn3 fn1 fn2
Using *Client*'s parameter:
.. code-block:: python
plugins = dict(
root="plugins",
include=["subfolder1.plugins1 fn3 fn1 fn2"]
)
Client("my_account", plugins=plugins).run()
Load/Unload Plugins at Runtime
------------------------------
In the `previous section <#specifying-the-plugins-to-include>`_ we've explained how to specify which plugins to load and
which to ignore before your Client starts. Here we'll show, instead, how to unload and load again a previously
registered plugins at runtime.
Each function decorated with the usual ``on_message`` decorator (or any other decorator that deals with Telegram updates
) will be modified in such a way that, when you reference them later on, they will be actually pointing to a tuple of
*(handler: Handler, group: int)*. The actual callback function is therefore stored inside the handler's *callback*
attribute. Here's an example:
- ``plugins/handlers.py``
.. code-block:: python
:emphasize-lines: 5, 6
@Client.on_message(Filters.text & Filters.private)
def echo(client, message):
message.reply(message.text)
print(echo)
print(echo[0].callback)
- Printing ``echo`` will show something like ``(<MessageHandler object at 0x10e3abc50>, 0)``.
- Printing ``echo[0].callback``, that is, the *callback* attribute of the first eleent of the tuple, which is an
Handler, will reveal the actual callback ``<function echo at 0x10e3b6598>``.
Unloading
^^^^^^^^^
In order to unload a plugin, or any other handler, all you need to do is obtain a reference to it (by importing the
relevant module) and call :meth:`remove_handler <pyrogram.Client.remove_handler>` Client's method with your function
name preceded by the star ``*`` operator as argument. Example:
- ``main.py``
.. code-block:: python
from plugins.handlers import echo
...
app.remove_handler(*echo)
The star ``*`` operator is used to unpack the tuple into positional arguments so that *remove_handler* will receive
exactly what is needed. The same could have been achieved with:
.. code-block:: python
handler, group = echo
app.remove_handler(handler, group)
Loading
^^^^^^^
Similarly to the unloading process, in order to load again a previously unloaded plugin you do the same, but this time
using :meth:`add_handler <pyrogram.Client.add_handler>` instead. Example:
- ``main.py``
.. code-block:: python
from plugins.handlers import echo
...
app.add_handler(*echo)