HEX
Server: Apache
System: Linux nc-ph-0707-26.instaforreviews.com 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64
User: qirgxuo4hkuv (1004)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: //lib/python3.6/site-packages/urllib3/__pycache__/fields.cpython-36.pyc
3

��v_Z!�@s�ddlmZddlZddlZddlZddlZddd�Zdd�Zdd	d	d
�Z	e	j
dd�edd�D��dd�Zdd�Z
e
ZGdd�de�ZdS)�)�absolute_importN�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)�	mimetypesZ
guess_type)�filename�default�r�/usr/lib/python3.6/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.

    :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)�.0Zch)�valuerr�	<genexpr>)sz.format_header_param_rfc2231.<locals>.<genexpr>z"\
z%s="%s"�asciiz%s*=%s)�
isinstance�six�binary_type�decode�any�encode�UnicodeEncodeError�UnicodeDecodeErrorZPY2�emailZutilsZencode_rfc2231)�namer�resultr)rr�format_header_param_rfc2231s 


rz%22z\\)�"�\rcCs&i|]}|dkrdj|�tj|��qS)�z%{:02X})r)�formatrZunichr)r
Zccrrr�
<dictcomp>Isr��cs:�fdd�}tjdjdd��j�D���}|j||�}|S)Ncs�|jd�S)Nr)�group)�match)�needles_and_replacementsrr�replacerRsz#_replace_multiple.<locals>.replacer�|cSsg|]}tj|��qSr)�re�escape)r
Zneedlerrr�
<listcomp>Vsz%_replace_multiple.<locals>.<listcomp>)r&�compile�join�keys�sub)rr#r$�patternrr)r#r�_replace_multipleQs
r.cCs,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")rrrrr.�_HTML5_REPLACEMENTS)rrrrr�format_header_param_html5^s

r0c@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)�selfrr4rr5r7rrr�__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)rr7)�content_type)r�tuple�lenr	�make_multipart)�clsZ	fieldnamerr7rr4r;Z
request_paramrrr�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.
        )r7)r8rrrrr�_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; )rr6�items�appendrAr*)r8Zheader_parts�parts�iterablerrrrr�
_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
)r5�getrCrBr*)r8�linesZ	sort_keysZsort_keyZheader_nameZheader_valuerrr�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)r5r*rFr2r3)r8Zcontent_dispositionr;Zcontent_locationrrrr>�s
zRequestField.make_multipart)NNN)�__name__�
__module__�__qualname__�__doc__r0r9�classmethodr@rArFrIr>rrrrr1}s
#
r1)r� )Z
__future__rZemail.utilsrrr&rr	rr/�update�ranger.r0Zformat_header_param�objectr1rrrr�<module>s 
*