summaryrefslogtreecommitdiff
path: root/app/unused_apps/fieldnotes/models.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/unused_apps/fieldnotes/models.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/unused_apps/fieldnotes/models.py')
-rw-r--r--app/unused_apps/fieldnotes/models.py113
1 files changed, 0 insertions, 113 deletions
diff --git a/app/unused_apps/fieldnotes/models.py b/app/unused_apps/fieldnotes/models.py
deleted file mode 100644
index c14ba80..0000000
--- a/app/unused_apps/fieldnotes/models.py
+++ /dev/null
@@ -1,113 +0,0 @@
-import re
-from django import forms
-from django.contrib.gis.db import models
-from django.utils import timezone
-from django.urls import reverse
-from django.conf import settings
-from django.contrib.sitemaps import Sitemap
-
-from locations.models import Location, CheckIn
-from photos.models import LuxImage
-from utils.util import render_images, parse_image, markdown_to_html, extract_main_image
-
-
-def render_images(s):
- s = re.sub('<img(.*)/>', parse_image, s)
- return s
-
-
-class FieldNote(models.Model):
- title = models.CharField(max_length=250, blank=True)
- subtitle = models.CharField(max_length=250, blank=True)
- slug = models.SlugField(unique_for_date='pub_date', blank=True)
- pub_date = models.DateTimeField(default=timezone.now)
- body_html = models.TextField(blank=True)
- body_markdown = models.TextField('Note')
- point = models.PointField(blank=True, null=True)
- location = models.ForeignKey(Location, on_delete=models.CASCADE, blank=True, null=True)
- PUB_STATUS = (
- (0, 'Draft'),
- (1, 'Published'),
- )
- status = models.IntegerField(choices=PUB_STATUS, default=1)
- NOTE_TYPE = (
- (0, 'Note'),
- (1, 'Photo'),
- )
- note_type = models.IntegerField(choices=NOTE_TYPE, default=0)
- featured_image = models.ForeignKey(LuxImage, on_delete=models.SET_NULL, blank=True, null=True)
-
- class Meta:
- ordering = ('-pub_date',)
- get_latest_by = 'pub_date'
-
- def __str__(self):
- return self.title
-
- def get_absolute_url(self):
- return reverse("fieldnotes:detail", kwargs={"year": self.pub_date.year, "month": self.pub_date.strftime("%m"), "slug": self.slug})
-
- def get_object_type(self):
- return 'fieldnote'
-
- @property
- def region(self):
- return self.location.lux_region
-
- @property
- def longitude(self):
- '''Get the site's longitude.'''
- return round(self.point.x, 2)
-
- @property
- def latitude(self):
- '''Get the site's latitude.'''
- return round(self.point.y, 2)
-
- @property
- def get_previous_published(self):
- return self.get_previous_by_pub_date()
-
- @property
- def get_next_published(self):
- return self.get_next_by_pub_date()
-
- @property
- def get_previous_admin_url(self):
- n = self.get_previous_by_pub_date()
- return reverse('admin:%s_%s_change' %(self._meta.app_label, self._meta.model_name), args=[n.id] )
-
- @property
- def get_next_admin_url(self):
- model = apps.get_model(app_label=self._meta.app_label, model_name=self._meta.model_name)
- try:
- return reverse('admin:%s_%s_change' %(self._meta.app_label, self._meta.model_name), args=[self.get_next_by_pub_date().pk] )
- except model.DoesNotExist:
- return ''
-
- def save(self, *args, **kwargs):
- md = render_images(self.body_markdown)
- self.body_html = markdown_to_html(md)
- if not self.point:
- self.point = CheckIn.objects.latest().point
- try:
- self.location = Location.objects.filter(geometry__contains=self.point).get()
- except Location.DoesNotExist:
- raise forms.ValidationError("There is no location associated with that point, add it: %sadmin/locations/location/add/" % (settings.BASE_URL))
- if not self.id:
- self.pub_date = timezone.now()
- self.date_last_updated = timezone.now()
- self.featured_image = extract_main_image(self.body_markdown)
- super(FieldNote, self).save()
-
-
-class FieldNoteSitemap(Sitemap):
- changefreq = "never"
- priority = 0.7
- protocol = "https"
-
- def items(self):
- return FieldNote.objects.filter(status=1)
-
- def lastmod(self, obj):
- return obj.pub_date