o
    tBh	                     @   s*   d dl Z ddlmZ G dd de jZdS )    N   )urljoinc                       s:   e Zd ZdZdZd	 fdd	Z fddZdd Z  ZS )
BaseUrlSessiona  A Session with a URL that all requests will use as a base.

    Let's start by looking at an example:

    .. code-block:: python

        >>> from requests_toolbelt import sessions
        >>> s = sessions.BaseUrlSession(
        ...     base_url='https://example.com/resource/')
        >>> r = s.get('sub-resource/' params={'foo': 'bar'})
        >>> print(r.request.url)
        https://example.com/resource/sub-resource/?foo=bar

    Our call to the ``get`` method will make a request to the URL passed in
    when we created the Session and the partial resource name we provide.

    We implement this by overriding the ``request`` method so most uses of a
    Session are covered. (This, however, precludes the use of PreparedRequest
    objects).

    .. note::

        The base URL that you provide and the path you provide are **very**
        important.

    Let's look at another *similar* example

    .. code-block:: python

        >>> from requests_toolbelt import sessions
        >>> s = sessions.BaseUrlSession(
        ...     base_url='https://example.com/resource/')
        >>> r = s.get('/sub-resource/' params={'foo': 'bar'})
        >>> print(r.request.url)
        https://example.com/sub-resource/?foo=bar

    The key difference here is that we called ``get`` with ``/sub-resource/``,
    i.e., there was a leading ``/``. This changes how we create the URL
    because we rely on :mod:`urllib.parse.urljoin`.

    To override how we generate the URL, sub-class this method and override the
    ``create_url`` method.

    Based on implementation from
    https://github.com/kennethreitz/requests/issues/2554#issuecomment-109341010
    Nc                    s   |r|| _ tt|   d S N)base_urlsuperr   __init__)selfr   	__class__ q/var/www/html/riverr-enterprise-integrations-main/venv/lib/python3.10/site-packages/requests_toolbelt/sessions.pyr   8   s   zBaseUrlSession.__init__c                    s*   |  |}tt| j||g|R i |S )z3Send the request after generating the complete URL.)
create_urlr   r   request)r	   methodurlargskwargsr
   r   r   r   =   s   

zBaseUrlSession.requestc                 C   s   t | j|S )z+Create the URL based off this partial path.)r   r   )r	   r   r   r   r   r   D   s   zBaseUrlSession.create_urlr   )	__name__
__module____qualname____doc__r   r   r   r   __classcell__r   r   r
   r   r      s    /r   )requests_compatr   Sessionr   r   r   r   r   <module>   s    