mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-11-03 08:07:23 +00:00
Some checks failed
Build and push containers / metadata (push) Waiting to run
Build and push containers / build-push-containers (push) Waiting to run
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Waiting to run
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Test the built 📦 package works basically. (push) Blocked by required conditions
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Blocked by required conditions
ChangeDetection.io App Test / lint-code (push) Waiting to run
ChangeDetection.io App Test / test-application-3-10 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-11 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-12 (push) Blocked by required conditions
ChangeDetection.io App Test / test-application-3-13 (push) Blocked by required conditions
ChangeDetection.io Container Build Test / test-container-build (push) Has been cancelled
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
import pluggy
|
|
from . import default_plugin # Import the default plugin
|
|
|
|
# ✅ Ensure that the namespace in HookspecMarker matches PluginManager
|
|
PLUGIN_NAMESPACE = "changedetectionio_conditions"
|
|
|
|
hookspec = pluggy.HookspecMarker(PLUGIN_NAMESPACE)
|
|
hookimpl = pluggy.HookimplMarker(PLUGIN_NAMESPACE)
|
|
|
|
|
|
class ConditionsSpec:
|
|
"""Hook specifications for extending JSON Logic conditions."""
|
|
|
|
@hookspec
|
|
def register_operators():
|
|
"""Return a dictionary of new JSON Logic operators."""
|
|
pass
|
|
|
|
@hookspec
|
|
def register_operator_choices():
|
|
"""Return a list of new operator choices."""
|
|
pass
|
|
|
|
@hookspec
|
|
def register_field_choices():
|
|
"""Return a list of new field choices."""
|
|
pass
|
|
|
|
@hookspec
|
|
def add_data(current_watch_uuid, application_datastruct, ephemeral_data):
|
|
"""Add to the datadict"""
|
|
pass
|
|
|
|
# ✅ Set up Pluggy Plugin Manager
|
|
plugin_manager = pluggy.PluginManager(PLUGIN_NAMESPACE)
|
|
|
|
# ✅ Register hookspecs (Ensures they are detected)
|
|
plugin_manager.add_hookspecs(ConditionsSpec)
|
|
|
|
# ✅ Register built-in plugins manually
|
|
plugin_manager.register(default_plugin, "default_plugin")
|
|
|
|
# ✅ Discover installed plugins from external packages (if any)
|
|
plugin_manager.load_setuptools_entrypoints(PLUGIN_NAMESPACE)
|