3

Z'ícƒ!ã@sŽddlmZddlZddlZddlZddlmZddd„Zdd	„Z	d
ddœZ
e
jd
d„eddƒDƒƒdd„Z
dd„ZeZGdd„deƒZdS)é)Úabsolute_importNé)Úsixúapplication/octet-streamcCs|rtj|ƒdp|S|S)zæ
    Guess the "Content-Type" of a file.

    :param filename:
        The filename to guess the "Content-Type" of using :mod:`mimetypes`.
    :param default:
        If no "Content-Type" can be guessed, default to `default`.
    r)Ú	mimetypesÚ
guess_type)ÚfilenameÚdefault©r
ú1/tmp/pip-build-gk9425m9/urllib3/urllib3/fields.pyÚguess_content_type
s	rcs¢tˆtjƒrˆjdƒ‰t‡fdd„dDƒƒsdd|ˆf}y|jdƒWnttfk
r^YnX|Stjrtˆjdƒ‰t	j
jˆdƒ‰d|ˆf‰tjržˆjdƒ‰ˆS)a!
    Helper function to format and quote a single header parameter using the
    strategy defined in RFC 2231.

    Particularly useful for header parameters which might contain
    non-ASCII values, like file names. This follows
    `RFC 2388 Section 4.4 <https://tools.ietf.org/html/rfc2388#section-4.4>`_.

    :param name:
        The name of the parameter, a string expected to be ASCII only.
    :param value:
        The value of the parameter, provided as ``bytes`` or `str``.
    :ret:
        An RFC-2231-formatted unicode string.
    zutf-8c3s|]}|ˆkVqdS)Nr
)Ú.0Úch)Úvaluer
rú	<genexpr>+sz.format_header_param_rfc2231.<locals>.<genexpr>z"\
z%s="%s"Úasciiz%s*=%s)Ú
isinstancerÚbinary_typeÚdecodeÚanyÚencodeÚUnicodeEncodeErrorÚUnicodeDecodeErrorÚPY2ÚemailÚutilsÚencode_rfc2231)ÚnamerÚresultr
)rrÚformat_header_param_rfc2231s 


rz%22z\\)ú"ú\cCs&i|]}|dkrdj|ƒtj|ƒ“qS)éz%{:02X})r")ÚformatrÚunichr)r
Úccr
r
rú
<dictcomp>Jsr&écs:‡fdd„}tjdjdd„ˆjƒDƒƒƒ}|j||ƒ}|S)Ncsˆ|jdƒS)Nr)Úgroup)Úmatch)Úneedles_and_replacementsr
rÚreplacerSsz#_replace_multiple.<locals>.replacerú|cSsg|]}tj|ƒ‘qSr
)ÚreÚescape)r
Zneedler
r
rú
<listcomp>Wsz%_replace_multiple.<locals>.<listcomp>)r-ÚcompileÚjoinÚkeysÚsub)rr*r+Úpatternrr
)r*rÚ_replace_multipleRs
r5cCs,t|tjƒr|jdƒ}t|tƒ}d||fS)a±
    Helper function to format and quote a single header parameter using the
    HTML5 strategy.

    Particularly useful for header parameters which might contain
    non-ASCII values, like file names. This follows the `HTML5 Working Draft
    Section 4.10.22.7`_ and matches the behavior of curl and modern browsers.

    .. _HTML5 Working Draft Section 4.10.22.7:
        https://w3c.github.io/html/sec-forms.html#multipart-form-data

    :param name:
        The name of the parameter, a string expected to be ASCII only.
    :param value:
        The value of the parameter, provided as ``bytes`` or `str``.
    :ret:
        A unicode string, stripped of troublesome characters.
    zutf-8z%s="%s")rrrrr5Ú_HTML5_REPLACEMENTS)rrr
r
rÚformat_header_param_html5_s

r7c@sReZdZdZddefdd„Zeefdd„ƒZdd„Zd	d
„Z	dd„Z
dd
d„ZdS)ÚRequestFielda
    A data container for request body parameters.

    :param name:
        The name of this request field. Must be unicode.
    :param data:
        The data/value body.
    :param filename:
        An optional filename of the request field. Must be unicode.
    :param headers:
        An optional dict-like object of headers to initially use for the field.
    :param header_formatter:
        An optional callable that is used to encode and format the headers. By
        default, this is :func:`format_header_param_html5`.
    NcCs0||_||_||_i|_|r&t|ƒ|_||_dS)N)Ú_nameÚ	_filenameÚdataÚheadersÚdictÚheader_formatter)Úselfrr;rr<r>r
r
rÚ__init__s
zRequestField.__init__cCs`t|tƒr4t|ƒdkr"|\}}}q@|\}}t|ƒ}nd}d}|}|||||d}|j|d|S)a³
        A :class:`~urllib3.fields.RequestField` factory from old-style tuple parameters.

        Supports constructing :class:`~urllib3.fields.RequestField` from
        parameter of key/value strings AND key/filetuple. A filetuple is a
        (filename, data, MIME type) tuple where the MIME type is optional.
        For example::

            'foo': 'bar',
            'fakefile': ('foofile.txt', 'contents of foofile'),
            'realfile': ('barfile.txt', open('realfile').read()),
            'typedfile': ('bazfile.bin', open('bazfile').read(), 'image/jpeg'),
            'nonamefile': 'contents of nonamefile field',

        Field names and filenames must be unicode.
        éN)rr>)Úcontent_type)rÚtupleÚlenrÚmake_multipart)ÚclsÚ	fieldnamerr>rr;rBÚ
request_paramr
r
rÚfrom_tuplesŸs

zRequestField.from_tuplescCs|j||ƒS)aI
        Overridable helper function to format a single header parameter. By
        default, this calls ``self.header_formatter``.

        :param name:
            The name of the parameter, a string expected to be ASCII only.
        :param value:
            The value of the parameter, provided as a unicode string.
        )r>)r?rrr
r
rÚ_render_partÃszRequestField._render_partcCsPg}|}t|tƒr|jƒ}x*|D]"\}}|dk	r |j|j||ƒƒq Wdj|ƒS)aO
        Helper function to format and quote a single header.

        Useful for single headers that are composed of multiple items. E.g.,
        'Content-Disposition' fields.

        :param header_parts:
            A sequence of (k, v) tuples or a :class:`dict` of (k, v) to format
            as `k1="v1"; k2="v2"; ...`.
        Nz; )rr=ÚitemsÚappendrJr1)r?Úheader_partsÚpartsÚiterablerrr
r
rÚ
_render_partsÐs
zRequestField._render_partscCsŒg}dddg}x2|D]*}|jj|dƒr|jd||j|fƒqWx4|jjƒD]&\}}||krN|rN|jd||fƒqNW|jdƒdj|ƒS)z=
        Renders the headers for this request field.
        zContent-DispositionzContent-TypezContent-LocationFz%s: %sz
)r<ÚgetrLrKr1)r?ÚlinesÚ	sort_keysÚsort_keyÚheader_nameÚheader_valuer
r
rÚrender_headersæs


zRequestField.render_headersc	CsX|pd|jd<|jddjd|jd|jfd|jffƒgƒ7<||jd<||jd<d	S)
a|
        Makes this request field into a multipart request field.

        This method overrides "Content-Disposition", "Content-Type" and
        "Content-Location" headers to the request parameter.

        :param content_type:
            The 'Content-Type' of the request body.
        :param content_location:
            The 'Content-Location' of the request body.

        z	form-datazContent-Dispositionz; ÚrrzContent-TypezContent-LocationN)r<r1rPr9r:)r?Úcontent_dispositionrBÚcontent_locationr
r
rrEùs
zRequestField.make_multipart)NNN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r7r@ÚclassmethodrIrJrPrWrEr
r
r
rr8~s
#
r8)ré )Ú
__future__rÚemail.utilsrrr-Úpackagesrrrr6ÚupdateÚranger5r7Úformat_header_paramÚobjectr8r
r
r
rÚ<module>s
+