bornhack-website/src/utils/models.py

114 lines
3.4 KiB
Python
Raw Normal View History

import logging
2015-10-03 01:07:05 +00:00
import uuid
from django.contrib import messages
from django.contrib.postgres.fields import ArrayField
2016-12-28 23:15:13 +00:00
from django.core.exceptions import ValidationError
2015-10-03 01:07:05 +00:00
from django.db import models
2019-06-16 12:32:24 +00:00
2017-03-23 17:32:13 +00:00
logger = logging.getLogger("bornhack.%s" % __name__)
2015-10-03 01:07:05 +00:00
class CleanedModel(models.Model):
class Meta:
abstract = True
def save(self, **kwargs):
try:
# call this models full_clean() method before saving,
# which in turn calls .clean_fields(), .clean() and .validate_unique()
# self.full_clean()
2017-02-01 00:09:21 +00:00
# for some reason self.full_clean() appears to call self.clean() before self.clean_fields()
# which is not supposed to happen. Call them manually one by one instead.
self.clean_fields()
self.clean()
self.validate_unique(exclude=None)
except ValidationError as e:
message = "Got ValidationError while saving: %s" % e
2019-06-16 12:32:24 +00:00
if hasattr(self, "request"):
messages.error(self.request, message)
2017-03-23 17:32:13 +00:00
logger.error(message)
2017-01-25 22:19:53 +00:00
# dont save, re-raise the exception
raise
2016-12-28 23:15:13 +00:00
super(CleanedModel, self).save(**kwargs)
class UUIDModel(CleanedModel):
2015-10-03 01:07:05 +00:00
class Meta:
abstract = True
2019-06-16 12:32:24 +00:00
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
class CreatedUpdatedModel(CleanedModel):
class Meta:
abstract = True
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
class CampReadOnlyModeError(ValidationError):
pass
2017-03-07 23:24:14 +00:00
class CampRelatedModel(CreatedUpdatedModel):
2019-06-16 12:32:24 +00:00
camp_filter = "camp"
class Meta:
abstract = True
def save(self, **kwargs):
if self.camp.read_only:
2019-06-16 12:32:24 +00:00
if hasattr(self, "request"):
messages.error(self.request, "Camp is in read only mode.")
raise CampReadOnlyModeError("This camp is in read only mode.")
2017-03-18 15:03:10 +00:00
super().save(**kwargs)
def delete(self, **kwargs):
if self.camp.read_only:
2019-06-16 12:32:24 +00:00
if hasattr(self, "request"):
messages.error(self.request, "Camp is in read only mode.")
raise CampReadOnlyModeError("This camp is in read only mode.")
2017-03-18 15:03:10 +00:00
super().delete(**kwargs)
@classmethod
def get_camp_filter(cls):
return cls.camp_filter
class OutgoingEmail(CreatedUpdatedModel):
subject = models.CharField(max_length=500)
text_template = models.TextField()
html_template = models.TextField(blank=True)
sender = models.CharField(max_length=500)
2017-05-21 18:13:49 +00:00
to_recipients = ArrayField(
2019-06-16 12:32:24 +00:00
models.CharField(max_length=500, blank=True), null=True, blank=True
2017-05-21 18:13:49 +00:00
)
cc_recipients = ArrayField(
2019-06-16 12:32:24 +00:00
models.CharField(max_length=500, blank=True), null=True, blank=True
2017-05-21 18:13:49 +00:00
)
bcc_recipients = ArrayField(
2019-06-16 12:32:24 +00:00
models.CharField(max_length=500, blank=True), null=True, blank=True
2017-05-21 18:13:49 +00:00
)
attachment = models.FileField(blank=True)
processed = models.BooleanField(default=False)
2017-05-21 18:57:16 +00:00
def __str__(self):
2019-06-16 12:32:24 +00:00
return "OutgoingEmail Object id: {} ".format(self.id)
2017-05-21 18:57:16 +00:00
2017-05-21 18:13:49 +00:00
def clean(self):
2019-06-16 12:32:24 +00:00
if (
not self.to_recipients
and not self.bcc_recipients
and not self.cc_recipients
):
2017-05-21 18:13:49 +00:00
raise ValidationError(
2019-06-16 12:32:24 +00:00
{
"recipient": "either to_recipient, bcc_recipient or cc_recipient required."
}
2017-05-21 18:13:49 +00:00
)