o
    DfT                     @   sv  d dl Z d dlZd dlZd dlZdZG dd deZG dd deZG dd dZ	G d	d
 d
Z
G dd dZG dd dZG dd dZG dd dZG dd dZG dd dZG dd dZG dd deZG dd deZG dd dZG dd  d ZG d!d" d"ZG d#d$ d$ZG d%d& d&ZG d'd( d(ZeZe	ZeZeZe
ZeZeZ eZ!eZ"eZ#eZ$eZ%eZ&eZ'eZ(dS ))    N)!DataRequireddata_requiredEmailemailEqualToequal_to	IPAddress
ip_addressInputRequiredinput_requiredLengthlengthNumberRangenumber_rangeOptionaloptionalRegexpregexpURLurlAnyOfany_ofNoneOfnone_of
MacAddressmac_addressUUIDValidationErrorStopValidationreadonlyReadOnlydisabledDisabledc                   @      e Zd ZdZdddZdS )r   z>
    Raised when a validator fails to validate its input.
     c                 O      t j| |g|R i | d S N)
ValueError__init__selfmessageargskwargs r.   K/home/ubuntu/webapp/venv/lib/python3.10/site-packages/wtforms/validators.pyr(   0      zValidationError.__init__Nr$   __name__
__module____qualname____doc__r(   r.   r.   r.   r/   r   +   s    r   c                   @   r#   )r   z
    Causes the validation chain to stop.

    If StopValidation is raised, no more validators in the validation chain are
    called. If raised with a message, the message will be added to the errors
    list.
    r$   c                 O   r%   r&   )	Exceptionr(   r)   r.   r.   r/   r(   =   r0   zStopValidation.__init__Nr1   r2   r.   r.   r.   r/   r   4   s    r   c                   @   "   e Zd ZdZdddZdd ZdS )r   a9  
    Compares the values of two fields.

    :param fieldname:
        The name of the other field to compare to.
    :param message:
        Error message to raise in case of a validation error. Can be
        interpolated with `%(other_label)s` and `%(other_name)s` to provide a
        more helpful error.
    Nc                 C      || _ || _d S r&   )	fieldnamer+   )r*   r:   r+   r.   r.   r/   r(   M      
zEqualTo.__init__c              
   C   s   z|| j  }W n ty } zt|d| j  |d }~ww |j|jkr'd S t|dr0|jjp2| j | j d}| j}|d u rC|d}t|| )NzInvalid field name '%s'.label)other_label
other_namez&Field must be equal to %(other_name)s.)	r:   KeyErrorr   gettextdatahasattrr<   textr+   )r*   formfieldotherexcdr+   r.   r.   r/   __call__Q   s,   

zEqualTo.__call__r&   r3   r4   r5   r6   r(   rI   r.   r.   r.   r/   r   A   s    
r   c                   @   s"   e Zd ZdZdddZdd ZdS )	r   a\  
    Validates the length of a string.

    :param min:
        The minimum required length of the string. If not provided, minimum
        length will not be checked.
    :param max:
        The maximum length of the string. If not provided, maximum length
        will not be checked.
    :param message:
        Error message to raise in case of a validation error. Can be
        interpolated using `%(min)d` and `%(max)d` if desired. Useful defaults
        are provided depending on the existence of min and max.

    When supported, sets the `minlength` and `maxlength` attributes on widgets.
    Nc                 C   s|   |dks|dksJ d|dks||ksJ d|| _ || _|| _i | _| j dkr/| j | jd< | jdkr<| j| jd< d S d S )NrK   z1At least one of `min` or `max` must be specified.z `min` cannot be more than `max`.	minlength	maxlengthminmaxr+   field_flagsr*   rO   rP   r+   r.   r.   r/   r(   z   s   

zLength.__init__c                 C   s   |j rt|j p	d}|| jkr| jdks|| jkrd S | jd ur$| j}n0| jdkr2|dd| j}n"| jdkr@|dd| j}n| j| jkrO|dd| j}n|d	}t|t| j| j|d
 )Nr   rK   z.Field must be at least %(min)d character long.z/Field must be at least %(min)d characters long.z.Field cannot be longer than %(max)d character.z/Field cannot be longer than %(max)d characters.z-Field must be exactly %(max)d character long.z.Field must be exactly %(max)d characters long.z:Field must be between %(min)d and %(max)d characters long.)rO   rP   r   )	rA   lenrO   rP   r+   ngettextr@   r   dict)r*   rD   rE   r   r+   r.   r.   r/   rI      s6   


