class documentation

class MapAdapter: (source)

View In Hierarchy

Returned by :meth:`Map.bind` or :meth:`Map.bind_to_environ` and does the URL matching and building based on runtime information.

Method __init__ Undocumented
Method allowed_methods Returns the valid methods that match for a given path.
Method build Building URLs works pretty much the other way round. Instead of `match` you call `build` and pass it the endpoint and a dict of arguments for the placeholders.
Method dispatch Does the complete dispatching process. `view_func` is called with the endpoint and a dict with the values for the view. It should look up the view function, call it, and return a response object or WSGI application...
Method encode_query_args Undocumented
Method get_default_redirect A helper that returns the URL to redirect to if it finds one. This is used for default redirecting only.
Method get_host Figures out the full host name for the given domain part. The domain part is a subdomain in case host matching is disabled or a full host name.
Method make_alias_redirect_url Internally called to make an alias redirect URL.
Method make_redirect_url Creates a redirect URL.
Method match The usage is simple: you just pass the match method the current path info as well as the method (which defaults to `GET`). The following things can then happen:
Method test Test if a rule would match. Works like `match` but returns `True` if the URL matches, or `False` if it does not exist.
Instance Variable default_method Undocumented
Instance Variable map Undocumented
Instance Variable path_info Undocumented
Instance Variable query_args Undocumented
Instance Variable script_name Undocumented
Instance Variable server_name Undocumented
Instance Variable subdomain Undocumented
Instance Variable url_scheme Undocumented
Instance Variable websocket Undocumented
Method _partial_build Helper for :meth:`build`. Returns subdomain and path for the rule that accepts this endpoint, values and method.
def __init__(self, map: Map, server_name: str, script_name: str, subdomain: t.Optional[str], url_scheme: str, path_info: str, default_method: str, query_args: t.Optional[t.Union[t.Mapping[str, t.Any], str]] = None): (source)

Undocumented

def allowed_methods(self, path_info: t.Optional[str] = None) -> t.Iterable[str]: (source)

Returns the valid methods that match for a given path. .. versionadded:: 0.7

def build(self, endpoint: str, values: t.Optional[t.Mapping[str, t.Any]] = None, method: t.Optional[str] = None, force_external: bool = False, append_unknown: bool = True, url_scheme: t.Optional[str] = None) -> str: (source)

Building URLs works pretty much the other way round. Instead of `match` you call `build` and pass it the endpoint and a dict of arguments for the placeholders. The `build` function also accepts an argument called `force_external` which, if you set it to `True` will force external URLs. Per default external URLs (include the server name) will only be used if the target URL is on a different subdomain. >>> m = Map([ ... Rule('/', endpoint='index'), ... Rule('/downloads/', endpoint='downloads/index'), ... Rule('/downloads/<int:id>', endpoint='downloads/show') ... ]) >>> urls = m.bind("example.com", "/") >>> urls.build("index", {}) '/' >>> urls.build("downloads/show", {'id': 42}) '/downloads/42' >>> urls.build("downloads/show", {'id': 42}, force_external=True) 'http://example.com/downloads/42' Because URLs cannot contain non ASCII data you will always get bytes back. Non ASCII characters are urlencoded with the charset defined on the map instance. Additional values are converted to strings and appended to the URL as URL querystring parameters: >>> urls.build("index", {'q': 'My Searchstring'}) '/?q=My+Searchstring' When processing those additional values, lists are furthermore interpreted as multiple values (as per :py:class:`werkzeug.datastructures.MultiDict`): >>> urls.build("index", {'q': ['a', 'b', 'c']}) '/?q=a&q=b&q=c' Passing a ``MultiDict`` will also add multiple values: >>> urls.build("index", MultiDict((('p', 'z'), ('q', 'a'), ('q', 'b')))) '/?p=z&q=a&q=b' If a rule does not exist when building a `BuildError` exception is raised. The build method accepts an argument called `method` which allows you to specify the method you want to have an URL built for if you have different methods for the same endpoint specified. :param endpoint: the endpoint of the URL to build. :param values: the values for the URL to build. Unhandled values are appended to the URL as query parameters. :param method: the HTTP method for the rule if there are different URLs for different methods on the same endpoint. :param force_external: enforce full canonical external URLs. If the URL scheme is not provided, this will generate a protocol-relative URL. :param append_unknown: unknown parameters are appended to the generated URL as query string argument. Disable this if you want the builder to ignore those. :param url_scheme: Scheme to use in place of the bound :attr:`url_scheme`. .. versionchanged:: 2.0 Added the ``url_scheme`` parameter. .. versionadded:: 0.6 Added the ``append_unknown`` parameter.

def dispatch(self, view_func: t.Callable[[str, t.Mapping[str, t.Any]], WSGIApplication], path_info: t.Optional[str] = None, method: t.Optional[str] = None, catch_http_exceptions: bool = False) -> WSGIApplication: (source)

Does the complete dispatching process. `view_func` is called with the endpoint and a dict with the values for the view. It should look up the view function, call it, and return a response object or WSGI application. http exceptions are not caught by default so that applications can display nicer error messages by just catching them by hand. If you want to stick with the default error messages you can pass it ``catch_http_exceptions=True`` and it will catch the http exceptions. Here a small example for the dispatch usage:: from werkzeug.wrappers import Request, Response from werkzeug.wsgi import responder from werkzeug.routing import Map, Rule def on_index(request): return Response('Hello from the index') url_map = Map([Rule('/', endpoint='index')]) views = {'index': on_index} @responder def application(environ, start_response): request = Request(environ) urls = url_map.bind_to_environ(environ) return urls.dispatch(lambda e, v: views[e](request, **v), catch_http_exceptions=True) Keep in mind that this method might return exception objects, too, so use :class:`Response.force_type` to get a response object. :param view_func: a function that is called with the endpoint as first argument and the value dict as second. Has to dispatch to the actual view function with this information. (see above) :param path_info: the path info to use for matching. Overrides the path info specified on binding. :param method: the HTTP method used for matching. Overrides the method specified on binding. :param catch_http_exceptions: set to `True` to catch any of the werkzeug :class:`HTTPException`\s.

