##// END OF EJS Templates
Using opening post ID from cache, not passing it to the post view
Using opening post ID from cache, not passing it to the post view

File last commit:

r610:11dde21a default
r621:59a1deab default
Show More
tag.py
104 lines | 2.7 KiB | text/x-python | PythonLexer
neko259
Changed tag popularity algorithm again a bit, now popularity is relative
r599 from boards.models import Thread, Post
neko259
Split up user models
r386 from django.db import models
neko259
Use aggregation to get tags popularity
r607 from django.db.models import Count, Sum
neko259
Split up tag module from post module
r385
__author__ = 'neko259'
neko259
Changed tags list algorithm, now using opacity to distinguish more popular...
r598 MAX_TAG_FONT = 1
MIN_TAG_FONT = 0.2
neko259
Added new popularity counter for tags
r509
neko259
More fixes for tags popularity...
r601 TAG_POPULARITY_MULTIPLIER = 20
neko259
Small changes to tag popularity
r600
neko259
More fixes for tags popularity...
r601 ARCHIVE_POPULARITY_MODIFIER = 0.5
neko259
Split up tag module from post module
r385
class TagManager(models.Manager):
def get_not_empty_tags(self):
tags = self.annotate(Count('threads')) \
neko259
Removed tags with only archived threads from all tags list
r610 .filter(threads__count__gt=0).filter(threads__archived=False) \
.order_by('name')
neko259
Split up tag module from post module
r385
return tags
class Tag(models.Model):
"""
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 A tag is a text node assigned to the thread. The tag serves as a board
section. There can be multiple tags for each thread
neko259
Split up tag module from post module
r385 """
objects = TagManager()
class Meta:
app_label = 'boards'
neko259
Small speedups. Added index on the name column for tag
r609 name = models.CharField(max_length=100, db_index=True)
neko259
Split up post model into post and thread to normalise models. Still need some refactoring
r398 threads = models.ManyToManyField(Thread, null=True,
neko259
Split up tag module from post module
r385 blank=True, related_name='tag+')
linked = models.ForeignKey('Tag', null=True, blank=True)
def __unicode__(self):
return self.name
def is_empty(self):
neko259
Speed up tag list generation a bit
r606 return self.get_thread_count() == 0
neko259
Split up tag module from post module
r385
neko259
Speed up tag list generation a bit
r606 def get_thread_count(self):
neko259
Split up tag module from post module
r385 return self.threads.count()
neko259
Added new popularity counter for tags
r509 def get_popularity(self):
neko259
Changed tag popularity algorithm again a bit, now popularity is relative
r599 all_post_count = Post.objects.all().count()
tag_reply_count = 0.0
neko259
Added new popularity counter for tags
r509
neko259
Speed up tag list generation a bit
r606 tag_reply_count += self.get_post_count()
tag_reply_count +=\
self.get_post_count(archived=True) * ARCHIVE_POPULARITY_MODIFIER
neko259
Added new popularity counter for tags
r509
neko259
Fixed thread autoarchiving
r603 popularity = tag_reply_count / all_post_count
neko259
Added new popularity counter for tags
r509
return popularity
neko259
Split up tag module from post module
r385
def get_linked_tags(self):
tag_list = []
self.get_linked_tags_list(tag_list)
return tag_list
def get_linked_tags_list(self, tag_list=[]):
"""
Returns the list of tags linked to current. The list can be got
through returned value or tag_list parameter
"""
linked_tag = self.linked
if linked_tag and not (linked_tag in tag_list):
tag_list.append(linked_tag)
linked_tag.get_linked_tags_list(tag_list)
def get_font_value(self):
"""Get tag font value to differ most popular tags in the list"""
neko259
Added new popularity counter for tags
r509 popularity = self.get_popularity()
neko259
Split up tag module from post module
r385
neko259
More fixes...
r602 font_value = popularity * Tag.objects.get_not_empty_tags().count()
neko259
More fixes for tags popularity...
r601 font_value = max(font_value, MIN_TAG_FONT)
neko259
Small changes to the tag popularity code
r519 font_value = min(font_value, MAX_TAG_FONT)
neko259
Split up tag module from post module
r385
neko259
Small changes to the tag popularity code
r519 return str(font_value)
neko259
Speed up tag list generation a bit
r606
def get_post_count(self, archived=False):
posts_count = 0
neko259
Use aggregation to get tags popularity
r607 threads = self.threads.filter(archived=archived)
if threads.exists():
posts_count = threads.annotate(posts_count=Count('replies')).aggregate(
posts_sum=Sum('posts_count'))['posts_sum']
if not posts_count:
posts_count = 0
neko259
Speed up tag list generation a bit
r606
return posts_count