o
    ÷Á¡g€M  ã                   @   sZ  d Z ddlZddlZddlZg d¢ZdjZdjZdjZG dd„ de	ƒZ
ejej d	 Zed
 Zdd„ eedƒƒeeeeƒƒ D ƒZe edƒdedƒdi¡ e de e¡ ¡jZdd„ Ze d¡jZdd„ Zdd„ Zg d¢Zg d¢Zdeefdd„Z G dd„ de!ƒZ"d Z#e#d! Z$e d"e# d# e$ d$ ej%ej&B ¡Z'G d%d&„ d&e!ƒZ(G d'd(„ d(e(ƒZ)dS ))a.
  
Here's a sample session to show how to use this module.
At the moment, this is the only documentation.

The Basics
----------

Importing is easy...

   >>> from http import cookies

Most of the time you start by creating a cookie.

   >>> C = cookies.SimpleCookie()

Once you've created your Cookie, you can add values just as if it were
a dictionary.

   >>> C = cookies.SimpleCookie()
   >>> C["fig"] = "newton"
   >>> C["sugar"] = "wafer"
   >>> C.output()
   'Set-Cookie: fig=newton\r\nSet-Cookie: sugar=wafer'

Notice that the printable representation of a Cookie is the
appropriate format for a Set-Cookie: header.  This is the
default behavior.  You can change the header and printed
attributes by using the .output() function

   >>> C = cookies.SimpleCookie()
   >>> C["rocky"] = "road"
   >>> C["rocky"]["path"] = "/cookie"
   >>> print(C.output(header="Cookie:"))
   Cookie: rocky=road; Path=/cookie
   >>> print(C.output(attrs=[], header="Cookie:"))
   Cookie: rocky=road

The load() method of a Cookie extracts cookies from a string.  In a
CGI script, you would use this method to extract the cookies from the
HTTP_COOKIE environment variable.

   >>> C = cookies.SimpleCookie()
   >>> C.load("chips=ahoy; vienna=finger")
   >>> C.output()
   'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'

The load() method is darn-tootin smart about identifying cookies
within a string.  Escaped quotation marks, nested semicolons, and other
such trickeries do not confuse it.

   >>> C = cookies.SimpleCookie()
   >>> C.load('keebler="E=everybody; L=\\"Loves\\"; fudge=\\012;";')
   >>> print(C)
   Set-Cookie: keebler="E=everybody; L=\"Loves\"; fudge=\012;"

Each element of the Cookie also supports all of the RFC 2109
Cookie attributes.  Here's an example which sets the Path
attribute.

   >>> C = cookies.SimpleCookie()
   >>> C["oreo"] = "doublestuff"
   >>> C["oreo"]["path"] = "/"
   >>> print(C)
   Set-Cookie: oreo=doublestuff; Path=/

Each dictionary element has a 'value' attribute, which gives you
back the value associated with the key.

   >>> C = cookies.SimpleCookie()
   >>> C["twix"] = "none for you"
   >>> C["twix"].value
   'none for you'

The SimpleCookie expects that all values should be standard strings.
Just to be sure, SimpleCookie invokes the str() builtin to convert
the value to a string, when the values are set dictionary-style.

   >>> C = cookies.SimpleCookie()
   >>> C["number"] = 7
   >>> C["string"] = "seven"
   >>> C["number"].value
   '7'
   >>> C["string"].value
   'seven'
   >>> C.output()
   'Set-Cookie: number=7\r\nSet-Cookie: string=seven'

Finis.
é    N)ÚCookieErrorÚ
BaseCookieÚSimpleCookieÚ z; ú c                   @   s   e Zd ZdS )r   N)Ú__name__Ú
__module__Ú__qualname__© r
   r
   ú)/usr/local/lib/python3.10/http/cookies.pyr   ‘   s    r   z!#$%&'*+-.^_`|~:z ()/<=>?@[]{}c                 C   s   i | ]}|d | “qS )z\%03or
   )Ú.0Únr
   r
   r   Ú
<dictcomp>¥   s    ÿr   é   ú"ú\"ú\z\\z[%s]+c                 C   s&   | du st | ƒr
| S d|  t¡ d S )zãQuote a string for use in a cookie header.

    If the string does not need to be double-quoted, then just return the
    string.  Otherwise, surround the string in doublequotes and quote
    (with a \) special characters.
    Nr   )Ú_is_legal_keyÚ	translateÚ_Translator©Ústrr
   r
   r   Ú_quote®   s   r   z\\(?:([0-3][0-7][0-7])|(.))c                 C   s"   | d rt t| d dƒƒS | d S )Né   é   é   )ÚchrÚint)Úmr
   r
   r   Ú_unquote_replace½   s   r   c                 C   sJ   | d u s
