
    .~h                         d dl mZ d dlmZ d dlmZ ddlmZ ddlm	Z	 ddl
mZ ddlmZ dd	lmZ dd
lmZ  G d de      Z G d de      Z G d de      Zy)    )settings)get_current_site)render   )signals)RegistrationProfile)	UserModel)ActivationView)RegistrationView)ResendActivationViewc                   8    e Zd ZdZ eedd      ZdZeZ	d Z
d Zy)r   a\  
    A registration backend which follows a simple workflow:

    1. User signs up, inactive account is created.

    2. Email is sent to user with activation link.

    3. User clicks activation link, account is now active.

    Using this backend requires that

    * ``registration`` be listed in the ``INSTALLED_APPS`` setting
      (since this backend makes use of models defined in this
      application).

    * The setting ``ACCOUNT_ACTIVATION_DAYS`` be supplied, specifying
      (as an integer) the number of days from registration during
      which a user may activate their account (after that period
      expires, activation will be disallowed).

    * The creation of the templates
      ``registration/activation_email_subject.txt`` and
      ``registration/activation_email.txt``, which will be used for
      the activation email. See the notes for this backends
      ``register`` method for details regarding these templates.

    When subclassing this view, you can set the ``SEND_ACTIVATION_EMAIL``
    class variable to False to skip sending the new user a confirmation
    email or set ``SEND_ACTIVATION_EMAIL`` to ``False``. Doing so implies
    that you will have to activate the user manually from the admin site or
    send an activation by some other method. For example, by listening for
    the ``user_registered`` signal.

    Additionally, registration can be temporarily closed by adding the
    setting ``REGISTRATION_OPEN`` and setting it to
    ``False``. Omitting this setting, or setting it to ``True``, will
    be interpreted as meaning that registration is currently open and
    permitted.

    Internally, this is accomplished via storing an activation key in
    an instance of ``registration.models.RegistrationProfile``. See
    that model and its custom manager for full documentation of its
    fields and supported operations.

    SEND_ACTIVATION_EMAILTregistration_completec                    t        | j                        }t        |d      r|j                  d      }n. t	               j
                  j                  di |j                  }| j                  j
                  j                  ||| j                  | j                        }t        j                  j                  | j                  || j                         |S )a  
        Given a username, email address and password, register a new
        user account, which will initially be inactive.

        Along with the new ``User`` object, a new
        ``registration.models.RegistrationProfile`` will be created,
        tied to that ``User``, containing the activation key which
        will be used for this account.

        An email will be sent to the supplied email address; this
        email should contain an activation link. The email will be
        rendered using two templates. See the documentation for
        ``RegistrationProfile.send_activation_email()`` for
        information about these templates and the contexts provided to
        them.

        After the ``User`` and ``RegistrationProfile`` are created and
        the activation email is sent, the signal
        ``registration.signals.user_registered`` will be sent, with
        the new ``User`` as the keyword argument ``user`` and the
        class of this backend as the sender.

        saveF)commit)new_usersite
send_emailrequestsenderuserr    )r   r   hasattrr   r	   objectscreate_usercleaned_dataregistration_profilecreate_inactive_userr   r   user_registeredsend	__class__)selfformr   new_user_instancer   s        l/var/www/peopleoo.sandbox-dev.co.uk/venv/lib/python3.12/site-packages/registration/backends/default/views.pyregisterzRegistrationView.register@   s    0  -4  $			 7".!4!4"-+"C040A0A"C ,,44II&11LL	 J 
 	$$DNN*2-1\\ 	% 	;     c                 $    t        t        dd      S )a  
        Indicate whether account registration is currently permitted,
        based on the value of the setting ``REGISTRATION_OPEN``. This
        is determined as follows:

        * If ``REGISTRATION_OPEN`` is not specified in settings, or is
          set to ``True``, registration is permitted.

        * If ``REGISTRATION_OPEN`` is both specified and set to
          ``False``, registration is not permitted.

        REGISTRATION_OPENT)getattrr   )r$   s    r'   registration_allowedz%RegistrationView.registration_allowedk   s     x!4d;;r)   N)__name__
__module____qualname____doc__r,   r   r   success_urlr   r   r(   r-   r   r)   r'   r   r      s0    ,Z $H.EtL)K.)V<r)   r   c                       e Zd ZeZd Zd Zy)r
   c                    |j                  dd      }t        | j                        }| j                  j                  j                  ||      \  }}|r6t        j                  j                  | j                  || j                         |S )at  
        Given an an activation key, look up and activate the user
        account corresponding to that key (if possible).

        After successful activation, the signal
        ``registration.signals.user_activated`` will be sent, with the
        newly activated ``User`` as the keyword argument ``user`` and
        the class of this backend as the sender.

        activation_key r   )
getr   r   r   r   activate_userr   user_activatedr"   r#   )r$   argskwargsr5   r   r   	activateds          r'   activatezActivationView.activate   s{      $4b9-33;;IID"i""''t~~-104 ( > r)   c                     ddi fS )N registration_activation_completer   r   )r$   r   s     r'   get_success_urlzActivationView.get_success_url   s    2B;;r)   N)r.   r/   r0   r   r   r=   r@   r   r)   r'   r
   r
   {   s    .*<r)   r
   c                       e Zd ZeZd Zd Zy)r   c                     t        | j                        }|j                  d   }| j                  j                  j                  ||| j                        S )aW  
        Given an email, look up user by email and resend activation key
        if user is not already activated or previous activation key has
        not expired. Note that if multiple users exist with the given
        email, no emails will be sent.

        Returns True if activation key was successfully sent, False otherwise.

        email)r   r   r   r   r   resend_activation_mail)r$   r%   r   rC   s       r'   resend_activationz&ResendActivationView.resend_activation   sL      -!!'*((00GG4' 	'r)   c                 V    |j                   d   }d|i}t        | j                  d|      S )zX
        Renders resend activation complete template with the submitted email.

        rC   z,registration/resend_activation_complete.html)r   r   r   )r$   r%   rC   contexts       r'   render_form_submitted_templatez3ResendActivationView.render_form_submitted_template   s7    
 !!'*E"dllD 	r)   N)r.   r/   r0   r   r   rE   rH   r   r)   r'   r   r      s    .'	r)   r   N)django.confr   django.contrib.sites.shortcutsr   django.shortcutsr   r6   r   modelsr   usersr	   viewsr
   BaseActivationViewr   BaseRegistrationViewr   BaseResendActivationViewr   r)   r'   <module>rR      sJ      ; #  )  9 = Ek<+ k<\<' <:3 r)   