Added `_db` and `_redis` properties to the Plugin class.

Plugins can now access the database and Redis APIs directly without
having to run their own `get_plugin` validation logic.
This commit is contained in:
Fabio Manganiello 2023-04-29 11:35:57 +02:00
parent a8d2261f32
commit 8fe61217ce
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 24 additions and 0 deletions

View File

@ -67,6 +67,30 @@ class Plugin(EventGenerator, ExtensionWithManifest): # lgtm [py/missing-call-to
get_decorators(self.__class__, climb_class_hierarchy=True).get('action', [])
)
@property
def _db(self):
"""
:return: The reference to the :class:`platypush.plugins.db.DbPlugin`.
"""
from platypush.context import get_plugin
from platypush.plugins.db import DbPlugin
db: DbPlugin = get_plugin(DbPlugin) # type: ignore
assert db, 'db plugin not initialized'
return db
@property
def _redis(self):
"""
:return: The reference to the :class:`platypush.plugins.redis.RedisPlugin`.
"""
from platypush.context import get_plugin
from platypush.plugins.redis import RedisPlugin
redis: RedisPlugin = get_plugin(RedisPlugin) # type: ignore
assert redis, 'db plugin not initialized'
return redis
def run(self, method, *args, **kwargs):
assert (
method in self.registered_actions