t | ƒdk r| S | d dks| d dkr| S | dd… } tt| ƒS )Nr   r   r   éÿÿÿÿr   )ÚlenÚ_unquote_subr   r   r
   r
   r   Ú_unquoteÃ   s   
r#   )ÚMonÚTueÚWedÚThuÚFriÚSatÚSun)NÚJanÚFebÚMarÚAprÚMayÚJunÚJulÚAugÚSepÚOctÚNovÚDecc              	   C   sR   ddl m}m } |ƒ }|||  ƒ\	}}}}	}
}}}}d|| ||| ||	|
|f S )Nr   )ÚgmtimeÚtimez#%s, %02d %3s %4d %02d:%02d:%02d GMT)r8   r7   )ÚfutureZweekdaynameZ	monthnamer7   r8   ÚnowÚyearÚmonthÚdayZhhÚmmÚssÚwdÚyÚzr
   r
   r   Ú_getdateä   s   ÿrC   c                
   @   sà   e Zd ZdZdddddddd	d
dœ	ZddhZdd„ Zedd„ ƒZedd„ ƒZ	edd„ ƒZ
dd„ Zd2dd„Zdd„ ZejZdd„ Zdd „ Zd!d"„ Zd#d$„ Zd%d&„ Zd'd(„ Zd3d*d+„ZeZd,d-„ Zd2d.d/„Zd2d0d1„ZeejƒZdS )4ÚMorselaC  A class to hold ONE (key, value) pair.

    In a cookie, each such pair may have several attributes, so this class is
    used to keep the attributes associated with the appropriate key,value pair.
    This class also includes a coded_value attribute, which is used to hold
    the network representation of the value.
    ÚexpiresÚPathÚCommentZDomainzMax-AgeZSecureZHttpOnlyÚVersionZSameSite)	rE   ÚpathÚcommentÚdomainúmax-ageÚsecureÚhttponlyÚversionZsamesiterM   rN   c                 C   s0   d  | _  | _| _| jD ]	}t | |d¡ qd S )Nr   )Ú_keyÚ_valueÚ_coded_valueÚ	_reservedÚdictÚ__setitem__)ÚselfÚkeyr
   r
   r   Ú__init__  s   
ÿzMorsel.__init__c                 C   ó   | j S ©N)rP   ©rV   r
   r
   r   rW     ó   z
Morsel.keyc                 C   rY   rZ   )rQ   r[   r
   r
   r   Úvalue  r\   zMorsel.valuec                 C   rY   rZ   )rR   r[   r
   r
   r   Úcoded_value  r\   zMorsel.coded_valuec                 C   s2   |  ¡ }|| jvrtd|f ƒ‚t | ||¡ d S ©NzInvalid attribute %r)ÚlowerrS   r   rT   rU   )rV   ÚKÚVr
   r
   r   rU   #  s   
zMorsel.__setitem__Nc                 C   s.   |  ¡ }|| jvrtd|f ƒ‚t | ||¡S r_   )r`   rS   r   rT   Ú
setdefault)rV   rW   Úvalr
   r
   r   rc   )  s   
zMorsel.setdefaultc                 C   s>   t |tƒstS t | |¡o| j|jko| j|jko| j|jkS rZ   )Ú
isinstancerD   ÚNotImplementedrT   Ú__eq__rQ   rP   rR   ©rV   Zmorselr
   r
   r   rg   /  s   

ÿ
þ
ýzMorsel.__eq__c                 C   s$   t ƒ }t || ¡ |j | j¡ |S rZ   )rD   rT   ÚupdateÚ__dict__rh   r
   r
   r   Úcopy9  s   zMorsel.copyc                 C   sR   i }t |ƒ ¡ D ]\}}| ¡ }|| jvrtd|f ƒ‚|||< qt  | |¡ d S r_   )rT   Úitemsr`   rS   r   ri   )rV   ÚvaluesÚdatarW   rd   r
   r
   r   ri   ?  s   

zMorsel.updatec                 C   s   |  ¡ | jv S rZ   )r`   rS   )rV   ra   r
   r
   r   ÚisReservedKeyH  s   zMorsel.isReservedKeyc                 C   sH   |  ¡ | jv rtd|f ƒ‚t|ƒstd|f ƒ‚|| _|| _|| _d S )Nz Attempt to set a reserved key %rzIllegal key %r)r`   rS   r   r   rP   rQ   rR   )rV   rW   rd   Z	coded_valr
   r
   r   ÚsetK  s   
