django-orchestra/orchestra/apps/miscellaneous/models.py

70 lines
2.9 KiB
Python
Raw Normal View History

2014-07-16 15:20:16 +00:00
from django.db import models
from django.utils.functional import cached_property
2014-07-16 15:20:16 +00:00
from django.utils.translation import ugettext_lazy as _
from orchestra.core import services
2014-10-23 15:38:46 +00:00
from orchestra.core.validators import validate_name
2014-11-12 12:46:41 +00:00
from orchestra.models.fields import NullableCharField
2014-07-16 15:20:16 +00:00
class MiscService(models.Model):
2014-10-23 15:38:46 +00:00
name = models.CharField(_("name"), max_length=32, unique=True, validators=[validate_name],
help_text=_("Raw name used for internal referenciation, i.e. service match definition"))
verbose_name = models.CharField(_("verbose name"), max_length=256, blank=True,
help_text=_("Human readable name"))
description = models.TextField(_("description"), blank=True,
help_text=_("Optional description"))
2014-11-13 15:34:00 +00:00
has_identifier = models.BooleanField(_("has identifier"), default=True,
help_text=_("Designates if this service has a <b>unique text</b> field that "
"identifies it or not."))
2014-09-30 10:20:11 +00:00
has_amount = models.BooleanField(_("has amount"), default=False,
2014-07-18 15:32:27 +00:00
help_text=_("Designates whether this service has <tt>amount</tt> "
"property or not."))
2014-09-30 10:20:11 +00:00
is_active = models.BooleanField(_("active"), default=True,
2014-07-16 15:20:16 +00:00
help_text=_("Whether new instances of this service can be created "
"or not. Unselect this instead of deleting services."))
def __unicode__(self):
return self.name
2014-10-23 15:38:46 +00:00
def clean(self):
self.verbose_name = self.verbose_name.strip()
def get_verbose_name(self):
return self.verbose_name or self.name
2014-07-16 15:20:16 +00:00
class Miscellaneous(models.Model):
service = models.ForeignKey(MiscService, verbose_name=_("service"),
related_name='instances')
account = models.ForeignKey('accounts.Account', verbose_name=_("account"),
related_name='miscellaneous')
2014-11-13 15:34:00 +00:00
identifier = NullableCharField(_("identifier"), max_length=256, null=True, unique=True,
help_text=_("A unique identifier for this service."))
2014-07-16 15:20:16 +00:00
description = models.TextField(_("description"), blank=True)
amount = models.PositiveIntegerField(_("amount"), default=1)
2014-09-30 10:20:11 +00:00
is_active = models.BooleanField(_("active"), default=True,
2014-07-16 15:20:16 +00:00
help_text=_("Designates whether this service should be treated as "
"active. Unselect this instead of deleting services."))
class Meta:
verbose_name_plural = _("miscellaneous")
def __unicode__(self):
2014-11-14 15:51:18 +00:00
return self.identifier or self.description[:32] or str(self.service)
@cached_property
def active(self):
try:
return self.is_active and self.account.is_active
except type(self).account.field.rel.to.DoesNotExist:
return self.is_active
2014-11-12 12:46:41 +00:00
def clean(self):
2014-11-13 15:34:00 +00:00
if self.identifier:
self.identifier = self.identifier.strip()
2014-11-12 12:46:41 +00:00
self.description = self.description.strip()
2014-07-16 15:20:16 +00:00
services.register(Miscellaneous)