def encode_query_args(self, query_args: t.Union[t.Mapping[str, t.Any], str]) -> str: (source)

Undocumented

def get_default_redirect(self, rule: Rule, method: str, values: t.MutableMapping[str, t.Any], query_args: t.Union[t.Mapping[str, t.Any], str]) -> t.Optional[str]: (source)

A helper that returns the URL to redirect to if it finds one. This is used for default redirecting only. :internal:

def get_host(self, domain_part: t.Optional[str]) -> str: (source)

Figures out the full host name for the given domain part. The domain part is a subdomain in case host matching is disabled or a full host name.

def make_alias_redirect_url(self, path: str, endpoint: str, values: t.Mapping[str, t.Any], method: str, query_args: t.Union[t.Mapping[str, t.Any], str]) -> str: (source)

Internally called to make an alias redirect URL.

def make_redirect_url(self, path_info: str, query_args: t.Optional[t.Union[t.Mapping[str, t.Any], str]] = None, domain_part: t.Optional[str] = None) -> str: (source)

Creates a redirect URL. :internal:

@t.overload
def match(self, path_info: t.Optional[str] = None, method: t.Optional[str] = None, return_rule: te.Literal[False] = False, query_args: t.Optional[t.Union[t.Mapping[str, t.Any], str]] = None, websocket: t.Optional[bool] = None) -> t.Tuple[str, t.Mapping[str, t.Any]]:
@t.overload
def match(self, path_info: t.Optional[str] = None, method: t.Optional[str] = None, return_rule: te.Literal[True] = True, query_args: t.Optional[t.Union[t.Mapping[str, t.Any], str]] = None, websocket: t.Optional[bool] = None) -> t.Tuple[Rule, t.Mapping[str, t.Any]]:
(source)

The usage is simple: you just pass the match method the current path info as well as the method (which defaults to `GET`). The following things can then happen: - you receive a `NotFound` exception that indicates that no URL is matching. A `NotFound` exception is also a WSGI application you can call to get a default page not found page (happens to be the same object as `werkzeug.exceptions.NotFound`) - you receive a `MethodNotAllowed` exception that indicates that there is a match for this URL but not for the current request method. This is useful for RESTful applications. - you receive a `RequestRedirect` exception with a `new_url` attribute. This exception is used to notify you about a request Werkzeug requests from your WSGI application. This is for example the case if you request ``/foo`` although the correct URL is ``/foo/`` You can use the `RequestRedirect` instance as response-like object similar to all other subclasses of `HTTPException`. - you receive a ``WebsocketMismatch`` exception if the only match is a WebSocket rule but the bind is an HTTP request, or if the match is an HTTP rule but the bind is a WebSocket request. - you get a tuple in the form ``(endpoint, arguments)`` if there is a match (unless `return_rule` is True, in which case you get a tuple in the form ``(rule, arguments)``) If the path info is not passed to the match method the default path info of the map is used (defaults to the root URL if not defined explicitly). All of the exceptions raised are subclasses of `HTTPException` so they can be used as WSGI responses. They will all render generic error or redirect pages. Here is a small example for matching: >>> m = Map([ ... Rule('/', endpoint='index'), ... Rule('/downloads/', endpoint='downloads/index'), ... Rule('/downloads/<int:id>', endpoint='downloads/show') ... ]) >>> urls = m.bind("example.com", "/") >>> urls.match("/", "GET") ('index', {}) >>> urls.match("/downloads/42") ('downloads/show', {'id': 42}) And here is what happens on redirect and missing URLs: >>> urls.match("/downloads") Traceback (most recent call last): ... RequestRedirect: http://example.com/downloads/ >>> urls.match("/missing") Traceback (most recent call last): ... NotFound: 404 Not Found :param path_info: the path info to use for matching. Overrides the path info specified on binding. :param method: the HTTP method used for matching. Overrides the method specified on binding. :param return_rule: return the rule that matched instead of just the endpoint (defaults to `False`). :param query_args: optional query arguments that are used for automatic redirects as string or dictionary. It's currently not possible to use the query arguments for URL matching. :param websocket: Match WebSocket instead of HTTP requests. A websocket request has a ``ws`` or ``wss`` :attr:`url_scheme`. This overrides that detection. .. versionadded:: 1.0 Added ``websocket``. .. versionchanged:: 0.8 ``query_args`` can be a string. .. versionadded:: 0.7 Added ``query_args``. .. versionadded:: 0.6 Added ``return_rule``.

def test(self, path_info: t.Optional[str] = None, method: t.Optional[str] = None) -> bool: (source)

Test if a rule would match. Works like `match` but returns `True` if the URL matches, or `False` if it does not exist. :param path_info: the path info to use for matching. Overrides the path info specified on binding. :param method: the HTTP method used for matching. Overrides the method specified on binding.

default_method = (source)

Undocumented

Undocumented

path_info = (source)

Undocumented

query_args = (source)

Undocumented

script_name = (source)

Undocumented

server_name = (source)

Undocumented

subdomain = (source)

Undocumented

url_scheme = (source)

Undocumented

websocket = (source)

Undocumented

def _partial_build(self, endpoint: str, values: t.Mapping[str, t.Any], method: t.Optional[str], append_unknown: bool) -> t.Optional[t.Tuple[str, str, bool]]: (source)

Helper for :meth:`build`. Returns subdomain and path for the rule that accepts this endpoint, values and method. :internal: