This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/articles/models.py

39 lines
1.1 KiB
Python
Raw Normal View History

2020-08-14 16:15:40 +02:00
import re
2020-08-14 15:53:42 +02:00
import markdown
2020-08-14 14:53:30 +02:00
from django.contrib.auth.models import AbstractUser
from django.db import models
class User(AbstractUser):
pass
2020-08-14 15:53:42 +02:00
class Article(models.Model):
DRAFT = "draft"
PUBLISHED = "published"
STATUS_CHOICES = [
(DRAFT, "Draft"),
(PUBLISHED, "Published"),
]
title = models.CharField(max_length=255)
content = models.TextField()
status = models.CharField(max_length=15, choices=STATUS_CHOICES, default=DRAFT)
published_at = models.DateTimeField(null=True, blank=True)
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)
author = models.ForeignKey(User, on_delete=models.PROTECT)
class Meta:
ordering = ["-published_at"]
def get_abstract(self):
2020-08-14 16:15:40 +02:00
html = self.get_formatted_content()
2020-08-14 15:53:42 +02:00
return html.split("<!--more-->")[0]
def get_formatted_content(self):
md = markdown.Markdown(extensions=["extra"])
2020-08-14 16:15:40 +02:00
content = self.content
content = re.sub(r"(\s)#(\w+)", r"\1\#\2", content)
return md.convert(content)