Mercurial > public > sg101
view forums/views/favorites.py @ 943:cf9918328c64
Haystack tweaks for Django 1.7.7.
I had to upgrade to Haystack 2.3.1 to get it to work with Django
1.7.7. I also had to update the Xapian backend. But I ran into
problems.
On my laptop anyway (Ubuntu 14.0.4), xapian gets mad when search terms
are greater than 245 chars (or something) when indexing. So I created
a custom field that would simply omit terms greater than 64 chars and
used this field everywhere I previously used a CharField.
Secondly, the custom search form was broken now. Something changed in
the Xapian backend and exact searches stopped working. Fortunately the
auto_query (which I was using originally and broke during an upgrade)
started working again. So I cut the search form back over to doing an
auto_query. I kept the form the same (3 fields) because I didn't want
to change the form and I think it's better that way.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 13 May 2015 20:25:07 -0500 |
parents | b347a31d12dd |
children | e932f2ecd4a7 |
line wrap: on
line source
""" This module contains view functions related to forum favorites (bookmarks). """ from django.contrib.auth.decorators import login_required from django.core.urlresolvers import reverse from django.views.decorators.http import require_POST from django.shortcuts import get_object_or_404 from django.shortcuts import render_to_response from django.template import RequestContext from django.http import HttpResponseRedirect from django.http import HttpResponseForbidden from django.http import Http404 from django.core.paginator import InvalidPage from core.paginator import DiggPaginator from forums.models import Topic import forums.permissions as perms @login_required @require_POST def favorite_topic(request, topic_id): """ This function handles the "favoriting" (bookmarking) of a forum topic by a user. """ topic = get_object_or_404(Topic.objects.select_related(), id=topic_id) if perms.can_access(topic.forum.category, request.user): topic.bookmarkers.add(request.user) return HttpResponseRedirect( reverse("forums-favorites_status", args=[topic.id])) return HttpResponseForbidden() @login_required def manage_favorites(request): """Display a user's favorite topics and allow them to be deleted.""" user = request.user if request.method == "POST": if request.POST.get('delete_all'): user.favorite_topics.clear() else: delete_ids = request.POST.getlist('delete_ids') try: delete_ids = [int(id) for id in delete_ids] except ValueError: raise Http404 for topic in user.favorite_topics.filter(id__in=delete_ids): user.favorite_topics.remove(topic) return HttpResponseRedirect(reverse("forums-manage_favorites")) page_num = request.GET.get('page', 1) topics = user.favorite_topics.select_related().order_by('-update_date') paginator = DiggPaginator(topics, 20, body=5, tail=2, margin=3, padding=2) try: page_num = int(page_num) except ValueError: page_num = 1 try: page = paginator.page(page_num) except InvalidPage: raise Http404 return render_to_response('forums/manage_topics.html', { 'page_title': 'Favorite Topics', 'description': 'Your favorite topics are listed below.', 'page': page, }, context_instance=RequestContext(request)) @login_required def favorites_status(request, topic_id): """Display the favorite status for the given topic.""" topic = get_object_or_404(Topic.objects.select_related(), id=topic_id) is_favorite = request.user in topic.bookmarkers.all() return render_to_response('forums/favorite_status.html', { 'topic': topic, 'is_favorite': is_favorite, }, context_instance=RequestContext(request)) @login_required @require_POST def unfavorite_topic(request, topic_id): """ Un-favorite the user from the requested topic. """ topic = get_object_or_404(Topic, id=topic_id) topic.bookmarkers.remove(request.user) return HttpResponseRedirect( reverse("forums-favorites_status", args=[topic.id]))