o !QçdPã@sZdZddlZddlZddlZgd¢ZdjZdjZdjZGdd„de ƒZ ej ej d Z e d Zd d „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 ú3/opt/alt/python310/lib64/python3.10/http/cookies.pyr‘srz!#$%&'*+-.^_`|~:z ()/<=>?@[]{}cCsi|]}|d|“qS)z\%03or )Ú.0Únr r r Ú ¥sÿréú"ú\"ú\z\\z[%s]+cCs&|dust|ƒr |Sd| t¡dS)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|dus t|ƒdkr |S|ddks|ddkr|S|dd…}d}t|ƒ}g}d|kr2|kr³nt|ƒSt ||¡}t ||¡}|sU|sU| ||d…¡ t|ƒSd}}|r`| d¡}|rg| d¡}|r†|ro||kr†| |||…¡| ||d¡|d}n| |||…¡| tt||d|d…dƒƒ¡|d}d|kr²|ks7t|ƒSt|ƒS)Nérréÿÿÿÿééé) ÚlenÚ _OctalPattÚsearchÚ _QuotePattÚappendÚstartÚchrÚintÚ _nulljoin)rÚir ÚresZo_matchZq_matchÚjÚkr r r Ú_unquote¾s@  í ó   $íìr+)ZMonZTueZWedZThuZFriZSatZSun) NZJanZFebZMarZAprZMayZJunZJulZAugZSepZOctZNovZDecc CsRddlm}m}|ƒ}|||ƒ\ }}}} } } } } }d|| ||||| | | fS)Nr)ÚgmtimeÚtimez#%s, %02d %3s %4d %02d:%02d:%02d GMT)r-r,)ZfutureZ weekdaynameZ monthnamer,r-ZnowZyearZmonthZdayZhhZmmZssZwdÚyÚzr r r Ú_getdateös ÿr0c @sàeZdZdZdddddddd d d œ Zd d hZdd„Zedd„ƒZedd„ƒZ edd„ƒZ dd„Z d2dd„Z dd„Z ejZdd„Zdd „Zd!d"„Zd#d$„Zd%d&„Zd'd(„Zd3d*d+„ZeZd,d-„Zd2d.d/„Zd2d0d1„ZeejƒZdS)4Ú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. ÚexpiresZPathÚCommentZDomainzMax-AgeZSecureZHttpOnlyZVersionZSameSite) r2ÚpathÚcommentZdomainúmax-ageÚsecureÚhttponlyÚversionZsamesiter7r8cCs0d|_|_|_|jD] }t ||d¡q dS)Nr)Ú_keyÚ_valueÚ _coded_valueÚ _reservedÚdictÚ __setitem__)ÚselfÚkeyr r r Ú__init__!s ÿzMorsel.__init__cCó|jS©N)r:©r@r r r rA)óz Morsel.keycCrCrD)r;rEr r r Úvalue-rFz Morsel.valuecCrCrD)r<rEr r r Ú coded_value1rFzMorsel.coded_valuecCs2| ¡}||jvrtd|fƒ‚t |||¡dS©NzInvalid attribute %r)Úlowerr=rr>r?)r@ÚKÚVr r r r?5s zMorsel.__setitem__NcCs.| ¡}||jvrtd|fƒ‚t |||¡SrI)rJr=rr>Ú setdefault)r@rAÚvalr r r rM;s zMorsel.setdefaultcCs>t|tƒstSt ||¡o|j|jko|j|jko|j|jkSrD)Ú isinstancer1ÚNotImplementedr>Ú__eq__r;r:r<©r@Zmorselr r r rQAs   ÿ þ ýz Morsel.__eq__cCs$tƒ}t ||¡|j |j¡|SrD)r1r>ÚupdateÚ__dict__rRr r r ÚcopyKs z Morsel.copycCsRi}t|ƒ ¡D]\}}| ¡}||jvrtd|fƒ‚|||<qt ||¡dSrI)r>ÚitemsrJr=rrS)r@ÚvaluesÚdatarArNr r r rSQs  z Morsel.updatecCs| ¡|jvSrD)rJr=)r@rKr r r Ú isReservedKeyZszMorsel.isReservedKeycCsH| ¡|jvrtd|fƒ‚t|ƒstd|fƒ‚||_||_||_dS)Nz Attempt to set a reserved key %rzIllegal key %r)rJr=rrr:r;r<)r@rArNZ coded_valr r r Úset]s z Morsel.setcCs|j|j|jdœS)N)rArGrH©r:r;r<rEr r r Ú __getstate__hsýzMorsel.__getstate__cCs"|d|_|d|_|d|_dS)NrArGrHr[)r@Ústater r r Ú __setstate__os  zMorsel.__setstate__ú Set-Cookie:cCsd|| |¡fS)Nz%s %s)Ú OutputString)r@ÚattrsÚheaderr r r Úoutputtsz Morsel.outputcCsd|jj| ¡fS)Nú<%s: %s>)Ú __class__rr`rEr r r Ú__repr__yszMorsel.__repr__cCsd| |¡ dd¡S)Nz— rr)r`Úreplace)r@rar r r Ú js_output|súzMorsel.js_outputcCs g}|j}|d|j|jfƒ|dur|j}t| ¡ƒ}|D]m\}}|dkr'q||vr,q|dkrCt|tƒrC|d|j|t|ƒfƒq|dkrXt|tƒrX|d|j||fƒq|dkrot|t ƒro|d|j|t |ƒfƒq||j vr€|r|t |j|ƒƒq|d|j||fƒqt |ƒS)Nú%s=%srr2r6z%s=%dr5) r"rArHr=ÚsortedrVrOr%r0rrÚ_flagsÚ_semispacejoin)r@raÚresultr"rVrArGr r r r`†s.   €zMorsel.OutputStringrD)Nr_)rrr Ú__doc__r=rkrBÚpropertyrArGrHr?rMrQÚobjectÚ__ne__rUrSrYrZr\r^rcÚ__str__rfrhr`Ú classmethodÚtypesÚ GenericAliasÚ__class_getitem__r r r r r1þsH÷          !r1z,\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@sneZdZdZdd„Zdd„Zddd„Zd d „Zd d „Zddd„Z e Z dd„Z ddd„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 ©r@rNr 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©r@rNZstrvalr r r Ú value_encodeØszBaseCookie.value_encodeNcCs|r | |¡dSdSrD)Úload)r@Úinputr r r rBásÿzBaseCookie.__init__cCs.| |tƒ¡}| |||¡t |||¡dS)z+Private method for setting a cookie's valueN)Úgetr1rZr>r?)r@rAZ real_valuerHÚMr r r Z__setåszBaseCookie.__setcCs<t|tƒrt |||¡dS| |¡\}}| |||¡dS)zDictionary style assignment.N)rOr1r>r?rzÚ_BaseCookie__set)r@rArGÚrvalÚcvalr r r r?ës zBaseCookie.__setitem__r_ú cCs:g}t| ¡ƒ}|D] \}}| | ||¡¡q | |¡S)z"Return a string suitable for HTTP.)rjrVr"rcÚjoin)r@rarbÚseprmrVrArGr r r rcôs    zBaseCookie.outputcCsJg}t| ¡ƒ}|D]\}}| d|t|jƒf¡q d|jjt|ƒfS)Nrird)rjrVr"ÚreprrGrerÚ _spacejoin)r@ÚlrVrArGr r r rfþs   zBaseCookie.__repr__cCs6g}t| ¡ƒ}|D] \}}| | |¡¡q t|ƒS)z(Return a string suitable for JavaScript.)rjrVr"rhr&)r@rarmrVrArGr r r rhs   zBaseCookie.js_outputcCs6t|tƒr | |¡dS| ¡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)rOrÚ_BaseCookie__parse_stringrV)r@ZrawdatarArGr r r r{ s  þ zBaseCookie.loadcCspd}t|ƒ}g}d}d}d}d|kr|kr”nnz| ||¡} | s#nq|  d¡|  d¡} } |  d¡}| ddkrI|sr1Z_LegalKeyCharsZ_LegalValueCharsÚASCIIÚVERBOSErŽrrr r r r ÚsX&]ÿþ 26ýý ô ô ï