annotate gpp/forums/models.py @ 172:0fa78ef80356

Implementing #55 - Add function to view a users posts from their profile.
author Brian Neal <bgneal@gmail.com>
date Sun, 28 Feb 2010 22:20:15 +0000
parents 6f14970b103a
children 500e5875a306
rev   line source
bgneal@75 1 """
bgneal@75 2 Models for the forums application.
bgneal@75 3 """
bgneal@102 4 import datetime
bgneal@102 5
bgneal@75 6 from django.db import models
bgneal@100 7 from django.db.models import Q
bgneal@75 8 from django.contrib.auth.models import User, Group
bgneal@128 9
bgneal@128 10 from core.markup import site_markup
bgneal@75 11
bgneal@75 12
bgneal@75 13 class Category(models.Model):
bgneal@100 14 """
bgneal@100 15 Forums belong to a category, whose access may be assigned to groups.
bgneal@100 16 """
bgneal@75 17 name = models.CharField(max_length=80)
bgneal@75 18 slug = models.SlugField(max_length=80)
bgneal@75 19 position = models.IntegerField(blank=True, default=0)
bgneal@75 20 groups = models.ManyToManyField(Group, blank=True, null=True,
bgneal@75 21 help_text="If groups are assigned to this category, only members" \
bgneal@75 22 " of those groups can view this category.")
bgneal@75 23
bgneal@75 24 class Meta:
bgneal@75 25 ordering = ('position', )
bgneal@75 26 verbose_name_plural = 'Categories'
bgneal@75 27
bgneal@75 28 def __unicode__(self):
bgneal@75 29 return self.name
bgneal@75 30
bgneal@100 31 def can_access(self, user):
bgneal@100 32 """
bgneal@100 33 Checks to see if the given user has permission to access
bgneal@100 34 this category.
bgneal@100 35 If this category has no groups assigned to it, return true.
bgneal@100 36 Else, return true if the user belongs to a group that has been
bgneal@100 37 assigned to this category, and false otherwise.
bgneal@100 38 """
bgneal@100 39 if self.groups.count() == 0:
bgneal@100 40 return True
bgneal@100 41 if user.is_authenticated():
bgneal@100 42 return self.groups.filter(user__pk=user.id).count() > 0
bgneal@100 43 return False
bgneal@100 44
bgneal@170 45 def is_public(self):
bgneal@170 46 """Returns true if this is a public category, viewable by all."""
bgneal@170 47 return self.groups.count() == 0
bgneal@170 48
bgneal@100 49
bgneal@100 50 class ForumManager(models.Manager):
bgneal@100 51 """
bgneal@100 52 The manager for the Forum model. Provides a centralized place to
bgneal@100 53 put commonly used and useful queries.
bgneal@100 54 """
bgneal@100 55
bgneal@100 56 def forums_for_user(self, user):
bgneal@100 57 """
bgneal@100 58 Returns a queryset containing the forums that the given user can
bgneal@100 59 "see" due to authenticated status, superuser status and group membership.
bgneal@100 60 """
bgneal@167 61 qs = self._for_user(user)
bgneal@167 62 return qs.select_related('category', 'last_post', 'last_post__user')
bgneal@167 63
bgneal@167 64 def forum_ids_for_user(self, user):
bgneal@167 65 """Returns a list of forum IDs that the given user can "see"."""
bgneal@167 66 qs = self._for_user(user)
bgneal@167 67 return qs.values_list('id', flat=True)
bgneal@167 68
bgneal@170 69 def public_forums(self):
bgneal@170 70 """Returns a queryset containing the public forums."""
bgneal@170 71 return self.filter(category__groups__isnull=True)
bgneal@170 72
bgneal@167 73 def _for_user(self, user):
bgneal@167 74 """Common code for the xxx_for_user() methods."""
bgneal@100 75 if user.is_superuser:
bgneal@100 76 qs = self.all()
bgneal@100 77 else:
bgneal@167 78 user_groups = user.groups.all() if user.is_authenticated() else []
bgneal@167 79 qs = self.filter(Q(category__groups__isnull=True) |
bgneal@100 80 Q(category__groups__in=user_groups))
bgneal@167 81 return qs
bgneal@100 82
bgneal@75 83
bgneal@75 84 class Forum(models.Model):
bgneal@100 85 """
bgneal@100 86 A forum is a collection of topics.
bgneal@100 87 """
bgneal@75 88 category = models.ForeignKey(Category, related_name='forums')
bgneal@75 89 name = models.CharField(max_length=80)
bgneal@75 90 slug = models.SlugField(max_length=80)
bgneal@75 91 description = models.TextField(blank=True, default='')
bgneal@75 92 position = models.IntegerField(blank=True, default=0)
bgneal@75 93 moderators = models.ManyToManyField(Group, blank=True, null=True)
bgneal@75 94
bgneal@75 95 # denormalized fields to reduce database hits
bgneal@75 96 topic_count = models.IntegerField(blank=True, default=0)
bgneal@75 97 post_count = models.IntegerField(blank=True, default=0)
bgneal@75 98 last_post = models.OneToOneField('Post', blank=True, null=True,
bgneal@75 99 related_name='parent_forum')
bgneal@75 100
bgneal@100 101 objects = ForumManager()
bgneal@100 102
bgneal@75 103 class Meta:
bgneal@75 104 ordering = ('position', )
bgneal@75 105
bgneal@75 106 def __unicode__(self):
bgneal@75 107 return self.name
bgneal@75 108
bgneal@81 109 @models.permalink
bgneal@81 110 def get_absolute_url(self):
bgneal@81 111 return ('forums-forum_index', [self.slug])
bgneal@81 112
bgneal@75 113 def topic_count_update(self):
bgneal@75 114 """Call to notify the forum that its topic count has been updated."""
bgneal@75 115 self.topic_count = Topic.objects.filter(forum=self).count()
bgneal@75 116
bgneal@75 117 def post_count_update(self):
bgneal@75 118 """Call to notify the forum that its post count has been updated."""
bgneal@75 119 my_posts = Post.objects.filter(topic__forum=self)
bgneal@75 120 self.post_count = my_posts.count()
bgneal@75 121 if self.post_count > 0:
bgneal@75 122 self.last_post = my_posts[self.post_count - 1]
bgneal@75 123 else:
bgneal@75 124 self.last_post = None
bgneal@75 125
bgneal@112 126 def sync(self):
bgneal@112 127 """
bgneal@112 128 Call to notify the forum that it needs to recompute its
bgneal@112 129 denormalized fields.
bgneal@112 130 """
bgneal@112 131 self.topic_count_update()
bgneal@112 132 self.post_count_update()
bgneal@112 133
bgneal@107 134 def last_post_pre_delete(self):
bgneal@107 135 """
bgneal@107 136 Call this function prior to deleting the last post in the forum.
bgneal@107 137 A new last post will be found, if one exists.
bgneal@107 138 This is to avoid the Django cascading delete issue.
bgneal@107 139 """
bgneal@107 140 try:
bgneal@107 141 self.last_post = \
bgneal@107 142 Post.objects.filter(topic__forum=self).exclude(pk=self.last_post.pk).latest()
bgneal@107 143 except Post.DoesNotExist:
bgneal@107 144 self.last_post = None
bgneal@107 145
bgneal@113 146 def catchup(self, user, flv=None):
bgneal@113 147 """
bgneal@113 148 Call to mark this forum all caught up for the given user (i.e. mark all topics
bgneal@113 149 read for this user).
bgneal@113 150 """
bgneal@113 151 TopicLastVisit.objects.filter(user=user, topic__forum=self).delete()
bgneal@113 152 if flv is None:
bgneal@113 153 try:
bgneal@113 154 flv = ForumLastVisit.objects.get(user=user, forum=self)
bgneal@113 155 except ForumLastVisit.DoesNotExist:
bgneal@113 156 flv = ForumLastVisit(user=user, forum=self)
bgneal@113 157
bgneal@113 158 now = datetime.datetime.now()
bgneal@113 159 flv.begin_date = now
bgneal@113 160 flv.end_date = now
bgneal@113 161 flv.save()
bgneal@113 162
bgneal@75 163
bgneal@75 164 class Topic(models.Model):
bgneal@100 165 """
bgneal@100 166 A topic is a thread of discussion, consisting of a series of posts.
bgneal@100 167 """
bgneal@75 168 forum = models.ForeignKey(Forum, related_name='topics')
bgneal@75 169 name = models.CharField(max_length=255)
bgneal@75 170 creation_date = models.DateTimeField(auto_now_add=True)
bgneal@75 171 user = models.ForeignKey(User)
bgneal@75 172 view_count = models.IntegerField(blank=True, default=0)
bgneal@75 173 sticky = models.BooleanField(blank=True, default=False)
bgneal@75 174 locked = models.BooleanField(blank=True, default=False)
bgneal@75 175
bgneal@75 176 # denormalized fields to reduce database hits
bgneal@75 177 post_count = models.IntegerField(blank=True, default=0)
bgneal@102 178 update_date = models.DateTimeField()
bgneal@75 179 last_post = models.OneToOneField('Post', blank=True, null=True,
bgneal@75 180 related_name='parent_topic')
bgneal@75 181
bgneal@75 182 class Meta:
bgneal@75 183 ordering = ('-sticky', '-update_date', )
bgneal@75 184
bgneal@75 185 def __unicode__(self):
bgneal@75 186 return self.name
bgneal@75 187
bgneal@82 188 @models.permalink
bgneal@82 189 def get_absolute_url(self):
bgneal@82 190 return ('forums-topic_index', [self.pk])
bgneal@82 191
bgneal@75 192 def post_count_update(self):
bgneal@75 193 """
bgneal@75 194 Call this function to notify the topic instance that its post count
bgneal@75 195 has changed.
bgneal@75 196 """
bgneal@75 197 my_posts = Post.objects.filter(topic=self)
bgneal@75 198 self.post_count = my_posts.count()
bgneal@75 199 if self.post_count > 0:
bgneal@75 200 self.last_post = my_posts[self.post_count - 1]
bgneal@75 201 self.update_date = self.last_post.creation_date
bgneal@75 202 else:
bgneal@75 203 self.last_post = None
bgneal@75 204 self.update_date = self.creation_date
bgneal@75 205
bgneal@83 206 def reply_count(self):
bgneal@83 207 """
bgneal@83 208 Returns the number of replies to a topic. The first post
bgneal@83 209 doesn't count as a reply.
bgneal@83 210 """
bgneal@83 211 if self.post_count > 1:
bgneal@83 212 return self.post_count - 1
bgneal@83 213 return 0
bgneal@83 214
bgneal@102 215 def save(self, *args, **kwargs):
bgneal@102 216 if not self.id:
bgneal@102 217 now = datetime.datetime.now()
bgneal@102 218 self.creation_date = now
bgneal@102 219 self.update_date = now
bgneal@102 220
bgneal@102 221 super(Topic, self).save(*args, **kwargs)
bgneal@102 222
bgneal@107 223 def last_post_pre_delete(self):
bgneal@107 224 """
bgneal@107 225 Call this function prior to deleting the last post in the topic.
bgneal@107 226 A new last post will be found, if one exists.
bgneal@107 227 This is to avoid the Django cascading delete issue.
bgneal@107 228 """
bgneal@107 229 try:
bgneal@107 230 self.last_post = \
bgneal@107 231 Post.objects.filter(topic=self).exclude(pk=self.last_post.pk).latest()
bgneal@107 232 except Post.DoesNotExist:
bgneal@107 233 self.last_post = None
bgneal@107 234
bgneal@75 235
bgneal@75 236 class Post(models.Model):
bgneal@100 237 """
bgneal@100 238 A post is an instance of a user's single contribution to a topic.
bgneal@100 239 """
bgneal@75 240 topic = models.ForeignKey(Topic, related_name='posts')
bgneal@75 241 user = models.ForeignKey(User, related_name='posts')
bgneal@75 242 creation_date = models.DateTimeField(auto_now_add=True)
bgneal@115 243 update_date = models.DateTimeField(null=True)
bgneal@75 244 body = models.TextField()
bgneal@75 245 html = models.TextField()
bgneal@83 246 user_ip = models.IPAddressField(blank=True, default='', null=True)
bgneal@75 247
bgneal@75 248 class Meta:
bgneal@97 249 ordering = ('creation_date', )
bgneal@107 250 get_latest_by = 'creation_date'
bgneal@75 251
bgneal@91 252 @models.permalink
bgneal@91 253 def get_absolute_url(self):
bgneal@91 254 return ('forums-goto_post', [self.pk])
bgneal@91 255
bgneal@75 256 def summary(self):
bgneal@75 257 LIMIT = 50
bgneal@75 258 if len(self.body) < LIMIT:
bgneal@75 259 return self.body
bgneal@75 260 return self.body[:LIMIT] + '...'
bgneal@75 261
bgneal@75 262 def __unicode__(self):
bgneal@75 263 return self.summary()
bgneal@75 264
bgneal@75 265 def save(self, *args, **kwargs):
bgneal@128 266 self.html = site_markup(self.body)
bgneal@75 267 super(Post, self).save(*args, **kwargs)
bgneal@75 268
bgneal@75 269 def delete(self, *args, **kwargs):
bgneal@75 270 first_post_id = self.topic.posts.all()[0].id
bgneal@75 271 super(Post, self).delete(*args, **kwargs)
bgneal@75 272 if self.id == first_post_id:
bgneal@75 273 self.topic.delete()
bgneal@75 274
bgneal@113 275 def has_been_edited(self):
bgneal@115 276 return self.update_date is not None
bgneal@115 277
bgneal@115 278 def touch(self):
bgneal@115 279 """Call this function to indicate the post has been edited."""
bgneal@115 280 self.update_date = datetime.datetime.now()
bgneal@113 281
bgneal@98 282
bgneal@98 283 class FlaggedPost(models.Model):
bgneal@98 284 """This model represents a user flagging a post as inappropriate."""
bgneal@98 285 user = models.ForeignKey(User)
bgneal@98 286 post = models.ForeignKey(Post)
bgneal@98 287 flag_date = models.DateTimeField(auto_now_add=True)
bgneal@98 288
bgneal@98 289 def __unicode__(self):
bgneal@98 290 return u'Post ID %s flagged by %s' % (self.post.id, self.user.username)
bgneal@98 291
bgneal@98 292 class Meta:
bgneal@98 293 ordering = ('flag_date', )
bgneal@98 294
bgneal@98 295 def get_post_url(self):
bgneal@98 296 return '<a href="%s">Post</a>' % self.post.get_absolute_url()
bgneal@98 297 get_post_url.allow_tags = True
bgneal@98 298
bgneal@113 299
bgneal@113 300 class ForumLastVisit(models.Model):
bgneal@113 301 """
bgneal@113 302 This model records the last time a user visited a forum.
bgneal@113 303 It is used to compute if a user has unread topics in a forum.
bgneal@113 304 We keep track of a window of time, delimited by begin_date and end_date.
bgneal@113 305 Topics updated within this window are tracked, and may have TopicLastVisit
bgneal@113 306 objects.
bgneal@113 307 Marking a forum as all read sets the begin_date equal to the end_date.
bgneal@113 308 """
bgneal@113 309 user = models.ForeignKey(User)
bgneal@113 310 forum = models.ForeignKey(Forum)
bgneal@113 311 begin_date = models.DateTimeField()
bgneal@113 312 end_date = models.DateTimeField()
bgneal@113 313
bgneal@113 314 class Meta:
bgneal@113 315 unique_together = ('user', 'forum')
bgneal@113 316 ordering = ('-end_date', )
bgneal@113 317
bgneal@113 318 def __unicode__(self):
bgneal@113 319 return u'Forum: %d User: %d Date: %s' % (self.forum.id, self.user.id,
bgneal@113 320 self.end_date.strftime('%Y-%m-%d %H:%M:%S'))
bgneal@113 321
bgneal@113 322 def is_caught_up(self):
bgneal@113 323 return self.begin_date == self.end_date
bgneal@113 324
bgneal@113 325
bgneal@113 326 class TopicLastVisit(models.Model):
bgneal@113 327 """
bgneal@113 328 This model records the last time a user read a topic.
bgneal@113 329 Objects of this class exist for the window specified in the
bgneal@113 330 corresponding ForumLastVisit object.
bgneal@113 331 """
bgneal@113 332 user = models.ForeignKey(User)
bgneal@113 333 topic = models.ForeignKey(Topic)
bgneal@113 334 last_visit = models.DateTimeField()
bgneal@113 335
bgneal@113 336 class Meta:
bgneal@113 337 unique_together = ('user', 'topic')
bgneal@113 338 ordering = ('-last_visit', )
bgneal@113 339
bgneal@113 340 def __unicode__(self):
bgneal@113 341 return u'Topic: %d User: %d Date: %s' % (self.topic.id, self.user.id,
bgneal@113 342 self.last_visit.strftime('%Y-%m-%d %H:%M:%S'))
bgneal@113 343
bgneal@113 344 def save(self, *args, **kwargs):
bgneal@116 345 if self.id is None:
bgneal@113 346 self.touch()
bgneal@113 347 super(TopicLastVisit, self).save(*args, **kwargs)
bgneal@113 348
bgneal@113 349 def touch(self):
bgneal@113 350 self.last_visit = datetime.datetime.now()
bgneal@164 351
bgneal@164 352
bgneal@164 353 class Statistic(models.Model):
bgneal@164 354 """
bgneal@164 355 This model keeps track of forum statistics. Currently, the only statistic
bgneal@164 356 is the maximum number of users online. This stat is computed by a mgmt.
bgneal@164 357 command that is run on a cron job to peek at the "users_online" dict
bgneal@164 358 that is maintained in cache by the forums middleware.
bgneal@164 359 """
bgneal@164 360 max_users = models.IntegerField()
bgneal@164 361 max_users_date = models.DateTimeField()
bgneal@164 362
bgneal@164 363 def __unicode__(self):
bgneal@164 364 return u'%d users on %s' % (self.max_users,
bgneal@164 365 self.max_users_date.strftime('%Y-%m-%d %H:%M:%S'))
bgneal@164 366
bgneal@164 367 def save(self, *args, **kwargs):
bgneal@164 368 self.max_users_date = datetime.datetime.now()
bgneal@164 369 super(Statistic, self).save(*args, **kwargs)