wagtail_hooks.py 2.4 KB

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