o
    'h*
                     @  sT   d Z ddlmZ ddlZejr!ddlmZ ddlmZ ddlm	Z	 G dd dZ
dS )	aY  
Application Dispatcher
======================

This middleware creates a single WSGI application that dispatches to
multiple other WSGI applications mounted at different URL paths.

A common example is writing a Single Page Application, where you have a
backend API and a frontend written in JavaScript that does the routing
in the browser rather than requesting different pages from the server.
The frontend is a single HTML and JS file that should be served for any
path besides "/api".

This example dispatches to an API app under "/api", an admin app
under "/admin", and an app that serves frontend files for all other
requests::

    app = DispatcherMiddleware(serve_frontend, {
        '/api': api_app,
        '/admin': admin_app,
    })

In production, you might instead handle this at the HTTP server level,
serving files or proxying to application servers based on location. The
API and admin apps would each be deployed with a separate WSGI server,
and the static files would be served directly by the HTTP server.

.. autoclass:: DispatcherMiddleware

:copyright: 2007 Pallets
:license: BSD-3-Clause
    )annotationsN)StartResponse)WSGIApplication)WSGIEnvironmentc                   @  s(   e Zd ZdZ	ddd	d
ZdddZdS )DispatcherMiddlewareaJ  Combine multiple applications as a single WSGI application.
    Requests are dispatched to an application based on the path it is
    mounted under.

    :param app: The WSGI application to dispatch to if the request
        doesn't match a mounted path.
    :param mounts: Maps path prefixes to applications for dispatching.
    Nappr   mounts!dict[str, WSGIApplication] | NonereturnNonec                 C  s   || _ |pi | _d S N)r   r   )selfr   r    r   Z/var/www/html/olx_land/venv/lib/python3.10/site-packages/werkzeug/middleware/dispatcher.py__init__6   s   zDispatcherMiddleware.__init__environr   start_responser   t.Iterable[bytes]c                 C  s   | dd}d}d|v r*|| jv r| j| }n|dd\}}d| | }d|v s| j || j}| dd}|| |d< ||d< |||S )N	PATH_INFO /   SCRIPT_NAME)getr   rsplitr   )r   r   r   script	path_infor   	last_itemoriginal_script_namer   r   r   __call__>   s   


zDispatcherMiddleware.__call__r   )r   r   r   r	   r
   r   )r   r   r   r   r
   r   )__name__
__module____qualname____doc__r   r   r   r   r   r   r   ,   s
    r   )r#   
__future__r   typingtTYPE_CHECKING_typeshed.wsgir   r   r   r   r   r   r   r   <module>   s    !