mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- 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 $'
 | 
						|
 | 
						|
 | 
						|
from django.shortcuts import render
 | 
						|
from django.http import HttpRequest, HttpResponse
 | 
						|
 | 
						|
from confirmation.models import Confirmation, get_object_from_key, ConfirmationKeyException, \
 | 
						|
    render_confirmation_key_error
 | 
						|
 | 
						|
from typing import Any, Dict
 | 
						|
 | 
						|
# This is currently only used for confirming PreregistrationUser.
 | 
						|
# Do not add other confirmation paths here.
 | 
						|
def confirm(request: HttpRequest, confirmation_key: str) -> HttpResponse:
 | 
						|
    try:
 | 
						|
        get_object_from_key(confirmation_key, Confirmation.USER_REGISTRATION)
 | 
						|
    except ConfirmationKeyException:
 | 
						|
        try:
 | 
						|
            get_object_from_key(confirmation_key, Confirmation.INVITATION)
 | 
						|
        except ConfirmationKeyException as exception:
 | 
						|
            return render_confirmation_key_error(request, exception)
 | 
						|
 | 
						|
    return render(request, 'confirmation/confirm_preregistrationuser.html',
 | 
						|
                  context={
 | 
						|
                      'key': confirmation_key,
 | 
						|
                      'full_name': request.GET.get("full_name", None)})
 |