o [dP@sZdZddlZddlZddlZgdZdjZdjZdjZGddde Z ej ej d Z e d Zd d eed eeeeDZeeddeddiedee jZddZedZedZddZgdZgdZdeefddZGddde Z!dZ"e"d Z#ed!e"d"e#d#ej$ej%BZ&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 SimpleCookiez;  c@s eZdZdS)rN)__name__ __module__ __qualname__r r #/usr/lib/python3.10/http/cookies.pyrsrz!#$%&'*+-.^_`|~:z ()/<=>?@[]{}cCsi|]}|d|qS)z\%03or ).0nr r r sr"\"\z\\z[%s]+cCs&|dust|r |Sd|tdS)zQuote 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 _Translatorstrr r r _quotesrz\\[0-3][0-7][0-7]z[\\].cCsn|dus t|dkr |S|ddks|ddkr|S|dd}d}t|}g}d|kr2|krnt|St||}t||}|sU|sU|||d t|Sd}}|r`|d}|rg|d}|r|ro||kr|||||||d|d}n|||||tt||d|dd|d}d|kr|ks7t|St|S)Nrr) len _OctalPattsearch _QuotePattappendstartchrint _nulljoin)rir reso_matchq_matchjkr r r _unquotes@     $r-)MonTueWedThuFriSatSun) NJanFebMarAprMayJunJulAugSepOctNovDecc CsRddlm}m}|}|||\ }}}} } } } } }d|| ||||| | | fS)Nr)gmtimetimez#%s, %02d %3s %4d %02d:%02d:%02d GMT)rBrA)future weekdayname monthnamerArBnowyearmonthdayhhmmsswdyzr r r _getdates rPc @seZdZdZdddddddd d d Zd d hZddZeddZeddZ eddZ ddZ d2ddZ ddZ ejZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd3d*d+ZeZd,d-Zd2d.d/Zd2d0d1ZeejZdS)4MorselaCA 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. expiresPathCommentDomainzMax-AgeSecureHttpOnlyVersionSameSite) rRpathcommentdomainmax-agesecurehttponlyversionsamesiter^r_cCs0d|_|_|_|jD] }t||dq dS)Nr)_key_value _coded_value _reserveddict __setitem__)selfkeyr r r __init__!s zMorsel.__init__cC|jSN)rbrhr r r ri)z Morsel.keycCrkrl)rcrmr r r value-rnz Morsel.valuecCrkrl)rdrmr r r coded_value1rnzMorsel.coded_valuecCs2|}||jvrtd|ft|||dSNzInvalid attribute %r)lowerrerrfrg)rhKVr r r rg5s zMorsel.__setitem__NcCs.|}||jvrtd|ft|||Srq)rrrerrf setdefault)rhrivalr r r ru;s zMorsel.setdefaultcCs>t|tstSt||o|j|jko|j|jko|j|jkSrl) isinstancerQNotImplementedrf__eq__rcrbrdrhmorselr r r ryAs     z Morsel.__eq__cCs$t}t|||j|j|Srl)rQrfupdate__dict__rzr r r copyKs z Morsel.copycCsRi}t|D]\}}|}||jvrtd|f|||<qt||dSrq)rfitemsrrrerr|)rhvaluesdatarirvr r r r|Qs  z Morsel.updatecCs||jvSrl)rrre)rhrsr r r isReservedKeyZszMorsel.isReservedKeycCsH||jvrtd|ft|std|f||_||_||_dS)Nz Attempt to set a reserved key %rzIllegal key %r)rrrerrrbrcrd)rhrirv coded_valr r r set]s z Morsel.setcCs|j|j|jdS)N)rirorprbrcrdrmr r r __getstate__hszMorsel.__getstate__cCs"|d|_|d|_|d|_dS)Nrirorpr)rhstater r r __setstate__os  zMorsel.__setstate__ Set-Cookie:cCsd|||fS)Nz%s %s) OutputString)rhattrsheaderr r r outputtsz Morsel.outputcCsd|jj|fS)N<%s: %s>) __class__rrrmr r r __repr__yszMorsel.__repr__cCsd||ddS)Nz rr)rreplace)rhrr r r js_output|szMorsel.js_outputcCs g}|j}|d|j|jf|dur|j}t|}|D]m\}}|dkr'q||vr,q|dkrCt|trC|d|j|t|fq|dkrXt|trX|d|j||fq|dkrot|t ro|d|j|t |fq||j vr|r|t |j|q|d|j||fqt |S)N%s=%srrRr]z%s=%dr[) r"rirpresortedrrwr%rPrr_flags_semispacejoin)rhrresultr"rriror r r rs.   zMorsel.OutputStringrl)Nr)rrr __doc__rerrjpropertyrirorprgruryobject__ne__r~r|rrrrr__str__rrr classmethodtypes GenericAlias__class_getitem__r r r r rQsH          !rQz,\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=z\[\]z \s* # Optional whitespace at start of cookie (?P # 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 # 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@sneZdZdZddZddZdddZd d Zd d ZdddZ e Z ddZ dddZ ddZ efddZdS)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 rhrvr r r value_decodeszBaseCookie.value_decodecCst|}||fS)zreal_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. rrhrvstrvalr r r value_encodeszBaseCookie.value_encodeNcCs|r ||dSdSrl)load)rhinputr r r rjszBaseCookie.__init__cCs.||t}||||t|||dS)z+Private method for setting a cookie's valueN)getrQrrfrg)rhri real_valuerpMr r r __setszBaseCookie.__setcCs<t|trt|||dS||\}}||||dS)zDictionary style assignment.N)rwrQrfrgr_BaseCookie__set)rhrirorvalcvalr r r rgs zBaseCookie.__setitem__r cCs:g}t|}|D] \}}||||q ||S)z"Return a string suitable for HTTP.)rrr"rjoin)rhrrseprrriror r r rs    zBaseCookie.outputcCsJg}t|}|D]\}}|d|t|jfq d|jjt|fS)Nrr)rrr"reprrorr _spacejoin)rhlrriror r r rs   zBaseCookie.__repr__cCs6g}t|}|D] \}}|||q t|S)z(Return a string suitable for JavaScript.)rrr"rr&)rhrrrriror r r rs   zBaseCookie.js_outputcCs6t|tr ||dS|D]\}}|||<qdS)zLoad 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)rwr_BaseCookie__parse_stringr)rhrawdatariror r r r s   zBaseCookie.loadcCsd}t|}g}d}d}d}d|kr|krnnz|||} | s#nq| d| d} } | d}| ddkrI|ssX&] 26