mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-22 11:26:33 +03:00
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
import os
|
|
|
|
from pitch_deck_generator.common.tasks import crop_model_image
|
|
|
|
|
|
def create_cropped_model_image(sender, instance, created, **kwargs):
|
|
model = sender
|
|
if created:
|
|
if instance.image:
|
|
|
|
crop_model_image.apply_async(
|
|
kwargs={
|
|
"pk": instance.pk,
|
|
"app_label": model._meta.app_label,
|
|
"model_name": model._meta.model_name,
|
|
},
|
|
countdown=2,
|
|
)
|
|
|
|
|
|
def update_cropped_model_image(sender, instance, **kwargs):
|
|
model = sender
|
|
if instance.id:
|
|
previous = model.objects.get(id=instance.id)
|
|
if previous.image != instance.image:
|
|
# delete previous cropped image
|
|
if instance.image_cropped:
|
|
if os.path.isfile(instance.image_cropped.path):
|
|
os.remove(instance.image_cropped.path)
|
|
# run task to create new cropped image
|
|
if kwargs["update_fields"] != frozenset({"image_cropped"}) and instance:
|
|
if instance.image:
|
|
|
|
crop_model_image.apply_async(
|
|
kwargs={
|
|
"pk": instance.pk,
|
|
"app_label": model._meta.app_label,
|
|
"model_name": model._meta.model_name,
|
|
},
|
|
countdown=2,
|
|
)
|
|
|
|
else:
|
|
instance.image_cropped = None
|
|
|
|
|
|
def delete_cropped_model_image(sender, instance, **kwargs):
|
|
if instance.image_cropped:
|
|
if os.path.isfile(instance.image_cropped.path):
|
|
os.remove(instance.image_cropped.path)
|