models.py 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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.routable_page.models import RoutablePageMixin, route
  9. from wagtail.admin.panels import FieldPanel, InlinePanel
  10. from wagtail.fields import StreamField
  11. from wagtail.models import Page, Orderable
  12. from wagtail.search import index
  13. from bakerydemo.base.blocks import BaseStreamBlock
  14. class BlogPeopleRelationship(Orderable, models.Model):
  15. """
  16. This defines the relationship between the `People` within the `base`
  17. app and the BlogPage below. This allows People to be added to a BlogPage.
  18. We have created a two way relationship between BlogPage and People using
  19. the ParentalKey and ForeignKey
  20. """
  21. page = ParentalKey(
  22. "BlogPage", related_name="blog_person_relationship", on_delete=models.CASCADE
  23. )
  24. people = models.ForeignKey(
  25. "base.People", related_name="person_blog_relationship", on_delete=models.CASCADE
  26. )
  27. panels = [FieldPanel("people")]
  28. class BlogPageTag(TaggedItemBase):
  29. """
  30. This model allows us to create a many-to-many relationship between
  31. the BlogPage object and tags. There's a longer guide on using it at
  32. https://docs.wagtail.org/en/stable/reference/pages/model_recipes.html#tagging
  33. """
  34. content_object = ParentalKey(
  35. "BlogPage", related_name="tagged_items", on_delete=models.CASCADE
  36. )
  37. class BlogPage(Page):
  38. """
  39. A Blog Page
  40. We access the People object with an inline panel that references the
  41. ParentalKey's related_name in BlogPeopleRelationship. More docs:
  42. https://docs.wagtail.org/en/stable/topics/pages.html#inline-models
  43. """
  44. introduction = models.TextField(help_text="Text to describe the page", blank=True)
  45. image = models.ForeignKey(
  46. "wagtailimages.Image",
  47. null=True,
  48. blank=True,
  49. on_delete=models.SET_NULL,
  50. related_name="+",
  51. help_text="Landscape mode only; horizontal width between 1000px and 3000px.",
  52. )
  53. body = StreamField(
  54. BaseStreamBlock(), verbose_name="Page body", blank=True, use_json_field=True
  55. )
  56. subtitle = models.CharField(blank=True, max_length=255)
  57. tags = ClusterTaggableManager(through=BlogPageTag, blank=True)
  58. date_published = models.DateField("Date article published", blank=True, null=True)
  59. content_panels = Page.content_panels + [
  60. FieldPanel("subtitle", classname="full"),
  61. FieldPanel("introduction", classname="full"),
  62. FieldPanel("image"),
  63. FieldPanel("body"),
  64. FieldPanel("date_published"),
  65. InlinePanel(
  66. "blog_person_relationship", label="Author(s)", panels=None, min_num=1
  67. ),
  68. FieldPanel("tags"),
  69. ]
  70. search_fields = Page.search_fields + [
  71. index.SearchField("body"),
  72. ]
  73. def authors(self):
  74. """
  75. Returns the BlogPage's related People. Again note that we are using
  76. the ParentalKey's related_name from the BlogPeopleRelationship model
  77. to access these objects. This allows us to access the People objects
  78. with a loop on the template. If we tried to access the blog_person_
  79. relationship directly we'd print `blog.BlogPeopleRelationship.None`
  80. """
  81. authors = [n.people for n in self.blog_person_relationship.all()]
  82. return authors
  83. @property
  84. def get_tags(self):
  85. """
  86. Similar to the authors function above we're returning all the tags that
  87. are related to the blog post into a list we can access on the template.
  88. We're additionally adding a URL to access BlogPage objects with that tag
  89. """
  90. tags = self.tags.all()
  91. for tag in tags:
  92. tag.url = "/" + "/".join(
  93. s.strip("/") for s in [self.get_parent().url, "tags", tag.slug]
  94. )
  95. return tags
  96. # Specifies parent to BlogPage as being BlogIndexPages
  97. parent_page_types = ["BlogIndexPage"]
  98. # Specifies what content types can exist as children of BlogPage.
  99. # Empty list means that no child content types are allowed.
  100. subpage_types = []
  101. class BlogIndexPage(RoutablePageMixin, Page):
  102. """
  103. Index page for blogs.
  104. We need to alter the page model's context to return the child page objects,
  105. the BlogPage objects, so that it works as an index page
  106. RoutablePageMixin is used to allow for a custom sub-URL for the tag views
  107. defined above.
  108. """
  109. introduction = models.TextField(help_text="Text to describe the page", blank=True)
  110. image = models.ForeignKey(
  111. "wagtailimages.Image",
  112. null=True,
  113. blank=True,
  114. on_delete=models.SET_NULL,
  115. related_name="+",
  116. help_text="Landscape mode only; horizontal width between 1000px and 3000px.",
  117. )
  118. content_panels = Page.content_panels + [
  119. FieldPanel("introduction", classname="full"),
  120. FieldPanel("image"),
  121. ]
  122. # Speficies that only BlogPage objects can live under this index page
  123. subpage_types = ["BlogPage"]
  124. # Defines a method to access the children of the page (e.g. BlogPage
  125. # objects). On the demo site we use this on the HomePage
  126. def children(self):
  127. return self.get_children().specific().live()
  128. # Overrides the context to list all child items, that are live, by the
  129. # date that they were published
  130. # https://docs.wagtail.org/en/stable/getting_started/tutorial.html#overriding-context
  131. def get_context(self, request):
  132. context = super(BlogIndexPage, self).get_context(request)
  133. context["posts"] = (
  134. BlogPage.objects.descendant_of(self).live().order_by("-date_published")
  135. )
  136. return context
  137. # This defines a Custom view that utilizes Tags. This view will return all
  138. # related BlogPages for a given Tag or redirect back to the BlogIndexPage.
  139. # More information on RoutablePages is at
  140. # https://docs.wagtail.org/en/stable/reference/contrib/routablepage.html
  141. @route(r"^tags/$", name="tag_archive")
  142. @route(r"^tags/([\w-]+)/$", name="tag_archive")
  143. def tag_archive(self, request, tag=None):
  144. try:
  145. tag = Tag.objects.get(slug=tag)
  146. except Tag.DoesNotExist:
  147. if tag:
  148. msg = 'There are no blog posts tagged with "{}"'.format(tag)
  149. messages.add_message(request, messages.INFO, msg)
  150. return redirect(self.url)
  151. posts = self.get_posts(tag=tag)
  152. context = {"tag": tag, "posts": posts}
  153. return render(request, "blog/blog_index_page.html", context)
  154. def serve_preview(self, request, mode_name):
  155. # Needed for previews to work
  156. return self.serve(request)
  157. # Returns the child BlogPage objects for this BlogPageIndex.
  158. # If a tag is used then it will filter the posts by tag.
  159. def get_posts(self, tag=None):
  160. posts = BlogPage.objects.live().descendant_of(self)
  161. if tag:
  162. posts = posts.filter(tags=tag)
  163. return posts
  164. # Returns the list of Tags for all child posts of this BlogPage.
  165. def get_child_tags(self):
  166. tags = []
  167. for post in self.get_posts():
  168. # Not tags.append() because we don't want a list of lists
  169. tags += post.get_tags
  170. tags = sorted(set(tags))
  171. return tags