wagtail_hooks.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. from django.contrib.contenttypes.models import ContentType
  2. from django.contrib.staticfiles.templatetags.staticfiles import static
  3. from django.http.response import HttpResponse
  4. from django.utils.html import format_html
  5. from wagtail.contrib.forms.models import AbstractForm
  6. from wagtail.core import hooks
  7. from wagtail.core.models import UserPagePermissionsProxy, get_page_models
  8. from coderedcms import utils
  9. from coderedcms.models import CoderedFormPage
  10. import mimetypes
  11. @hooks.register('insert_global_admin_css')
  12. def global_admin_css():
  13. return format_html('<link rel="stylesheet" type="text/css" href="{}">', static('css/codered-admin.css'))
  14. @hooks.register('insert_editor_css')
  15. def editor_css():
  16. return format_html('<link rel="stylesheet" type="text/css" href="{}">', static('css/codered-editor.css'))
  17. @hooks.register('insert_editor_js')
  18. def collapsible_js():
  19. return format_html('<script src="{}"></script>', static('js/codered-editor.js'))
  20. @hooks.register('after_create_page')
  21. @hooks.register('after_edit_page')
  22. def clear_cache(request, page):
  23. if page.live:
  24. utils.clear_cache()
  25. @hooks.register('filter_form_submissions_for_user')
  26. def codered_forms(user, editable_forms):
  27. """
  28. Add our own CoderedFormPage to editable_forms, since wagtail is unaware
  29. of its existance. Essentailly this is a fork of wagtail.contrib.forms.get_forms_for_user()
  30. and wagtail.contrib.forms.get_form_types()
  31. """
  32. form_models = [
  33. model for model in get_page_models()
  34. if issubclass(model, (AbstractForm, CoderedFormPage))
  35. ]
  36. form_types = list(
  37. ContentType.objects.get_for_models(*form_models).values()
  38. )
  39. editable_forms = UserPagePermissionsProxy(user).editable_pages()
  40. editable_forms = editable_forms.filter(content_type__in=form_types)
  41. return editable_forms
  42. @hooks.register('before_serve_document')
  43. def serve_document_directly(document, request):
  44. """
  45. This hook prevents documents from being downloaded unless specified by an <a> tag with the download attribute.
  46. """
  47. content_type, content_encoding = mimetypes.guess_type(document.filename)
  48. response = HttpResponse(document.file.read(), content_type=content_type)
  49. response['Content-Disposition'] = 'inline;filename="{0}"'.format(document.filename)
  50. response['Content-Encoding'] = content_encoding
  51. return response