z
Morsel.setc                 C   s   | j | j| jdœS )N)rW   r]   r^   ©rP   rQ   rR   r[   r
   r
   r   Ú__getstate__V  s   ýzMorsel.__getstate__c                 C   s"   |d | _ |d | _|d | _d S )NrW   r]   r^   rq   )rV   Ústater
   r
   r   Ú__setstate__]  s   

zMorsel.__setstate__úSet-Cookie:c                 C   s   d||   |¡f S )Nz%s %s)ÚOutputString)rV   ÚattrsÚheaderr
   r
   r   Úoutputb  s   zMorsel.outputc                 C   s   d| j j|  ¡ f S )Nú<%s: %s>)Ú	__class__r   rv   r[   r
   r
   r   Ú__repr__g  s   zMorsel.__repr__c                 C   s   d|   |¡ dd¡ S )Nz—
        <script type="text/javascript">
        <!-- begin hiding
        document.cookie = "%s";
        // end hiding -->
        </script>
        r   r   )rv   Úreplace)rV   rw   r
   r
   r   Ú	js_outputj  s   úzMorsel.js_outputc                 C   s   g }|j }|d| j| jf ƒ |d u r| j}t|  ¡ ƒ}|D ]m\}}|dkr'q||vr,q|dkrCt|tƒrC|d| j| t|ƒf ƒ q|dkrXt|tƒrX|d| j| |f ƒ q|dkrot|t	ƒro|d| j| t
|ƒf ƒ q|| jv r€|r|t	| j| ƒƒ q|d| j| |f ƒ qt|ƒS )Nú%s=%sr   rE   rL   z%s=%drJ   )ÚappendrW   r^   rS   Úsortedrl   re   r   rC   r   r   Ú_flagsÚ_semispacejoin)rV   rw   Úresultr€   rl   rW   r]   r
   r
   r   rv   t  s.   
€zMorsel.OutputStringrZ   )Nru   )r   r   r	   Ú__doc__rS   r‚   rX   ÚpropertyrW   r]   r^   rU   rc   rg   ÚobjectÚ__ne__rk   ri   ro   rp   rr   rt   ry   Ú__str__r|   r~   rv   ÚclassmethodÚtypesÚGenericAliasÚ__class_getitem__r
   r
   r
   r   rD   ì   sH    ÷



	



!rD   z,\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=z\[\]zŒ
    \s*                            # Optional whitespace at start of cookie
    (?P<key>                       # Start of group 'key'
    [a	  ]+?   # Any word of at least one letter
    )                              # End of group 'key'
    (                              # Optional group: there may not be a value.
    \s*=\s*                          # Equal Sign
    (?P<val>                         # Start of group 'val'
    "(?:[^\\"]|\\.)*"                  # Any doublequoted string
    |                                  # or
    \w{3},\s[\w\d\s-]{9,11}\s[\d:]{8}\sGMT  # Special case for "expires" attr
    |                                  # or
    [a-  ]*      # Any word or empty string
    )                                # End of group 'val'
    )?                             # End of optional value group
    \s*                            # Any number of spaces.
    (\s+|;|$)                      # Ending either at space, semicolon, or EOS.
    c                   @   sn   e Zd ZdZdd„ Zdd„ Zddd„Zd	d
„ Zdd„ Zddd„Z	e	Z
dd„ Zddd„Zdd„ Zefdd„ZdS )r   z'A container class for a set of Morsels.c                 C   s   ||fS )a
  real_value, coded_value = value_decode(STRING)
        Called prior to setting a cookie's value from the network
        representation.  The VALUE is the value read from HTTP
        header.
        Override this function to modify the behavior of cookies.
        r
   ©rV   rd   r
   r
   r   Úvalue_decode½  s   zBaseCookie.value_decodec                 C   s   t |ƒ}||fS )zýreal_value, coded_value = value_encode(VALUE)
        Called prior to setting a cookie's value from the dictionary
        representation.  The VALUE is the value being assigned.
        Override this function to modify the behavior of cookies.
        r   ©rV   rd   Zstrvalr
   r
   r   Úvalue_encodeÆ  s   zBaseCookie.value_encodeNc                 C   s   |r	|   |¡ d S d S rZ   )Úload)rV   Úinputr
   r
   r   rX   Ï  s   ÿzBaseCookie.__init__c                 C   s.   |   |tƒ ¡}| |||¡ t | ||¡ dS )z+Private method for setting a cookie's valueN)ÚgetrD   rp   rT   rU   )rV   rW   Z
