from django.db import models from django.shortcuts import get_object_or_404 from django.utils.translation import gettext_lazy as _ class Domain(models.Model): fqdn = models.CharField( _('FQDN'), max_length=255, unique=True, ) name = models.CharField( _('display name'), max_length=255, ) @classmethod def get_from_request(cls, request): return get_object_or_404(cls, fqdn__iexact=request.META.get('HTTP_HOST', ''))