zLength.__call__)rK   rK   NrJ   r.   r.   r.   r/   r   h   s    
r   c                   @   r8   )r   a  
    Validates that a number is of a minimum and/or maximum value, inclusive.
    This will work with any comparable number type, such as floats and
    decimals, not just integers.

    :param min:
        The minimum required value of the number. If not provided, minimum
        value will not be checked.
    :param max:
        The maximum value of the number. If not provided, maximum value
        will not be checked.
    :param message:
        Error message to raise in case of a validation error. Can be
        interpolated using `%(min)s` and `%(max)s` if desired. Useful defaults
        are provided depending on the existence of min and max.

    When supported, sets the `min` and `max` attributes on widgets.
    Nc                 C   sL   || _ || _|| _i | _| j d ur| j | jd< | jd ur$| j| jd< d S d S )NrO   rP   rN   rR   r.   r.   r/   r(      s   

zNumberRange.__init__c                 C   s   |j }|d ur"t|s"| jd u s|| jkr"| jd u s || jkr"d S | jd ur+| j}n| jd u r6|d}n| jd u rA|d}n|d}t|t| j| jd )Nz Number must be at least %(min)s.zNumber must be at most %(max)s.z+Number must be between %(min)s and %(max)s.)rO   rP   )	rA   mathisnanrO   rP   r+   r@   r   rU   )r*   rD   rE   rA   r+   r.   r.   r/   rI      s   



zNumberRange.__call__)NNNrJ   r.   r.   r.   r/   r      s    

r   c                   @   s"   e Zd ZdZdddZdd ZdS )	r   al  
    Allows empty input and stops the validation chain from continuing.

    If input is empty, also removes prior errors (such as processing errors)
    from the field.

    :param strip_whitespace:
        If True (the default) also stop the validation chain on input which
        consists of only whitespace.

    Sets the `optional` attribute on widgets.
    Tc                 C   s(   |rdd | _ ndd | _ ddi| _d S )Nc                 S   s   |   S r&   )stripsr.   r.   r/   <lambda>   s    z#Optional.__init__.<locals>.<lambda>c                 S   s   | S r&   r.   rY   r.   r.   r/   r[      s    r   T)string_checkrQ   )r*   strip_whitespacer.   r.   r/   r(      s   
