a
    }a                     @   sX   d dl mZ d dlZd dlZG dd deZe ZdddZdd	 Z	G d
d deZ
dS )    )absolute_importNc                   @   s"   e Zd ZddlZejd dkZdS )Sixr   N   )__name__
__module____qualname__sysversion_infoPY3 r   r   Dlib/python3.9/site-packages/anaconda_project/internal/test/fields.pyr      s   r   application/octet-streamc                 C   s   | rt | d p|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defaultr   r   r   guess_content_type'   s    	r   c                    sv   t  fdddD sHd|  f }z|d W n tyB   Y n0 |S tjsX d t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.
    c                 3   s   | ]}| v V  qd S Nr   ).0Zchvaluer   r   	<genexpr>B       z&format_header_param.<locals>.<genexpr>z"\
z%s="%s"asciizutf-8z%s*=%s)anyencodeUnicodeEncodeErrorsixr
   emailZutilsZencode_rfc2231)namer   resultr   r   r   format_header_param5   s    
r    c                   @   sH   e Zd ZdZdddZedd Zdd Zd	d
 Zdd Z	dddZ
dS )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.
    Nc                 C   s*   || _ || _|| _i | _|r&t|| _d S r   )_name	_filenamedataheadersdict)selfr   r$   r   r%   r   r   r   __init__^   s    zRequestField.__init__c                 C   s^   t |tr4t|dkr"|\}}}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)r   )content_type)
isinstancetuplelenr   make_multipart)clsZ	fieldnamer   r   r$   r*   Zrequest_paramr   r   r   from_tuplesf   s    

zRequestField.from_tuplesc                 C   s
   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    )r'   r   r   r   r   r   _render_part   s    	zRequestField._render_partc                 C   sH   g }|}t |tr| }|D ]\}}|r|| || qd|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"; ...`.
        ; )r+   r&   itemsappendr1   join)r'   Zheader_partspartsiterabler   r   r   r   r   _render_parts   s    
zRequestField._render_partsc                 C   s   g }g d}|D ]*}| j |dr|d|| j | f  q| j  D ]&\}}||vrF|rF|d||f  qF|d d|S )z=
        Renders the headers for this request field.
        )Content-DispositionContent-TypeContent-LocationFz%s: %sz
)r%   getr4   r3   r5   )r'   linesZ	sort_keysZsort_keyZheader_nameZheader_valuer   r   r   render_headers   s    
zRequestField.render_headersc                 C   sX   |pd| j d< | j d  dd| d| jfd| jffg7  < || j d< || j d< 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-datar9   r2    r   r   r:   r;   N)r%   r5   r8   r"   r#   )r'   Zcontent_dispositionr*   Zcontent_locationr   r   r   r.      s    
zRequestField.make_multipart)NN)NNN)r   r   r   __doc__r(   classmethodr0   r1   r8   r>   r.   r   r   r   r   r!   Q   s   

!r!   )r   )Z
__future__r   Zemail.utilsr   r   objectr   r   r   r    r!   r   r   r   r   <module>   s   