real_valuer^   ÚMr
   r
   r   Z__setÓ  s   zBaseCookie.__setc                 C   s<   t |tƒrt | ||¡ dS |  |¡\}}|  |||¡ dS )zDictionary style assignment.N)re   rD   rT   rU   r‘   Ú_BaseCookie__set)rV   rW   r]   ÚrvalÚcvalr
   r
   r   rU   Ù  s   
zBaseCookie.__setitem__ru   ú
c                 C   s:   g }t |  ¡ ƒ}|D ]\}}| | ||¡¡ q
| |¡S )z"Return a string suitable for HTTP.)r   rl   r€   ry   Újoin)rV   rw   rx   Úsepr„   rl   rW   r]   r
   r
   r   ry   â  s
   
zBaseCookie.outputc                 C   sJ   g }t |  ¡ ƒ}|D ]\}}| d|t|jƒf ¡ q
d| jjt|ƒf S )Nr   rz   )r   rl   r€   Úreprr]   r{   r   Ú
_spacejoin)rV   Úlrl   rW   r]   r
   r
   r   r|   ì  s
   zBaseCookie.__repr__c                 C   s6   g }t |  ¡ ƒ}|D ]\}}| | |¡¡ q
t|ƒS )z(Return a string suitable for JavaScript.)r   rl   r€   r~   Ú	_nulljoin)rV   rw   r„   rl   rW   r]   r
   r
   r   r~   ó  s
   zBaseCookie.js_outputc                 C   s6   t |tƒr|  |¡ dS | ¡ D ]\}}|| |< qdS )zÝLoad cookies from a string (presumably HTTP_COOKIE) or
        from a dictionary.  Loading cookies from a dictionary 'd'
        is equivalent to calling:
            map(Cookie.__setitem__, d.keys(), d.values())
        N)re   r   Ú_BaseCookie__parse_stringrl   )rV   ÚrawdatarW   r]   r
   r
   r   r’   û  s   

þ
zBaseCookie.loadc                 C   sˆ  d}t |ƒ}g }d}d}d}d|  kr|k r”n nz| ||¡}	|	s#nq|	 d¡|	 d¡}
}|	 d¡}|
d dkrI|s<q| ||
dd … |f¡ n@|
 ¡ tjv ru|sTd S |d u rj|
 ¡ tjv rh| ||
df¡ n!d S | ||
t	|ƒf¡ n|d ur‡| ||
|  
|¡f¡ d}nd S d|  kr“|k sn d }|D ])\}}
}||kr¬|d us§J ‚|||
< q˜||ks²J ‚|\}}|  |
||¡ | |
 }q˜d S )	Nr   Fr   r   rW   rd   ú$T)r!   ÚmatchÚgroupÚendr€   r`   rD   rS   r‚   r#   r   r–   )rV   r   ÚpattÚir   Zparsed_itemsZmorsel_seenZTYPE_ATTRIBUTEZTYPE_KEYVALUEr£   rW   r]   r•   Útpr—   r˜   r
   r
   r   Z__parse_string	  sN   
Þ%

øzBaseCookie.__parse_stringrZ   )Nru   r™   )r   r   r	   r…   r   r‘   rX   r–   rU   ry   r‰   r|   r~   r’   Ú_CookiePatternr    r
   r
   r
   r   r   º  s    	
	
	
r   c                   @   s    e Zd ZdZdd„ Zdd„ ZdS )r   zþ
    SimpleCookie supports strings as cookie values.  When setting
    the value using the dictionary assignment notation, SimpleCookie
    calls the builtin str() to convert the value to a string.  Values
    received from HTTP are kept as strings.
    c                 C   s   t |ƒ|fS rZ   )r#   rŽ   r
   r
   r   r   M  s   zSimpleCookie.value_decodec                 C   s   t |ƒ}|t|ƒfS rZ   )r   r   r   r
   r
   r   r‘   P  s   zSimpleCookie.value_encodeN)r   r   r	   r…   r   r‘   r
   r
   r
   r   r   F  s    r   )*r…   ÚreÚstringr‹   Ú__all__rš   rŸ   rƒ   r   Ú	Exceptionr   Úascii_lettersÚdigitsZ_LegalCharsZ_UnescapedCharsrp   ÚrangeÚmapÚordr   ri   ÚcompileÚescapeÚ	fullmatchr   r   Úsubr"   r   r#   Z_weekdaynameZ
_monthnamerC   rT   rD   Z_LegalKeyCharsZ_LegalValueCharsÚASCIIÚVERBOSEr©   r   r   r
   r
   r
   r   Ú<module>   sX   &]ÿþ 6ýýôô
ï 