zOptional.__init__c                 C   sB   |j rt|j d tr| |j d sg |jd d < t d S d S )Nr   )raw_data
isinstancestrr\   errorsr   r*   rD   rE   r.   r.   r/   rI      s   zOptional.__call__N)TrJ   r.   r.   r.   r/   r      s    
r   c                   @   r8   )r   a  
    Checks the field's data is 'truthy' otherwise stops the validation chain.

    This validator checks that the ``data`` attribute on the field is a 'true'
    value (effectively, it does ``if field.data``.) Furthermore, if the data
    is a string type, a string containing only whitespace characters is
    considered false.

    If the data is empty, also removes prior errors (such as processing errors)
    from the field.

    **NOTE** this validator used to be called `Required` but the way it behaved
    (requiring coerced data, not input data) meant it functioned in a way
    which was not symmetric to the `Optional` validator and furthermore caused
    confusion with certain fields which coerced data to 'falsey' values like
    ``0``, ``Decimal(0)``, ``time(0)`` etc. Unless a very specific reason
    exists, we recommend using the :class:`InputRequired` instead.

    :param message:
        Error message to raise in case of a validation error.

    Sets the `required` attribute on widgets.
    Nc                 C      || _ ddi| _d S NrequiredTr+   rQ   r*   r+   r.   r.   r/   r(        zDataRequired.__init__c                 C   sR   |j rt|j tr|j  rd S | jd u r|d}n| j}g |jd d < t|)NThis field is required.)rA   r_   r`   rX   r+   r@   ra   r   r*   rD   rE   r+   r.   r.   r/   rI      s   
zDataRequired.__call__r&   rJ   r.   r.   r.   r/   r     s    
r   c                   @   r8   )r
   a  
    Validates that input was provided for this field.

    Note there is a distinction between this and DataRequired in that
    InputRequired looks that form-input data was provided, and DataRequired
    looks at the post-coercion data. This means that this validator only checks
    whether non-empty data was sent, not whether non-empty data was coerced
    from that data. Initially populated data is not considered sent.

    Sets the `required` attribute on widgets.
    Nc                 C   rc   rd   rf   rg   r.   r.   r/   r(   :  rh   zInputRequired.__init__c                 C   sF   |j r
|j d r
d S | jd u r|d}n| j}g |jd d < t|)Nr   ri   )r^   r+   r@   ra   r   rj   r.   r.   r/   rI   >  s   
zInputRequired.__call__r&   rJ   r.   r.   r.   r/   r
   -  s    
r
   c                   @   s$   e Zd ZdZdddZd	ddZdS )
r   a  
    Validates the field against a user provided regexp.

    :param regex:
        The regular expression string to use. Can also be a compiled regular
        expression pattern.
    :param flags:
        The regexp flags to use, for example re.IGNORECASE. Ignored if
        `regex` is not a string.
    :param message:
        Error message to raise in case of a validation error.
    r   Nc                 C   s&   t |trt||}|| _|| _d S r&   )r_   r`   recompileregexr+   )r*   rm   flagsr+   r.   r.   r/   r(   Y  s   

zRegexp.__init__c                 C   sL   | j |jpd}|r|S |d u r"| jd u r|d}t|| j}t|)Nr$   zInvalid input.)rm   matchrA   r+   r@   r   r*   rD   rE   r+   ro   r.   r.   r/   rI   _  s   

zRegexp.__call__)r   Nr&   rJ   r.   r.   r.   r/   r   K  s    
r   c                   @   s,   e Zd ZdZ					d	ddZdd ZdS )
r   a  
    Validates an email address. Requires email_validator package to be
    installed. For ex: pip install wtforms[email].

    :param message:
        Error message to raise in case of a validation error.
    :param granular_message:
        Use validation failed message from email_validator library
        (Default False).
    :param check_deliverability:
        Perform domain name resolution check (Default False).
    :param allow_smtputf8:
        Fail validation for addresses that would require SMTPUTF8
        (Default True).
    :param allow_empty_local:
        Allow an empty local part (i.e. @example.com), e.g. for validating
        Postfix aliases (Default False).
    NFTc                 C   s"   || _ || _|| _|| _|| _d S r&   )r+   granular_messagecheck_deliverabilityallow_smtputf8allow_empty_local)r*   r+   rq   rr   rs   rt   r.   r.   r/   r(     s
   
zEmail.__init__c              
   C   s   zdd l }W n ty } ztd|d }~ww z|jd u r"| |j|j| j| j| jd W d S  |jyX } z| j	}|d u rO| j
rJ||}n|d}t||d }~ww )Nr   z7Install 'email_validator' for email validation support.)rr   rs   rt   zInvalid email address.)email_validatorImportErrorr7   rA   EmailNotValidErrorvalidate_emailrr   rs   rt   r+   rq   r@   r   )r*   rD   rE   ru   rG   er+   r.   r.   r/   rI     s8   


zEmail.__call__)NFFTFrJ   r.   r.   r.   r/   r   m  s    
r   c                   @   s:   e Zd ZdZdddZdd Zed	d
 Zedd ZdS )r   a  
    Validates an IP address.

    :param ipv4:
        If True, accept IPv4 addresses as valid (default True)
    :param ipv6:
        If True, accept IPv6 addresses as valid (default False)
    :param message:
        Error message to raise in case of a validation error.
    TFNc                 C   s&   |s|st d|| _|| _|| _d S )NzDIP Address Validator must have at least one of ipv4 or ipv6 enabled.)r'   ipv4ipv6r+   )r*   rz   r{   r+   r.   r.   r/   r(     s   
