import os import re from django.core.exceptions import ValidationError from django.db import models from django.utils.functional import cached_property from django.utils.translation import ugettext_lazy as _ from orchestra.core import validators, services from orchestra.utils.functional import cached from . import settings from .directives import SiteDirective from .utils import normurlpath class Website(models.Model): """ Models a web site, also known as virtual host """ HTTP = 'http' HTTPS = 'https' HTTP_AND_HTTPS = 'http/https' HTTPS_ONLY = 'https-only' name = models.CharField(_("name"), max_length=128, validators=[validators.validate_name]) account = models.ForeignKey('accounts.Account', verbose_name=_("Account"), related_name='websites') protocol = models.CharField(_("protocol"), max_length=16, choices=settings.WEBSITES_PROTOCOL_CHOICES, default=settings.WEBSITES_DEFAULT_PROTOCOL, help_text=_("Select the protocol(s) for this website
" "HTTPS only performs a redirection from http to https.")) # port = models.PositiveIntegerField(_("port"), # choices=settings.WEBSITES_PORT_CHOICES, # default=settings.WEBSITES_DEFAULT_PORT) domains = models.ManyToManyField(settings.WEBSITES_DOMAIN_MODEL, related_name='websites', verbose_name=_("domains")) contents = models.ManyToManyField('webapps.WebApp', through='websites.Content') is_active = models.BooleanField(_("active"), default=True) class Meta: unique_together = ('name', 'account') def __unicode__(self): return self.name @property def unique_name(self): return settings.WEBSITES_UNIQUE_NAME_FORMAT % { 'id': self.id, 'pk': self.pk, 'account': self.account.username, 'protocol': self.protocol, 'name': self.name, } def get_protocol(self): if self.protocol in (self.HTTP, self.HTTP_AND_HTTPS): return self.HTTP return self.HTTPS @cached def get_directives(self): directives = {} for opt in self.directives.all(): try: directives[opt.name].append(opt.value) except KeyError: directives[opt.name] = [opt.value] return directives def get_absolute_url(self): domain = self.domains.first() if domain: return '%s://%s' % (self.get_protocol(), domain) def get_www_log_context(self): return { 'home': self.account.main_systemuser.get_home(), 'account': self.account.username, 'user': self.account.username, 'site_name': self.name, 'unique_name': self.unique_name } def get_www_access_log_path(self): context = self.get_www_log_context() path = settings.WEBSITES_WEBSITE_WWW_ACCESS_LOG_PATH % context return os.path.normpath(path.replace('//', '/')) def get_www_error_log_path(self): context = self.get_www_log_context() path = settings.WEBSITES_WEBSITE_WWW_ERROR_LOG_PATH % context return os.path.normpath(path.replace('//', '/')) class Directive(models.Model): website = models.ForeignKey(Website, verbose_name=_("web site"), related_name='directives') name = models.CharField(_("name"), max_length=128, choices=SiteDirective.get_plugin_choices()) value = models.CharField(_("value"), max_length=256) def __unicode__(self): return self.name @cached_property def directive_class(self): return SiteDirective.get_plugin(self.name) @cached_property def directive_instance(self): """ Per request lived directive instance """ return self.directive_class() def clean(self): self.directive_instance.validate(self) class Content(models.Model): # related_name is content_set to differentiate between website.content -> webapp webapp = models.ForeignKey('webapps.WebApp', verbose_name=_("web application")) website = models.ForeignKey('websites.Website', verbose_name=_("web site")) path = models.CharField(_("path"), max_length=256, blank=True, validators=[validators.validate_url_path]) class Meta: unique_together = ('website', 'path') def __unicode__(self): try: return self.website.name + self.path except Website.DoesNotExist: return self.path def clean(self): self.path = normurlpath(self.path) def get_absolute_url(self): domain = self.website.domains.first() if domain: return '%s://%s%s' % (self.website.get_protocol(), domain, self.path) services.register(Website)