django-orchestra/orchestra/apps/orchestration/middlewares.py

109 lines
4.5 KiB
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
import copy
from threading import local
2014-10-03 14:02:11 +00:00
from django.core.urlresolvers import resolve
2014-05-08 16:59:35 +00:00
from django.db.models.signals import pre_delete, post_save
from django.dispatch import receiver
from django.http.response import HttpResponseServerError
2014-07-17 16:09:24 +00:00
2014-05-08 16:59:35 +00:00
from orchestra.utils.python import OrderedSet
from .backends import ServiceBackend
from .helpers import message_user
from .models import BackendLog
from .models import BackendOperation as Operation
2014-07-17 16:09:24 +00:00
@receiver(post_save, dispatch_uid='orchestration.post_save_collector')
2014-05-08 16:59:35 +00:00
def post_save_collector(sender, *args, **kwargs):
if sender != BackendLog:
OperationsMiddleware.collect(Operation.SAVE, **kwargs)
2014-07-17 16:09:24 +00:00
@receiver(pre_delete, dispatch_uid='orchestration.pre_delete_collector')
2014-05-08 16:59:35 +00:00
def pre_delete_collector(sender, *args, **kwargs):
if sender != BackendLog:
OperationsMiddleware.collect(Operation.DELETE, **kwargs)
class OperationsMiddleware(object):
"""
Stores all the operations derived from save and delete signals and executes them
at the end of the request/response cycle
"""
# Thread local is used because request object is not available on model signals
thread_locals = local()
@classmethod
def get_pending_operations(cls):
# Check if an error poped up before OperationsMiddleware.process_request()
if hasattr(cls.thread_locals, 'request'):
request = cls.thread_locals.request
if not hasattr(request, 'pending_operations'):
request.pending_operations = OrderedSet()
return request.pending_operations
return set()
@classmethod
def collect(cls, action, **kwargs):
""" Collects all pending operations derived from model signals """
request = getattr(cls.thread_locals, 'request', None)
if request is None:
return
2014-10-10 14:39:46 +00:00
good_action = action
2014-05-08 16:59:35 +00:00
pending_operations = cls.get_pending_operations()
for backend in ServiceBackend.get_backends():
instance = None
if backend.is_main(kwargs['instance']):
instance = kwargs['instance']
else:
candidate = backend.get_related(kwargs['instance'])
if candidate:
delete = Operation.create(backend, candidate, Operation.DELETE)
if delete not in pending_operations:
instance = candidate
# related objects with backend.model trigger save()
action = Operation.SAVE
if instance is not None:
# Prevent creating a deleted instance by deleting existing saves
if action == Operation.DELETE:
save = Operation.create(backend, instance, Operation.SAVE)
try:
pending_operations.remove(save)
except KeyError:
pass
else:
update_fields = kwargs.get('update_fields', None)
if update_fields:
2014-10-07 13:50:59 +00:00
# "update_fileds=[]" is a convention for explicitly executing backend
# i.e. account.disable()
2014-10-10 14:39:46 +00:00
if update_fields != []:
2014-10-07 13:50:59 +00:00
execute = False
for field in update_fields:
if field not in backend.ignore_fields:
execute = True
break
if not execute:
continue
2014-05-08 16:59:35 +00:00
instance = copy.copy(instance)
2014-10-10 14:39:46 +00:00
good = instance
2014-10-09 17:04:12 +00:00
operation = Operation.create(backend, instance, action)
if action != Operation.DELETE:
# usually we expect to be using last object state,
# except when we are deleting it
pending_operations.discard(operation)
pending_operations.add(operation)
2014-10-10 14:39:46 +00:00
2014-05-08 16:59:35 +00:00
def process_request(self, request):
""" Store request on a thread local variable """
type(self).thread_locals.request = request
def process_response(self, request, response):
""" Processes pending backend operations """
if not isinstance(response, HttpResponseServerError):
operations = type(self).get_pending_operations()
if operations:
logs = Operation.execute(operations)
2014-10-03 14:02:11 +00:00
if logs and resolve(request.path).app_name == 'admin':
2014-05-08 16:59:35 +00:00
message_user(request, logs)
return response