zIPAddress.__init__c                 C   sV   |j }d}|r| jr| |p| jo| |}|rd S | j}|d u r'|d}t|)NFzInvalid IP address.)rA   rz   
check_ipv4r{   
check_ipv6r+   r@   r   )r*   rD   rE   valuevalidr+   r.   r.   r/   rI     s   
zIPAddress.__call__c                 C   8   zt |}W n
 ty   Y dS w t|t jsdS dS NFT)	ipaddressr	   r'   r_   IPv4Addressclsr~   addressr.   r.   r/   r|        zIPAddress.check_ipv4c                 C   r   r   )r   r	   r'   r_   IPv6Addressr   r.   r.   r/   r}     r   zIPAddress.check_ipv6)TFN)	r3   r4   r5   r6   r(   rI   classmethodr|   r}   r.   r.   r.   r/   r     s    
	
r   c                       s.   e Zd ZdZd fdd	Z fddZ  ZS )r   zu
    Validates a MAC address.

    :param message:
        Error message to raise in case of a validation error.
    Nc                    s   d}t  j||d d S )Nz&^(?:[0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$r+   )superr(   )r*   r+   pattern	__class__r.   r/   r(     s   zMacAddress.__init__c                    s,   | j }|d u r|d}t ||| d S )NzInvalid Mac address.)r+   r@   r   rI   rj   r   r.   r/   rI     s   
zMacAddress.__call__r&   r3   r4   r5   r6   r(   rI   __classcell__r.   r.   r   r/   r     s    r   c                       s.   e Zd ZdZd fdd	Z fddZ  ZS )	r   a  
    Simple regexp based url validation. Much like the email validator, you
    probably want to validate the url later by other means if the url must
    resolve.

    :param require_tld:
        If true, then the domain-name portion of the URL must contain a .tld
        suffix.  Set this to false if you want to allow domains like
        `localhost`.
    :param allow_ip:
        If false, then give ip as host will fail validation
    :param message:
        Error message to raise in case of a validation error.
    TNc                    s(   d}t  |tj| t||d| _d S )NzP^[a-z]+://(?P<host>[^\/\?:]+)(?P<port>:[0-9]+)?(?P<path>\/.*?)?(?P<query>\?.*)?$require_tldallow_ip)r   r(   rk   
IGNORECASEHostnameValidationvalidate_hostname)r*   r   r   r+   rm   r   r.   r/   r(     s   zURL.__init__c                    sD   | j }|d u r|d}t |||}| |ds t|d S )NzInvalid URL.host)r+   r@   r   rI   r   groupr   rp   r   r.   r/   rI     s   
zURL.__call__)TTNr   r.   r.   r   r/   r     s    r   c                   @   r8   )r   zn
    Validates a UUID.

    :param message:
        Error message to raise in case of a validation error.
    Nc                 C   s
   || _ d S r&   r   rg   r.   r.   r/   r(   +  s   
zUUID.__init__c              
   C   sN   | j }|d u r|d}z	t|j W d S  ty& } zt||d }~ww )NzInvalid UUID.)r+   r@   uuidr   rA   r'   r   )r*   rD   rE   r+   rG   r.   r.   r/   rI   .  s   

