models.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. from __future__ import unicode_literals
  2. from django.contrib import messages
  3. from django.db import models
  4. from django.shortcuts import redirect, render
  5. from modelcluster.contrib.taggit import ClusterTaggableManager
  6. from modelcluster.fields import ParentalKey
  7. from taggit.models import Tag, TaggedItemBase
  8. from wagtail.contrib.wagtailroutablepage.models import RoutablePageMixin, route
  9. from wagtail.wagtailadmin.edit_handlers import (
  10. FieldPanel,
  11. InlinePanel,
  12. StreamFieldPanel,
  13. )
  14. from wagtail.wagtailcore.fields import StreamField
  15. from wagtail.wagtailcore.models import Page, Orderable
  16. from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
  17. from wagtail.wagtailsearch import index
  18. from wagtail.wagtailsnippets.edit_handlers import SnippetChooserPanel
  19. from bakerydemo.base.blocks import BaseStreamBlock
  20. class BlogPeopleRelationship(Orderable, models.Model):
  21. '''
  22. This defines the relationship between the `People` within the `base`
  23. app and the BlogPage below allowing us to add people to a BlogPage.
  24. '''
  25. page = ParentalKey(
  26. 'BlogPage', related_name='blog_person_relationship'
  27. )
  28. people = models.ForeignKey(
  29. 'base.People', related_name='person_blog_relationship'
  30. )
  31. panels = [
  32. SnippetChooserPanel('people')
  33. ]
  34. class BlogPageTag(TaggedItemBase):
  35. content_object = ParentalKey('BlogPage', related_name='tagged_items')
  36. class BlogPage(Page):
  37. '''
  38. A Blog Page (Post)
  39. '''
  40. image = models.ForeignKey(
  41. 'wagtailimages.Image',
  42. null=True,
  43. blank=True,
  44. on_delete=models.SET_NULL,
  45. related_name='+',
  46. help_text='Location image'
  47. )
  48. tags = ClusterTaggableManager(through=BlogPageTag, blank=True)
  49. date_published = models.DateField("Date article published", blank=True, null=True)
  50. body = StreamField(
  51. BaseStreamBlock(), verbose_name="Blog post", blank=True
  52. )
  53. content_panels = Page.content_panels + [
  54. ImageChooserPanel('image'),
  55. StreamFieldPanel('body'),
  56. FieldPanel('date_published'),
  57. InlinePanel(
  58. 'blog_person_relationship', label="Author(s)",
  59. panels=None, min_num=1),
  60. FieldPanel('tags'),
  61. ]
  62. search_fields = Page.search_fields + [
  63. index.SearchField('title'),
  64. index.SearchField('body'),
  65. ]
  66. def authors(self):
  67. '''
  68. Returns the BlogPage's related People
  69. '''
  70. authors = [
  71. n.people for n in self.blog_person_relationship.all()
  72. ]
  73. return authors
  74. @property
  75. def get_tags(self):
  76. '''
  77. Returns the BlogPage's related list of Tags.
  78. Each Tag is modified to include a url attribute
  79. '''
  80. tags = self.tags.all()
  81. for tag in tags:
  82. tag.url = '/'+'/'.join(s.strip('/') for s in [
  83. self.get_parent().url,
  84. 'tags',
  85. tag.slug
  86. ])
  87. return tags
  88. parent_page_types = ['BlogIndexPage']
  89. # Defining what content type can sit under the parent
  90. # The empty array means that no children can be placed under the
  91. # LocationPage page model
  92. subpage_types = []
  93. # api_fields = ['image', 'body']
  94. class BlogIndexPage(RoutablePageMixin, Page):
  95. '''
  96. Index page for blogs.
  97. We need to alter the page model's context to return the child page objects - the
  98. BlogPage - so that it works as an index page
  99. The RoutablePageMixin is used to allow for a custom sub-URL
  100. '''
  101. image = models.ForeignKey(
  102. 'wagtailimages.Image',
  103. null=True,
  104. blank=True,
  105. on_delete=models.SET_NULL,
  106. related_name='+',
  107. help_text='Location listing image'
  108. )
  109. introduction = models.TextField(
  110. help_text='Text to describe the index page',
  111. blank=True)
  112. content_panels = Page.content_panels + [
  113. ImageChooserPanel('image'),
  114. FieldPanel('introduction')
  115. ]
  116. # parent_page_types = [
  117. # 'home.HomePage'
  118. # ]
  119. # Defining what content type can sit under the parent. Since it's a blank
  120. # array no subpage can be added
  121. subpage_types = ['BlogPage']
  122. def get_context(self, request):
  123. context = super(BlogIndexPage, self).get_context(request)
  124. context['blogs'] = BlogPage.objects.descendant_of(
  125. self).live().order_by(
  126. '-first_published_at')
  127. return context
  128. @route('^tags/$', name='tag_archive')
  129. @route('^tags/(\w+)/$', name='tag_archive')
  130. def tag_archive(self, request, tag=None):
  131. '''
  132. A Custom view that utilizes Tags. This view will
  133. return all related BlogPages for a given Tag or redirect back to
  134. the BlogIndexPage
  135. '''
  136. try:
  137. tag = Tag.objects.get(slug=tag)
  138. except Tag.DoesNotExist:
  139. if tag:
  140. msg = 'There are no blog posts tagged with "{}"'.format(tag)
  141. messages.add_message(request, messages.INFO, msg)
  142. return redirect(self.url)
  143. blogs = BlogPage.objects.filter(tags=tag).live().descendant_of(self)
  144. context = {
  145. 'title': 'Posts tagged with: {}'.format(tag.name),
  146. 'blogs': blogs
  147. }
  148. return render(request, 'blog/blog_index_page.html', context)
  149. # api_fields = ['introduction']