1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
========
Overview
========
Registering Routes
-------------------
At the root of every Litestar application there is an instance of the :class:`Litestar <litestar.app.Litestar>` class,
on which the root level :class:`controllers <.controller.Controller>`, :class:`routers <.router.Router>`,
and :class:`route handler <.handlers.BaseRouteHandler>` functions are registered using the
:paramref:`~litestar.config.app.AppConfig.route_handlers` :term:`kwarg <argument>`:
.. code-block:: python
:caption: Registering route handlers
from litestar import Litestar, get
@get("/sub-path")
def sub_path_handler() -> None: ...
@get()
def root_handler() -> None: ...
app = Litestar(route_handlers=[root_handler, sub_path_handler])
Components registered on the app are appended to the root path. Thus, the ``root_handler`` function will be called for
the path ``"/"``, whereas the ``sub_path_handler`` will be called for ``"/sub-path"``.
You can also declare a function to handle multiple paths, e.g.:
.. code-block:: python
:caption: Registering a route handler for multiple paths
from litestar import get, Litestar
@get(["/", "/sub-path"])
def handler() -> None: ...
app = Litestar(route_handlers=[handler])
To handle more complex path schemas you should use :class:`controllers <.controller.Controller>` and
:class:`routers <.router.Router>`
Registering routes dynamically
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Occasionally there is a need for dynamic route registration. Litestar supports this via the
:paramref:`~.app.Litestar.register` method exposed by the Litestar app instance:
.. code-block:: python
:caption: Registering a route handler dynamically with the :paramref:`~.app.Litestar.register` method
from litestar import Litestar, get
@get()
def root_handler() -> None: ...
app = Litestar(route_handlers=[root_handler])
@get("/sub-path")
def sub_path_handler() -> None: ...
app.register(sub_path_handler)
Since the app instance is attached to all instances of :class:`~.connection.base.ASGIConnection`,
:class:`~.connection.request.Request`, and :class:`~.connection.websocket.WebSocket` objects, you can in
effect call the :meth:`~.router.Router.register` method inside route handler functions, middlewares, and even
injected dependencies. For example:
.. code-block:: python
:caption: Call the :meth:`~.router.Router.register` method from inside a route handler function
from typing import Any
from litestar import Litestar, Request, get
@get("/some-path")
def route_handler(request: Request[Any, Any]) -> None:
@get("/sub-path")
def sub_path_handler() -> None: ...
request.app.register(sub_path_handler)
app = Litestar(route_handlers=[route_handler])
In the above we dynamically created the ``sub_path_handler`` and registered it inside the ``route_handler`` function.
.. caution:: Although Litestar exposes the :meth:`register <.router.Router.register>` method, it should not be abused.
Dynamic route registration increases the application complexity and makes it harder to reason about the code.
It should therefore be used only when absolutely required.
:class:`Routers <.router.Router>`
---------------------------------
:class:`Routers <.router.Router>` are instances of the :class:`~.router.Router`,
class which is the base class for the :class:`Litestar app <.app.Litestar>` itself.
A :class:`~.router.Router` can register :class:`Controllers <.controller.Controller>`,
:class:`route handler <.handlers.BaseRouteHandler>` functions, and other routers, similarly to the Litestar constructor:
.. code-block:: python
:caption: Registering a :class:`~.router.Router`
from litestar import Litestar, Router, get
@get("/{order_id:int}")
def order_handler(order_id: int) -> None: ...
order_router = Router(path="/orders", route_handlers=[order_handler])
base_router = Router(path="/base", route_handlers=[order_router])
app = Litestar(route_handlers=[base_router])
Once ``order_router`` is registered on ``base_router``, the handler function registered on ``order_router`` will
become available on ``/base/orders/{order_id}``.
:class:`Controllers <.controller.Controller>`
---------------------------------------------
:class:`Controllers <.controller.Controller>` are subclasses of the :class:`Controller <.controller.Controller>` class.
They are used to organize endpoints under a specific sub-path, which is the controller's path.
Their purpose is to allow users to utilize Python OOP for better code organization and organize code by logical concerns.
.. dropdown:: Click to see an example of registering a controller
.. code-block:: python
:caption: Registering a :class:`~.controller.Controller`
from litestar.plugins.pydantic import PydanticDTO
from litestar.controller import Controller
from litestar.dto import DTOConfig, DTOData
from litestar.handlers import get, post, patch, delete
from pydantic import BaseModel, UUID4
class UserOrder(BaseModel):
user_id: int
order: str
class PartialUserOrderDTO(PydanticDTO[UserOrder]):
config = DTOConfig(partial=True)
class UserOrderController(Controller):
path = "/user-order"
@post()
async def create_user_order(self, data: UserOrder) -> UserOrder: ...
@get(path="/{order_id:uuid}")
async def retrieve_user_order(self, order_id: UUID4) -> UserOrder: ...
@patch(path="/{order_id:uuid}", dto=PartialUserOrderDTO)
async def update_user_order(
self, order_id: UUID4, data: DTOData[PartialUserOrderDTO]
) -> UserOrder: ...
@delete(path="/{order_id:uuid}")
async def delete_user_order(self, order_id: UUID4) -> None: ...
The above is a simple example of a "CRUD" controller for a model called ``UserOrder``. You can place as
many :doc:`route handler methods </usage/routing/handlers>` on a controller,
as long as the combination of path+http method is unique.
The ``path`` that is defined on the :class:`controller <.controller.Controller>` is appended before the path that is
defined for the route handlers declared on it. Thus, in the above example, ``create_user_order`` has the path of the
:class:`controller <.controller.Controller>` - ``/user-order/``, while ``retrieve_user_order`` has the path
``/user-order/{order_id:uuid}"``.
.. note:: If you do not declare a ``path`` class variable on the controller, it will default to the root path of ``"/"``.
Registering components multiple times
--------------------------------------
You can register both standalone route handler functions and controllers multiple times.
Controllers
^^^^^^^^^^^
.. code-block:: python
:caption: Registering a controller multiple times
from litestar import Router, Controller, get
class MyController(Controller):
path = "/controller"
@get()
def handler(self) -> None: ...
internal_router = Router(path="/internal", route_handlers=[MyController])
partner_router = Router(path="/partner", route_handlers=[MyController])
consumer_router = Router(path="/consumer", route_handlers=[MyController])
In the above, the same ``MyController`` class has been registered on three different routers. This is possible because
what is passed to the :class:`router <.router.Router>` is not a class instance but rather the class itself.
The :class:`router <.router.Router>` creates its own instance of the :class:`controller <.controller.Controller>`,
which ensures encapsulation.
Therefore, in the above example, three different instances of ``MyController`` will be created, each mounted on a
different sub-path, e.g., ``/internal/controller``, ``/partner/controller``, and ``/consumer/controller``.
Route handlers
^^^^^^^^^^^^^^
You can also register standalone route handlers multiple times:
.. code-block:: python
:caption: Registering a route handler multiple times
from litestar import Litestar, Router, get
@get(path="/handler")
def my_route_handler() -> None: ...
internal_router = Router(path="/internal", route_handlers=[my_route_handler])
partner_router = Router(path="/partner", route_handlers=[my_route_handler])
consumer_router = Router(path="/consumer", route_handlers=[my_route_handler])
Litestar(route_handlers=[internal_router, partner_router, consumer_router])
When the handler function is registered, it's actually copied. Thus, each router has its own unique instance of
the route handler. Path behaviour is identical to that of controllers above, namely, the route handler
function will be accessible in the following paths: ``/internal/handler``, ``/partner/handler``, and ``/consumer/handler``.
.. attention:: You can nest routers as you see fit - but be aware that once a router has been registered it cannot be
re-registered or an exception will be raised.
Mounting ASGI Apps
-------------------
Litestar support "mounting" ASGI applications on sub-paths, i.e., specifying a handler function that will handle all
requests addressed to a given path.
.. dropdown:: Click to see an example of mounting an ASGI app
.. literalinclude:: /examples/routing/mount_custom_app.py
:language: python
:caption: Mounting an ASGI App
The handler function will receive all requests with an url that begins with ``/some/sub-path``, e.g, ``/some/sub-path``,
``/some/sub-path/abc``, ``/some/sub-path/123/another/sub-path``, etc.
.. admonition:: Technical Details
:class: info
If we are sending a request to the above with the url ``/some/sub-path``, the handler will be invoked and
the value of ``scope["path"]`` will equal ``"/"``. If we send a request to ``/some/sub-path/abc``, it will also be
invoked,and ``scope["path"]`` will equal ``"/abc"``.
Mounting is especially useful when you need to combine components of other ASGI applications - for example, for third
party libraries. The following example is identical in principle to the one above, but it uses
`Starlette <https://www.starlette.io/>`_:
.. dropdown:: Click to see an example of mounting a Starlette app
.. literalinclude:: /examples/routing/mounting_starlette_app.py
:language: python
:caption: Mounting a Starlette App
.. admonition:: Why Litestar uses radix based routing
The regex matching used by popular frameworks such as Starlette, FastAPI or Flask is very good at
resolving path parameters fast, giving it an advantage when a URL has a lot of path parameters - what we can think
of as ``vertical`` scaling. On the other hand, it is not good at scaling horizontally - the more routes, the less
performant it becomes. Thus, there is an inverse relation between performance and application size with this
approach that strongly favors very small microservices. The **trie** based approach used by Litestar is agnostic to
the number of routes of the application giving it better horizontal scaling characteristics at the expense of
somewhat slower resolution of path parameters.
Litestar implements its routing solution that is based on the concept of a
`radix tree <https://en.wikipedia.org/wiki/Radix_tree>`_ or *trie*.
.. seealso:: If you are interested in the technical aspects of the implementation, refer to
`this GitHub issue <https://github.com/litestar-org/litestar/issues/177>`_ - it includes
an indepth discussion of the pertinent code.
|