4 from urllib import unquote
5 from forum import settings as django_settings
6 from django.shortcuts import render_to_response, get_object_or_404
7 from django.http import HttpResponseRedirect, HttpResponse, Http404, HttpResponsePermanentRedirect
8 from django.core.paginator import Paginator, EmptyPage, InvalidPage
9 from django.template import RequestContext
10 from django import template
11 from django.utils.html import *
12 from django.utils import simplejson
13 from django.utils.encoding import smart_unicode
14 from django.db.models import Q, Count
15 from django.utils.translation import ugettext as _
16 from django.template.defaultfilters import slugify
17 from django.core.urlresolvers import reverse
18 from django.utils.datastructures import SortedDict
19 from django.views.decorators.cache import cache_page
20 from django.utils.http import urlquote as django_urlquote
21 from django.template.defaultfilters import slugify
22 from django.utils.safestring import mark_safe
24 from forum.utils.html import sanitize_html, hyperlink
25 from forum.utils.diff import textDiff as htmldiff
26 from forum.utils import pagination
27 from forum.forms import *
28 from forum.models import *
29 from forum.forms import get_next_url
30 from forum.actions import QuestionViewAction
31 from forum.http_responses import HttpResponseUnauthorized
32 from forum.feed import RssQuestionFeed, RssAnswerFeed
33 from forum.utils.pagination import generate_uri
36 class HottestQuestionsSort(pagination.SortBase):
37 def apply(self, questions):
38 return questions.annotate(new_child_count=Count('all_children')).filter(
39 all_children__added_at__gt=datetime.datetime.now() - datetime.timedelta(days=1)).order_by('-new_child_count')
42 class QuestionListPaginatorContext(pagination.PaginatorContext):
43 def __init__(self, id='QUESTIONS_LIST', prefix='', default_pagesize=30):
44 super (QuestionListPaginatorContext, self).__init__(id, sort_methods=(
45 (_('active'), pagination.SimpleSort(_('active'), '-last_activity_at', _("Most <strong>recently updated</strong> questions"))),
46 (_('newest'), pagination.SimpleSort(_('newest'), '-added_at', _("most <strong>recently asked</strong> questions"))),
47 (_('hottest'), HottestQuestionsSort(_('hottest'), _("most <strong>active</strong> questions in the last 24 hours</strong>"))),
48 (_('mostvoted'), pagination.SimpleSort(_('most voted'), '-score', _("most <strong>voted</strong> questions"))),
49 ), pagesizes=(15, 30, 50), default_pagesize=default_pagesize, prefix=prefix)
51 class AnswerSort(pagination.SimpleSort):
52 def apply(self, answers):
53 if not settings.DISABLE_ACCEPTING_FEATURE:
54 return answers.order_by(*(['-marked'] + list(self._get_order_by())))
56 return super(AnswerSort, self).apply(answers)
58 class AnswerPaginatorContext(pagination.PaginatorContext):
59 def __init__(self, id='ANSWER_LIST', prefix='', default_pagesize=10):
60 super (AnswerPaginatorContext, self).__init__(id, sort_methods=(
61 (_('oldest'), AnswerSort(_('oldest answers'), 'added_at', _("oldest answers will be shown first"))),
62 (_('newest'), AnswerSort(_('newest answers'), '-added_at', _("newest answers will be shown first"))),
63 (_('votes'), AnswerSort(_('popular answers'), ('-score', 'added_at'), _("most voted answers will be shown first"))),
64 ), default_sort=_('votes'), pagesizes=(5, 10, 20), default_pagesize=default_pagesize, prefix=prefix)
66 class TagPaginatorContext(pagination.PaginatorContext):
68 super (TagPaginatorContext, self).__init__('TAG_LIST', sort_methods=(
69 (_('name'), pagination.SimpleSort(_('by name'), 'name', _("sorted alphabetically"))),
70 (_('used'), pagination.SimpleSort(_('by popularity'), '-used_count', _("sorted by frequency of tag use"))),
71 ), default_sort=_('used'), pagesizes=(30, 60, 120))
75 return RssQuestionFeed(
77 Question.objects.filter_state(deleted=False).order_by('-last_activity_at'),
78 settings.APP_TITLE + _(' - ')+ _('latest questions'),
79 settings.APP_DESCRIPTION)(request)
81 @decorators.render('index.html')
83 paginator_context = QuestionListPaginatorContext()
84 paginator_context.base_path = reverse('questions')
85 return question_list(request,
86 Question.objects.all(),
87 base_path=reverse('questions'),
88 feed_url=reverse('latest_questions_feed'),
89 paginator_context=paginator_context)
91 @decorators.render('questions.html', 'unanswered', _('unanswered'), weight=400)
92 def unanswered(request):
93 return question_list(request,
94 Question.objects.exclude(id__in=Question.objects.filter(children__marked=True).distinct()),
95 _('open questions without an accepted answer'),
97 _("Unanswered Questions"))
99 @decorators.render('questions.html', 'questions', _('questions'), weight=0)
100 def questions(request):
101 return question_list(request, Question.objects.all(), _('questions'))
103 @decorators.render('questions.html')
104 def tag(request, tag):
106 tag = Tag.active.get(name=unquote(tag))
107 except Tag.DoesNotExist:
110 # Getting the questions QuerySet
111 questions = Question.objects.filter(tags__id=tag.id)
113 if request.method == "GET":
114 user = request.GET.get('user', None)
118 questions = questions.filter(author=User.objects.get(username=user))
119 except User.DoesNotExist:
122 return question_list(request,
124 mark_safe(_(u'questions tagged <span class="tag">%(tag)s</span>') % {'tag': tag}),
126 mark_safe(_(u'Questions Tagged With %(tag)s') % {'tag': tag}),
129 @decorators.render('questions.html', 'questions', tabbed=False)
130 def user_questions(request, mode, user, slug):
131 user = get_object_or_404(User, id=user)
133 if mode == _('asked-by'):
134 questions = Question.objects.filter(author=user)
135 description = _("Questions asked by %s")
136 elif mode == _('answered-by'):
137 questions = Question.objects.filter(children__author=user, children__node_type='answer').distinct()
138 description = _("Questions answered by %s")
139 elif mode == _('subscribed-by'):
140 if not (request.user.is_superuser or request.user == user):
141 return HttpResponseUnauthorized(request)
142 questions = user.subscriptions
144 if request.user == user:
145 description = _("Questions you subscribed %s")
147 description = _("Questions subscribed by %s")
152 return question_list(request, questions,
153 mark_safe(description % hyperlink(user.get_profile_url(), user.username)),
154 page_title=description % user.username)
156 def question_list(request, initial,
157 list_description=_('questions'),
159 page_title=_("All Questions"),
160 allowIgnoreTags=True,
162 paginator_context=None):
164 questions = initial.filter_state(deleted=False)
166 if request.user.is_authenticated() and allowIgnoreTags:
167 questions = questions.filter(~Q(tags__id__in = request.user.marked_tags.filter(user_selections__reason = 'bad')))
169 if page_title is None:
170 page_title = _("Questions")
172 if request.GET.get('type', None) == 'rss':
173 questions = questions.order_by('-added_at')
174 return RssQuestionFeed(request, questions, page_title, list_description)(request)
177 if request.GET.get("q"):
178 keywords = request.GET.get("q").strip()
180 #answer_count = Answer.objects.filter_state(deleted=False).filter(parent__in=questions).count()
181 #answer_description = _("answers")
184 req_params = generate_uri(request.GET, (_('page'), _('pagesize'), _('sort')))
186 req_params = '&' + req_params
188 feed_url = request.path + "?type=rss" + req_params
190 return pagination.paginated(request, ('questions', paginator_context or QuestionListPaginatorContext()), {
191 "questions" : questions.distinct(),
192 "questions_count" : questions.count(),
193 "keywords" : keywords,
194 "list_description": list_description,
195 "base_path" : base_path,
196 "page_title" : page_title,
198 'feed_url': feed_url,
203 if request.method == "GET" and "q" in request.GET:
204 keywords = request.GET.get("q")
205 search_type = request.GET.get("t")
208 return HttpResponseRedirect(reverse(index))
209 if search_type == 'tag':
210 return HttpResponseRedirect(reverse('tags') + '?q=%s' % urlquote(keywords.strip()))
211 elif search_type == "user":
212 return HttpResponseRedirect(reverse('users') + '?q=%s' % urlquote(keywords.strip()))
214 return question_search(request, keywords)
216 return render_to_response("search.html", context_instance=RequestContext(request))
218 @decorators.render('questions.html')
219 def question_search(request, keywords):
220 can_rank, initial = Question.objects.search(keywords)
223 paginator_context = QuestionListPaginatorContext()
224 paginator_context.sort_methods[_('ranking')] = pagination.SimpleSort(_('relevance'), '-ranking', _("most relevant questions"))
225 paginator_context.force_sort = _('ranking')
227 paginator_context = None
229 feed_url = mark_safe(escape(request.path + "?type=rss&q=" + keywords))
231 return question_list(request, initial,
232 _("questions matching '%(keywords)s'") % {'keywords': keywords},
234 _("questions matching '%(keywords)s'") % {'keywords': keywords},
235 paginator_context=paginator_context,
239 @decorators.render('tags.html', 'tags', _('tags'), weight=100)
242 tags = Tag.active.all()
244 if request.method == "GET":
245 stag = request.GET.get("q", "").strip()
247 tags = tags.filter(name__icontains=stag)
249 return pagination.paginated(request, ('tags', TagPaginatorContext()), {
255 def update_question_view_times(request, question):
256 last_seen_in_question = request.session.get('last_seen_in_question', {})
258 last_seen = last_seen_in_question.get(question.id, None)
260 if (not last_seen) or (last_seen < question.last_activity_at):
261 QuestionViewAction(question, request.user, ip=request.META['REMOTE_ADDR']).save()
262 last_seen_in_question[question.id] = datetime.datetime.now()
263 request.session['last_seen_in_question'] = last_seen_in_question
265 def match_question_slug(id, slug):
266 slug_words = slug.split('-')
267 qs = Question.objects.filter(title__istartswith=slug_words[0])
270 if slug == urlquote(slugify(q.title)):
275 def answer_redirect(request, answer):
276 pc = AnswerPaginatorContext()
278 sort = pc.sort(request)
280 if sort == _('oldest'):
281 filter = Q(added_at__lt=answer.added_at)
282 elif sort == _('newest'):
283 filter = Q(added_at__gt=answer.added_at)
284 elif sort == _('votes'):
285 filter = Q(score__gt=answer.score) | Q(score=answer.score, added_at__lt=answer.added_at)
289 count = answer.question.answers.filter(Q(marked=True) | filter).exclude(state_string="(deleted)").count()
290 pagesize = pc.pagesize(request)
292 page = count / pagesize
300 return HttpResponsePermanentRedirect("%s?%s=%s#%s" % (
301 answer.question.get_absolute_url(), _('page'), page, answer.id))
303 @decorators.render("question.html", 'questions')
304 def question(request, id, slug='', answer=None):
306 question = Question.objects.get(id=id)
309 question = match_question_slug(id, slug)
310 if question is not None:
311 return HttpResponseRedirect(question.get_absolute_url())
315 if question.nis.deleted and not request.user.can_view_deleted_post(question):
318 if request.GET.get('type', None) == 'rss':
319 return RssAnswerFeed(request, question, include_comments=request.GET.get('comments', None) == 'yes')(request)
322 answer = get_object_or_404(Answer, id=answer)
324 if (question.nis.deleted and not request.user.can_view_deleted_post(question)) or answer.question != question:
328 return HttpResponsePermanentRedirect(question.get_absolute_url())
330 return answer_redirect(request, answer)
332 if settings.FORCE_SINGLE_URL and (slug != slugify(question.title)):
333 return HttpResponsePermanentRedirect(question.get_absolute_url())
336 answer_form = AnswerForm(request.POST, user=request.user)
338 answer_form = AnswerForm(user=request.user)
340 answers = request.user.get_visible_answers(question)
342 update_question_view_times(request, question)
344 if request.user.is_authenticated():
346 subscription = QuestionSubscription.objects.get(question=question, user=request.user)
352 return pagination.paginated(request, ('answers', AnswerPaginatorContext()), {
353 "question" : question,
354 "answer" : answer_form,
356 "similar_questions" : question.get_related_questions(),
357 "subscription": subscription,
361 REVISION_TEMPLATE = template.loader.get_template('node/revision.html')
363 def revisions(request, id):
364 post = get_object_or_404(Node, id=id).leaf
365 revisions = list(post.revisions.order_by('revised_at'))
368 for i, revision in enumerate(revisions):
369 rev_ctx.append(dict(inst=revision, html=template.loader.get_template('node/revision.html').render(template.Context({
370 'title': revision.title,
371 'html': revision.html,
372 'tags': revision.tagname_list(),
376 rev_ctx[i]['diff'] = mark_safe(htmldiff(rev_ctx[i-1]['html'], rev_ctx[i]['html']))
378 rev_ctx[i]['diff'] = mark_safe(rev_ctx[i]['html'])
380 if not (revision.summary):
381 rev_ctx[i]['summary'] = _('Revision n. %(rev_number)d') % {'rev_number': revision.revision}
383 rev_ctx[i]['summary'] = revision.summary
387 return render_to_response('revisions.html', {
389 'revisions': rev_ctx,
390 }, context_instance=RequestContext(request))