Code cleanup and refactoring

This commit is contained in:
Tuna Celik 2020-08-17 02:14:04 +02:00
parent 5253a464ab
commit 389a6b9906
5 changed files with 41 additions and 31 deletions

View file

@ -21,7 +21,7 @@ from http import client
from xml.etree import ElementTree as ET from xml.etree import ElementTree as ET
from radicale import app, httputils, storage, xmlutils from radicale import app, httputils, storage, xmlutils
from radicale.hook.rabbitmq import QueueItem, QueueItemTypes from radicale.hook import HookNotificationItem, HookNotificationItemTypes
def xml_delete(base_prefix, path, collection, href=None): def xml_delete(base_prefix, path, collection, href=None):
@ -66,10 +66,14 @@ class ApplicationDeleteMixin:
if isinstance(item, storage.BaseCollection): if isinstance(item, storage.BaseCollection):
xml_answer = xml_delete(base_prefix, path, item) xml_answer = xml_delete(base_prefix, path, item)
for item in item.get_all(): for item in item.get_all():
self._hook.notify(QueueItem(QueueItemTypes.DELETE, item.uid)) hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.DELETE, item.uid)
self._hook.notify(hook_notification_item)
else: else:
xml_answer = xml_delete( xml_answer = xml_delete(
base_prefix, path, item.collection, item.href) base_prefix, path, item.collection, item.href)
self._hook.notify(QueueItem(QueueItemTypes.DELETE, item.uid)) hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.DELETE, item.uid)
self._hook.notify(hook_notification_item)
headers = {"Content-Type": "text/xml; charset=%s" % self._encoding} headers = {"Content-Type": "text/xml; charset=%s" % self._encoding}
return client.OK, headers, self._write_xml_content(xml_answer) return client.OK, headers, self._write_xml_content(xml_answer)

View file

@ -29,7 +29,7 @@ from radicale import app, httputils
from radicale import item as radicale_item from radicale import item as radicale_item
from radicale import pathutils, rights, storage, xmlutils from radicale import pathutils, rights, storage, xmlutils
from radicale.log import logger from radicale.log import logger
from radicale.hook.rabbitmq import QueueItem, QueueItemTypes from radicale.hook import HookNotificationItem, HookNotificationItemTypes
MIMETYPE_TAGS = {value: key for key, value in xmlutils.MIMETYPES.items()} MIMETYPE_TAGS = {value: key for key, value in xmlutils.MIMETYPES.items()}
@ -195,7 +195,9 @@ class ApplicationPutMixin:
etag = self._storage.create_collection( etag = self._storage.create_collection(
path, prepared_items, props).etag path, prepared_items, props).etag
for item in prepared_items: for item in prepared_items:
self._hook.notify(QueueItem(QueueItemTypes.UPSERT, item.serialize())) hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.UPSERT, item.serialize())
self._hook.notify(hook_notification_item)
except ValueError as e: except ValueError as e:
logger.warning( logger.warning(
"Bad PUT request on %r: %s", path, e, exc_info=True) "Bad PUT request on %r: %s", path, e, exc_info=True)
@ -211,7 +213,9 @@ class ApplicationPutMixin:
href = posixpath.basename(pathutils.strip_path(path)) href = posixpath.basename(pathutils.strip_path(path))
try: try:
etag = parent_item.upload(href, prepared_item).etag etag = parent_item.upload(href, prepared_item).etag
self._hook.notify(QueueItem(QueueItemTypes.UPSERT, prepared_item.serialize())) hook_notification_item = \
HookNotificationItem(HookNotificationItemTypes.UPSERT, prepared_item.serialize())
self._hook.notify(hook_notification_item)
except ValueError as e: except ValueError as e:
logger.warning( logger.warning(
"Bad PUT request on %r: %s", path, e, exc_info=True) "Bad PUT request on %r: %s", path, e, exc_info=True)

View file

@ -1,4 +1,7 @@
import json
from radicale import utils from radicale import utils
from enum import Enum
INTERNAL_TYPES = ("none", "rabbitmq") INTERNAL_TYPES = ("none", "rabbitmq")
@ -20,6 +23,21 @@ class BaseHook:
""" """
self.configuration = configuration self.configuration = configuration
def notify(self, content): def notify(self, notification_item):
"""Upload a new or replace an existing item.""" """Upload a new or replace an existing item."""
raise NotImplementedError raise NotImplementedError
class HookNotificationItemTypes(Enum):
UPSERT = "upsert"
DELETE = "delete"
class HookNotificationItem:
def __init__(self, notification_item_type, content):
self.type = notification_item_type.value
self.content = content
def to_json(self):
return json.dumps(self, default=lambda o: o.__dict__, sort_keys=True, indent=4)

View file

@ -2,5 +2,5 @@ from radicale import hook
class Hook(hook.BaseHook): class Hook(hook.BaseHook):
def notify(self, content): def notify(self, notification_item):
"""Notify nothing. Empty hook.""" """Notify nothing. Empty hook."""

View file

@ -1,8 +1,7 @@
import pika import pika
import json
from radicale.hook import HookNotificationItem
from radicale import hook from radicale import hook
from enum import Enum
class Hook(hook.BaseHook): class Hook(hook.BaseHook):
@ -24,24 +23,9 @@ class Hook(hook.BaseHook):
def _make_declare_queue_synced(self, topic): def _make_declare_queue_synced(self, topic):
self.channel.queue_declare(queue=topic) self.channel.queue_declare(queue=topic)
def notify(self, content): def notify(self, notification_item):
if not isinstance(content, QueueItem): if isinstance(notification_item, HookNotificationItem):
return self.channel.basic_publish(
self.channel.basic_publish(exchange='', exchange='',
routing_key=self.topic, routing_key=self.topic,
body=content.to_json().encode(encoding=self.encoding)) body=notification_item.to_json().encode(encoding=self.encoding))
class QueueItemTypes(Enum):
UPSERT = "upsert"
DELETE = "delete"
class QueueItem:
def __init__(self, queue_item_type, content):
self.type = queue_item_type.value
self.content = content
def to_json(self):
return json.dumps(self, default=lambda o: o.__dict__, sort_keys=True, indent=4)