2012-09-28 22:29:48 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright: (c) 2008, Jarek Zgoda <jarek.zgoda@gmail.com>
|
|
|
|
|
|
|
|
__revision__ = '$Id: views.py 21 2008-12-05 09:21:03Z jarek.zgoda $'
|
|
|
|
|
|
|
|
|
2013-06-17 18:01:22 +02:00
|
|
|
from django.shortcuts import render_to_response
|
2012-09-28 22:29:48 +02:00
|
|
|
from django.template import RequestContext
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
from confirmation.models import Confirmation
|
2013-06-17 18:01:22 +02:00
|
|
|
|
2012-09-28 22:29:48 +02:00
|
|
|
|
|
|
|
def confirm(request, confirmation_key):
|
|
|
|
confirmation_key = confirmation_key.lower()
|
|
|
|
obj = Confirmation.objects.confirm(confirmation_key)
|
|
|
|
confirmed = True
|
|
|
|
if not obj:
|
|
|
|
# confirmation failed
|
|
|
|
confirmed = False
|
|
|
|
try:
|
|
|
|
# try to get the object we was supposed to confirm
|
|
|
|
obj = Confirmation.objects.get(confirmation_key=confirmation_key)
|
|
|
|
except Confirmation.DoesNotExist:
|
|
|
|
pass
|
|
|
|
ctx = {
|
|
|
|
'object': obj,
|
|
|
|
'confirmed': confirmed,
|
|
|
|
'days': getattr(settings, 'EMAIL_CONFIRMATION_DAYS', 10),
|
2012-09-28 22:34:47 +02:00
|
|
|
'key': confirmation_key,
|
2013-11-05 22:13:59 +01:00
|
|
|
'full_name': request.GET.get("full_name", None),
|
2013-11-16 00:54:12 +01:00
|
|
|
'support_email': settings.ZULIP_ADMINISTRATOR,
|
2015-08-21 11:48:43 +02:00
|
|
|
'voyager': settings.VOYAGER
|
2012-09-28 22:29:48 +02:00
|
|
|
}
|
|
|
|
templates = [
|
|
|
|
'confirmation/confirm.html',
|
|
|
|
]
|
|
|
|
if obj:
|
|
|
|
# if we have an object, we can use specific template
|
2015-08-19 20:52:50 +02:00
|
|
|
templates.insert(0, 'confirmation/confirm_%s.html' % obj._meta.model_name)
|
2012-09-28 22:29:48 +02:00
|
|
|
return render_to_response(templates, ctx,
|
|
|
|
context_instance=RequestContext(request))
|