Hacked By AnonymousFox

Current Path : /opt/alt/python39/lib64/python3.9/http/__pycache__/
Upload File :
Current File : //opt/alt/python39/lib64/python3.9/http/__pycache__/cookies.cpython-39.pyc

a

���eP�@sZdZddlZddlZddlZgd�ZdjZdjZdjZGdd�de	�Z
ejejd	Z
e
d
Zdd�eed
��eeee��D�Ze�ed�ded�di�e�de�e
��jZdd�Ze�d�Ze�d�Zdd�Zgd�Zgd�Zdeefdd�ZGdd�de �Z!dZ"e"d Z#e�d!e"d"e#d#ej$ej%B�Z&Gd$d%�d%e �Z'Gd&d'�d'e'�Z(dS)(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eZdZdS)rN)�__name__�
__module__�__qualname__�r
r
�1/opt/alt/python39/lib64/python3.9/http/cookies.pyr�srz!#$%&'*+-.^_`|~:z
 ()/<=>?@[]{}cCsi|]}|d|�qS)z\%03or
)�.0�nr
r
r�
<dictcomp>�s�r��"�\"�\z\\z[%s]+cCs*|dust|�r|Sd|�t�dSdS)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�srz\\[0-3][0-7][0-7]z[\\].cCsN|dust|�dkr|S|ddks0|ddkr4|S|dd�}d}t|�}g}d|krf|k�rFnn�t�||�}t�||�}|s�|s�|�||d���qFd}}|r�|�d�}|r�|�d�}|�r|r�||k�r|�|||��|�||d�|d}qP|�|||��|�tt||d|d�d���|d}qPt|�S)N�rr������)	�len�
_OctalPatt�search�
_QuotePatt�append�start�chr�int�	_nulljoin)r�ir
�resZo_matchZq_match�j�kr
r
r�_unquote�s6


$
r+)ZMonZTueZWedZThuZFriZSatZSun)
NZJanZFebZMarZAprZMayZJunZJulZAugZSepZOctZNovZDecc	CsRddlm}m}|�}|||�\	}}}}	}
}}}
}d|||||||	|
|fS)Nr)�gmtime�timez#%s, %02d %3s %4d %02d:%02d:%02d GMT)r-r,)ZfutureZweekdaynameZ	monthnamer,r-ZnowZyearZmonthZdayZhhZmmZssZwd�y�zr
r
r�_getdate�s�r0c
@s�eZdZdZdddddddd	d
d�	Zdd
hZdd�Zedd��Zedd��Z	edd��Z
dd�Zd2dd�Zdd�Z
ejZdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd3d*d+�ZeZd,d-�Zd4d.d/�Zd5d0d1�Zeej�ZdS)6�MorselaCA 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�CommentZDomainzMax-AgeZSecureZHttpOnlyZVersionZSameSite)	r2�path�commentZdomain�max-age�secure�httponly�versionZsamesiter8r9cCs0d|_|_|_|jD]}t�||d�qdS)Nr)�_key�_value�_coded_value�	_reserved�dict�__setitem__)�self�keyr
r
r�__init__!s
zMorsel.__init__cCs|jS�N)r;�rAr
r
rrB)sz
Morsel.keycCs|jSrD)r<rEr
r
r�value-szMorsel.valuecCs|jSrD)r=rEr
r
r�coded_value1szMorsel.coded_valuecCs2|��}||jvr td|f��t�|||�dS�NzInvalid attribute %r)�lowerr>rr?r@)rA�K�Vr
r
rr@5s
zMorsel.__setitem__NcCs.|��}||jvr td|f��t�|||�SrH)rIr>rr?�
setdefault)rArB�valr
r
rrL;s
zMorsel.setdefaultcCs>t|t�stSt�||�o<|j|jko<|j|jko<|j|jkSrD)�
isinstancer1�NotImplementedr?�__eq__r<r;r=�rAZmorselr
r
rrPAs

�
�
�z
Morsel.__eq__cCs$t�}t�||�|j�|j�|SrD)r1r?�update�__dict__rQr
r
r�copyKszMorsel.copycCsRi}t|���D]0\}}|��}||jvr8td|f��|||<qt�||�dSrH)r?�itemsrIr>rrR)rA�values�datarBrMr
r
rrRQs

z
Morsel.updatecCs|��|jvSrD)rIr>)rArJr
r
r�
isReservedKeyZszMorsel.isReservedKeycCsH|��|jvrtd|f��t|�s2td|f��||_||_||_dS)Nz Attempt to set a reserved key %rzIllegal key %r)rIr>rrr;r<r=)rArBrMZ	coded_valr
r
r�set]sz
Morsel.setcCs|j|j|jd�S)N)rBrFrG�r;r<r=rEr
r
r�__getstate__hs�zMorsel.__getstate__cCs"|d|_|d|_|d|_dS)NrBrFrGrZ)rA�stater
r
r�__setstate__os

