utils.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. import datetime
  2. from importlib import import_module
  3. import json
  4. from django.core.serializers.json import DjangoJSONEncoder
  5. from django.http import HttpResponse
  6. from django.core.urlresolvers import reverse, resolve
  7. from django.contrib import admin
  8. from django.contrib.admin import AdminSite
  9. from django.utils.encoding import smart_text
  10. from jet import settings
  11. from django.contrib import messages
  12. from django.utils.encoding import force_text
  13. from django.utils.functional import Promise
  14. class JsonResponse(HttpResponse):
  15. """
  16. An HTTP response class that consumes data to be serialized to JSON.
  17. :param data: Data to be dumped into json. By default only ``dict`` objects
  18. are allowed to be passed due to a security flaw before EcmaScript 5. See
  19. the ``safe`` parameter for more information.
  20. :param encoder: Should be an json encoder class. Defaults to
  21. ``django.core.serializers.json.DjangoJSONEncoder``.
  22. :param safe: Controls if only ``dict`` objects may be serialized. Defaults
  23. to ``True``.
  24. """
  25. def __init__(self, data, encoder=DjangoJSONEncoder, safe=True, **kwargs):
  26. if safe and not isinstance(data, dict):
  27. raise TypeError('In order to allow non-dict objects to be '
  28. 'serialized set the safe parameter to False')
  29. kwargs.setdefault('content_type', 'application/json')
  30. data = json.dumps(data, cls=encoder)
  31. super(JsonResponse, self).__init__(content=data, **kwargs)
  32. def get_app_list(context):
  33. template_response = get_admin_site(context.get('current_app', '')).index(context['request'])
  34. try:
  35. return template_response.context_data['app_list']
  36. except Exception:
  37. return None
  38. def get_admin_site(current_app):
  39. try:
  40. resolver_match = resolve(reverse('%s:index' % current_app))
  41. for func_closure in resolver_match.func.func_closure:
  42. if isinstance(func_closure.cell_contents, AdminSite):
  43. return func_closure.cell_contents
  44. except:
  45. pass
  46. return admin.site
  47. def get_admin_site_name(context):
  48. return get_admin_site(context).name
  49. def get_current_dashboard(location):
  50. if location == 'index':
  51. path = settings.JET_INDEX_DASHBOARD
  52. elif location == 'app_index':
  53. path = settings.JET_APP_INDEX_DASHBOARD
  54. else:
  55. raise ValueError('Unknown dashboard location: %s' % location)
  56. module, cls = path.rsplit('.', 1)
  57. module = import_module(module)
  58. index_dashboard_cls = getattr(module, cls)
  59. return index_dashboard_cls
  60. class LazyDateTimeEncoder(json.JSONEncoder):
  61. def default(self, obj):
  62. if isinstance(obj, datetime.datetime) or isinstance(obj, datetime.date):
  63. return obj.isoformat()
  64. elif isinstance(obj, Promise):
  65. return force_text(obj)
  66. return json.JSONEncoder.default(self, obj)
  67. def get_model_instance_label(instance):
  68. if getattr(instance, "related_label", None):
  69. return instance.related_label()
  70. return smart_text(instance)
  71. class SuccessMessageMixin(object):
  72. """
  73. Adds a success message on successful form submission.
  74. """
  75. success_message = ''
  76. def form_valid(self, form):
  77. response = super(SuccessMessageMixin, self).form_valid(form)
  78. success_message = self.get_success_message(form.cleaned_data)
  79. if success_message:
  80. messages.success(self.request, success_message)
  81. return response
  82. def get_success_message(self, cleaned_data):
  83. return self.success_message % cleaned_data