12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580 |
- """
- Base and abstract pages used in CodeRed CMS.
- """
- import json
- import os
- import geocoder
- from django.conf import settings
- from django.core.files.uploadedfile import InMemoryUploadedFile, TemporaryUploadedFile
- from django.core.files.storage import FileSystemStorage
- from django.core.mail import send_mail, EmailMessage
- from django.core.paginator import Paginator
- from django.core.serializers.json import DjangoJSONEncoder
- from django.core.validators import MaxValueValidator, MinValueValidator
- from django.db import models
- from django.http import JsonResponse
- from django.shortcuts import render, redirect
- from django.template import Context, Template
- from django.template.loader import render_to_string
- from django.utils import timezone
- from django.utils.html import strip_tags
- from django.utils.safestring import mark_safe
- from django.utils.translation import ugettext_lazy as _
- from eventtools.models import BaseEvent, BaseOccurrence
- from icalendar import Event as ICalEvent
- from modelcluster.fields import ParentalKey
- from modelcluster.tags import ClusterTaggableManager
- from taggit.models import TaggedItemBase
- from wagtail.admin.edit_handlers import (
- HelpPanel,
- FieldPanel,
- FieldRowPanel,
- InlinePanel,
- MultiFieldPanel,
- ObjectList,
- PageChooserPanel,
- StreamFieldPanel,
- TabbedInterface)
- from wagtail.core import hooks
- from wagtail.core.fields import StreamField
- from wagtail.core.models import Orderable, PageBase, Page, Site
- from wagtail.core.utils import resolve_model_string
- from wagtail.contrib.forms.edit_handlers import FormSubmissionsPanel
- from wagtail.contrib.forms.forms import WagtailAdminFormPageForm
- from wagtail.images.edit_handlers import ImageChooserPanel
- from wagtail.contrib.forms.models import FormSubmission
- from wagtail.search import index
- from wagtailcache.cache import WagtailCacheMixin
- from coderedcms import schema, utils
- from coderedcms.blocks import (
- CONTENT_STREAMBLOCKS,
- LAYOUT_STREAMBLOCKS,
- ContentWallBlock,
- OpenHoursBlock,
- StructuredDataActionBlock)
- from coderedcms.fields import ColorField
- from coderedcms.forms import CoderedFormBuilder, CoderedSubmissionsListView
- from coderedcms.models.wagtailsettings_models import GeneralSettings, LayoutSettings, SeoSettings, GoogleApiSettings
- from coderedcms.settings import cr_settings
- CODERED_PAGE_MODELS = []
- def get_page_models():
- return CODERED_PAGE_MODELS
- class CoderedPageMeta(PageBase):
- def __init__(cls, name, bases, dct):
- super().__init__(name, bases, dct)
- if 'amp_template' not in dct:
- cls.amp_template = None
- if 'search_db_include' not in dct:
- cls.search_db_include = False
- if 'search_db_boost' not in dct:
- cls.search_db_boost = 0
- if 'search_filterable' not in dct:
- cls.search_filterable = False
- if 'search_name' not in dct:
- cls.search_name = cls._meta.verbose_name
- if 'search_name_plural' not in dct:
- cls.search_name_plural = cls._meta.verbose_name_plural
- if 'search_template' not in dct:
- cls.search_template = 'coderedcms/pages/search_result.html'
- if not cls._meta.abstract:
- CODERED_PAGE_MODELS.append(cls)
- class CoderedTag(TaggedItemBase):
- class Meta:
- verbose_name = _('CodeRed Tag')
- content_object = ParentalKey('coderedcms.CoderedPage', related_name='tagged_items')
- class CoderedPage(WagtailCacheMixin, Page, metaclass=CoderedPageMeta):
- """
- General use page with caching, templating, and SEO functionality.
- All pages should inherit from this.
- """
- class Meta:
- verbose_name = _('CodeRed Page')
- # Do not allow this page type to be created in wagtail admin
- is_creatable = False
- # Templates
- # The page will render the following templates under certain conditions:
- #
- # template = ''
- # amp_template = ''
- # ajax_template = ''
- # search_template = ''
- ###############
- # Content fields
- ###############
- cover_image = models.ForeignKey(
- 'wagtailimages.Image',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+',
- verbose_name=_('Cover image'),
- )
- ###############
- # Index fields
- ###############
- # Subclasses can override this to enabled index features by default.
- index_show_subpages_default = False
- # Subclasses can override this to query on a specific
- # page model, rather than the default wagtail Page.
- index_query_pagemodel = 'wagtailcore.Page'
- # Subclasses can override these fields to enable custom
- # ordering based on specific subpage fields.
- index_order_by_default = ''
- index_order_by_choices = (
- ('', _('Default Ordering')),
- ('-first_published_at', _('Date first published, newest to oldest')),
- ('first_published_at', _('Date first published, oldest to newest')),
- ('-last_published_at', _('Date updated, newest to oldest')),
- ('last_published_at', _('Date updated, oldest to newest')),
- ('title', _('Title, alphabetical')),
- ('-title', _('Title, reverse alphabetical')),
- )
- index_show_subpages = models.BooleanField(
- default=index_show_subpages_default,
- verbose_name=_('Show list of child pages')
- )
- index_order_by = models.CharField(
- max_length=255,
- choices=index_order_by_choices,
- default=index_order_by_default,
- verbose_name=_('Order child pages by'),
- blank=True,
- )
- index_num_per_page = models.PositiveIntegerField(
- default=10,
- verbose_name=_('Number per page'),
- )
- tags = ClusterTaggableManager(
- through=CoderedTag,
- verbose_name='Tags',
- blank=True,
- help_text=_('Used to categorize your pages.')
- )
- ###############
- # Layout fields
- ###############
- custom_template = models.CharField(
- blank=True,
- max_length=255,
- choices=None,
- verbose_name=_('Template')
- )
- ###############
- # SEO fields
- ###############
- og_image = models.ForeignKey(
- 'wagtailimages.Image',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+',
- verbose_name=_('Open Graph preview image'),
- 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')
- )
- struct_org_type = models.CharField(
- default='',
- blank=True,
- max_length=255,
- choices=schema.SCHEMA_ORG_CHOICES,
- verbose_name=_('Organization type'),
- help_text=_('If blank, no structured data will be used on this page.')
- )
- struct_org_name = models.CharField(
- default='',
- blank=True,
- max_length=255,
- verbose_name=_('Organization name'),
- help_text=_('Leave blank to use the site name in Settings > Sites')
- )
- struct_org_logo = models.ForeignKey(
- 'wagtailimages.Image',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+',
- verbose_name=_('Organization logo'),
- help_text=_('Leave blank to use the logo in Settings > Layout > Logo')
- )
- struct_org_image = models.ForeignKey(
- 'wagtailimages.Image',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+',
- verbose_name=_('Photo of Organization'),
- help_text=_('A photo of the facility. This photo will be cropped to 1:1, 4:3, and 16:9 aspect ratios automatically.')
- )
- struct_org_phone = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('Telephone number'),
- help_text=_('Include country code for best results. For example: +1-216-555-8000')
- )
- struct_org_address_street = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('Street address'),
- help_text=_('House number and street. For example, 55 Public Square Suite 1710')
- )
- struct_org_address_locality = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('City'),
- help_text=_('City or locality. For example, Cleveland')
- )
- struct_org_address_region = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('State'),
- help_text=_('State, province, county, or region. For example, OH')
- )
- struct_org_address_postal = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('Postal code'),
- help_text=_('Zip or postal code. For example, 44113')
- )
- struct_org_address_country = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_('Country'),
- 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')
- )
- struct_org_geo_lat = models.DecimalField(
- blank=True,
- null=True,
- max_digits=10,
- decimal_places=8,
- verbose_name=_('Geographic latitude')
- )
- struct_org_geo_lng = models.DecimalField(
- blank=True,
- null=True,
- max_digits=10,
- decimal_places=8,
- verbose_name=_('Geographic longitude')
- )
- struct_org_hours = StreamField(
- [
- ('hours', OpenHoursBlock()),
- ],
- blank=True,
- verbose_name=_('Hours of operation')
- )
- struct_org_actions = StreamField(
- [
- ('actions', StructuredDataActionBlock())
- ],
- blank=True,
- verbose_name=_('Actions')
- )
- struct_org_extra_json = models.TextField(
- blank=True,
- verbose_name=_('Additional Organization markup'),
- help_text=_('Additional JSON-LD inserted into the Organization dictionary. Must be properties of https://schema.org/Organization or the selected organization type.')
- )
- ###############
- # Settings
- ###############
- content_walls = StreamField(
- [
- ('content_wall', ContentWallBlock())
- ],
- blank=True,
- verbose_name=_('Content Walls')
- )
- ###############
- # Search
- ###############
- search_fields = [
- index.SearchField('title', partial_match=True, boost=3),
- index.SearchField('seo_title', partial_match=True, boost=3),
- index.SearchField('search_description', boost=2),
- index.FilterField('title'),
- index.FilterField('id'),
- index.FilterField('live'),
- index.FilterField('owner'),
- index.FilterField('content_type'),
- index.FilterField('path'),
- index.FilterField('depth'),
- index.FilterField('locked'),
- index.FilterField('first_published_at'),
- index.FilterField('last_published_at'),
- index.FilterField('latest_revision_created_at'),
- index.FilterField('index_show_subpages'),
- index.FilterField('index_order_by'),
- index.FilterField('custom_template'),
- ]
- ###############
- # Panels
- ###############
- content_panels = Page.content_panels + [
- ImageChooserPanel('cover_image'),
- ]
- body_content_panels = []
- bottom_content_panels = [
- FieldPanel('tags'),
- ]
- layout_panels = [
- MultiFieldPanel(
- [
- FieldPanel('custom_template')
- ],
- heading=_('Visual Design')
- ),
- MultiFieldPanel(
- [
- FieldPanel('index_show_subpages'),
- FieldPanel('index_num_per_page'),
- FieldPanel('index_order_by'),
- ],
- heading=_('Show Child Pages')
- )
- ]
- promote_panels = [
- MultiFieldPanel(
- [
- FieldPanel('slug'),
- FieldPanel('seo_title'),
- FieldPanel('search_description'),
- ImageChooserPanel('og_image'),
- ],
- _('Page Meta Data')
- ),
- MultiFieldPanel(
- [
- HelpPanel(
- heading=_('About Organization Structured Data'),
- content=_("""The fields below help define brand, contact, and storefront
- information to search engines. This information should be filled out on
- the site’s root page (Home Page). If your organization has multiple locations,
- then also fill this info out on each location page using that particular
- location’s info."""),
- ),
- FieldPanel('struct_org_type'),
- FieldPanel('struct_org_name'),
- ImageChooserPanel('struct_org_logo'),
- ImageChooserPanel('struct_org_image'),
- FieldPanel('struct_org_phone'),
- FieldPanel('struct_org_address_street'),
- FieldPanel('struct_org_address_locality'),
- FieldPanel('struct_org_address_region'),
- FieldPanel('struct_org_address_postal'),
- FieldPanel('struct_org_address_country'),
- FieldPanel('struct_org_geo_lat'),
- FieldPanel('struct_org_geo_lng'),
- StreamFieldPanel('struct_org_hours'),
- StreamFieldPanel('struct_org_actions'),
- FieldPanel('struct_org_extra_json'),
- ],
- _('Structured Data - Organization')
- ),
- ]
- settings_panels = Page.settings_panels + [
- StreamFieldPanel('content_walls'),
- ]
- integration_panels = []
- def __init__(self, *args, **kwargs):
- """
- Inject custom choices and defalts into the form fields
- to enable customization by subclasses.
- """
- super().__init__(*args, **kwargs)
- klassname = self.__class__.__name__.lower()
- template_choices = cr_settings['FRONTEND_TEMPLATES_PAGES'].get('*', ()) + \
- cr_settings['FRONTEND_TEMPLATES_PAGES'].get(klassname, ())
- self._meta.get_field('index_order_by').choices = self.index_order_by_choices
- self._meta.get_field('custom_template').choices = template_choices
- if not self.id:
- self.index_order_by = self.index_order_by_default
- self.index_show_subpages = self.index_show_subpages_default
- @classmethod
- def get_edit_handler(cls):
- """
- Override to "lazy load" the panels overriden by subclasses.
- """
- panels = [
- ObjectList(cls.content_panels + cls.body_content_panels + cls.bottom_content_panels, heading='Content'),
- ObjectList(cls.layout_panels, heading='Layout'),
- ObjectList(cls.promote_panels, heading='SEO', classname="seo"),
- ObjectList(cls.settings_panels, heading='Settings', classname="settings"),
- ]
- if cls.integration_panels:
- panels.append(ObjectList(cls.integration_panels, heading='Integrations', classname='integrations'))
- return TabbedInterface(panels).bind_to_model(cls)
- def get_struct_org_name(self):
- """
- Gets org name for sturctured data using a fallback.
- """
- if self.struct_org_name:
- return self.struct_org_name
- return self.get_site().site_name
- def get_struct_org_logo(self):
- """
- Gets logo for structured data using a fallback.
- """
- if self.struct_org_logo:
- return self.struct_org_logo
- else:
- layout_settings = LayoutSettings.for_site(self.get_site())
- if layout_settings.logo:
- return layout_settings.logo
- return None
- def get_template(self, request, *args, **kwargs):
- """
- Override parent to serve different templates based on querystring.
- """
- if 'amp' in request.GET and hasattr(self, 'amp_template'):
- seo_settings = SeoSettings.for_site(request.site)
- if seo_settings.amp_pages:
- if request.is_ajax():
- return self.ajax_template or self.amp_template
- return self.amp_template
- if self.custom_template:
- return self.custom_template
- return super(CoderedPage, self).get_template(request, args, kwargs)
- def get_index_children(self):
- """
- Override to return query of subpages as defined by `index_` variables.
- """
- if self.index_query_pagemodel:
- querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
- query = querymodel.objects.child_of(self).live()
- else:
- query = super().get_children().live()
- if self.index_order_by:
- return query.order_by(self.index_order_by)
- return query
- def get_content_walls(self, check_child_setting=True):
- current_content_walls = []
- if check_child_setting:
- for wall in self.content_walls:
- content_wall = wall.value
- if wall.value['show_content_wall_on_children']:
- current_content_walls.append(wall.value)
- else:
- current_content_walls = self.content_walls
- try:
- return list(current_content_walls) + self.get_parent().specific.get_content_walls()
- except AttributeError:
- return list(current_content_walls)
- def get_context(self, request, *args, **kwargs):
- """
- Add child pages and paginated child pages to context.
- """
- context = super().get_context(request)
- if self.index_show_subpages:
- all_children = self.get_index_children()
- paginator = Paginator(all_children, self.index_num_per_page)
- page = request.GET.get('p', 1)
- try:
- paged_children = paginator.page(page)
- except:
- paged_children = paginator.page(1)
- context['index_paginated'] = paged_children
- context['index_children'] = all_children
- context['content_walls'] = self.get_content_walls(check_child_setting=False)
- return context
- ###############################################################################
- # Abstract pages providing pre-built common website functionality, suitable for subclassing.
- # These are abstract so subclasses can override fields if desired.
- ###############################################################################
- class CoderedWebPage(CoderedPage):
- """
- Provides a body and body-related functionality.
- This is abstract so that subclasses can override the body StreamField.
- """
- class Meta:
- verbose_name = _('CodeRed Web Page')
- abstract = True
- template = 'coderedcms/pages/web_page.html'
- # Child pages should override based on what blocks they want in the body.
- # Default is LAYOUT_STREAMBLOCKS which is the fullest editor experience.
- body = StreamField(LAYOUT_STREAMBLOCKS, null=True, blank=True)
- # Search fields
- search_fields = (
- CoderedPage.search_fields +
- [index.SearchField('body')]
- )
- # Panels
- body_content_panels = [
- StreamFieldPanel('body'),
- ]
- @property
- def body_preview(self):
- """
- A shortened version of the body without HTML tags.
- """
- # add spaces between tags for legibility
- body = str(self.body).replace('>', '> ')
- # strip tags
- body = strip_tags(body)
- # truncate and add ellipses
- preview = body[:200] + "..." if len(body) > 200 else body
- return mark_safe(preview)
- @property
- def page_ptr(self):
- """
- Overwrite of `page_ptr` to make it compatible with wagtailimportexport.
- """
- return self.base_page_ptr
- @page_ptr.setter
- def page_ptr(self, value):
- self.base_page_ptr = value
- class CoderedArticlePage(CoderedWebPage):
- """
- Article, suitable for news or blog content.
- """
- class Meta:
- verbose_name = _('CodeRed Article')
- abstract = True
- template = 'coderedcms/pages/article_page.html'
- amp_template = 'coderedcms/pages/article_page.amp.html'
- # Override body to provide simpler content
- body = StreamField(CONTENT_STREAMBLOCKS, null=True, blank=True)
- caption = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Caption'),
- )
- author = models.ForeignKey(
- settings.AUTH_USER_MODEL,
- null=True,
- blank=True,
- editable=True,
- on_delete=models.SET_NULL,
- verbose_name=_('Author'),
- )
- author_display = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Display author as'),
- help_text=_('Override how the author’s name displays on this article.'),
- )
- date_display = models.DateField(
- null=True,
- blank=True,
- verbose_name=_('Display publish date'),
- )
- def get_author_name(self):
- """
- Gets author name using a fallback.
- """
- if self.author_display:
- return self.author_display
- if self.author:
- return self.author.get_full_name()
- return ''
- def get_pub_date(self):
- """
- Gets published date.
- """
- if self.date_display:
- return self.date_display
- return ''
- def get_description(self):
- """
- Gets the description using a fallback.
- """
- if self.search_description:
- return self.search_description
- if self.caption:
- return self.caption
- if self.body_preview:
- return self.body_preview
- return ''
- search_fields = (
- CoderedWebPage.search_fields +
- [
- index.SearchField('caption', boost=2),
- index.FilterField('author'),
- index.FilterField('author_display'),
- index.FilterField('date_display'),
- ]
- )
- content_panels = CoderedWebPage.content_panels + [
- FieldPanel('caption'),
- MultiFieldPanel(
- [
- FieldPanel('author'),
- FieldPanel('author_display'),
- FieldPanel('date_display'),
- ],
- _('Publication Info')
- )
- ]
- class CoderedArticleIndexPage(CoderedWebPage):
- """
- Shows a list of article sub-pages.
- """
- class Meta:
- verbose_name = _('CodeRed Article Index Page')
- abstract = True
- template = 'coderedcms/pages/article_index_page.html'
- index_show_subpages_default = True
- index_order_by_default = '-date_display'
- index_order_by_choices = (('-date_display', 'Display publish date, newest first'),) + \
- CoderedWebPage.index_order_by_choices
- show_images = models.BooleanField(
- default=True,
- verbose_name=_('Show images'),
- )
- show_captions = models.BooleanField(
- default=True,
- )
- show_meta = models.BooleanField(
- default=True,
- verbose_name=_('Show author and date info'),
- )
- show_preview_text = models.BooleanField(
- default=True,
- verbose_name=_('Show preview text'),
- )
- layout_panels = CoderedWebPage.layout_panels + [
- MultiFieldPanel(
- [
- FieldPanel('show_images'),
- FieldPanel('show_captions'),
- FieldPanel('show_meta'),
- FieldPanel('show_preview_text'),
- ],
- heading=_('Child page display')
- ),
- ]
- class CoderedEventPage(CoderedWebPage, BaseEvent):
- class Meta:
- verbose_name = _('CodeRed Event')
- abstract = True
- calendar_color = ColorField(
- blank=True,
- help_text=_('The color that the event will use when displayed on a calendar.'),
- )
- address = models.TextField(
- blank=True,
- verbose_name=_("Address")
- )
- content_panels = CoderedWebPage.content_panels + [
- MultiFieldPanel(
- [
- FieldPanel('calendar_color'),
- FieldPanel('address'),
- ],
- heading=_('Event information')
- ),
- InlinePanel(
- 'occurrences',
- min_num=1,
- heading=_("Dates and times"),
- ),
- ]
- @property
- def upcoming_occurrences(self):
- """
- Returns the next x occurrences for this event.
- By default, it returns 10.
- """
- return self.query_occurrences(num_of_instances_to_return=10)
- @property
- def most_recent_occurrence(self):
- """
- Gets the next upcoming, or last occurrence if the event has no more occurrences.
- """
- try:
- noc = self.next_occurrence()
- if noc:
- return noc
- aoc = []
- for occurrence in self.occurrences.all():
- aoc += [instance for instance in occurrence.all_occurrences()]
- if len(aoc) > 0:
- return aoc[-1] # last one in the list
- except AttributeError:
- # Triggers when a preview is initiated on an EventPage because it uses a FakeQuerySet object.
- # Here we manually compute the next_occurrence
- occurrences = [e.next_occurrence() for e in self.occurrences.all()]
- if occurrences:
- return sorted(occurrences, key=lambda tup: tup[0])[0]
- def query_occurrences(self, num_of_instances_to_return=None, **kwargs):
- """
- Returns a list of all upcoming event instances for the specified query.
- For more information on what you can query with, visit
- https://github.com/gregplaysguitar/django-eventtools
- """
- event_instances = []
- occurrence_kwargs = {
- 'from_date': kwargs.get('from_date', timezone.now().date())
- }
- if 'limit' in kwargs:
- if kwargs['limit'] != None:
- # Limit the number of event instances that will be generated per occurrence rule to 10, if not otherwise specified.
- occurrence_kwargs['limit'] = kwargs.get('limit', 10)
- # For each occurrence rule in all of the occurrence rules for this event.
- for occurrence in self.occurrences.all():
- # Add the qualifying generated event instances to the list.
- event_instances += [instance for instance in occurrence.all_occurrences(**occurrence_kwargs)]
- # Sort all the events by the date that they start
- event_instances.sort(key=lambda d: d[0])
- # Return the event instances, possibly spliced if num_instances_to_return is set.
- return event_instances[:num_of_instances_to_return] if num_of_instances_to_return else event_instances
- def convert_to_ical_format(self, dt_start=None, dt_end=None, occurrence=None):
- ical_event = ICalEvent()
- ical_event.add('summary', self.title)
- if self.address:
- ical_event.add('location', self.address)
- if dt_start:
- ical_event.add('dtstart', dt_start)
- if dt_end:
- ical_event.add('dtend', dt_end)
- if occurrence:
- freq = occurrence.repeat.split(":")[1] if occurrence.repeat else None
- repeat_until = occurrence.repeat_until.strftime("%Y%m%dT000000Z") if occurrence.repeat_until else None
- ical_event.add('dtstart', occurrence.start)
- if occurrence.end:
- ical_event.add('dtend', occurrence.end)
- if freq:
- ical_event.add('RRULE', freq, encode=False)
- if repeat_until:
- ical_event.add('until', repeat_until)
- return ical_event
- def create_single_ical(self, dt_start, dt_end=None):
- return self.convert_to_ical_format(dt_start=dt_start, dt_end=dt_end)
- def create_recurring_ical(self):
- events = []
- for occurrence in self.occurrences.all():
- events.append(self.convert_to_ical_format(occurrence=occurrence))
- return events
- class DefaultCalendarViewChoices():
- MONTH = 'month'
- AGENDA_WEEK = 'agendaWeek'
- AGENDA_DAY = 'agendaDay'
- LIST_MONTH = 'listMonth'
- CHOICES = (
- ('', _('No calendar')),
- (MONTH, _('Monthly Calendar')),
- (AGENDA_WEEK, _('Weekly Calendar')),
- (AGENDA_DAY, _('Daily Calendar')),
- (LIST_MONTH, _('Calendar List View')),
- )
- class CoderedEventIndexPage(CoderedWebPage):
- """
- Shows a list of event sub-pages.
- """
- class Meta:
- verbose_name = _('CodeRed Event Index Page')
- abstract = True
- template = 'coderedcms/pages/event_index_page.html'
- index_show_subpages_default = True
- index_order_by_default = 'next_occurrence'
- index_order_by_choices = (
- ('next_occurrence', 'Display next occurrence, soonest first'),
- ) + \
- CoderedWebPage.index_order_by_choices
- default_calendar_view = models.CharField(
- blank=True,
- choices=DefaultCalendarViewChoices.CHOICES,
- max_length=255,
- verbose_name=_('Calendar Style'),
- help_text=_('The default look of the calendar on this page.')
- )
- layout_panels = CoderedWebPage.layout_panels + [
- FieldPanel('default_calendar_view'),
- ]
- def get_index_children(self):
- if self.index_query_pagemodel and self.index_order_by == 'next_occurrence':
- querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
- qs = querymodel.objects.child_of(self).live()
- # filter out events that don't have a next_occurrence
- upcoming = []
- for event in qs.all():
- if event.next_occurrence():
- upcoming.append(event)
- # sort the events by next_occurrence
- return sorted(upcoming, key=lambda e: e.next_occurrence())
- return super().get_index_children()
- def get_calendar_events(self, start, end):
- # start with all child events, regardless of get_index_children rules.
- querymodel = resolve_model_string(self.index_query_pagemodel, self._meta.app_label)
- qs = querymodel.objects.child_of(self).live()
- event_instances = []
- for event in qs:
- occurrences = event.query_occurrences(limit=None, from_date=start, to_date=end)
- for occurrence in occurrences:
- event_data = {
- 'title': event.title,
- 'start': occurrence[0].strftime('%Y-%m-%dT%H:%M:%S'),
- 'end' : occurrence[1].strftime('%Y-%m-%dT%H:%M:%S') if occurrence[1] else "",
- 'description': "",
- }
- if event.url:
- event_data['url'] = event.url
- if event.calendar_color:
- event_data['backgroundColor'] = event.calendar_color
- event_instances.append(event_data)
- return event_instances
- class CoderedEventOccurrence(Orderable, BaseOccurrence):
- class Meta:
- verbose_name = _('CodeRed Event Occurrence')
- abstract = True
- class CoderedFormPage(CoderedWebPage):
- """
- This is basically a clone of wagtail.contrib.forms.models.AbstractForm
- with changes in functionality and extending CoderedWebPage vs wagtailcore.Page.
- """
- class Meta:
- verbose_name = _('CodeRed Form Page')
- abstract = True
- template = 'coderedcms/pages/form_page.html'
- landing_page_template = 'coderedcms/pages/form_page_landing.html'
- base_form_class = WagtailAdminFormPageForm
- form_builder = CoderedFormBuilder
- submissions_list_view_class = CoderedSubmissionsListView
- ### Custom codered fields
- to_address = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Email form submissions to'),
- help_text=_('Optional - email form submissions to this address. Separate multiple addresses by comma.')
- )
- reply_address = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Reply-to address'),
- 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 }}')
- )
- subject = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Subject'),
- )
- save_to_database = models.BooleanField(
- default=True,
- verbose_name=_('Save form submissions'),
- help_text=_('Submissions are saved to database and can be exported at any time.')
- )
- thank_you_page = models.ForeignKey(
- 'wagtailcore.Page',
- null=True,
- blank=True,
- on_delete=models.SET_NULL,
- related_name='+',
- verbose_name=_('Thank you page'),
- help_text=_('The page users are redirected to after submitting the form.'),
- )
- button_text = models.CharField(
- max_length=255,
- default=_('Submit'),
- verbose_name=_('Button text'),
- )
- button_style = models.CharField(
- blank=True,
- choices=cr_settings['FRONTEND_BTN_STYLE_CHOICES'],
- default=cr_settings["FRONTEND_BTN_STYLE_DEFAULT"],
- max_length=255,
- verbose_name=_('Button style'),
- )
- button_size = models.CharField(
- blank=True,
- choices=cr_settings['FRONTEND_BTN_SIZE_CHOICES'],
- default=cr_settings["FRONTEND_BTN_SIZE_DEFAULT"],
- max_length=255,
- verbose_name=_('Button Size'),
- )
- button_css_class = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Button CSS class'),
- help_text=_('Custom CSS class applied to the submit button.'),
- )
- form_css_class = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Form CSS Class'),
- help_text=_('Custom CSS class applied to <form> element.'),
- )
- form_id = models.CharField(
- max_length=255,
- blank=True,
- verbose_name=_('Form ID'),
- help_text=_('Custom ID applied to <form> element.'),
- )
- form_golive_at = models.DateTimeField(
- blank=True,
- null=True,
- verbose_name=_('Form go live date/time'),
- help_text=_('Date and time when the FORM goes live on the page.'),
- )
- form_expire_at = models.DateTimeField(
- blank=True,
- null=True,
- verbose_name=_('Form expiry date/time'),
- help_text=_('Date and time when the FORM will no longer be available on the page.'),
- )
- body_content_panels = CoderedWebPage.body_content_panels + [
- FormSubmissionsPanel(),
- InlinePanel('form_fields', label="Form fields"),
- MultiFieldPanel(
- [
- PageChooserPanel('thank_you_page'),
- FieldPanel('button_text'),
- FieldPanel('button_style'),
- FieldPanel('button_size'),
- FieldPanel('button_css_class'),
- FieldPanel('form_css_class'),
- FieldPanel('form_id'),
- ],
- _('Form Settings')
- ),
- MultiFieldPanel(
- [
- FieldPanel('save_to_database'),
- FieldPanel('to_address'),
- FieldPanel('reply_address'),
- FieldPanel('subject'),
- ],
- _('Form Submissions')
- ),
- InlinePanel('confirmation_emails', label=_('Confirmation Emails'))
- ]
- settings_panels = CoderedPage.settings_panels + [
- MultiFieldPanel(
- [
- FieldRowPanel(
- [
- FieldPanel('form_golive_at'),
- FieldPanel('form_expire_at'),
- ],
- classname='label-above',
- ),
- ],
- _('Form Scheduled Publishing'),
- )
- ]
- @property
- def form_live(self):
- """
- A boolean on whether or not the <form> element should be shown on the page.
- """
- return (self.form_golive_at is None or self.form_golive_at <= timezone.now()) and \
- (self.form_expire_at is None or self.form_expire_at >= timezone.now())
- def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
- if not hasattr(self, 'landing_page_template'):
- name, ext = os.path.splitext(self.template)
- self.landing_page_template = name + '_landing' + ext
- def get_form_fields(self):
- """
- Form page expects `form_fields` to be declared.
- If you want to change backwards relation name,
- you need to override this method.
- """
- return self.form_fields.all()
- def get_data_fields(self):
- """
- Returns a list of tuples with (field_name, field_label).
- """
- data_fields = [
- ('submit_time', _('Submission date')),
- ]
- data_fields += [
- (field.clean_name, field.label)
- for field in self.get_form_fields()
- ]
- return data_fields
- def get_form_class(self):
- fb = self.form_builder(self.get_form_fields())
- return fb.get_form_class()
- def get_form_parameters(self):
- return {}
- def get_form(self, *args, **kwargs):
- form_class = self.get_form_class()
- form_params = self.get_form_parameters()
- form_params.update(kwargs)
- return form_class(*args, **form_params)
- def get_landing_page_template(self, request, *args, **kwargs):
- return self.landing_page_template
- def get_submission_class(self):
- """
- Returns submission class.
- You can override this method to provide custom submission class.
- Your class must be inherited from AbstractFormSubmission.
- """
- return FormSubmission
- def process_form_submission(self, request, form):
- """
- Accepts form instance with submitted data, user and page.
- Creates submission instance.
- You can override this method if you want to have custom creation logic.
- For example, if you want to save reference to a user.
- """
- processed_data = {}
- # Handle file uploads
- for key, val in form.cleaned_data.items():
- if type(val) == InMemoryUploadedFile or type(val) == TemporaryUploadedFile:
- # Save the file and get its URL
- file_system = FileSystemStorage(
- location=cr_settings['PROTECTED_MEDIA_ROOT'],
- base_url=cr_settings['PROTECTED_MEDIA_URL']
- )
- filename = file_system.save(file_system.get_valid_name(val.name), val)
- processed_data[key] = file_system.url(filename)
- else:
- processed_data[key] = val
- # Get submission
- form_submission = self.get_submission_class()(
- form_data=json.dumps(processed_data, cls=DjangoJSONEncoder),
- page=self,
- )
- # Save to database
- if self.save_to_database:
- form_submission.save()
- # Send the mails
- if self.to_address:
- self.send_summary_mail(request, form, processed_data)
- if self.confirmation_emails:
- # Convert form data into a context.
- context = Context(self.data_to_dict(processed_data))
- # Render emails as if they are django templates.
- for email in self.confirmation_emails.all():
- # Build email message parameters.
- message_args = {}
- # From
- if email.from_address:
- template_from_email = Template(email.from_address)
- message_args['from_email'] = template_from_email.render(context)
- else:
- genemail = GeneralSettings.for_site(request.site).from_email_address
- if genemail:
- message_args['from_email'] = genemail
- # Reply-to
- if email.reply_address:
- template_reply_to = Template(reply_address)
- message_args['reply_to'] = template_reply_to.render(context).split(',')
- # CC
- if email.cc_address:
- template_cc = Template(email.cc_address)
- message_args['cc'] = template_cc.render(context).split(',')
- # BCC
- if email.bcc_address:
- template_bcc = Template(email.bcc_address)
- message_args['bcc'] = template_bcc.render(context).split(',')
- # Subject
- if email.subject:
- template_subject = Template(email.subject)
- message_args['subject'] = template_subject.render(context)
- else:
- message_args['subject'] = self.title
- # Body
- template_body = Template(email.body)
- message_args['body'] = template_body.render(context)
- # To
- template_to = Template(email.to_address)
- message_args['to'] = template_to.render(context).split(',')
- # Send email
- message = EmailMessage(**message_args)
- message.content_subtype = 'html'
- message.send()
- for fn in hooks.get_hooks('form_page_submit'):
- fn(instance=self, form_submission=form_submission)
- return processed_data
- def send_summary_mail(self, request, form, processed_data):
- """
- Sends a form submission summary email.
- """
- addresses = [x.strip() for x in self.to_address.split(',')]
- content = []
- for field in form:
- value = processed_data[field.name]
- # Convert lists into human readable comma separated strings.
- if isinstance(value, list):
- value = ', '.join(value)
- content.append('{0}: {1}'.format(
- field.label,
- utils.attempt_protected_media_value_conversion(request, value)
- ))
- content = '\n\n'.join(content)
- # Build email message parameters
- message_args = {
- 'body': content,
- 'to': addresses,
- }
- if self.subject:
- message_args['subject'] = self.subject
- else:
- message_args['subject'] = self.title
- genemail = GeneralSettings.for_site(request.site).from_email_address
- if genemail:
- message_args['from_email'] = genemail
- if self.reply_address:
- # Render reply-to field using form submission as context.
- context = Context(self.data_to_dict(processed_data))
- template_reply_to = Template(self.reply_address)
- message_args['reply_to'] = reply_to=template_reply_to.render(context).split(',')
- # Send email
- message = EmailMessage(**message_args)
- message.send()
- def data_to_dict(self, processed_data):
- """
- Converts processed form data into a dictionary suitable
- for rendering in a context.
- """
- dictionary = {}
- for key, value in processed_data.items():
- dictionary[key.replace('-', '_')] = value
- if isinstance(value, list):
- dictionary[key] = ', '.join(value)
- return dictionary
- def render_landing_page(self, request, *args, form_submission=None, **kwargs):
- """
- Renders the landing page.
- You can override this method to return a different HttpResponse as
- landing page. E.g. you could return a redirect to a separate page.
- """
- if self.thank_you_page:
- return redirect(self.thank_you_page.url)
- context = self.get_context(request)
- context['form_submission'] = form_submission
- response = render(
- request,
- self.get_landing_page_template(request),
- context
- )
- return response
- def serve_submissions_list_view(self, request, *args, **kwargs):
- """
- Returns list submissions view for admin.
- `list_submissions_view_class` can bse set to provide custom view class.
- Your class must be inherited from SubmissionsListView.
- """
- view = self.submissions_list_view_class.as_view()
- return view(request, form_page=self, *args, **kwargs)
- def serve(self, request, *args, **kwargs):
- if request.method == 'POST':
- form = self.get_form(request.POST, request.FILES, page=self, user=request.user)
- if form.is_valid():
- form_submission = self.process_form_submission(request, form)
- return self.render_landing_page(request, form_submission, *args, **kwargs)
- else:
- form = self.get_form(page=self, user=request.user)
- context = self.get_context(request)
- context['form'] = form
- response = render(
- request,
- self.get_template(request),
- context
- )
- return response
- preview_modes = [
- ('form', _('Form')),
- ('landing', _('Thank you page')),
- ]
- def serve_preview(self, request, mode):
- if mode == 'landing':
- request.is_preview = True
- return self.render_landing_page(request)
- return super().serve_preview(request, mode)
- class CoderedLocationPage(CoderedWebPage):
- """
- Location, suitable for store locations or help centers.
- """
- class Meta:
- verbose_name = _('CodeRed Location')
- abstract = True
- template = 'coderedcms/pages/location_page.html'
- # Override body to provide simpler content
- body = StreamField(CONTENT_STREAMBLOCKS, null=True, blank=True)
- address = models.TextField(
- blank=True,
- verbose_name=_("Address")
- )
- latitude = models.FloatField(
- blank=True,
- null=True,
- verbose_name=_("Latitude")
- )
- longitude = models.FloatField(
- blank=True,
- null=True,
- verbose_name=_("Longitude")
- )
- auto_update_latlng = models.BooleanField(
- default=True,
- verbose_name=_("Auto Update Latitude and Longitude"),
- help_text=_("If checked, automatically update the latitude and longitude when the address is updated.")
- )
- map_title = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_("Map Title"),
- help_text=_("If this is filled out, this is the title that will be used on the map.")
- )
- map_description = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_("Map Description"),
- help_text=_("If this is filled out, this is the description that will be used on the map.")
- )
- website = models.TextField(
- blank=True,
- verbose_name=_("Website")
- )
- phone_number = models.CharField(
- blank=True,
- max_length=255,
- verbose_name=_("Phone Number")
- )
- content_panels = CoderedWebPage.content_panels + [
- FieldPanel('address'),
- FieldPanel('website'),
- FieldPanel('phone_number'),
- ]
- layout_panels = CoderedWebPage.layout_panels + [
- MultiFieldPanel(
- [
- FieldPanel('map_title'),
- FieldPanel('map_description'),
- ],
- heading=_('Map Layout')
- ),
- ]
- settings_panels = CoderedWebPage.settings_panels + [
- MultiFieldPanel(
- [
- FieldPanel('auto_update_latlng'),
- FieldPanel('latitude'),
- FieldPanel('longitude'),
- ],
- heading=_("Location Settings")
- ),
- ]
- @property
- def geojson_name(self):
- return self.map_title or self.title
- @property
- def geojson_description(self):
- return self.map_description
- @property
- def render_pin_description(self):
- return render_to_string(
- 'coderedcms/includes/map_pin_description.html',
- {
- 'page': self
- }
- )
- @property
- def render_list_description(self):
- return render_to_string(
- 'coderedcms/includes/map_list_description.html',
- {
- 'page': self
- }
- )
- def to_geojson(self):
- return {
- "type": "Feature",
- "geometry":{
- "type": "Point",
- "coordinates": [self.longitude, self.latitude]
- },
- "properties":{
- "list_description": self.render_list_description,
- "pin_description": self.render_pin_description
- }
- }
- def save(self, *args, **kwargs):
- if self.auto_update_latlng and GoogleApiSettings.for_site(Site.objects.get(is_default_site=True)).google_maps_api_key:
- try:
- g = geocoder.google(self.address, key=GoogleApiSettings.for_site(Site.objects.get(is_default_site=True)).google_maps_api_key)
- self.latitude = g.latlng[0]
- self.longitude = g.latlng[1]
- except TypeError:
- """Raised if google denied the request"""
- pass
- return super(CoderedLocationPage, self).save(*args, **kwargs)
- def get_context(self, request, *args, **kwargs):
- context = super().get_context(request)
- context['google_api_key'] = GoogleApiSettings.for_site(Site.objects.get(is_default_site=True)).google_maps_api_key
- return context
- class CoderedLocationIndexPage(CoderedWebPage):
- """
- Shows a map view of the children CoderedLocationPage.
- """
- class Meta:
- verbose_name = _('CodeRed Location Index Page')
- abstract = True
- template = 'coderedcms/pages/location_index_page.html'
- index_show_subpages_default = True
- center_latitude = models.FloatField(
- null=True,
- blank=True,
- help_text=_('The default latitude you want the map set to.'),
- default=0
- )
- center_longitude = models.FloatField(
- null=True,
- blank=True,
- help_text=_('The default longitude you want the map set to.'),
- default=0
- )
- zoom = models.IntegerField(
- default=8,
- validators=[
- MaxValueValidator(20),
- MinValueValidator(1),
- ],
- help_text=_('Requires API key to use zoom. 1: World, 5: Landmass/continent, 10: City, 15: Streets, 20: Buildings')
- )
- layout_panels = CoderedWebPage.layout_panels + [
- MultiFieldPanel(
- [
- FieldPanel('center_latitude'),
- FieldPanel('center_longitude'),
- FieldPanel('zoom'),
- ],
- heading=_('Map Display')
- ),
- ]
- def geojson_data(self, viewport=None):
- """
- function that will return all locations under this index as geoJSON compliant data.
- It is filtered by a latitude/longitude viewport if given.
- viewport is a string in the format of :
- 'southwest.latitude,southwest.longitude|northeast.latitude,northeast.longitude'
- An example viewport that covers Cleveland, OH would look like this:
- '41.354912150983964,-81.95331736661791|41.663427748126935,-81.45206614591478'
- """
- qs = self.get_index_children().live()
- if viewport:
- southwest, northeast = viewport.split('|')
- southwest = [float(x) for x in southwest.split(',')]
- northeast = [float(x) for x in northeast.split(',')]
- qs = qs.filter(latitude__gte=southwest[0], latitude__lte=northeast[0], longitude__gte=southwest[1], longitude__lte=northeast[1])
- return {
- "type": "FeatureCollection",
- "features": [
- location.to_geojson() for location in qs
- ]
- }
- def serve(self, request, *args, **kwargs):
- data_format = request.GET.get('data-format', None)
- if data_format == 'geojson':
- return self.serve_geojson(request, *args, **kwargs)
- return super().serve(request, *args, **kwargs)
- def serve_geojson(self, request, *args, **kwargs):
- viewport = request.GET.get('viewport', None)
- return JsonResponse(self.geojson_data(viewport=viewport))
- def get_context(self, request, *args, **kwargs):
- context = super().get_context(request)
- context['google_api_key'] = GoogleApiSettings.for_site(Site.objects.get(is_default_site=True)).google_maps_api_key
- return context
|