ausglamr/blogs/models/newsletter.py

42 lines
1.4 KiB
Python
Raw Normal View History

2024-01-04 11:54:56 +11:00
"""newsletter models"""
from django.db import models
from django.utils import timezone
from .utils import Announcement, Category
class Newsletter(models.Model):
"""a newsletter"""
2024-01-09 18:11:22 +11:00
name = models.CharField(max_length=100)
author = models.CharField(max_length=100)
2024-01-04 11:54:56 +11:00
category = models.CharField(choices=Category.choices, max_length=4)
url = models.URLField(max_length=400, unique=True)
2024-01-09 18:11:22 +11:00
description = models.TextField(null=True, blank=True, max_length=250)
2024-01-04 11:54:56 +11:00
activitypub_account_name = models.CharField(max_length=200, blank=True, null=True)
2024-01-07 16:58:56 +11:00
contact_email = models.EmailField(blank=True, null=True)
2024-01-04 11:54:56 +11:00
announced = models.BooleanField(default=False)
approved = models.BooleanField(default=False)
pub_date = models.DateTimeField(null=True, default=None)
def announce(self):
"""create a event announcement"""
category = Category(self.category).label
name = self.name
if self.activitypub_account_name:
name = f"{self.name} ({self.activitypub_account_name})"
status = f"{name} is a newsletter about {category} from {self.author}. Check it out:\n\n{self.url}"
Announcement.objects.create(status=status)
self.announced = True
super().save()
def save(self, *args, **kwargs):
if not self.pub_date:
self.pub_date = timezone.now()
super().save(*args, **kwargs)