2020-08-17 02:05:02 +02:00
|
|
|
import pika
|
2020-08-17 02:38:06 +02:00
|
|
|
|
2020-08-17 02:05:02 +02:00
|
|
|
from radicale import hook
|
2020-08-17 02:23:49 +02:00
|
|
|
from radicale.hook import HookNotificationItem
|
2020-08-17 02:05:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Hook(hook.BaseHook):
|
|
|
|
|
|
|
|
def __init__(self, configuration):
|
|
|
|
super().__init__(configuration)
|
|
|
|
endpoint = configuration.get("hook", "rabbitmq_endpoint")
|
|
|
|
self.topic = configuration.get("hook", "rabbitmq_topic")
|
|
|
|
self.encoding = configuration.get("encoding", "stock")
|
|
|
|
|
|
|
|
self._make_connection_synced(endpoint)
|
|
|
|
self._make_declare_queue_synced(self.topic)
|
|
|
|
|
|
|
|
def _make_connection_synced(self, endpoint):
|
|
|
|
parameters = pika.URLParameters(endpoint)
|
|
|
|
self.connection = pika.BlockingConnection(parameters)
|
|
|
|
self.channel = self.connection.channel()
|
|
|
|
|
|
|
|
def _make_declare_queue_synced(self, topic):
|
|
|
|
self.channel.queue_declare(queue=topic)
|
|
|
|
|
2020-08-17 02:14:04 +02:00
|
|
|
def notify(self, notification_item):
|
|
|
|
if isinstance(notification_item, HookNotificationItem):
|
|
|
|
self.channel.basic_publish(
|
|
|
|
exchange='',
|
|
|
|
routing_key=self.topic,
|
2020-08-17 03:01:21 +02:00
|
|
|
body=notification_item.to_json().encode(encoding=self.encoding)
|
|
|
|
)
|