12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- """
- A few bits of helper functions for comment views.
- """
- import textwrap
- from django.http import HttpResponseRedirect
- from django.shortcuts import render_to_response, resolve_url
- from django.template import RequestContext
- from django.core.exceptions import ObjectDoesNotExist
- from django.contrib import comments
- from django.utils.http import is_safe_url
- from django.utils.six.moves.urllib.parse import urlencode
- def next_redirect(request, fallback, **get_kwargs):
- """
- Handle the "where should I go next?" part of comment views.
- The next value could be a
- ``?next=...`` GET arg or the URL of a given view (``fallback``). See
- the view modules for examples.
- Returns an ``HttpResponseRedirect``.
- """
- next = request.POST.get('next')
- if not is_safe_url(url=next, host=request.get_host()):
- next = resolve_url(fallback)
- if get_kwargs:
- if '#' in next:
- tmp = next.rsplit('#', 1)
- next = tmp[0]
- anchor = '#' + tmp[1]
- else:
- anchor = ''
- joiner = '&' if '?' in next else '?'
- next += joiner + urlencode(get_kwargs) + anchor
- return HttpResponseRedirect(next)
- def confirmation_view(template, doc="Display a confirmation view."):
- """
- Confirmation view generator for the "comment was
- posted/flagged/deleted/approved" views.
- """
- def confirmed(request):
- comment = None
- if 'c' in request.GET:
- try:
- comment = comments.get_model().objects.get(pk=request.GET['c'])
- except (ObjectDoesNotExist, ValueError):
- pass
- return render_to_response(template,
- {'comment': comment},
- context_instance=RequestContext(request)
- )
- confirmed.__doc__ = textwrap.dedent("""\
- %s
- Templates: :template:`%s``
- Context:
- comment
- The posted comment
- """ % (doc, template)
- )
- return confirmed
|