SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 6f6b77db authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Fix through beloved ContentType (don't pass objects to celery tasks!)

parent a02b3933
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,8 @@ __copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)" ...@@ -2,6 +2,8 @@ __copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3" __license__ = "AGPL v3"
from django.contrib.contenttypes.models import ContentType
from haystack import signals from haystack import signals
from haystack.exceptions import NotHandled from haystack.exceptions import NotHandled
...@@ -11,13 +13,27 @@ from submissions.models import Submission ...@@ -11,13 +13,27 @@ from submissions.models import Submission
class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor): class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor):
@app.task(bind=True, name='signalprocessors.remove_object_indexes', @app.task(bind=True, name='signalprocessors.remove_object_indexes')
serializer='yaml') def remove_objects_indexes(self, sender_type_id, object_type_id, object_id):
def remove_objects_indexes(self, sender, objects):
""" """
Given a set of `objects` model instances, remove them from the index as preparation Given a set of `objects` model instances, remove them from the index as preparation
for the new index. for the new index.
""" """
sender = ContentType.get_for_id(sender_type_id)
object_type = ContentType.get_for_id(object_type_id)
instance = object_type.get_object_for_this_type(pk=object_id)
if isinstance(instance, Submission):
# Submission have complex status handling, so a status change should lead to
# more drastic reindexing.
ids_list = [k['id'] for k in list(instance.thread.public().values('id'))]
objects = Submission.objects.filter(pk__in=ids_list)
else:
# Objects such as Reports, Comments, Commentaries, etc. may get rejected. This
# does not remove them from the index. Therefore, do a complete rebuild_index
# action on that specific instance every time the index signal is triggered.
objects = [instance]
try: try:
using_backends = self.connection_router.for_write(instance=objects[0]) using_backends = self.connection_router.for_write(instance=objects[0])
except IndexError: except IndexError:
...@@ -33,12 +49,15 @@ class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor): ...@@ -33,12 +49,15 @@ class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor):
# TODO: Maybe log it or let the exception bubble? # TODO: Maybe log it or let the exception bubble?
pass pass
@app.task(bind=True, name='signalprocessors.update_instance_indexes', @app.task(bind=True, name='signalprocessors.update_instance_indexes')
serializer='yaml') def update_instance_indexes(self, sender_type_id, object_type_id, object_id):
def update_instance_indexes(self, sender, instance):
""" """
Given an individual model instance, update its entire indexes. Given an individual model instance, update its entire indexes.
""" """
sender = ContentType.get_for_id(sender_type_id)
object_type = ContentType.get_for_id(object_type_id)
instance = object_type.get_object_for_this_type(pk=object_id)
try: try:
using_backends = self.connection_router.for_write(instance=instance) using_backends = self.connection_router.for_write(instance=instance)
except IndexError: except IndexError:
...@@ -54,23 +73,8 @@ class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor): ...@@ -54,23 +73,8 @@ class AutoSearchIndexingProcessor(signals.RealtimeSignalProcessor):
pass pass
def handle_save(self, sender, instance, **kwargs): def handle_save(self, sender, instance, **kwargs):
if isinstance(instance, Submission): sender_type_id = ContentType.objects.get_for_model(sender).id
# Submission have complex status handling, so a status change should lead to instance_type_id = ContentType.objects.get_for_model(instance).id
# more drastic reindexing. chain = (self.remove_objects_indexes.s(sender_type_id, instance_type_id, instance.id)
chain = ( | self.update_instance_indexes.s(sender_type_id, instance_type_id, instance.id))
self.remove_objects_indexes.s(sender, instance.thread.public()) chain()
|
self.update_instance_indexes.s(sender, instance)
)
chain()
else:
# Objects such as Reports, Comments, Commentaries, etc. may get rejected. This
# does not remove them from the index. Therefore, do a complete rebuild_index
# action on that specific instance every time the index signal is triggered.
chain = (
self.remove_objects_indexes.s(sender, [instance])
|
self.update_instance_indexes.s(sender, instance)
)
chain()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment