##// END OF EJS Templates
Added missing migration files
Added missing migration files

File last commit:

r1378:2ac2fd63 default
r1415:142b86aa default
Show More
feed.py
71 lines | 2.3 KiB | text/x-python | PythonLexer
neko259
Added all posts feed
r1165 from django.core.urlresolvers import reverse
neko259
Get all posts with the same tripcode
r1302 from django.shortcuts import render
neko259
Added all posts feed
r1165
from boards.abstracts.paginator import get_paginator
neko259
Don't show posts from ignored tag threads in the feed
r1170 from boards.abstracts.settingsmanager import get_settings_manager
neko259
Get all posts with the same tripcode
r1302 from boards.models import Post
neko259
Added all posts feed
r1165 from boards.views.base import BaseBoardView
from boards.views.posting_mixin import PostMixin
neko259
Get all posts with the same tripcode
r1302 POSTS_PER_PAGE = 10
neko259
Added all posts feed
r1165
PARAMETER_CURRENT_PAGE = 'current_page'
PARAMETER_PAGINATOR = 'paginator'
PARAMETER_POSTS = 'posts'
neko259
Get all posts with the same tripcode
r1302 PARAMETER_ADDITONAL_ATTRS = 'additional_attrs'
neko259
Added all posts feed
r1165
PARAMETER_PREV_LINK = 'prev_page_link'
PARAMETER_NEXT_LINK = 'next_page_link'
TEMPLATE = 'boards/feed.html'
DEFAULT_PAGE = 1
class FeedView(PostMixin, BaseBoardView):
neko259
Use GET parameter to specify a page instead of different url reversers
r1204 def get(self, request):
page = request.GET.get('page', DEFAULT_PAGE)
neko259
Get all posts with the same tripcode
r1302 tripcode = request.GET.get('tripcode', None)
neko259
Use GET parameter to specify a page instead of different url reversers
r1204
neko259
Added all posts feed
r1165 params = self.get_context_data(request=request)
neko259
Don't show posts from ignored tag threads in the feed
r1170 settings_manager = get_settings_manager(request)
neko259
Get all posts with the same tripcode
r1302 posts = Post.objects.exclude(
threads__tags__in=settings_manager.get_hidden_tags()).order_by(
'-pub_time').prefetch_related('images', 'thread', 'threads')
if tripcode:
posts = posts.filter(tripcode=tripcode)
paginator = get_paginator(posts, POSTS_PER_PAGE)
neko259
Added all posts feed
r1165 paginator.current_page = int(page)
params[PARAMETER_POSTS] = paginator.page(page).object_list
neko259
Get all posts with the same tripcode
r1302 additional_params = dict()
if tripcode:
additional_params['tripcode'] = tripcode
params[PARAMETER_ADDITONAL_ATTRS] = '&tripcode=' + tripcode
neko259
Made feed view use the new-style paginator links
r1378 paginator.set_url(reverse('feed'), request.GET.dict())
self.get_page_context(paginator, params, page)
neko259
Added all posts feed
r1165
return render(request, TEMPLATE, params)
# TODO Dedup this into PagedMixin
neko259
Made feed view use the new-style paginator links
r1378 def get_page_context(self, paginator, params, page):
neko259
Added all posts feed
r1165 """
Get pagination context variables
"""
params[PARAMETER_PAGINATOR] = paginator
current_page = paginator.page(int(page))
params[PARAMETER_CURRENT_PAGE] = current_page
if current_page.has_previous():
neko259
Made feed view use the new-style paginator links
r1378 params[PARAMETER_PREV_LINK] = paginator.get_page_url(
current_page.previous_page_number())
neko259
Added all posts feed
r1165 if current_page.has_next():
neko259
Made feed view use the new-style paginator links
r1378 params[PARAMETER_NEXT_LINK] = paginator.get_page_url(
current_page.next_page_number())
neko259
Added all posts feed
r1165