66 lines
2.1 KiB
Python
Raw Normal View History

from django.db import models
2013-09-29 14:36:29 +02:00
from django.contrib.auth.models import User
from django.core.exceptions import ValidationError
2013-09-29 13:36:28 +02:00
from django.core.validators import RegexValidator
2013-09-29 13:53:35 +02:00
from django.conf import settings
2013-09-28 18:02:13 +02:00
import re
class BlacklistedDomain(models.Model):
2013-09-29 16:12:19 +02:00
domain = models.CharField(
max_length=256,
unique=True,
help_text='Blacklisted domain. Evaluated as regex (search).')
last_update = models.DateTimeField(auto_now=True)
created = models.DateTimeField(auto_now_add=True)
created_by = models.ForeignKey(User, blank=True, null=True)
def __unicode__(self):
2013-09-29 15:26:28 +02:00
return u"%s" % (self.domain, )
def domain_blacklist_validator(value):
for bd in BlacklistedDomain.objects.all():
print bd.domain
if re.search(bd.domain, value):
raise ValidationError(u'This domain is not allowed')
2013-09-28 18:02:13 +02:00
2013-09-29 13:36:28 +02:00
class Domain(models.Model):
domain = models.CharField(max_length=256, unique=True)
last_update = models.DateTimeField(auto_now=True)
created = models.DateTimeField(auto_now_add=True)
created_by = models.ForeignKey(User, blank=True, null=True)
2013-09-29 13:36:28 +02:00
def __unicode__(self):
2013-09-29 15:26:28 +02:00
return u"%s" % (self.domain, )
2013-09-29 13:36:28 +02:00
2013-09-28 18:02:13 +02:00
class Host(models.Model):
2013-09-29 13:36:28 +02:00
"""TODO: hash update_secret on save (if not already hashed)"""
2013-09-29 13:47:02 +02:00
subdomain = models.CharField(max_length=256, validators=[
RegexValidator(
regex=r'^(([a-z0-9][a-z0-9\-]*[a-z0-9])|[a-z0-9])$',
2013-09-29 16:12:19 +02:00
message='Invalid subdomain: only "a-z", "0-9" and "-" is allowed'
),
domain_blacklist_validator])
2013-09-29 13:36:28 +02:00
domain = models.ForeignKey(Domain)
update_secret = models.CharField(max_length=256) # gets hashed on save
2013-09-29 16:03:56 +02:00
comment = models.CharField(
max_length=256, default='', blank=True, null=True)
2013-09-28 18:02:13 +02:00
last_update = models.DateTimeField(auto_now=True)
created = models.DateTimeField(auto_now_add=True)
created_by = models.ForeignKey(
settings.AUTH_USER_MODEL, related_name='hosts')
2013-09-28 18:02:13 +02:00
def __unicode__(self):
2013-09-29 16:03:56 +02:00
return u"%s.%s - %s" % (
self.subdomain, self.domain.domain, self.comment)
2013-09-29 13:36:28 +02:00
class Meta:
unique_together = (('subdomain', 'domain'),)