django-orchestra/orchestra/admin/decorators.py

72 lines
2.9 KiB
Python
Raw Normal View History

2014-07-24 09:53:34 +00:00
from functools import wraps, partial
2014-05-08 16:59:35 +00:00
from django.contrib import messages
from django.contrib.admin import helpers
from django.template.response import TemplateResponse
from django.utils.decorators import available_attrs
from django.utils.encoding import force_text
2014-07-24 09:53:34 +00:00
def admin_field(method):
""" Wraps a function to be used as a ModelAdmin method field """
2014-07-24 09:53:34 +00:00
def admin_field_wrapper(*args, **kwargs):
""" utility function for creating admin links """
kwargs['field'] = args[0] if args else ''
kwargs['order'] = kwargs.get('order', kwargs['field'])
kwargs['popup'] = kwargs.get('popup', False)
kwargs['short_description'] = kwargs.get('short_description',
2014-07-24 09:53:34 +00:00
kwargs['field'].split('__')[-1].replace('_', ' ').capitalize())
admin_method = partial(method, **kwargs)
admin_method.short_description = kwargs['short_description']
2014-07-24 09:53:34 +00:00
admin_method.allow_tags = True
admin_method.admin_order_field = kwargs['order']
return admin_method
return admin_field_wrapper
2014-05-08 16:59:35 +00:00
def action_with_confirmation(action_name, extra_context={},
2014-07-09 16:17:43 +00:00
template='admin/orchestra/generic_confirmation.html'):
2014-05-08 16:59:35 +00:00
"""
Generic pattern for actions that needs confirmation step
If custom template is provided the form must contain:
<input type="hidden" name="post" value="generic_confirmation" />
"""
def decorator(func, extra_context=extra_context, template=template):
@wraps(func, assigned=available_attrs(func))
def inner(modeladmin, request, queryset):
# The user has already confirmed the action.
if request.POST.get('post') == "generic_confirmation":
stay = func(modeladmin, request, queryset)
if not stay:
return
2014-07-24 09:53:34 +00:00
2014-05-08 16:59:35 +00:00
opts = modeladmin.model._meta
app_label = opts.app_label
action_value = func.__name__
2014-07-24 09:53:34 +00:00
2014-05-08 16:59:35 +00:00
if len(queryset) == 1:
objects_name = force_text(opts.verbose_name)
else:
objects_name = force_text(opts.verbose_name_plural)
2014-07-24 09:53:34 +00:00
2014-05-08 16:59:35 +00:00
context = {
"title": "Are you sure?",
"content_message": "Are you sure you want to %s the selected %s?" %
(action_name, objects_name),
"action_name": action_name.capitalize(),
"action_value": action_value,
2014-09-08 15:10:16 +00:00
"display_objects": queryset,
2014-05-08 16:59:35 +00:00
'queryset': queryset,
"opts": opts,
"app_label": app_label,
'action_checkbox_name': helpers.ACTION_CHECKBOX_NAME,
}
2014-07-24 09:53:34 +00:00
2014-05-08 16:59:35 +00:00
context.update(extra_context)
2014-07-24 09:53:34 +00:00
2014-05-08 16:59:35 +00:00
# Display the confirmation page
return TemplateResponse(request, template,
context, current_app=modeladmin.admin_site.name)
return inner
return decorator