a DOg]!@sdZddlZddlZddlZddlZddlmZmZddlm Z gdZ e e dj ddZd d ZGd d d eZeZd eed<ddZddZddZddZddZeedZddZeedZeedZd ddZdS)!z Routines for manipulating RFC2047 encoded words. This is currently a package-private API, but will be considered for promotion to a public API if there is demand. N) ascii_lettersdigits)errors)decode_qencode_qdecode_bencode_blen_qlen_bdecodeencodes=([a-fA-F0-9]{2})cCst|dS)N)bytesfromhexgroupr )mr9/opt/alt/python39/lib64/python3.9/email/_encoded_words.pyArcCs|dd}t|gfS)N_ )replace_q_byte_subber)encodedrrrrCs rc@s,eZdZdededZddZdS) _QByteMaps-!*+/asciicCs.||jvrt|||<nd|||<||S)Nz={:02X})safechrformat)selfkeyrrr __missing__Ms z_QByteMap.__missing__N)__name__ __module__ __qualname__rr rrr"rrrrrIsr_ cCsddd|DS)Ncss|]}t|VqdSN) _q_byte_map.0xrrr Zrzencode_q..)joinbstringrrrrYsrcCstdd|DS)Ncss|]}tt|VqdSr))lenr*r+rrrr.]rzlen_q..)sumr0rrrr \sr cCst|d}|r ddd|nd}z&tj||dd|rDtgngfWStjyztj|ddtgfWYStjyz,tj|dddttgfWYYStjy|tgfYYYS0Yn0Yn0dS)Ns===rT)ZvalidateFs==) r2base64Z b64decoderZInvalidBase64PaddingDefectbinasciiErrorZInvalidBase64CharactersDefectZInvalidBase64LengthDefect)rZpad_errZmissing_paddingrrrrds(   rcCst|dS)Nr)r5Z b64encoder r0rrrrsrcCs&tt|d\}}|d|r dndS)Nr4r)divmodr2)r1Z groups_of_3Zleftoverrrrr sr )qbc Cs|d\}}}}}|d\}}}|}|dd}t||\}}z||}Wnzty|t d|d||d}YnFt t fy|dd}|dkr|t d|d Yn0||||fS) aDecode encoded word and return (string, charset, lang, defects) tuple. An RFC 2047/2243 encoded word has the form: =?charset*lang?cte?encoded_string?= where '*lang' may be omitted but the other parts may not be. This function expects exactly such a string (that is, it does not check the syntax and may raise errors if the string is not well formed), and returns the encoded_string decoded first from its Content Transfer Encoding and then from the resulting bytes into unicode using the specified charset. If the cte-decoded string does not successfully decode using the specified character set, a defect is added to the defects list and the unknown octets are replaced by the unicode 'unknown' character \uFDFF. The specified charset and language are returned. The default for language, which is rarely if ever encountered, is the empty string. ?*rsurrogateescapez0Encoded word contains bytes not decodable using z charset unknown-8bitzUnknown charset z* in encoded word; decoded as unknown bytes) split partitionlowerr _cte_decodersr UnicodeDecodeErrorappendrZUndecodableBytesDefect LookupErrorUnicodeEncodeErrorZ CharsetError) Zewr&charsetZcteZ cte_stringlangr1Zdefectsstringrrrr s"      r utf-8r(cCs||dkr|dd}n ||}|durTtd|}td|}||dkrPdnd}t||}|rld|}d ||||S) aEncode string using the CTE encoding that produces the shorter result. Produces an RFC 2047/2243 encoded word of the form: =?charset*lang?cte?encoded_string?= where '*lang' is omitted unless the 'lang' parameter is given a value. Optional argument charset (defaults to utf-8) specifies the charset to use to encode the string to binary before CTE encoding it. Optional argument 'encoding' is the cte specifier for the encoding that should be used ('q' or 'b'); if it is None (the default) the encoding which produces the shortest encoded sequence is used, except that 'q' is preferred if it is up to five characters longer. Optional argument 'lang' (default '') gives the RFC 2243 language string to specify in the encoded word. r?rr>Nr:r;r=z=?{}{}?{}?{}?=)r _cte_encode_length _cte_encodersr)rJrHencodingrIr1ZqlenZblenrrrrr s    r )rKNr()__doc__rer5r6 functoolsrJrrZemailr__all__partialcompilesubrrdictrr*ordrr rrr rCr rNrMr rrrrs<)   &+