MOON
Server: Apache
System: Linux server30c.hostingraja.org 3.10.0-962.3.2.lve1.5.63.el7.x86_64 #1 SMP Fri Oct 8 12:03:35 UTC 2021 x86_64
User: jibhires (1887)
PHP: 8.1.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, escapeshellcmd, pcntl_exec
Upload Files
File: //opt/alt/python35/lib/python3.5/site-packages/urllib3/__pycache__/fields.cpython-35.pyc


�`W+�@smddlmZddlZddlZddlmZddd�Zdd	�ZGd
d�de	�Z
dS)�)�absolute_importN�)�sixzapplication/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�
/fields.py�guess_content_types	r
cs�t�fdd�dD��s_d|�f}y|jd�Wnttfk
rZYnX|Stjr�t�tj�r��jd��tj	j
�d��d|�f��S)a�
    Helper function to format and quote a single header parameter.

    Particularly useful for header parameters which might contain
    non-ASCII values, like file names. This follows RFC 2231, as
    suggested by 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 a unicode string.
    c3s|]}|�kVqdS)Nr)�.0Zch)�valuerr	�	<genexpr>#sz&format_header_param.<locals>.<genexpr>z"\
z%s="%s"�asciizutf-8z%s*=%s)�any�encode�UnicodeEncodeError�UnicodeDecodeErrorrZPY3�
isinstanceZ	text_type�emailZutilsZencode_rfc2231)�namer�resultr)rr	�format_header_params
rc@sseZdZdZdddd�Zedd��Zdd�Zd	d
�Zdd�Z	dddd
d�Z
dS)�RequestFieldaK
    A data container for request body parameters.

    :param name:
        The name of this request field.
    :param data:
        The data/value body.
    :param filename:
        An optional filename of the request field.
    :param headers:
        An optional dict-like object of headers to initially use for the field.
    NcCs=||_||_||_i|_|r9t|�|_dS)N)�_name�	_filename�data�headers�dict)�selfrrrrrrr	�__init__?s				zRequestField.__init__cCs�t|t�rNt|�dkr3|\}}}q`|\}}t|�}nd}d}|}|||d|�}|jd|�|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.
        �Nr�content_type)r�tuple�lenr
�make_multipart)�clsZ	fieldnamerrrr!Z
request_paramrrr	�from_tuplesGszRequestField.from_tuplescCs
t||�S)a
        Overridable helper function to format a single header parameter.

        :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)rrrrrr	�_render_partis	zRequestField._render_partcCsjg}|}t|t�r'|j�}x3|D]+\}}|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) typles or a :class:`dict` of (k, v) to format
            as `k1="v1"; k2="v2"; ...`.
        z; )rr�items�appendr'�join)rZheader_parts�parts�iterablerrrrr	�
_render_partstszRequestField._render_partscCs�g}dddg}xA|D]9}|jj|d�r|jd||j|f�qWxF|jj�D]5\}}||kri|ri|jd||f�qiW|jd�dj|�S)z=
        Renders the headers for this request field.
        zContent-DispositionzContent-TypezContent-LocationFz%s: %sz
)r�getr)r(r*)r�linesZ	sort_keysZsort_keyZheader_nameZheader_valuerrr	�render_headers�s
"
zRequestField.render_headersc	Csr|p	d|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)rr*r-rr)rZcontent_dispositionr!Zcontent_locationrrr	r$�s	'
zRequestField.make_multipart)�__name__�
__module__�__qualname__�__doc__r�classmethodr&r'r-r0r$rrrr	r2s"r)Z
__future__rZemail.utilsrrZpackagesrr
r�objectrrrrr	�<module>s