2014-05-08 16:59:35 +00:00
|
|
|
from django import forms
|
|
|
|
from django.contrib import admin
|
2015-02-25 17:29:39 +00:00
|
|
|
from django.core.urlresolvers import resolve
|
|
|
|
from django.db.models import Q
|
2015-04-02 16:14:55 +00:00
|
|
|
from django.utils.encoding import force_text
|
2014-05-08 16:59:35 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
|
|
from orchestra.admin import ExtendedModelAdmin
|
2015-05-09 17:08:45 +00:00
|
|
|
from orchestra.admin.actions import disable
|
2014-09-18 15:07:39 +00:00
|
|
|
from orchestra.admin.utils import admin_link, change_url
|
2015-07-21 10:44:32 +00:00
|
|
|
from orchestra.contrib.accounts.actions import list_accounts
|
2015-04-05 10:46:24 +00:00
|
|
|
from orchestra.contrib.accounts.admin import AccountAdminMixin, SelectAccountAdminMixin
|
2014-11-11 12:05:47 +00:00
|
|
|
from orchestra.forms.widgets import DynamicHelpTextSelect
|
2016-02-17 12:32:30 +00:00
|
|
|
from orchestra.utils.html import get_on_site_link
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-03-10 11:46:48 +00:00
|
|
|
from .directives import SiteDirective
|
2015-03-25 15:45:04 +00:00
|
|
|
from .forms import WebsiteAdminForm, WebsiteDirectiveInlineFormSet
|
2015-03-18 21:51:12 +00:00
|
|
|
from .models import Content, Website, WebsiteDirective
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
2015-03-18 21:51:12 +00:00
|
|
|
class WebsiteDirectiveInline(admin.TabularInline):
|
|
|
|
model = WebsiteDirective
|
2015-03-25 15:45:04 +00:00
|
|
|
formset = WebsiteDirectiveInlineFormSet
|
2014-05-08 16:59:35 +00:00
|
|
|
extra = 1
|
|
|
|
|
2015-03-10 11:46:48 +00:00
|
|
|
DIRECTIVES_HELP_TEXT = {
|
2015-04-02 16:14:55 +00:00
|
|
|
op.name: force_text(op.help_text) for op in SiteDirective.get_plugins()
|
2014-11-10 15:15:37 +00:00
|
|
|
}
|
2014-11-10 15:03:34 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def formfield_for_dbfield(self, db_field, **kwargs):
|
|
|
|
if db_field.name == 'value':
|
|
|
|
kwargs['widget'] = forms.TextInput(attrs={'size':'100'})
|
2014-11-10 15:03:34 +00:00
|
|
|
if db_field.name == 'name':
|
2014-11-10 15:15:37 +00:00
|
|
|
# Help text based on select widget
|
2015-03-27 19:50:54 +00:00
|
|
|
target = 'this.id.replace("name", "value")'
|
|
|
|
kwargs['widget'] = DynamicHelpTextSelect(target, self.DIRECTIVES_HELP_TEXT)
|
2015-03-18 21:51:12 +00:00
|
|
|
return super(WebsiteDirectiveInline, self).formfield_for_dbfield(db_field, **kwargs)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ContentInline(AccountAdminMixin, admin.TabularInline):
|
|
|
|
model = Content
|
|
|
|
extra = 1
|
|
|
|
fields = ('webapp', 'webapp_link', 'webapp_type', 'path')
|
|
|
|
readonly_fields = ('webapp_link', 'webapp_type')
|
|
|
|
filter_by_account_fields = ['webapp']
|
|
|
|
|
2014-07-21 15:43:36 +00:00
|
|
|
webapp_link = admin_link('webapp', popup=True)
|
2014-05-08 16:59:35 +00:00
|
|
|
webapp_link.short_description = _("Web App")
|
|
|
|
|
|
|
|
def webapp_type(self, content):
|
|
|
|
if not content.pk:
|
|
|
|
return ''
|
|
|
|
return content.webapp.get_type_display()
|
|
|
|
webapp_type.short_description = _("Web App type")
|
|
|
|
|
|
|
|
|
|
|
|
class WebsiteAdmin(SelectAccountAdminMixin, ExtendedModelAdmin):
|
|
|
|
list_display = ('name', 'display_domains', 'display_webapps', 'account_link')
|
2015-03-10 21:51:10 +00:00
|
|
|
list_filter = ('protocol', 'is_active',)
|
2014-05-08 16:59:35 +00:00
|
|
|
change_readonly_fields = ('name',)
|
2015-03-18 21:51:12 +00:00
|
|
|
inlines = [ContentInline, WebsiteDirectiveInline]
|
2014-05-08 16:59:35 +00:00
|
|
|
filter_horizontal = ['domains']
|
|
|
|
fieldsets = (
|
|
|
|
(None, {
|
|
|
|
'classes': ('extrapretty',),
|
2015-03-10 21:51:10 +00:00
|
|
|
'fields': ('account_link', 'name', 'protocol', 'domains', 'is_active'),
|
2014-05-08 16:59:35 +00:00
|
|
|
}),
|
|
|
|
)
|
2015-02-25 17:29:39 +00:00
|
|
|
form = WebsiteAdminForm
|
2014-05-08 16:59:35 +00:00
|
|
|
filter_by_account_fields = ['domains']
|
2015-03-10 16:57:23 +00:00
|
|
|
list_prefetch_related = ('domains', 'content_set__webapp')
|
2015-04-29 21:35:56 +00:00
|
|
|
search_fields = ('name', 'account__username', 'domains__name', 'content__webapp__name')
|
2015-07-21 10:44:32 +00:00
|
|
|
actions = (disable, list_accounts)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def display_domains(self, website):
|
|
|
|
domains = []
|
|
|
|
for domain in website.domains.all():
|
2015-03-10 21:51:10 +00:00
|
|
|
url = '%s://%s' % (website.get_protocol(), domain)
|
2014-05-08 16:59:35 +00:00
|
|
|
domains.append('<a href="%s">%s</a>' % (url, url))
|
|
|
|
return '<br>'.join(domains)
|
|
|
|
display_domains.short_description = _("domains")
|
|
|
|
display_domains.allow_tags = True
|
2014-11-10 15:40:51 +00:00
|
|
|
display_domains.admin_order_field = 'domains'
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def display_webapps(self, website):
|
|
|
|
webapps = []
|
2015-03-10 16:57:23 +00:00
|
|
|
for content in website.content_set.all():
|
2016-02-17 12:32:30 +00:00
|
|
|
site_link = get_on_site_link(content.get_absolute_url())
|
2014-05-08 16:59:35 +00:00
|
|
|
webapp = content.webapp
|
2016-02-17 12:32:30 +00:00
|
|
|
detail = webapp.get_type_display()
|
|
|
|
try:
|
|
|
|
detail += ' ' + webapp.type_instance.get_detail()
|
|
|
|
except KeyError:
|
|
|
|
pass
|
2014-09-18 15:07:39 +00:00
|
|
|
url = change_url(webapp)
|
2015-04-29 21:35:56 +00:00
|
|
|
name = "%s on %s" % (webapp.name, content.path or '/')
|
2016-02-17 12:32:30 +00:00
|
|
|
webapps.append('<a href="%s" title="%s">%s %s</a>' % (url, detail, name, site_link))
|
2014-05-08 16:59:35 +00:00
|
|
|
return '<br>'.join(webapps)
|
|
|
|
display_webapps.allow_tags = True
|
|
|
|
display_webapps.short_description = _("Web apps")
|
|
|
|
|
|
|
|
def formfield_for_dbfield(self, db_field, **kwargs):
|
2015-02-25 17:29:39 +00:00
|
|
|
"""
|
|
|
|
Exclude domains with exhausted ports
|
|
|
|
has to be done here, on the form doesn't work because of filter_by_account_fields
|
|
|
|
"""
|
|
|
|
formfield = super(WebsiteAdmin, self).formfield_for_dbfield(db_field, **kwargs)
|
|
|
|
if db_field.name == 'domains':
|
2015-03-10 21:51:10 +00:00
|
|
|
qset = Q(
|
|
|
|
Q(websites__protocol=Website.HTTPS_ONLY) |
|
|
|
|
Q(websites__protocol=Website.HTTP_AND_HTTPS) | Q(
|
|
|
|
Q(websites__protocol=Website.HTTP) & Q(websites__protocol=Website.HTTPS)
|
|
|
|
)
|
|
|
|
)
|
2015-02-25 17:29:39 +00:00
|
|
|
args = resolve(kwargs['request'].path).args
|
|
|
|
if args:
|
|
|
|
object_id = args[0]
|
|
|
|
qset = Q(qset & ~Q(websites__pk=object_id))
|
|
|
|
formfield.queryset = formfield.queryset.exclude(qset)
|
|
|
|
return formfield
|
2015-05-18 15:21:42 +00:00
|
|
|
|
|
|
|
def _create_formsets(self, request, obj, change):
|
|
|
|
""" bind contents formset to directive formset for unique location cross-validation """
|
|
|
|
formsets, inline_instances = super(WebsiteAdmin, self)._create_formsets(request, obj, change)
|
|
|
|
if request.method == 'POST':
|
|
|
|
contents, directives = formsets
|
|
|
|
directives.content_formset = contents
|
|
|
|
return formsets, inline_instances
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
admin.site.register(Website, WebsiteAdmin)
|