page_models.py 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914
  1. """
  2. Base and abstract pages used in CodeRed CMS.
  3. """
  4. import json
  5. import logging
  6. import os
  7. import geocoder
  8. from django import forms
  9. from django.conf import settings
  10. from django.contrib import messages
  11. from django.core.files.uploadedfile import InMemoryUploadedFile, TemporaryUploadedFile
  12. from django.core.files.storage import FileSystemStorage
  13. from django.core.mail import EmailMessage
  14. from django.core.paginator import Paginator, InvalidPage, EmptyPage, PageNotAnInteger
  15. from django.core.serializers.json import DjangoJSONEncoder
  16. from django.core.validators import MaxValueValidator, MinValueValidator
  17. from django.db import models
  18. from django.db.models.signals import post_delete, post_save
  19. from django.dispatch import receiver
  20. from django.http import JsonResponse, HttpResponseRedirect
  21. from django.shortcuts import render, redirect
  22. from django.template import Context, Template
  23. from django.template.loader import render_to_string
  24. from django.utils import timezone
  25. from django.utils.html import strip_tags
  26. from django.utils.safestring import mark_safe
  27. from django.utils.translation import gettext_lazy as _
  28. from eventtools.models import BaseEvent, BaseOccurrence
  29. from icalendar import Event as ICalEvent
  30. from modelcluster.fields import ParentalKey, ParentalManyToManyField
  31. from modelcluster.tags import ClusterTaggableManager
  32. from pathlib import Path
  33. from taggit.models import TaggedItemBase
  34. from wagtail.admin.edit_handlers import (
  35. HelpPanel,
  36. FieldPanel,
  37. FieldRowPanel,
  38. InlinePanel,
  39. MultiFieldPanel,
  40. ObjectList,
  41. PageChooserPanel,
  42. StreamFieldPanel,
  43. TabbedInterface
  44. )
  45. from wagtail.core import hooks
  46. from wagtail.core.fields import StreamField
  47. from wagtail.core.models import Orderable, PageBase, Page, Site
  48. from wagtail.core.utils import resolve_model_string
  49. from wagtail.contrib.forms.edit_handlers import FormSubmissionsPanel
  50. from wagtail.contrib.forms.forms import WagtailAdminFormPageForm
  51. from wagtail.images import get_image_model_string
  52. from wagtail.images.edit_handlers import ImageChooserPanel
  53. from wagtail.contrib.forms.models import FormSubmission
  54. from wagtail.search import index
  55. from wagtail.utils.decorators import cached_classmethod
  56. from wagtailcache.cache import WagtailCacheMixin
  57. from coderedcms import schema, utils
  58. from coderedcms.blocks import (
  59. CONTENT_STREAMBLOCKS,
  60. LAYOUT_STREAMBLOCKS,
  61. STREAMFORM_BLOCKS,
  62. ContentWallBlock,
  63. OpenHoursBlock,
  64. StructuredDataActionBlock,
  65. )
  66. from coderedcms.fields import ColorField
  67. from coderedcms.forms import CoderedFormBuilder, CoderedSubmissionsListView
  68. from coderedcms.models.snippet_models import ClassifierTerm
  69. from coderedcms.models.wagtailsettings_models import (
  70. GeneralSettings,
  71. GoogleApiSettings,
  72. LayoutSettings,
  73. SeoSettings,
  74. )
  75. from coderedcms.wagtail_flexible_forms.blocks import FormFieldBlock, FormStepBlock
  76. from coderedcms.wagtail_flexible_forms.models import (
  77. Step,
  78. Steps,
  79. StreamFormMixin,
  80. StreamFormJSONEncoder,
  81. SessionFormSubmission,
  82. SubmissionRevision,
  83. )
  84. from coderedcms.settings import cr_settings
  85. from coderedcms.widgets import ClassifierSelectWidget
  86. logger = logging.getLogger('coderedcms')
  87. CODERED_PAGE_MODELS = []
  88. def get_page_models():
  89. return CODERED_PAGE_MODELS
  90. class CoderedPageMeta(PageBase):
  91. def __init__(cls, name, bases, dct):
  92. super().__init__(name, bases, dct)
  93. if 'amp_template' not in dct:
  94. cls.amp_template = None
  95. if 'search_db_include' not in dct:
  96. cls.search_db_include = False
  97. if 'search_db_boost' not in dct:
  98. cls.search_db_boost = 0
  99. if 'search_filterable' not in dct:
  100. cls.search_filterable = False
  101. if 'search_name' not in dct:
  102. cls.search_name = cls._meta.verbose_name
  103. if 'search_name_plural' not in dct:
  104. cls.search_name_plural = cls._meta.verbose_name_plural
  105. if 'search_template' not in dct:
  106. cls.search_template = 'coderedcms/pages/search_result.html'
  107. if not cls._meta.abstract:
  108. CODERED_PAGE_MODELS.append(cls)
  109. class CoderedTag(TaggedItemBase):
  110. class Meta:
  111. verbose_name = _('CodeRed Tag')
  112. content_object = ParentalKey('coderedcms.CoderedPage', related_name='tagged_items')
  113. class CoderedPage(WagtailCacheMixin, Page, metaclass=CoderedPageMeta):
  114. """
  115. General use page with caching, templating, and SEO functionality.
  116. All pages should inherit from this.
  117. """
  118. class Meta:
  119. verbose_name = _('CodeRed Page')
  120. # Do not allow this page type to be created in wagtail admin
  121. is_creatable = False
  122. # Templates
  123. # The page will render the following templates under certain conditions:
  124. #
  125. # template = ''
  126. # amp_template = ''
  127. # ajax_template = ''
  128. # search_template = ''
  129. ###############
  130. # Content fields
  131. ###############
  132. cover_image = models.ForeignKey(
  133. get_image_model_string(),
  134. null=True,
  135. blank=True,
  136. on_delete=models.SET_NULL,
  137. related_name='+',
  138. verbose_name=_('Cover image'),
  139. )
  140. ###############
  141. # Index fields
  142. ###############
  143. # Subclasses can override this to enabled index features by default.
  144. index_show_subpages_default = False
  145. # Subclasses can override this to query on a specific
  146. # page model, rather than the default wagtail Page.
  147. index_query_pagemodel = 'coderedcms.CoderedPage'
  148. # Subclasses can override these fields to enable custom
  149. # ordering based on specific subpage fields.
  150. index_order_by_default = ''
  151. index_order_by_choices = (
  152. ('', _('Default Ordering')),
  153. ('-first_published_at', _('Date first published, newest to oldest')),
  154. ('first_published_at', _('Date first published, oldest to newest')),
  155. ('-last_published_at', _('Date updated, newest to oldest')),
  156. ('last_published_at', _('Date updated, oldest to newest')),
  157. ('title', _('Title, alphabetical')),
  158. ('-title', _('Title, reverse alphabetical')),
  159. )
  160. index_show_subpages = models.BooleanField(
  161. default=index_show_subpages_default,
  162. verbose_name=_('Show list of child pages')
  163. )
  164. index_order_by = models.CharField(
  165. max_length=255,
  166. choices=index_order_by_choices,
  167. default=index_order_by_default,
  168. blank=True,
  169. verbose_name=_('Order child pages by'),
  170. )
  171. index_num_per_page = models.PositiveIntegerField(
  172. default=10,
  173. verbose_name=_('Number per page'),
  174. )
  175. index_classifiers = ParentalManyToManyField(
  176. 'coderedcms.Classifier',
  177. blank=True,
  178. verbose_name=_('Filter child pages by'),
  179. help_text=_('Enable filtering child pages by these classifiers.'),
  180. )
  181. ###############
  182. # Layout fields
  183. ###############
  184. custom_template = models.CharField(
  185. blank=True,
  186. max_length=255,
  187. choices=None,
  188. verbose_name=_('Template')
  189. )
  190. ###############
  191. # SEO fields
  192. ###############
  193. og_image = models.ForeignKey(
  194. get_image_model_string(),
  195. null=True,
  196. blank=True,
  197. on_delete=models.SET_NULL,
  198. related_name='+',
  199. verbose_name=_('Open Graph preview image'),
  200. help_text=_("The image shown when linking to this page on social media. If blank, defaults to article cover image, or logo in Settings > Layout > Logo"), # noqa
  201. )
  202. struct_org_type = models.CharField(
  203. default='',
  204. blank=True,
  205. max_length=255,
  206. choices=schema.SCHEMA_ORG_CHOICES,
  207. verbose_name=_('Organization type'),
  208. help_text=_('If blank, no structured data will be used on this page.')
  209. )
  210. struct_org_name = models.CharField(
  211. default='',
  212. blank=True,
  213. max_length=255,
  214. verbose_name=_('Organization name'),
  215. help_text=_('Leave blank to use the site name in Settings > Sites')
  216. )
  217. struct_org_logo = models.ForeignKey(
  218. get_image_model_string(),
  219. null=True,
  220. blank=True,
  221. on_delete=models.SET_NULL,
  222. related_name='+',
  223. verbose_name=_('Organization logo'),
  224. help_text=_('Leave blank to use the logo in Settings > Layout > Logo')
  225. )
  226. struct_org_image = models.ForeignKey(
  227. get_image_model_string(),
  228. null=True,
  229. blank=True,
  230. on_delete=models.SET_NULL,
  231. related_name='+',
  232. verbose_name=_('Photo of Organization'),
  233. help_text=_('A photo of the facility. This photo will be cropped to 1:1, 4:3, and 16:9 aspect ratios automatically.'), # noqa
  234. )
  235. struct_org_phone = models.CharField(
  236. blank=True,
  237. max_length=255,
  238. verbose_name=_('Telephone number'),
  239. help_text=_('Include country code for best results. For example: +1-216-555-8000')
  240. )
  241. struct_org_address_street = models.CharField(
  242. blank=True,
  243. max_length=255,
  244. verbose_name=_('Street address'),
  245. help_text=_('House number and street. For example, 55 Public Square Suite 1710')
  246. )
  247. struct_org_address_locality = models.CharField(
  248. blank=True,
  249. max_length=255,
  250. verbose_name=_('City'),
  251. help_text=_('City or locality. For example, Cleveland')
  252. )
  253. struct_org_address_region = models.CharField(
  254. blank=True,
  255. max_length=255,
  256. verbose_name=_('State'),
  257. help_text=_('State, province, county, or region. For example, OH')
  258. )
  259. struct_org_address_postal = models.CharField(
  260. blank=True,
  261. max_length=255,
  262. verbose_name=_('Postal code'),
  263. help_text=_('Zip or postal code. For example, 44113')
  264. )
  265. struct_org_address_country = models.CharField(
  266. blank=True,
  267. max_length=255,
  268. verbose_name=_('Country'),
  269. help_text=_('For example, USA. Two-letter ISO 3166-1 alpha-2 country code is also acceptible https://en.wikipedia.org/wiki/ISO_3166-1'), # noqa
  270. )
  271. struct_org_geo_lat = models.DecimalField(
  272. blank=True,
  273. null=True,
  274. max_digits=10,
  275. decimal_places=8,
  276. verbose_name=_('Geographic latitude')
  277. )
  278. struct_org_geo_lng = models.DecimalField(
  279. blank=True,
  280. null=True,
  281. max_digits=10,
  282. decimal_places=8,
  283. verbose_name=_('Geographic longitude')
  284. )
  285. struct_org_hours = StreamField(
  286. [
  287. ('hours', OpenHoursBlock()),
  288. ],
  289. blank=True,
  290. verbose_name=_('Hours of operation')
  291. )
  292. struct_org_actions = StreamField(
  293. [
  294. ('actions', StructuredDataActionBlock())
  295. ],
  296. blank=True,
  297. verbose_name=_('Actions')
  298. )
  299. struct_org_extra_json = models.TextField(
  300. blank=True,
  301. verbose_name=_('Additional Organization markup'),
  302. help_text=_('Additional JSON-LD inserted into the Organization dictionary. Must be properties of https://schema.org/Organization or the selected organization type.'), # noqa
  303. )
  304. ###############
  305. # Classify
  306. ###############
  307. classifier_terms = ParentalManyToManyField(
  308. 'coderedcms.ClassifierTerm',
  309. blank=True,
  310. verbose_name=_('Classifiers'),
  311. help_text=_('Categorize and group pages together with classifiers. Used to organize and filter pages across the site.'), # noqa
  312. )
  313. tags = ClusterTaggableManager(
  314. through=CoderedTag,
  315. blank=True,
  316. verbose_name=_('Tags'),
  317. help_text=_('Used to organize pages across the site.'),
  318. )
  319. ###############
  320. # Settings
  321. ###############
  322. content_walls = StreamField(
  323. [
  324. ('content_wall', ContentWallBlock())
  325. ],
  326. blank=True,
  327. verbose_name=_('Content Walls')
  328. )
  329. ###############
  330. # Search
  331. ###############
  332. search_fields = [
  333. index.SearchField('title', partial_match=True, boost=3),
  334. index.SearchField('seo_title', partial_match=True, boost=3),
  335. index.SearchField('search_description', boost=2),
  336. index.FilterField('title'),
  337. index.FilterField('id'),
  338. index.FilterField('live'),
  339. index.FilterField('owner'),
  340. index.FilterField('content_type'),
  341. index.FilterField('path'),
  342. index.FilterField('depth'),
  343. index.FilterField('locked'),
  344. index.FilterField('first_published_at'),
  345. index.FilterField('last_published_at'),
  346. index.FilterField('latest_revision_created_at'),
  347. index.FilterField('index_show_subpages'),
  348. index.FilterField('index_order_by'),
  349. index.FilterField('custom_template'),
  350. index.FilterField('classifier_terms'),
  351. ]
  352. ###############
  353. # Panels
  354. ###############
  355. content_panels = Page.content_panels + [
  356. ImageChooserPanel('cover_image'),
  357. ]
  358. body_content_panels = []
  359. bottom_content_panels = []
  360. classify_panels = [
  361. FieldPanel('classifier_terms', widget=ClassifierSelectWidget()),
  362. FieldPanel('tags'),
  363. ]
  364. layout_panels = [
  365. MultiFieldPanel(
  366. [
  367. FieldPanel('custom_template')
  368. ],
  369. heading=_('Visual Design')
  370. ),
  371. MultiFieldPanel(
  372. [
  373. FieldPanel('index_show_subpages'),
  374. FieldPanel('index_num_per_page'),
  375. FieldPanel('index_order_by'),
  376. FieldPanel('index_classifiers', widget=forms.CheckboxSelectMultiple()),
  377. ],
  378. heading=_('Show Child Pages')
  379. )
  380. ]
  381. promote_panels = [
  382. MultiFieldPanel(
  383. [
  384. FieldPanel('slug'),
  385. FieldPanel('seo_title'),
  386. FieldPanel('search_description'),
  387. ImageChooserPanel('og_image'),
  388. ],
  389. _('Page Meta Data')
  390. ),
  391. MultiFieldPanel(
  392. [
  393. HelpPanel(
  394. heading=_('About Organization Structured Data'),
  395. content=_("""The fields below help define brand, contact, and storefront
  396. information to search engines. This information should be filled out on
  397. the site’s root page (Home Page). If your organization has multiple locations,
  398. then also fill this info out on each location page using that particular
  399. location’s info."""),
  400. ),
  401. FieldPanel('struct_org_type'),
  402. FieldPanel('struct_org_name'),
  403. ImageChooserPanel('struct_org_logo'),
  404. ImageChooserPanel('struct_org_image'),
  405. FieldPanel('struct_org_phone'),
  406. FieldPanel('struct_org_address_street'),
  407. FieldPanel('struct_org_address_locality'),
  408. FieldPanel('struct_org_address_region'),
  409. FieldPanel('struct_org_address_postal'),
  410. FieldPanel('struct_org_address_country'),
  411. FieldPanel('struct_org_geo_lat'),
  412. FieldPanel('struct_org_geo_lng'),
  413. StreamFieldPanel('struct_org_hours'),
  414. StreamFieldPanel('struct_org_actions'),
  415. FieldPanel('struct_org_extra_json'),
  416. ],
  417. _('Structured Data - Organization')
  418. ),
  419. ]
  420. settings_panels = Page.settings_panels + [
  421. StreamFieldPanel('content_walls'),
  422. ]
  423. integration_panels = []
  424. def __init__(self, *args, **kwargs):
  425. """
  426. Inject custom choices and defalts into the form fields
  427. to enable customization by subclasses.
  428. """
  429. super().__init__(*args, **kwargs)
  430. klassname = self.__class__.__name__.lower()
  431. template_choices = cr_settings['FRONTEND_TEMPLATES_PAGES'].get('*', ()) + \
  432. cr_settings['FRONTEND_TEMPLATES_PAGES'].get(klassname, ())
  433. self._meta.get_field('index_order_by').choices = self.index_order_by_choices
  434. self._meta.get_field('custom_template').choices = template_choices
  435. if not self.id:
  436. self.index_order_by = self.index_order_by_default
  437. self.index_show_subpages = self.index_show_subpages_default
  438. @cached_classmethod
  439. def get_edit_handler(cls):
  440. """
  441. Override to "lazy load" the panels overriden by subclasses.
  442. """
  443. panels = [
  444. ObjectList(
  445. cls.content_panels + cls.body_content_panels + cls.bottom_content_panels,
  446. heading=_('Content')
  447. ),
  448. ObjectList(cls.classify_panels, heading=_('Classify')),
  449. ObjectList(cls.layout_panels, heading=_('Layout')),
  450. ObjectList(cls.promote_panels, heading=_('SEO'), classname="seo"),
  451. ObjectList(cls.settings_panels, heading=_('Settings'), classname="settings"),
  452. ]
  453. if cls.integration_panels:
  454. panels.append(ObjectList(
  455. cls.integration_panels,
  456. heading='Integrations',
  457. classname='integrations'
  458. ))
  459. return TabbedInterface(panels).bind_to(model=cls)
  460. def get_struct_org_name(self):
  461. """
  462. Gets org name for sturctured data using a fallback.
  463. """
  464. if self.struct_org_name:
  465. return self.struct_org_name
  466. return self.get_site().site_name
  467. def get_struct_org_logo(self):
  468. """
  469. Gets logo for structured data using a fallback.
  470. """
  471. if self.struct_org_logo:
  472. return self.struct_org_logo
  473. else:
  474. layout_settings = LayoutSettings.for_site(self.get_site())
  475. if layout_settings.logo:
  476. return layout_settings.logo
  477. return None
  478. def get_template(self, request, *args, **kwargs):
  479. """
  480. Override parent to serve different templates based on querystring.
  481. """
  482. if 'amp' in request.GET and hasattr(self, 'amp_template'):
  483. seo_settings = SeoSettings.for_request(request)
  484. if seo_settings.amp_pages:
  485. if request.is_ajax():
  486. return self.ajax_template or self.amp_template
  487. return self.amp_template
  488. if self.custom_template:
  489. return self.custom_template
  490. return super(CoderedPage, self).get_template(request, args, kwargs)
  491. def get_index_children(self):
  492. """
  493. Returns query of subpages as defined by `index_` variables.
  494. """
  495. if self.index_query_pagemodel:
  496. querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
  497. query = querymodel.objects.child_of(self).live()
  498. else:
  499. query = self.get_children().live()
  500. if self.index_order_by:
  501. return query.order_by(self.index_order_by)
  502. return query
  503. def get_content_walls(self, check_child_setting=True):
  504. current_content_walls = []
  505. if check_child_setting:
  506. for wall in self.content_walls:
  507. if wall.value['show_content_wall_on_children']:
  508. current_content_walls.append(wall.value)
  509. else:
  510. current_content_walls = self.content_walls
  511. try:
  512. return list(current_content_walls) + self.get_parent().specific.get_content_walls()
  513. except AttributeError:
  514. return list(current_content_walls)
  515. def get_context(self, request, *args, **kwargs):
  516. """
  517. Add child pages and paginated child pages to context.
  518. """
  519. context = super().get_context(request)
  520. if self.index_show_subpages:
  521. # Get child pages
  522. all_children = self.get_index_children()
  523. # Filter by classifier terms if applicable
  524. if len(request.GET) > 0 and self.index_classifiers.exists():
  525. # Look up comma separated ClassifierTerm slugs i.e. `/?c=term1-slug,term2-slug`
  526. terms = []
  527. get_c = request.GET.get('c', None)
  528. if get_c:
  529. terms = get_c.split(',')
  530. # Else look up individual querystrings i.e. `/?classifier-slug=term1-slug`
  531. else:
  532. for classifier in self.index_classifiers.all().only('slug'):
  533. get_term = request.GET.get(classifier.slug, None)
  534. if get_term:
  535. terms.append(get_term)
  536. if len(terms) > 0:
  537. selected_terms = ClassifierTerm.objects.filter(slug__in=terms)
  538. context['selected_terms'] = selected_terms
  539. if len(selected_terms) > 0:
  540. try:
  541. for term in selected_terms:
  542. all_children = all_children.filter(classifier_terms=term)
  543. except AttributeError:
  544. logger.warning(
  545. "Tried to filter by ClassifierTerm, but <%s.%s ('%s')>.get_index_children() did not return a queryset or is not a queryset of CoderedPage models.", # noqa
  546. self._meta.app_label,
  547. self.__class__.__name__,
  548. self.title
  549. )
  550. paginator = Paginator(all_children, self.index_num_per_page)
  551. pagenum = request.GET.get('p', 1)
  552. try:
  553. paged_children = paginator.page(pagenum)
  554. except (PageNotAnInteger, EmptyPage, InvalidPage) as e: # noqa
  555. paged_children = paginator.page(1)
  556. context['index_paginated'] = paged_children
  557. context['index_children'] = all_children
  558. context['content_walls'] = self.get_content_walls(check_child_setting=False)
  559. return context
  560. ###############################################################################
  561. # Abstract pages providing pre-built common website functionality, suitable for subclassing.
  562. # These are abstract so subclasses can override fields if desired.
  563. ###############################################################################
  564. class CoderedWebPage(CoderedPage):
  565. """
  566. Provides a body and body-related functionality.
  567. This is abstract so that subclasses can override the body StreamField.
  568. """
  569. class Meta:
  570. verbose_name = _('CodeRed Web Page')
  571. abstract = True
  572. template = 'coderedcms/pages/web_page.html'
  573. # Child pages should override based on what blocks they want in the body.
  574. # Default is LAYOUT_STREAMBLOCKS which is the fullest editor experience.
  575. body = StreamField(LAYOUT_STREAMBLOCKS, null=True, blank=True)
  576. # Search fields
  577. search_fields = (
  578. CoderedPage.search_fields +
  579. [index.SearchField('body')]
  580. )
  581. # Panels
  582. body_content_panels = [
  583. StreamFieldPanel('body'),
  584. ]
  585. @property
  586. def body_preview(self):
  587. """
  588. A shortened version of the body without HTML tags.
  589. """
  590. # add spaces between tags for legibility
  591. body = str(self.body).replace('>', '> ')
  592. # strip tags
  593. body = strip_tags(body)
  594. # truncate and add ellipses
  595. preview = body[:200] + "..." if len(body) > 200 else body
  596. return mark_safe(preview)
  597. @property
  598. def page_ptr(self):
  599. """
  600. Overwrite of `page_ptr` to make it compatible with wagtailimportexport.
  601. """
  602. return self.base_page_ptr
  603. @page_ptr.setter
  604. def page_ptr(self, value):
  605. self.base_page_ptr = value
  606. class CoderedArticlePage(CoderedWebPage):
  607. """
  608. Article, suitable for news or blog content.
  609. """
  610. class Meta:
  611. verbose_name = _('CodeRed Article')
  612. abstract = True
  613. template = 'coderedcms/pages/article_page.html'
  614. amp_template = 'coderedcms/pages/article_page.amp.html'
  615. # Override body to provide simpler content
  616. body = StreamField(CONTENT_STREAMBLOCKS, null=True, blank=True)
  617. caption = models.CharField(
  618. max_length=255,
  619. blank=True,
  620. verbose_name=_('Caption'),
  621. )
  622. author = models.ForeignKey(
  623. settings.AUTH_USER_MODEL,
  624. null=True,
  625. blank=True,
  626. editable=True,
  627. on_delete=models.SET_NULL,
  628. verbose_name=_('Author'),
  629. )
  630. author_display = models.CharField(
  631. max_length=255,
  632. blank=True,
  633. verbose_name=_('Display author as'),
  634. help_text=_('Override how the author’s name displays on this article.'),
  635. )
  636. date_display = models.DateField(
  637. null=True,
  638. blank=True,
  639. verbose_name=_('Display publish date'),
  640. )
  641. def get_author_name(self):
  642. """
  643. Gets author name using a fallback.
  644. """
  645. if self.author_display:
  646. return self.author_display
  647. if self.author:
  648. return self.author.get_full_name()
  649. return ''
  650. def get_pub_date(self):
  651. """
  652. Gets published date.
  653. """
  654. if self.date_display:
  655. return self.date_display
  656. return ''
  657. def get_description(self):
  658. """
  659. Gets the description using a fallback.
  660. """
  661. if self.search_description:
  662. return self.search_description
  663. if self.caption:
  664. return self.caption
  665. if self.body_preview:
  666. return self.body_preview
  667. return ''
  668. search_fields = (
  669. CoderedWebPage.search_fields +
  670. [
  671. index.SearchField('caption', boost=2),
  672. index.FilterField('author'),
  673. index.FilterField('author_display'),
  674. index.FilterField('date_display'),
  675. ]
  676. )
  677. content_panels = CoderedWebPage.content_panels + [
  678. FieldPanel('caption'),
  679. MultiFieldPanel(
  680. [
  681. FieldPanel('author'),
  682. FieldPanel('author_display'),
  683. FieldPanel('date_display'),
  684. ],
  685. _('Publication Info')
  686. )
  687. ]
  688. class CoderedArticleIndexPage(CoderedWebPage):
  689. """
  690. Shows a list of article sub-pages.
  691. """
  692. class Meta:
  693. verbose_name = _('CodeRed Article Index Page')
  694. abstract = True
  695. template = 'coderedcms/pages/article_index_page.html'
  696. index_show_subpages_default = True
  697. index_order_by_default = '-date_display'
  698. index_order_by_choices = (('-date_display', 'Display publish date, newest first'),) + \
  699. CoderedWebPage.index_order_by_choices
  700. show_images = models.BooleanField(
  701. default=True,
  702. verbose_name=_('Show images'),
  703. )
  704. show_captions = models.BooleanField(
  705. default=True,
  706. )
  707. show_meta = models.BooleanField(
  708. default=True,
  709. verbose_name=_('Show author and date info'),
  710. )
  711. show_preview_text = models.BooleanField(
  712. default=True,
  713. verbose_name=_('Show preview text'),
  714. )
  715. layout_panels = CoderedWebPage.layout_panels + [
  716. MultiFieldPanel(
  717. [
  718. FieldPanel('show_images'),
  719. FieldPanel('show_captions'),
  720. FieldPanel('show_meta'),
  721. FieldPanel('show_preview_text'),
  722. ],
  723. heading=_('Child page display')
  724. ),
  725. ]
  726. class CoderedEventPage(CoderedWebPage, BaseEvent):
  727. class Meta:
  728. verbose_name = _('CodeRed Event')
  729. abstract = True
  730. calendar_color = ColorField(
  731. blank=True,
  732. help_text=_('The color that the event will use when displayed on a calendar.'),
  733. )
  734. address = models.TextField(
  735. blank=True,
  736. verbose_name=_("Address")
  737. )
  738. content_panels = CoderedWebPage.content_panels + [
  739. MultiFieldPanel(
  740. [
  741. FieldPanel('calendar_color'),
  742. FieldPanel('address'),
  743. ],
  744. heading=_('Event information')
  745. ),
  746. InlinePanel(
  747. 'occurrences',
  748. min_num=1,
  749. heading=_("Dates and times"),
  750. ),
  751. ]
  752. @property
  753. def upcoming_occurrences(self):
  754. """
  755. Returns the next x occurrences for this event.
  756. By default, it returns 10.
  757. """
  758. return self.query_occurrences(num_of_instances_to_return=10)
  759. @property
  760. def most_recent_occurrence(self):
  761. """
  762. Gets the next upcoming, or last occurrence if the event has no more occurrences.
  763. """
  764. try:
  765. noc = self.next_occurrence()
  766. if noc:
  767. return noc
  768. aoc = []
  769. for occurrence in self.occurrences.all():
  770. aoc += [instance for instance in occurrence.all_occurrences()]
  771. if len(aoc) > 0:
  772. return aoc[-1] # last one in the list
  773. except AttributeError:
  774. # Triggers when a preview is initiated on an
  775. # EventPage because it uses a FakeQuerySet object.
  776. # Here we manually compute the next_occurrence
  777. occurrences = [e.next_occurrence() for e in self.occurrences.all()]
  778. if occurrences:
  779. return sorted(occurrences, key=lambda tup: tup[0])[0]
  780. def query_occurrences(self, num_of_instances_to_return=None, **kwargs):
  781. """
  782. Returns a list of all upcoming event instances for the specified query.
  783. For more information on what you can query with, visit
  784. https://github.com/gregplaysguitar/django-eventtools
  785. """
  786. event_instances = []
  787. occurrence_kwargs = {
  788. 'from_date': kwargs.get('from_date', timezone.now().date())
  789. }
  790. if 'limit' in kwargs:
  791. if kwargs['limit'] is not None:
  792. # Limit the number of event instances that will be
  793. # generated per occurrence rule to 10, if not otherwise specified.
  794. occurrence_kwargs['limit'] = kwargs.get('limit', 10)
  795. # For each occurrence rule in all of the occurrence rules for this event.
  796. for occurrence in self.occurrences.all():
  797. # Add the qualifying generated event instances to the list.
  798. event_instances += [
  799. instance for instance in occurrence.all_occurrences(**occurrence_kwargs)]
  800. # Sort all the events by the date that they start
  801. event_instances.sort(key=lambda d: d[0])
  802. # Return the event instances, possibly spliced if num_instances_to_return is set.
  803. return event_instances[:num_of_instances_to_return] if num_of_instances_to_return else event_instances # noqa
  804. def convert_to_ical_format(self, dt_start=None, dt_end=None, occurrence=None):
  805. ical_event = ICalEvent()
  806. ical_event.add('summary', self.title)
  807. if self.address:
  808. ical_event.add('location', self.address)
  809. if dt_start:
  810. ical_event.add('dtstart', dt_start)
  811. if dt_end:
  812. ical_event.add('dtend', dt_end)
  813. if occurrence:
  814. freq = occurrence.repeat.split(":")[1] if occurrence.repeat else None
  815. repeat_until = occurrence.repeat_until.strftime(
  816. "%Y%m%dT000000Z") if occurrence.repeat_until else None
  817. ical_event.add('dtstart', occurrence.start)
  818. if occurrence.end:
  819. ical_event.add('dtend', occurrence.end)
  820. if freq:
  821. ical_event.add('RRULE', freq, encode=False)
  822. if repeat_until:
  823. ical_event.add('until', repeat_until)
  824. return ical_event
  825. def create_single_ical(self, dt_start, dt_end=None):
  826. return self.convert_to_ical_format(dt_start=dt_start, dt_end=dt_end)
  827. def create_recurring_ical(self):
  828. events = []
  829. for occurrence in self.occurrences.all():
  830. events.append(self.convert_to_ical_format(occurrence=occurrence))
  831. return events
  832. class DefaultCalendarViewChoices():
  833. MONTH = 'month'
  834. AGENDA_WEEK = 'agendaWeek'
  835. AGENDA_DAY = 'agendaDay'
  836. LIST_MONTH = 'listMonth'
  837. CHOICES = (
  838. ('', _('No calendar')),
  839. (MONTH, _('Monthly Calendar')),
  840. (AGENDA_WEEK, _('Weekly Calendar')),
  841. (AGENDA_DAY, _('Daily Calendar')),
  842. (LIST_MONTH, _('Calendar List View')),
  843. )
  844. class CoderedEventIndexPage(CoderedWebPage):
  845. """
  846. Shows a list of event sub-pages.
  847. """
  848. class Meta:
  849. verbose_name = _('CodeRed Event Index Page')
  850. abstract = True
  851. template = 'coderedcms/pages/event_index_page.html'
  852. index_show_subpages_default = True
  853. index_order_by_default = 'next_occurrence'
  854. index_order_by_choices = (
  855. ('next_occurrence', 'Display next occurrence, soonest first'),
  856. ) + CoderedWebPage.index_order_by_choices
  857. default_calendar_view = models.CharField(
  858. blank=True,
  859. choices=DefaultCalendarViewChoices.CHOICES,
  860. max_length=255,
  861. verbose_name=_('Calendar Style'),
  862. help_text=_('The default look of the calendar on this page.')
  863. )
  864. layout_panels = CoderedWebPage.layout_panels + [
  865. FieldPanel('default_calendar_view'),
  866. ]
  867. def get_index_children(self):
  868. if self.index_query_pagemodel and self.index_order_by == 'next_occurrence':
  869. querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
  870. qs = querymodel.objects.child_of(self).live()
  871. # filter out events that don't have a next_occurrence
  872. upcoming = []
  873. for event in qs.all():
  874. if event.next_occurrence():
  875. upcoming.append(event)
  876. # sort the events by next_occurrence
  877. return sorted(upcoming, key=lambda e: e.next_occurrence())
  878. return super().get_index_children()
  879. def get_calendar_events(self, start, end):
  880. # start with all child events, regardless of get_index_children rules.
  881. querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
  882. qs = querymodel.objects.child_of(self).live()
  883. event_instances = []
  884. for event in qs:
  885. occurrences = event.query_occurrences(limit=None, from_date=start, to_date=end)
  886. for occurrence in occurrences:
  887. event_data = {
  888. 'title': event.title,
  889. 'start': occurrence[0].strftime('%Y-%m-%dT%H:%M:%S'),
  890. 'end': occurrence[1].strftime('%Y-%m-%dT%H:%M:%S') if occurrence[1] else "",
  891. 'description': "",
  892. }
  893. if event.url:
  894. event_data['url'] = event.url
  895. if event.calendar_color:
  896. event_data['backgroundColor'] = event.calendar_color
  897. event_instances.append(event_data)
  898. return event_instances
  899. class CoderedEventOccurrence(Orderable, BaseOccurrence):
  900. class Meta:
  901. verbose_name = _('CodeRed Event Occurrence')
  902. abstract = True
  903. class CoderedFormMixin(models.Model):
  904. class Meta:
  905. abstract = True
  906. submissions_list_view_class = CoderedSubmissionsListView
  907. encoder = DjangoJSONEncoder
  908. # Custom codered fields
  909. to_address = models.CharField(
  910. max_length=255,
  911. blank=True,
  912. verbose_name=_('Email form submissions to'),
  913. help_text=_('Optional - email form submissions to this address. Separate multiple addresses by comma.'), # noqa
  914. )
  915. reply_address = models.CharField(
  916. max_length=255,
  917. blank=True,
  918. verbose_name=_('Reply-to address'),
  919. help_text=_('Optional - to reply to the submitter, specify the email field here. For example, if a form field above is labeled "Your Email", enter: {{ your_email }}'), # noqa
  920. )
  921. subject = models.CharField(
  922. max_length=255,
  923. blank=True,
  924. verbose_name=_('Subject'),
  925. )
  926. save_to_database = models.BooleanField(
  927. default=True,
  928. verbose_name=_('Save form submissions'),
  929. help_text=_('Submissions are saved to database and can be exported at any time.')
  930. )
  931. thank_you_page = models.ForeignKey(
  932. 'wagtailcore.Page',
  933. null=True,
  934. blank=True,
  935. on_delete=models.SET_NULL,
  936. related_name='+',
  937. verbose_name=_('Thank you page'),
  938. help_text=_('The page users are redirected to after submitting the form.'),
  939. )
  940. button_text = models.CharField(
  941. max_length=255,
  942. default=_('Submit'),
  943. verbose_name=_('Button text'),
  944. )
  945. button_style = models.CharField(
  946. blank=True,
  947. choices=cr_settings['FRONTEND_BTN_STYLE_CHOICES'],
  948. default=cr_settings["FRONTEND_BTN_STYLE_DEFAULT"],
  949. max_length=255,
  950. verbose_name=_('Button style'),
  951. )
  952. button_size = models.CharField(
  953. blank=True,
  954. choices=cr_settings['FRONTEND_BTN_SIZE_CHOICES'],
  955. default=cr_settings["FRONTEND_BTN_SIZE_DEFAULT"],
  956. max_length=255,
  957. verbose_name=_('Button Size'),
  958. )
  959. button_css_class = models.CharField(
  960. max_length=255,
  961. blank=True,
  962. verbose_name=_('Button CSS class'),
  963. help_text=_('Custom CSS class applied to the submit button.'),
  964. )
  965. form_css_class = models.CharField(
  966. max_length=255,
  967. blank=True,
  968. verbose_name=_('Form CSS Class'),
  969. help_text=_('Custom CSS class applied to <form> element.'),
  970. )
  971. form_id = models.CharField(
  972. max_length=255,
  973. blank=True,
  974. verbose_name=_('Form ID'),
  975. help_text=_('Custom ID applied to <form> element.'),
  976. )
  977. form_golive_at = models.DateTimeField(
  978. blank=True,
  979. null=True,
  980. verbose_name=_('Form go live date/time'),
  981. help_text=_('Date and time when the FORM goes live on the page.'),
  982. )
  983. form_expire_at = models.DateTimeField(
  984. blank=True,
  985. null=True,
  986. verbose_name=_('Form expiry date/time'),
  987. help_text=_('Date and time when the FORM will no longer be available on the page.'),
  988. )
  989. spam_protection = models.BooleanField(
  990. default=True,
  991. verbose_name=_('Spam Protection'),
  992. help_text=_('When enabled, the CMS will filter out spam form submissions for this page.')
  993. )
  994. body_content_panels = [
  995. MultiFieldPanel(
  996. [
  997. PageChooserPanel('thank_you_page'),
  998. FieldPanel('button_text'),
  999. FieldPanel('button_style'),
  1000. FieldPanel('button_size'),
  1001. FieldPanel('button_css_class'),
  1002. FieldPanel('form_css_class'),
  1003. FieldPanel('form_id'),
  1004. ],
  1005. _('Form Settings')
  1006. ),
  1007. MultiFieldPanel(
  1008. [
  1009. FieldPanel('save_to_database'),
  1010. FieldPanel('to_address'),
  1011. FieldPanel('reply_address'),
  1012. FieldPanel('subject'),
  1013. ],
  1014. _('Form Submissions')
  1015. ),
  1016. ]
  1017. settings_panels = [
  1018. MultiFieldPanel(
  1019. [
  1020. FieldRowPanel(
  1021. [
  1022. FieldPanel('form_golive_at'),
  1023. FieldPanel('form_expire_at'),
  1024. ],
  1025. classname='label-above',
  1026. ),
  1027. ],
  1028. _('Form Scheduled Publishing'),
  1029. ),
  1030. FieldPanel('spam_protection')
  1031. ]
  1032. @property
  1033. def form_live(self):
  1034. """
  1035. A boolean on whether or not the <form> element should be shown on the page.
  1036. """
  1037. return (self.form_golive_at is None or self.form_golive_at <= timezone.now()) and \
  1038. (self.form_expire_at is None or self.form_expire_at >= timezone.now())
  1039. def get_landing_page_template(self, request, *args, **kwargs):
  1040. return self.landing_page_template
  1041. def process_data(self, form, request):
  1042. processed_data = {}
  1043. # Handle file uploads
  1044. for key, val in form.cleaned_data.items():
  1045. if type(val) == InMemoryUploadedFile or type(val) == TemporaryUploadedFile:
  1046. # Save the file and get its URL
  1047. directory = request.session.session_key
  1048. storage = self.get_storage()
  1049. Path(storage.path(directory)).mkdir(parents=True,
  1050. exist_ok=True)
  1051. path = storage.get_available_name(
  1052. str(Path(directory) / val.name))
  1053. with storage.open(path, 'wb+') as destination:
  1054. for chunk in val.chunks():
  1055. destination.write(chunk)
  1056. processed_data[key] = "{0}{1}".format(cr_settings['PROTECTED_MEDIA_URL'], path)
  1057. else:
  1058. processed_data[key] = val
  1059. return processed_data
  1060. def get_storage(self):
  1061. return FileSystemStorage(
  1062. location=cr_settings['PROTECTED_MEDIA_ROOT'],
  1063. base_url=cr_settings['PROTECTED_MEDIA_URL']
  1064. )
  1065. def process_form_submission(self, request, form, form_submission, processed_data):
  1066. # Save to database
  1067. if self.save_to_database:
  1068. form_submission.save()
  1069. # Send the mails
  1070. if self.to_address:
  1071. self.send_summary_mail(request, form, processed_data)
  1072. if self.confirmation_emails:
  1073. # Convert form data into a context.
  1074. context = Context(self.data_to_dict(processed_data, request))
  1075. # Render emails as if they are django templates.
  1076. for email in self.confirmation_emails.all():
  1077. # Build email message parameters.
  1078. message_args = {}
  1079. # From
  1080. if email.from_address:
  1081. template_from_email = Template(email.from_address)
  1082. message_args['from_email'] = template_from_email.render(context)
  1083. else:
  1084. genemail = GeneralSettings.for_request(request).from_email_address
  1085. if genemail:
  1086. message_args['from_email'] = genemail
  1087. # Reply-to
  1088. if email.reply_address:
  1089. template_reply_to = Template(email.reply_address)
  1090. message_args['reply_to'] = template_reply_to.render(context).split(',')
  1091. # CC
  1092. if email.cc_address:
  1093. template_cc = Template(email.cc_address)
  1094. message_args['cc'] = template_cc.render(context).split(',')
  1095. # BCC
  1096. if email.bcc_address:
  1097. template_bcc = Template(email.bcc_address)
  1098. message_args['bcc'] = template_bcc.render(context).split(',')
  1099. # Subject
  1100. if email.subject:
  1101. template_subject = Template(email.subject)
  1102. message_args['subject'] = template_subject.render(context)
  1103. else:
  1104. message_args['subject'] = self.title
  1105. # Body
  1106. template_body = Template(email.body)
  1107. message_args['body'] = template_body.render(context)
  1108. # To
  1109. template_to = Template(email.to_address)
  1110. message_args['to'] = template_to.render(context).split(',')
  1111. # Send email
  1112. message = EmailMessage(**message_args)
  1113. message.content_subtype = 'html'
  1114. message.send()
  1115. for fn in hooks.get_hooks('form_page_submit'):
  1116. fn(instance=self, form_submission=form_submission)
  1117. def send_summary_mail(self, request, form, processed_data):
  1118. """
  1119. Sends a form submission summary email.
  1120. """
  1121. addresses = [x.strip() for x in self.to_address.split(',')]
  1122. content = []
  1123. for key, value in self.data_to_dict(processed_data, request).items():
  1124. content.append('{0}: {1}'.format(
  1125. key.replace('_', ' ').title(),
  1126. value
  1127. ))
  1128. content = '\n-------------------- \n'.join(content)
  1129. # Build email message parameters
  1130. message_args = {
  1131. 'body': content,
  1132. 'to': addresses,
  1133. }
  1134. if self.subject:
  1135. message_args['subject'] = self.subject
  1136. else:
  1137. message_args['subject'] = self.title
  1138. genemail = GeneralSettings.for_request(request).from_email_address
  1139. if genemail:
  1140. message_args['from_email'] = genemail
  1141. if self.reply_address:
  1142. # Render reply-to field using form submission as context.
  1143. context = Context(self.data_to_dict(processed_data, request))
  1144. template_reply_to = Template(self.reply_address)
  1145. message_args['reply_to'] = template_reply_to.render(context).split(',')
  1146. # Send email
  1147. message = EmailMessage(**message_args)
  1148. message.send()
  1149. def render_landing_page(self, request, form_submission=None):
  1150. """
  1151. Renders the landing page.
  1152. You can override this method to return a different HttpResponse as
  1153. landing page. E.g. you could return a redirect to a separate page.
  1154. """
  1155. if self.thank_you_page:
  1156. return redirect(self.thank_you_page.url)
  1157. context = self.get_context(request)
  1158. context['form_submission'] = form_submission
  1159. response = render(
  1160. request,
  1161. self.get_landing_page_template(request),
  1162. context
  1163. )
  1164. return response
  1165. def data_to_dict(self, processed_data, request):
  1166. """
  1167. Converts processed form data into a dictionary suitable
  1168. for rendering in a context.
  1169. """
  1170. dictionary = {}
  1171. for key, value in processed_data.items():
  1172. new_key = key.replace('-', '_')
  1173. if isinstance(value, list):
  1174. dictionary[new_key] = ', '.join(value)
  1175. else:
  1176. dictionary[new_key] = utils.attempt_protected_media_value_conversion(request, value)
  1177. return dictionary
  1178. preview_modes = [
  1179. ('form', _('Form')),
  1180. ('landing', _('Thank you page')),
  1181. ]
  1182. def serve_preview(self, request, mode):
  1183. if mode == 'landing':
  1184. request.is_preview = True
  1185. return self.render_landing_page(request)
  1186. return super().serve_preview(request, mode)
  1187. def serve_submissions_list_view(self, request, *args, **kwargs):
  1188. """
  1189. Returns list submissions view for admin.
  1190. `list_submissions_view_class` can be set to provide custom view class.
  1191. Your class must be inherited from SubmissionsListView.
  1192. """
  1193. view = self.submissions_list_view_class.as_view()
  1194. return view(request, form_page=self, *args, **kwargs)
  1195. def get_form(self, request, *args, **kwargs):
  1196. form_class = self.get_form_class()
  1197. form_params = self.get_form_parameters()
  1198. form_params.update(kwargs)
  1199. if request.method == 'POST':
  1200. return form_class(request.POST, request.FILES, *args, **form_params)
  1201. return form_class(*args, **form_params)
  1202. def contains_spam(self, request):
  1203. """
  1204. Checks to see if the spam honeypot was filled out.
  1205. """
  1206. if request.POST.get("cr-decoy-comments", None):
  1207. return True
  1208. return False
  1209. def process_spam_request(self, form, request):
  1210. """
  1211. Called when spam is found in the request.
  1212. """
  1213. messages.error(request, self.get_spam_message())
  1214. logger.info("Detected spam submission on page: {0}\n{1}".format(self.title, vars(request)))
  1215. return self.process_form_get(form, request)
  1216. def get_spam_message(self):
  1217. return _("There was an error while processing your submission. Please try again.")
  1218. def process_form_post(self, form, request):
  1219. if form.is_valid():
  1220. processed_data = self.process_data(form, request)
  1221. form_submission = self.get_submission_class()(
  1222. form_data=json.dumps(processed_data, cls=self.encoder),
  1223. page=self,
  1224. )
  1225. self.process_form_submission(
  1226. request=request,
  1227. form=form,
  1228. form_submission=form_submission,
  1229. processed_data=processed_data)
  1230. return self.render_landing_page(request, form_submission)
  1231. return self.process_form_get(form, request)
  1232. def process_form_get(self, form, request):
  1233. context = self.get_context(request)
  1234. context['form'] = form
  1235. response = render(
  1236. request,
  1237. self.get_template(request),
  1238. context
  1239. )
  1240. return response
  1241. def serve(self, request, *args, **kwargs):
  1242. form = self.get_form(request, page=self, user=request.user)
  1243. if request.method == 'POST':
  1244. if self.spam_protection and self.contains_spam(request):
  1245. return self.process_spam_request(form, request)
  1246. return self.process_form_post(form, request)
  1247. return self.process_form_get(form, request)
  1248. class CoderedFormPage(CoderedFormMixin, CoderedWebPage):
  1249. """
  1250. This is basically a clone of wagtail.contrib.forms.models.AbstractForm
  1251. with changes in functionality and extending CoderedWebPage vs wagtailcore.Page.
  1252. """
  1253. class Meta:
  1254. verbose_name = _('CodeRed Form Page')
  1255. abstract = True
  1256. template = 'coderedcms/pages/form_page.html'
  1257. landing_page_template = 'coderedcms/pages/form_page_landing.html'
  1258. base_form_class = WagtailAdminFormPageForm
  1259. form_builder = CoderedFormBuilder
  1260. body_content_panels = [
  1261. InlinePanel('form_fields', label="Form fields"),
  1262. ] + \
  1263. CoderedWebPage.body_content_panels + \
  1264. CoderedFormMixin.body_content_panels + [
  1265. FormSubmissionsPanel(),
  1266. InlinePanel('confirmation_emails', label=_('Confirmation Emails'))
  1267. ]
  1268. settings_panels = CoderedPage.settings_panels + CoderedFormMixin.settings_panels
  1269. def __init__(self, *args, **kwargs):
  1270. super().__init__(*args, **kwargs)
  1271. if not hasattr(self, 'landing_page_template'):
  1272. name, ext = os.path.splitext(self.template)
  1273. self.landing_page_template = name + '_landing' + ext
  1274. def get_form_fields(self):
  1275. """
  1276. Form page expects `form_fields` to be declared.
  1277. If you want to change backwards relation name,
  1278. you need to override this method.
  1279. """
  1280. return self.form_fields.all()
  1281. def get_data_fields(self):
  1282. """
  1283. Returns a list of tuples with (field_name, field_label).
  1284. """
  1285. data_fields = [
  1286. ('submit_time', _('Submission date')),
  1287. ]
  1288. data_fields += [
  1289. (field.clean_name, field.label)
  1290. for field in self.get_form_fields()
  1291. ]
  1292. return data_fields
  1293. def get_form_class(self):
  1294. fb = self.form_builder(self.get_form_fields())
  1295. return fb.get_form_class()
  1296. def get_form_parameters(self):
  1297. return {}
  1298. def get_submission_class(self):
  1299. """
  1300. Returns submission class.
  1301. You can override this method to provide custom submission class.
  1302. Your class must be inherited from AbstractFormSubmission.
  1303. """
  1304. return FormSubmission
  1305. class CoderedSubmissionRevision(SubmissionRevision, models.Model):
  1306. pass
  1307. class CoderedSessionFormSubmission(SessionFormSubmission):
  1308. INCOMPLETE = 'incomplete'
  1309. COMPLETE = 'complete'
  1310. REVIEWED = 'reviewed'
  1311. APPROVED = 'approved'
  1312. REJECTED = 'rejected'
  1313. STATUSES = (
  1314. (INCOMPLETE, _('Not submitted')),
  1315. (COMPLETE, _('Complete')),
  1316. (REVIEWED, _('Under consideration')),
  1317. (APPROVED, _('Approved')),
  1318. (REJECTED, _('Rejected')),
  1319. )
  1320. status = models.CharField(max_length=10, choices=STATUSES, default=INCOMPLETE)
  1321. def create_normal_submission(self, delete_self=True):
  1322. submission_data = self.get_data()
  1323. if 'user' in submission_data:
  1324. submission_data['user'] = str(submission_data['user'])
  1325. submission = FormSubmission.objects.create(
  1326. form_data=json.dumps(submission_data, cls=StreamFormJSONEncoder),
  1327. page=self.page
  1328. )
  1329. if delete_self:
  1330. CoderedSubmissionRevision.objects.filter(submission_id=self.id).delete()
  1331. self.delete()
  1332. return submission
  1333. def render_email(self, value):
  1334. return value
  1335. def render_link(self, value):
  1336. return "{0}{1}".format(cr_settings['PROTECTED_MEDIA_URL'], value)
  1337. def render_image(self, value):
  1338. return "{0}{1}".format(cr_settings['PROTECTED_MEDIA_URL'], value)
  1339. def render_file(self, value):
  1340. return "{0}{1}".format(cr_settings['PROTECTED_MEDIA_URL'], value)
  1341. @receiver(post_save)
  1342. def create_submission_changed_revision(sender, **kwargs):
  1343. if not issubclass(sender, SessionFormSubmission):
  1344. return
  1345. submission = kwargs['instance']
  1346. created = kwargs['created']
  1347. CoderedSubmissionRevision.create_from_submission(
  1348. submission, (CoderedSubmissionRevision.CREATED if created else CoderedSubmissionRevision.CHANGED)) # noqa
  1349. @receiver(post_delete)
  1350. def create_submission_deleted_revision(sender, **kwargs):
  1351. if not issubclass(sender, CoderedSessionFormSubmission):
  1352. return
  1353. submission = kwargs['instance']
  1354. CoderedSubmissionRevision.create_from_submission(submission, SubmissionRevision.DELETED) # noqa
  1355. class CoderedStep(Step):
  1356. def get_markups_and_bound_fields(self, form):
  1357. for struct_child in self.form_fields:
  1358. block = struct_child.block
  1359. if isinstance(block, FormFieldBlock):
  1360. struct_value = struct_child.value
  1361. field_name = block.get_slug(struct_value)
  1362. yield form[field_name], 'field', struct_child
  1363. else:
  1364. yield mark_safe(struct_child), 'markup'
  1365. class CoderedSteps(Steps):
  1366. def __init__(self, page, request=None):
  1367. self.page = page
  1368. # TODO: Make it possible to change the `form_fields` attribute.
  1369. self.form_fields = page.form_fields
  1370. self.request = request
  1371. has_steps = any(isinstance(struct_child.block, FormStepBlock)
  1372. for struct_child in self.form_fields)
  1373. if has_steps:
  1374. steps = [CoderedStep(self, i, form_field)
  1375. for i, form_field in enumerate(self.form_fields)]
  1376. else:
  1377. steps = [CoderedStep(self, 0, self.form_fields)]
  1378. super(Steps, self).__init__(steps)
  1379. class CoderedStreamFormMixin(StreamFormMixin):
  1380. class Meta:
  1381. abstract = True
  1382. def get_steps(self, request=None):
  1383. if not hasattr(self, 'steps'):
  1384. steps = CoderedSteps(self, request=request)
  1385. if request is None:
  1386. return steps
  1387. self.steps = steps
  1388. return self.steps
  1389. @staticmethod
  1390. def get_submission_class():
  1391. return FormSubmission
  1392. @staticmethod
  1393. def get_session_submission_class():
  1394. return CoderedSessionFormSubmission
  1395. def get_submission(self, request):
  1396. Submission = self.get_session_submission_class()
  1397. if request.user.is_authenticated:
  1398. user_submission = Submission.objects.filter(
  1399. user=request.user, page=self).order_by('-pk').first()
  1400. if user_submission is None:
  1401. return Submission(user=request.user, page=self, form_data='[]')
  1402. return user_submission
  1403. # Custom code to ensure that anonymous users get a session key.
  1404. if not request.session.session_key:
  1405. request.session.create()
  1406. user_submission = Submission.objects.filter(
  1407. session_key=request.session.session_key, page=self
  1408. ).order_by('-pk').first()
  1409. if user_submission is None:
  1410. return Submission(session_key=request.session.session_key,
  1411. page=self, form_data='[]')
  1412. return user_submission
  1413. class CoderedStreamFormPage(CoderedFormMixin, CoderedStreamFormMixin, CoderedWebPage):
  1414. class Meta:
  1415. verbose_name = _('CodeRed Advanced Form Page')
  1416. abstract = True
  1417. template = 'coderedcms/pages/stream_form_page.html'
  1418. landing_page_template = 'coderedcms/pages/form_page_landing.html'
  1419. form_fields = StreamField(STREAMFORM_BLOCKS)
  1420. encoder = StreamFormJSONEncoder
  1421. body_content_panels = [
  1422. StreamFieldPanel('form_fields')
  1423. ] + \
  1424. CoderedFormMixin.body_content_panels + [
  1425. InlinePanel('confirmation_emails', label=_('Confirmation Emails'))
  1426. ]
  1427. def process_form_post(self, form, request):
  1428. if form.is_valid():
  1429. is_complete = self.steps.update_data()
  1430. if is_complete:
  1431. submission = self.get_submission(request)
  1432. self.process_form_submission(
  1433. request=request,
  1434. form=form,
  1435. form_submission=submission,
  1436. processed_data=submission.get_data()
  1437. )
  1438. normal_submission = submission.create_normal_submission()
  1439. return self.render_landing_page(request, normal_submission)
  1440. return HttpResponseRedirect(self.url)
  1441. return self.process_form_get(form, request)
  1442. def process_form_get(self, form, request):
  1443. return CoderedWebPage.serve(self, request)
  1444. def get_form(self, request, *args, **kwargs):
  1445. return self.get_context(request)['form']
  1446. def get_storage(self):
  1447. return FileSystemStorage(
  1448. location=cr_settings['PROTECTED_MEDIA_ROOT'],
  1449. base_url=cr_settings['PROTECTED_MEDIA_URL']
  1450. )
  1451. class CoderedLocationPage(CoderedWebPage):
  1452. """
  1453. Location, suitable for store locations or help centers.
  1454. """
  1455. class Meta:
  1456. verbose_name = _('CodeRed Location')
  1457. abstract = True
  1458. template = 'coderedcms/pages/location_page.html'
  1459. # Override body to provide simpler content
  1460. body = StreamField(CONTENT_STREAMBLOCKS, null=True, blank=True)
  1461. address = models.TextField(
  1462. blank=True,
  1463. verbose_name=_("Address")
  1464. )
  1465. latitude = models.FloatField(
  1466. blank=True,
  1467. null=True,
  1468. verbose_name=_("Latitude")
  1469. )
  1470. longitude = models.FloatField(
  1471. blank=True,
  1472. null=True,
  1473. verbose_name=_("Longitude")
  1474. )
  1475. auto_update_latlng = models.BooleanField(
  1476. default=True,
  1477. verbose_name=_("Auto Update Latitude and Longitude"),
  1478. help_text=_("If checked, automatically update the latitude and longitude when the address is updated.") # noqa
  1479. )
  1480. map_title = models.CharField(
  1481. blank=True,
  1482. max_length=255,
  1483. verbose_name=_("Map Title"),
  1484. help_text=_("If this is filled out, this is the title that will be used on the map.")
  1485. )
  1486. map_description = models.CharField(
  1487. blank=True,
  1488. max_length=255,
  1489. verbose_name=_("Map Description"),
  1490. help_text=_("If this is filled out, this is the description that will be used on the map.")
  1491. )
  1492. website = models.TextField(
  1493. blank=True,
  1494. verbose_name=_("Website")
  1495. )
  1496. phone_number = models.CharField(
  1497. blank=True,
  1498. max_length=255,
  1499. verbose_name=_("Phone Number")
  1500. )
  1501. content_panels = CoderedWebPage.content_panels + [
  1502. FieldPanel('address'),
  1503. FieldPanel('website'),
  1504. FieldPanel('phone_number'),
  1505. ]
  1506. layout_panels = CoderedWebPage.layout_panels + [
  1507. MultiFieldPanel(
  1508. [
  1509. FieldPanel('map_title'),
  1510. FieldPanel('map_description'),
  1511. ],
  1512. heading=_('Map Layout')
  1513. ),
  1514. ]
  1515. settings_panels = CoderedWebPage.settings_panels + [
  1516. MultiFieldPanel(
  1517. [
  1518. FieldPanel('auto_update_latlng'),
  1519. FieldPanel('latitude'),
  1520. FieldPanel('longitude'),
  1521. ],
  1522. heading=_("Location Settings")
  1523. ),
  1524. ]
  1525. @property
  1526. def geojson_name(self):
  1527. return self.map_title or self.title
  1528. @property
  1529. def geojson_description(self):
  1530. return self.map_description
  1531. @property
  1532. def render_pin_description(self):
  1533. return render_to_string(
  1534. 'coderedcms/includes/map_pin_description.html',
  1535. {
  1536. 'page': self
  1537. }
  1538. )
  1539. @property
  1540. def render_list_description(self):
  1541. return render_to_string(
  1542. 'coderedcms/includes/map_list_description.html',
  1543. {
  1544. 'page': self
  1545. }
  1546. )
  1547. def to_geojson(self):
  1548. return {
  1549. "type": "Feature",
  1550. "geometry": {
  1551. "type": "Point",
  1552. "coordinates": [self.longitude, self.latitude]
  1553. },
  1554. "properties": {
  1555. "list_description": self.render_list_description,
  1556. "pin_description": self.render_pin_description
  1557. }
  1558. }
  1559. def save(self, *args, **kwargs):
  1560. if self.auto_update_latlng and GoogleApiSettings.for_site(
  1561. Site.objects.get(is_default_site=True)
  1562. ).google_maps_api_key:
  1563. try:
  1564. g = geocoder.google(self.address, key=GoogleApiSettings.for_site(
  1565. Site.objects.get(is_default_site=True)
  1566. ).google_maps_api_key)
  1567. self.latitude = g.latlng[0]
  1568. self.longitude = g.latlng[1]
  1569. except TypeError:
  1570. # Raised if google denied the request
  1571. pass
  1572. return super(CoderedLocationPage, self).save(*args, **kwargs)
  1573. def get_context(self, request, *args, **kwargs):
  1574. context = super().get_context(request)
  1575. context['google_api_key'] = GoogleApiSettings.for_site(
  1576. Site.objects.get(is_default_site=True)
  1577. ).google_maps_api_key
  1578. return context
  1579. class CoderedLocationIndexPage(CoderedWebPage):
  1580. """
  1581. Shows a map view of the children CoderedLocationPage.
  1582. """
  1583. class Meta:
  1584. verbose_name = _('CodeRed Location Index Page')
  1585. abstract = True
  1586. template = 'coderedcms/pages/location_index_page.html'
  1587. index_show_subpages_default = True
  1588. center_latitude = models.FloatField(
  1589. null=True,
  1590. blank=True,
  1591. help_text=_('The default latitude you want the map set to.'),
  1592. default=0
  1593. )
  1594. center_longitude = models.FloatField(
  1595. null=True,
  1596. blank=True,
  1597. help_text=_('The default longitude you want the map set to.'),
  1598. default=0
  1599. )
  1600. zoom = models.IntegerField(
  1601. default=8,
  1602. validators=[
  1603. MaxValueValidator(20),
  1604. MinValueValidator(1),
  1605. ],
  1606. help_text=_("Requires API key to use zoom. 1: World, 5: Landmass/continent, 10: City, 15: Streets, 20: Buildings") # noqa
  1607. )
  1608. layout_panels = CoderedWebPage.layout_panels + [
  1609. MultiFieldPanel(
  1610. [
  1611. FieldPanel('center_latitude'),
  1612. FieldPanel('center_longitude'),
  1613. FieldPanel('zoom'),
  1614. ],
  1615. heading=_('Map Display')
  1616. ),
  1617. ]
  1618. def geojson_data(self, viewport=None):
  1619. """
  1620. function that will return all locations under this index as geoJSON compliant data.
  1621. It is filtered by a latitude/longitude viewport if given.
  1622. viewport is a string in the format of :
  1623. 'southwest.latitude,southwest.longitude|northeast.latitude,northeast.longitude'
  1624. An example viewport that covers Cleveland, OH would look like this:
  1625. '41.354912150983964,-81.95331736661791|41.663427748126935,-81.45206614591478'
  1626. """
  1627. qs = self.get_index_children().live()
  1628. if viewport:
  1629. southwest, northeast = viewport.split('|')
  1630. southwest = [float(x) for x in southwest.split(',')]
  1631. northeast = [float(x) for x in northeast.split(',')]
  1632. qs = qs.filter(
  1633. latitude__gte=southwest[0],
  1634. latitude__lte=northeast[0],
  1635. longitude__gte=southwest[1],
  1636. longitude__lte=northeast[1]
  1637. )
  1638. return {
  1639. "type": "FeatureCollection",
  1640. "features": [
  1641. location.to_geojson() for location in qs
  1642. ]
  1643. }
  1644. def serve(self, request, *args, **kwargs):
  1645. data_format = request.GET.get('data-format', None)
  1646. if data_format == 'geojson':
  1647. return self.serve_geojson(request, *args, **kwargs)
  1648. return super().serve(request, *args, **kwargs)
  1649. def serve_geojson(self, request, *args, **kwargs):
  1650. viewport = request.GET.get('viewport', None)
  1651. return JsonResponse(self.geojson_data(viewport=viewport))
  1652. def get_context(self, request, *args, **kwargs):
  1653. context = super().get_context(request)
  1654. context['google_api_key'] = GoogleApiSettings.for_site(
  1655. Site.objects.get(is_default_site=True)
  1656. ).google_maps_api_key
  1657. return context