zMorsel.__setstate__�Set-Cookie:cCsd||�|�fS)Nz%s %s)�OutputString)rA�attrs�headerr
r
r�outputtsz
Morsel.outputcCsd|jj|��fS)N�<%s: %s>)�	__class__rr_rEr
r
r�__repr__yszMorsel.__repr__cCsd|�|��dd�S)Nz�
        <script type="text/javascript">
        <!-- begin hiding
        document.cookie = "%s";
        // end hiding -->
        </script>
        rr)r_�replace)rAr`r
r
r�	js_output|s�zMorsel.js_outputcCs$g}|j}|d|j|jf�|dur,|j}t|���}|D]�\}}|dkrNq<||vrXq<|dkr�t|t�r�|d|j|t|�f�q<|dkr�t|t�r�|d|j||f�q<|dkr�t|t	�r�|d|j|t
|�f�q<||jv�r|�r|t	|j|��q<|d|j||f�q<t|�S)N�%s=%srr2r7z%s=%dr6)
r"rBrGr>�sortedrUrNr%r0rr�_flags�_semispacejoin)rAr`�resultr"rUrBrFr
r
rr_�s,zMorsel.OutputString)N)Nr^)N)N)rrr	�__doc__r>rjrC�propertyrBrFrGr@rLrP�object�__ne__rTrRrXrYr[r]rb�__str__rergr_�classmethod�types�GenericAlias�__class_getitem__r
r
r
rr1�sF�



	



!r1z,\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@sneZdZdZdd�Zdd�Zddd�Zd	d
�Zdd�Zddd�Z	e	Z
dd�Zddd�Zdd�Z
efdd�ZdS)rz'A container class for a set of Morsels.cCs||fS)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
�rArMr
r
r�value_decode�szBaseCookie.value_decodecCst|�}||fS)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�rArMZstrvalr
r
r�value_encode�szBaseCookie.value_encodeNcCs|r|�|�dSrD)�load)rA�inputr
r
rrC�szBaseCookie.__init__cCs.|�|t��}|�|||�t�|||�dS)z+Private method for setting a cookie's valueN)�getr1rYr?r@)rArBZ
real_valuerG�Mr
r
rZ__set�szBaseCookie.__setcCs:t|t�rt�|||�n|�|�\}}|�|||�dS)zDictionary style assignment.N)rNr1r?r@ry�_BaseCookie__set)rArBrF�rval�cvalr
r
rr@�s
zBaseCookie.__setitem__r^�
cCs:g}t|���}|D]\}}|�|�||��q|�|�S)z"Return a string suitable for HTTP.)rirUr"rb�join)rAr`ra�seprlrUrBrFr
r
rrb�s
zBaseCookie.outputcCsJg}t|���}|D] \}}|�d|t|j�f�qd|jjt|�fS)Nrhrc)rirUr"�reprrFrdr�
_spacejoin)rA�lrUrBrFr
r
rre�s
zBaseCookie.__repr__cCs6g}t|���}|D]\}}|�|�|��qt|�S)z(Return a string suitable for JavaScript.)rirUr"rgr&)rAr`rlrUrBrFr
r
rrgs
zBaseCookie.js_outputcCs4t|t�r|�|�n|��D]\}}|||<qdS)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)rNr�_BaseCookie__parse_stringrU)rAZrawdatarBrFr
r
rrz
s


zBaseCookie.loadcCs�d}t|�}g}d}d}d}d|kr2|k�rnn�|�||�}	|	sJ�q|	�d�|	�d�}
}|	�d�}|
ddkr�|s|q|�||
dd�|f�q|
��tjvr�|s�dS|dur�|
��tjvr�|�||
df�q�dSn|�||
t	|�f�q|du�r|�||
|�
|�f�d}qdSqd}|D]Z\}
}
}|
|k�rP|du�sFJ�|||
<n,|
|k�s^J�|\}}|�|
||�||
}�q$dS)	NrFrrrBrM�$T)r�match�group�endr"rIr1r>rjr+rwr~)rArZpattr'r
Zparsed_itemsZmorsel_seenZTYPE_ATTRIBUTEZ
TYPE_KEYVALUEr�rBrFr}�tprr�r
r
rZ__parse_stringsJ



zBaseCookie.__parse_string)N)Nr^r�)N)rrr	rmrwryrCr~r@rbrqrergrz�_CookiePatternr�r
r
r
rr�s		
	

rc@s eZdZdZdd�Zdd�ZdS)rz�
    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.
    cCst|�|fSrD)r+rvr
r
rrw_szSimpleCookie.value_decodecCst|�}|t|�fSrD)rrrxr
r
rrybszSimpleCookie.value_encodeN)rrr	rmrwryr
r
r
rrXsr))rm�re�stringrs�__all__r�r&rkr��	ExceptionrZ
ascii_lettersZdigitsZ_LegalCharsZ_UnescapedCharsrY�range�map�ordrrR�compile�escape�	fullmatchrrrr!r+Z_weekdaynameZ
_monthnamer0r?r1Z_LegalKeyCharsZ_LegalValueChars�ASCII�VERBOSEr�rrr
r
r
r�<module>'sV]��

26����
�

Hacked By AnonymousFox1.0, Coded By AnonymousFox