Add keyword arguments. Sort arguments and models. Move literals to their own module. Prepend handler_ to signal handlers. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
32 lines
943 B
Python
32 lines
943 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import apps
|
|
|
|
from .literals import DEFAULT_DOCUMENT_TYPE_LABEL
|
|
from .signals import post_initial_document_type
|
|
from .tasks import task_clean_empty_duplicate_lists, task_scan_duplicates_for
|
|
|
|
|
|
def handler_create_default_document_type(sender, **kwargs):
|
|
DocumentType = apps.get_model(
|
|
app_label='documents', model_name='DocumentType'
|
|
)
|
|
|
|
if not DocumentType.objects.count():
|
|
document_type = DocumentType.objects.create(
|
|
label=DEFAULT_DOCUMENT_TYPE_LABEL
|
|
)
|
|
post_initial_document_type.send(
|
|
sender=DocumentType, instance=document_type
|
|
)
|
|
|
|
|
|
def handler_scan_duplicates_for(sender, instance, **kwargs):
|
|
task_scan_duplicates_for.apply_async(
|
|
kwargs={'document_id': instance.document.pk}
|
|
)
|
|
|
|
|
|
def handler_remove_empty_duplicates_lists(sender, **kwargs):
|
|
task_clean_empty_duplicate_lists.apply_async()
|