2014-09-29 13:34:38 +00:00
|
|
|
import re
|
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
from django import forms
|
|
|
|
from django.contrib import admin
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2014-11-05 21:29:14 +00:00
|
|
|
from orchestra.admin import ExtendedModelAdmin
|
2014-09-26 15:05:20 +00:00
|
|
|
from orchestra.admin.utils import admin_link, change_url
|
2014-05-08 16:59:35 +00:00
|
|
|
from orchestra.apps.accounts.admin import AccountAdminMixin
|
|
|
|
from orchestra.utils import apps
|
|
|
|
|
2014-09-26 15:05:20 +00:00
|
|
|
from .actions import view_zone
|
2014-10-27 13:29:02 +00:00
|
|
|
from .forms import RecordInlineFormSet, CreateDomainAdminForm
|
2014-05-08 16:59:35 +00:00
|
|
|
from .filters import TopDomainListFilter
|
|
|
|
from .models import Domain, Record
|
|
|
|
|
|
|
|
|
|
|
|
class RecordInline(admin.TabularInline):
|
|
|
|
model = Record
|
|
|
|
formset = RecordInlineFormSet
|
|
|
|
verbose_name_plural = _("Extra records")
|
|
|
|
|
2014-10-23 15:38:46 +00:00
|
|
|
# class Media:
|
|
|
|
# css = {
|
|
|
|
# 'all': ('orchestra/css/hide-inline-id.css',)
|
|
|
|
# }
|
|
|
|
#
|
2014-05-08 16:59:35 +00:00
|
|
|
def formfield_for_dbfield(self, db_field, **kwargs):
|
|
|
|
""" Make value input widget bigger """
|
|
|
|
if db_field.name == 'value':
|
|
|
|
kwargs['widget'] = forms.TextInput(attrs={'size':'100'})
|
2014-10-23 15:38:46 +00:00
|
|
|
if db_field.name == 'ttl':
|
|
|
|
kwargs['widget'] = forms.TextInput(attrs={'size':'10'})
|
2014-05-08 16:59:35 +00:00
|
|
|
return super(RecordInline, self).formfield_for_dbfield(db_field, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class DomainInline(admin.TabularInline):
|
|
|
|
model = Domain
|
2014-10-24 11:10:30 +00:00
|
|
|
fields = ('domain_link', 'display_records', 'account_link')
|
|
|
|
readonly_fields = ('domain_link', 'display_records', 'account_link')
|
2014-05-08 16:59:35 +00:00
|
|
|
extra = 0
|
|
|
|
verbose_name_plural = _("Subdomains")
|
|
|
|
|
2014-10-17 13:14:31 +00:00
|
|
|
domain_link = admin_link('__unicode__')
|
2014-05-08 16:59:35 +00:00
|
|
|
domain_link.short_description = _("Name")
|
2014-10-24 11:10:30 +00:00
|
|
|
account_link = admin_link('account')
|
|
|
|
|
|
|
|
def display_records(self, domain):
|
2014-11-05 21:29:14 +00:00
|
|
|
return ', '.join([record.type for record in domain.records.all()])
|
2014-10-24 11:10:30 +00:00
|
|
|
display_records.short_description = _("Declared records")
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def has_add_permission(self, *args, **kwargs):
|
|
|
|
return False
|
2014-11-05 21:29:14 +00:00
|
|
|
|
|
|
|
def get_queryset(self, request):
|
|
|
|
""" Order by structured name and imporve performance """
|
|
|
|
qs = super(DomainInline, self).get_queryset(request)
|
|
|
|
return qs.select_related('account').prefetch_related('records')
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
2014-11-05 21:29:14 +00:00
|
|
|
class DomainAdmin(AccountAdminMixin, ExtendedModelAdmin):
|
2014-07-17 16:09:24 +00:00
|
|
|
list_display = (
|
|
|
|
'structured_name', 'display_is_top', 'websites', 'account_link'
|
|
|
|
)
|
2014-10-27 13:29:02 +00:00
|
|
|
add_fields = ('name', 'account')
|
|
|
|
fields = ('name', 'account_link')
|
2014-05-08 16:59:35 +00:00
|
|
|
inlines = [RecordInline, DomainInline]
|
|
|
|
list_filter = [TopDomainListFilter]
|
|
|
|
change_readonly_fields = ('name',)
|
2014-09-30 09:49:07 +00:00
|
|
|
search_fields = ['name',]
|
2014-10-27 13:29:02 +00:00
|
|
|
add_form = CreateDomainAdminForm
|
2014-09-26 15:05:20 +00:00
|
|
|
change_view_actions = [view_zone]
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def structured_name(self, domain):
|
2014-07-17 16:09:24 +00:00
|
|
|
if not domain.is_top:
|
2014-05-08 16:59:35 +00:00
|
|
|
return ' '*4 + domain.name
|
|
|
|
return domain.name
|
|
|
|
structured_name.short_description = _("name")
|
|
|
|
structured_name.allow_tags = True
|
|
|
|
structured_name.admin_order_field = 'structured_name'
|
|
|
|
|
2014-07-17 16:09:24 +00:00
|
|
|
def display_is_top(self, domain):
|
|
|
|
return domain.is_top
|
2014-11-14 16:12:56 +00:00
|
|
|
display_is_top.short_description = _("Is top")
|
2014-07-17 16:09:24 +00:00
|
|
|
display_is_top.boolean = True
|
|
|
|
display_is_top.admin_order_field = 'top'
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def websites(self, domain):
|
|
|
|
if apps.isinstalled('orchestra.apps.websites'):
|
|
|
|
webs = domain.websites.all()
|
|
|
|
if webs:
|
|
|
|
links = []
|
|
|
|
for web in webs:
|
2014-09-18 15:07:39 +00:00
|
|
|
url = change_url(web)
|
2014-05-08 16:59:35 +00:00
|
|
|
links.append('<a href="%s">%s</a>' % (url, web.name))
|
|
|
|
return '<br>'.join(links)
|
|
|
|
return _("No website")
|
|
|
|
websites.admin_order_field = 'websites__name'
|
|
|
|
websites.short_description = _("Websites")
|
|
|
|
websites.allow_tags = True
|
|
|
|
|
2014-07-08 15:19:15 +00:00
|
|
|
def get_queryset(self, request):
|
2014-05-08 16:59:35 +00:00
|
|
|
""" Order by structured name and imporve performance """
|
2014-07-08 15:19:15 +00:00
|
|
|
qs = super(DomainAdmin, self).get_queryset(request)
|
2014-11-05 21:29:14 +00:00
|
|
|
qs = qs.select_related('top', 'account')
|
2014-05-08 16:59:35 +00:00
|
|
|
# For some reason if we do this we know for sure that join table will be called T4
|
2014-09-29 13:34:38 +00:00
|
|
|
query = str(qs.query)
|
|
|
|
table = re.findall(r'(T\d+)\."account_id"', query)[0]
|
2014-05-08 16:59:35 +00:00
|
|
|
qs = qs.extra(
|
2014-09-29 13:34:38 +00:00
|
|
|
select={
|
|
|
|
'structured_name': 'CONCAT({table}.name, domains_domain.name)'.format(table=table)
|
|
|
|
},
|
2014-05-08 16:59:35 +00:00
|
|
|
).order_by('structured_name')
|
|
|
|
if apps.isinstalled('orchestra.apps.websites'):
|
|
|
|
qs = qs.prefetch_related('websites')
|
|
|
|
return qs
|
2014-10-24 11:25:05 +00:00
|
|
|
|
2014-10-27 13:29:02 +00:00
|
|
|
# def save_related(self, request, form, formsets, change):
|
|
|
|
# super(DomainAdmin, self).save_related(request, form, formsets, change)
|
|
|
|
# if form.cleaned_data['migrate_subdomains']:
|
|
|
|
# domain = form.instance
|
|
|
|
# domain.subdomains.update(account_id=domain.account_id)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(Domain, DomainAdmin)
|