145 lines
4.1 KiB
Python
145 lines
4.1 KiB
Python
# SPDX-FileCopyrightText: Copyright (c) 2022 Dan Halbert for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
"""
|
|
`adafruit_httpserver.route`
|
|
====================================================
|
|
* Author(s): Dan Halbert, Michał Pokusa
|
|
"""
|
|
|
|
try:
|
|
from typing import Callable, List, Union, Tuple
|
|
except ImportError:
|
|
pass
|
|
|
|
import re
|
|
|
|
from .methods import GET
|
|
|
|
|
|
class _Route:
|
|
"""Route definition for different paths, see `adafruit_httpserver.server.Server.route`."""
|
|
|
|
def __init__(self, path: str = "", method: str = GET) -> None:
|
|
self._validate_path(path)
|
|
|
|
self.parameters_names = [
|
|
name[1:-1] for name in re.compile(r"/[^<>]*/?").split(path) if name != ""
|
|
]
|
|
self.path = (
|
|
path
|
|
if not self._contains_parameters
|
|
else re.sub(r"<\w*>", r"([^/]*)", path)
|
|
)
|
|
self.method = method
|
|
|
|
@staticmethod
|
|
def _validate_path(path: str) -> None:
|
|
if not path.startswith("/"):
|
|
raise ValueError("Path must start with a slash.")
|
|
|
|
if "<>" in path:
|
|
raise ValueError("All URL parameters must be named.")
|
|
|
|
@property
|
|
def _contains_parameters(self) -> bool:
|
|
return 0 < len(self.parameters_names)
|
|
|
|
def match(self, other: "_Route") -> Tuple[bool, List[str]]:
|
|
"""
|
|
Checks if the route matches the other route.
|
|
|
|
If the route contains parameters, it will check if the ``other`` route contains values for
|
|
them.
|
|
|
|
Returns tuple of a boolean and a list of strings. The boolean indicates if the routes match,
|
|
and the list contains the values of the url parameters from the ``other`` route.
|
|
|
|
Examples::
|
|
|
|
route = _Route("/example", GET)
|
|
|
|
other1 = _Route("/example", GET)
|
|
route.matches(other1) # True, []
|
|
|
|
other2 = _Route("/other-example", GET)
|
|
route.matches(other2) # False, []
|
|
|
|
...
|
|
|
|
route = _Route("/example/<parameter>", GET)
|
|
|
|
other1 = _Route("/example/123", GET)
|
|
route.matches(other1) # True, ["123"]
|
|
|
|
other2 = _Route("/other-example", GET)
|
|
route.matches(other2) # False, []
|
|
"""
|
|
|
|
if self.method != other.method:
|
|
return False, []
|
|
|
|
if not self._contains_parameters:
|
|
return self.path == other.path, []
|
|
|
|
regex_match = re.match(f"^{self.path}$", other.path)
|
|
if regex_match is None:
|
|
return False, []
|
|
|
|
return True, regex_match.groups()
|
|
|
|
def __repr__(self) -> str:
|
|
return f"_Route(path={repr(self.path)}, method={repr(self.method)})"
|
|
|
|
|
|
class _Routes:
|
|
"""A collection of routes and their corresponding handlers."""
|
|
|
|
def __init__(self) -> None:
|
|
self._routes: List[_Route] = []
|
|
self._handlers: List[Callable] = []
|
|
|
|
def add(self, route: _Route, handler: Callable):
|
|
"""Adds a route and its handler to the collection."""
|
|
|
|
self._routes.append(route)
|
|
self._handlers.append(handler)
|
|
|
|
def find_handler(self, route: _Route) -> Union[Callable, None]:
|
|
"""
|
|
Finds a handler for a given route.
|
|
|
|
If route used URL parameters, the handler will be wrapped to pass the parameters to the
|
|
handler.
|
|
|
|
Example::
|
|
|
|
@server.route("/example/<my_parameter>", GET)
|
|
def route_func(request, my_parameter):
|
|
...
|
|
request.path == "/example/123" # True
|
|
my_parameter == "123" # True
|
|
"""
|
|
found_route, _route = False, None
|
|
|
|
for _route in self._routes:
|
|
matches, parameters_values = _route.match(route)
|
|
|
|
if matches:
|
|
found_route = True
|
|
break
|
|
|
|
if not found_route:
|
|
return None
|
|
|
|
handler = self._handlers[self._routes.index(_route)]
|
|
|
|
keyword_parameters = dict(zip(_route.parameters_names, parameters_values))
|
|
|
|
def wrapped_handler(request):
|
|
return handler(request, **keyword_parameters)
|
|
|
|
return wrapped_handler
|
|
|
|
def __repr__(self) -> str:
|
|
return f"_Routes({repr(self._routes)})"
|