zUUID.__call__r&   rJ   r.   r.   r.   r/   r   #  s    
r   c                   @   .   e Zd ZdZd	ddZdd Zedd ZdS )
r   ae  
    Compares the incoming data to a sequence of valid inputs.

    :param values:
        A sequence of valid inputs.
    :param message:
        Error message to raise in case of a validation error. `%(values)s`
        contains the list of values.
    :param values_formatter:
        Function used to format the list of values in the error message.
    Nc                 C   $   || _ || _|d u r| j}|| _d S r&   valuesr+   default_values_formattervalues_formatterr*   r   r+   r   r.   r.   r/   r(   E  
   
zAnyOf.__init__c                 C   sB   |j | jv rd S | j}|d u r|d}t|t| | jd )Nz*Invalid value, must be one of: %(values)s.r   rA   r   r+   r@   r   rU   r   rj   r.   r.   r/   rI   L     
zAnyOf.__call__c                 C      d dd | D S )N, c                 s       | ]}t |V  qd S r&   r`   .0xr.   r.   r/   	<genexpr>X      z1AnyOf.default_values_formatter.<locals>.<genexpr>joinr   r.   r.   r/   r   V     zAnyOf.default_values_formatterNNr3   r4   r5   r6   r(   rI   staticmethodr   r.   r.   r.   r/   r   8      

r   c                   @   r   )
r   ai  
    Compares the incoming data to a sequence of invalid inputs.

    :param values:
        A sequence of invalid inputs.
    :param message:
        Error message to raise in case of a validation error. `%(values)s`
        contains the list of values.
    :param values_formatter:
        Function used to format the list of values in the error message.
    Nc                 C   r   r&   r   r   r.   r.   r/   r(   h  r   zNoneOf.__init__c                 C   sB   |j | jvrd S | j}|d u r|d}t|t| | jd )Nz+Invalid value, can't be any of: %(values)s.r   r   rj   r.   r.   r/   rI   o  r   zNoneOf.__call__c                 C   r   )Nr   c                 s   r   r&   r   r   r.   r.   r/   r   {  r   z2NoneOf.default_values_formatter.<locals>.<genexpr>r   )vr.   r.   r/   r   y  r   zNoneOf.default_values_formatterr   r   r.   r.   r.   r/   r   [  r   r   c                   @   s>   e Zd ZdZedejZedejZdddZ	dd	 Z
d
S )r   z
    Helper class for checking hostnames for validation.

    This is not a validator in and of itself, and as such is not exported.
    z!^(xn-|[a-z0-9_]+)(-[a-z0-9_-]+)*$z*^([a-z]{2,20}|xn--([a-z0-9]+-)*[a-z0-9]+)$TFc                 C   r9   r&   r   )r*   r   r   r.   r.   r/   r(     r;   zHostnameValidation.__init__c                 C   s   | j rt|st|rdS z|d}W n	 ty   Y nw t|ts*|d}t	|dkr2dS |
d}|D ]}|rCt	|dkrF dS | j|sO dS q9| jrct	|dk sa| j|d	 scdS dS )
NTidnaascii   F.?      rK   )r   r   r|   r}   encodeUnicodeErrorr_   r`   decoderS   splithostname_partro   r   tld_part)r*   hostnamepartspartr.   r.   r/   rI     s2   


"zHostnameValidation.__call__N)TF)r3   r4   r5   r6   rk   rl   r   r   r   r(   rI   r.   r.   r.   r/   r   ~  s    
r   c                   @       e Zd ZdZdd Zdd ZdS )r    z
    Set a field readonly.

    Validation fails if the form data is different than the
    field object data, or if unset, from the field default data.
    c                 C      ddi| _ d S )Nr   TrQ   r*   r.   r.   r/   r(        zReadOnly.__init__c                 C   s   |j |jkrt|dd S )NzThis field cannot be edited)rA   object_datar   r@   rb   r.   r.   r/   rI     s   zReadOnly.__call__NrJ   r.   r.   r.   r/   r      s    r    c                   @   r   )r"   zU
    Set a field disabled.

    Validation fails if the form data has any value.
    c                 C   r   )Nr!   Tr   r   r.   r.   r/   r(     r   zDisabled.__init__c                 C   s   |j d urt|dd S )Nz.This field is disabled and cannot have a value)r^   r   r@   rb   r.   r.   r/   rI     s
   
zDisabled.__call__NrJ   r.   r.   r.   r/   r"     s    r"   ))r   rV   rk   r   __all__r'   r   r7   r   r   r   r   r   r   r
   r   r   r   r   r   r   r   r   r   r    r"   r   r   r	   r   r   r   r   r   r   r   r   r   r   r   r!   r.   r.   r.   r/   <module>   sN    %	'B9 *"=>'##/