2014-05-08 16:59:35 +00:00
|
|
|
from django import forms
|
|
|
|
from django.contrib import admin
|
2014-10-24 14:19:34 +00:00
|
|
|
from django.core.urlresolvers import reverse
|
2015-04-02 16:14:55 +00:00
|
|
|
from django.utils.encoding import force_text
|
2014-10-24 14:19:34 +00:00
|
|
|
from django.utils.translation import ugettext, ugettext_lazy as _
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
from orchestra.admin import ExtendedModelAdmin
|
2016-02-19 10:11:28 +00:00
|
|
|
from orchestra.admin.utils import admin_link, get_modeladmin
|
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
|
2014-11-11 12:05:47 +00:00
|
|
|
from orchestra.forms.widgets import DynamicHelpTextSelect
|
2015-10-05 12:09:11 +00:00
|
|
|
from orchestra.plugins.admin import SelectPluginAdminMixin, display_plugin_field
|
2015-10-01 16:02:26 +00:00
|
|
|
from orchestra.utils.html import get_on_site_link
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-06-12 12:17:05 +00:00
|
|
|
from .filters import HasWebsiteListFilter, PHPVersionListFilter
|
2015-04-09 14:32:10 +00:00
|
|
|
from .models import WebApp, WebAppOption
|
2015-03-10 11:46:48 +00:00
|
|
|
from .options import AppOption
|
|
|
|
from .types import AppType
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
class WebAppOptionInline(admin.TabularInline):
|
|
|
|
model = WebAppOption
|
|
|
|
extra = 1
|
|
|
|
|
2014-11-10 15:15:37 +00:00
|
|
|
OPTIONS_HELP_TEXT = {
|
2015-04-02 16:14:55 +00:00
|
|
|
op.name: force_text(op.help_text) for op in AppOption.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
|
|
|
class Media:
|
|
|
|
css = {
|
|
|
|
'all': ('orchestra/css/hide-inline-id.css',)
|
|
|
|
}
|
|
|
|
|
|
|
|
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':
|
2015-03-04 21:06:16 +00:00
|
|
|
if self.parent_object:
|
|
|
|
plugin = self.parent_object.type_class
|
|
|
|
else:
|
|
|
|
request = kwargs['request']
|
2015-04-09 14:32:10 +00:00
|
|
|
webapp_modeladmin = get_modeladmin(self.parent_model)
|
|
|
|
plugin_value = webapp_modeladmin.get_plugin_value(request)
|
|
|
|
plugin = AppType.get(plugin_value)
|
2015-06-05 09:57:06 +00:00
|
|
|
kwargs['choices'] = plugin.get_group_options_choices()
|
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.OPTIONS_HELP_TEXT)
|
2014-05-08 16:59:35 +00:00
|
|
|
return super(WebAppOptionInline, self).formfield_for_dbfield(db_field, **kwargs)
|
|
|
|
|
|
|
|
|
2015-03-04 21:06:16 +00:00
|
|
|
class WebAppAdmin(SelectPluginAdminMixin, AccountAdminMixin, ExtendedModelAdmin):
|
2016-02-17 12:32:30 +00:00
|
|
|
list_display = (
|
|
|
|
'name', 'display_type', 'display_detail', 'display_websites', 'account_link'
|
|
|
|
)
|
2015-06-12 12:17:05 +00:00
|
|
|
list_filter = ('type', HasWebsiteListFilter, PHPVersionListFilter)
|
2014-05-08 16:59:35 +00:00
|
|
|
inlines = [WebAppOptionInline]
|
2015-03-23 15:36:51 +00:00
|
|
|
readonly_fields = ('account_link', )
|
|
|
|
change_readonly_fields = ('name', 'type', 'display_websites')
|
|
|
|
search_fields = ('name', 'account__username', 'data', 'website__domains__name')
|
2016-02-17 12:32:30 +00:00
|
|
|
list_prefetch_related = ('content_set__website', 'content_set__website__domains')
|
2015-03-10 11:46:48 +00:00
|
|
|
plugin = AppType
|
2015-03-04 21:06:16 +00:00
|
|
|
plugin_field = 'type'
|
|
|
|
plugin_title = _("Web application type")
|
2015-07-21 10:44:32 +00:00
|
|
|
actions = (list_accounts,)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-10-05 12:09:11 +00:00
|
|
|
display_type = display_plugin_field('type')
|
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def display_websites(self, webapp):
|
|
|
|
websites = []
|
2015-03-10 16:57:23 +00:00
|
|
|
for content in webapp.content_set.all():
|
2016-02-17 12:32:30 +00:00
|
|
|
site_url = content.get_absolute_url()
|
|
|
|
site_link = get_on_site_link(site_url)
|
2014-05-08 16:59:35 +00:00
|
|
|
website = content.website
|
2016-02-19 10:11:28 +00:00
|
|
|
name = "%s on %s %s" % (website.name, content.path, site_link)
|
|
|
|
link = admin_link(display=name)(website)
|
2015-09-29 08:45:47 +00:00
|
|
|
websites.append(link)
|
2015-03-11 16:32:33 +00:00
|
|
|
if not websites:
|
|
|
|
add_url = reverse('admin:websites_website_add')
|
|
|
|
add_url += '?account=%s' % webapp.account_id
|
|
|
|
plus = '<strong style="color:green; font-size:12px">+</strong>'
|
|
|
|
websites.append('<a href="%s">%s%s</a>' % (add_url, plus, ugettext("Add website")))
|
2014-05-08 16:59:35 +00:00
|
|
|
return '<br>'.join(websites)
|
|
|
|
display_websites.short_description = _("web sites")
|
|
|
|
display_websites.allow_tags = True
|
2014-11-10 15:15:37 +00:00
|
|
|
|
2015-03-20 15:13:08 +00:00
|
|
|
def display_detail(self, webapp):
|
2015-10-05 12:09:11 +00:00
|
|
|
try:
|
|
|
|
return webapp.type_instance.get_detail()
|
|
|
|
except KeyError:
|
|
|
|
return "<span style='color:red;'>Not available</span>"
|
2015-03-20 15:13:08 +00:00
|
|
|
display_detail.short_description = _("detail")
|
2015-10-05 12:09:11 +00:00
|
|
|
display_detail.allow_tags = True
|
2015-03-20 15:13:08 +00:00
|
|
|
|
2015-04-16 13:15:21 +00:00
|
|
|
# def get_form(self, request, obj=None, **kwargs):
|
|
|
|
# form = super(WebAppAdmin, self).get_form(request, obj, **kwargs)
|
|
|
|
# if obj:
|
|
|
|
#
|
|
|
|
|
2015-03-04 21:06:16 +00:00
|
|
|
# def formfield_for_dbfield(self, db_field, **kwargs):
|
|
|
|
# """ Make value input widget bigger """
|
|
|
|
# if db_field.name == 'type':
|
|
|
|
# # Help text based on select widget
|
|
|
|
# kwargs['widget'] = DynamicHelpTextSelect(
|
|
|
|
# 'this.id.replace("name", "value")', self.TYPE_HELP_TEXT
|
|
|
|
# )
|
|
|
|
# kwargs['help_text'] = self.TYPE_HELP_TEXT.get(db_field.default, '')
|
|
|
|
# return super(WebAppAdmin, self).formfield_for_dbfield(db_field, **kwargs)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
admin.site.register(WebApp, WebAppAdmin)
|