Newer
Older
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.contrib.contenttypes.fields import GenericForeignKey, GenericRelation
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.utils import timezone
class Forum(models.Model):
"""
A Forum is a discussion location for a defined set of Users.
A Forum instance can be publicly visible. For publicly invisible forums,
as well as for thread creation and posting rights,
access is specified flexibly on a per-Group and/or per-User basis
via object-level permissions (through the django-guardian required app).
Forums can be related to parent/children via parent [GenericForeignKey]
and child_forums [GenericRelation] fields.
Similarly, Posts in a Forum are listed in the posts [GenericRelation] field.
"""
name = models.CharField(max_length=256)
slug = models.SlugField(allow_unicode=True)
publicly_visible = models.BooleanField(default=False)
moderators = models.ManyToManyField('auth.User', related_name='moderated_forums')
parent_content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE,
blank=True, null=True)
parent_object_id = models.PositiveIntegerField(blank=True, null=True)
parent = GenericForeignKey('parent_content_type', 'parent_object_id')
child_forums = GenericRelation('forums.Forum',
content_type_field='parent_content_type',
object_id_field='parent_object_id',
related_query_name='parent_forums')
posts = GenericRelation('forums.Post',
content_type_field='parent_content_type',
object_id_field='parent_object_id',
related_query_name='parent_forums')
class Meta:
ordering = ['name',]
def __str__(self):
return self.slug
def get_absolute_url(self):
return reverse('forums:forum_detail', kwargs={'slug': self.slug})
@property
def nr_posts(self):
"""Recursively counts the number of posts in this Forum."""
nr = 0
for post in self.posts.all():
nr += post.nr_followups
if self.posts.all():
nr += self.posts.all().count()
return nr
class Post(models.Model):
"""
A comment, feedback, question or similar, with a specified parent object.
If the Post is submitted by Admin, Advisory Board members or Fellows,
it is marked as not needing vetting before becoming visible.
Similarly, for Posts created by organizations.Contacts, no vetting is required.
Otherwise, e.g. for Contributors-submitted Posts to a publicly-visible
Forum, vetting by Admin is required.
A Post must have a parent object (represented here as a GenericForeignKey).
If the parent is a Forum, the Post is interpreted as the head of
a new discussion thread. If the parent is a Post, then it is interpreted as
part of an ongoing thread.
The text field can contain ReStructuredText markup, formatted in templates
through the django-docutils required app.
posted_by = models.ForeignKey('auth.User', on_delete=models.CASCADE)
posted_on = models.DateTimeField(default=timezone.now)
needs_vetting = models.BooleanField(default=True)
vetted_by = models.ForeignKey('auth.User', related_name='vetted_posts',
blank=True, null=True, on_delete=models.PROTECT)
parent_content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
parent_object_id = models.PositiveIntegerField()
parent = GenericForeignKey('parent_content_type', 'parent_object_id')
followup_posts = GenericRelation('forums.Post',
content_type_field='parent_content_type',
object_id_field='parent_object_id',
related_query_name='parent_posts')
subject = models.CharField(max_length=256)
class Meta:
ordering = ['posted_on',]
def __str__(self):
return '%s: %s' % (self.posted_by, self.subject[:32])