page_models.py 52 KB

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