bornhack-website/src/news/models.py
Thomas Steen Rasmussen 00af109e2f
add flake8 and isort to pre-commit config, make flake8 and isort happy (#441)
* add flake8 to pre-commit config, and fixup many things to make flake8 happy

* add isort and sort all imports, add to pre-commit and requirements
2020-02-12 13:10:41 +01:00

49 lines
1.7 KiB
Python

from django.db import models
from django.urls import reverse
from django.utils.text import slugify
from utils.models import CreatedUpdatedModel
class NewsItem(CreatedUpdatedModel):
class Meta:
ordering = ["-published_at"]
title = models.CharField(max_length=100)
content = models.TextField()
published_at = models.DateTimeField(null=True, blank=True)
slug = models.SlugField(max_length=255, blank=True)
archived = models.BooleanField(default=False)
def __str__(self):
return self.title
def save(self, **kwargs):
if self.published_at:
# if this is a new newsitem, or it doesn't have a slug, or the slug is in use on another item, create a new slug
if (
not self.pk
or not self.slug
or NewsItem.objects.filter(slug=self.slug).count() > 1
):
published_at_string = self.published_at.strftime("%Y-%m-%d")
base_slug = slugify(self.title)
slug = "{}-{}".format(published_at_string, base_slug)
incrementer = 1
# We have to make sure that the slug won't clash with current slugs
while NewsItem.objects.filter(slug=slug).exists():
if incrementer == 1:
slug = "{}-1".format(slug)
else:
slug = "{}-{}".format(
"-".join(slug.split("-")[:-1]), incrementer
)
incrementer += 1
self.slug = slug
super(NewsItem, self).save(**kwargs)
def get_absolute_url(self):
return reverse("news:detail", kwargs={"slug": self.slug})