1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00
actix-website/docs/url-dispatch.md

303 lines
17 KiB
Markdown
Raw Normal View History

2018-05-22 23:15:08 +02:00
---
title: URL Dispatch
---
import CodeBlock from "@site/src/components/code_block.js";
2018-05-22 23:15:08 +02:00
# URL Dispatch
2022-02-26 05:41:49 +01:00
URL dispatch provides a simple way for mapping URLs to handler code using a simple pattern matching language. If one of the patterns matches the path information associated with a request, a particular handler object is invoked.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> A request handler is a function that accepts zero or more parameters that can be extracted from a request (i.e., [_impl FromRequest_][implfromrequest]) and returns a type that can be converted into an HttpResponse (i.e., [_impl Responder_][implresponder]). More information is available in the [handler section][handlersection].
2018-05-22 23:15:08 +02:00
## Resource configuration
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Resource configuration is the act of adding a new resources to an application. A resource has a name, which acts as an identifier to be used for URL generation. The name also allows developers to add routes to existing resources. A resource also has a pattern, meant to match against the _PATH_ portion of a _URL_ (the portion following the scheme and port, e.g. _/foo/bar_ in the _URL_ _http://localhost:8080/foo/bar?q=value_). It does not match against the _QUERY_ portion (the portion that follows _?_, e.g. _q=value_ in _http://localhost:8080/foo/bar?q=value_).
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The [_App::route()_][approute] method provides simple way of registering routes. This method adds a single route to application routing table. This method accepts a _path pattern_, _HTTP method_ and a handler function. `route()` method could be called multiple times for the same path, in that case, multiple routes register for the same resource path.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" section="main" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
While _App::route()_ provides simple way of registering routes, to access complete resource configuration, a different method has to be used. The [_App::service()_][appservice] method adds a single [resource][webresource] to application routing table. This method accepts a _path pattern_, guards, and one or more routes.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="resource.rs" section="resource" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
If a resource does not contain any route or does not have any matching routes, it returns _NOT FOUND_ HTTP response.
2018-05-22 23:15:08 +02:00
### Configuring a Route
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Resource contains a set of routes. Each route in turn has a set of `guards` and a handler. New routes can be created with `Resource::route()` method which returns a reference to new _Route_ instance. By default the _route_ does not contain any guards, so matches all requests and the default handler is `HttpNotFound`.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The application routes incoming requests based on route criteria which are defined during resource registration and route registration. Resource matches all routes it contains in the order the routes were registered via `Resource::route()`.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> A _Route_ can contain any number of _guards_ but only one handler.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="cfg.rs" section="cfg" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
In this example, `HttpResponse::Ok()` is returned for _GET_ requests if the request contains `Content-Type` header, the value of this header is _text/plain_, and path equals to `/path`.
2018-05-22 23:15:08 +02:00
If a resource can not match any route, a "NOT FOUND" response is returned.
2022-02-26 05:41:49 +01:00
[_ResourceHandler::route()_][resourcehandler] returns a [_Route_][route] object. Route can be configured with a builder-like pattern. Following configuration methods are available:
2022-02-26 05:41:49 +01:00
- [_Route::guard()_][routeguard] registers a new guard. Any number of guards can be registered for each route.
- [_Route::method()_][routemethod] registers a method guard. Any number of guards can be registered for each route.
- [_Route::to()_][routeto] registers an async handler function for this route. Only one handler can be registered. Usually handler registration is the last config operation.
2018-05-22 23:15:08 +02:00
## Route matching
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The main purpose of route configuration is to match (or not match) the request's `path` against a URL path pattern. `path` represents the path portion of the URL that was requested.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The way that _actix-web_ does this is very simple. When a request enters the system, for each resource configuration declaration present in the system, actix checks the request's path against the pattern declared. This checking happens in the order that the routes were declared via `App::service()` method. If resource can not be found, the _default resource_ is used as the matched resource.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
When a route configuration is declared, it may contain route guard arguments. All route guards associated with a route declaration must be `true` for the route configuration to be used for a given request during a check. If any guard in the set of route guard arguments provided to a route configuration returns `false` during a check, that route is skipped and route matching continues through the ordered set of routes.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
If any route matches, the route matching process stops and the handler associated with the route is invoked. If no route matches after all route patterns are exhausted, a _NOT FOUND_ response get returned.
2018-05-22 23:15:08 +02:00
## Resource pattern syntax
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The syntax of the pattern matching language used by actix in the pattern argument is straightforward.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The pattern used in route configuration may start with a slash character. If the pattern does not start with a slash character, an implicit slash will be prepended to it at matching time. For example, the following patterns are equivalent:
2018-05-22 23:15:08 +02:00
```
{foo}/bar/baz
```
and:
```
/{foo}/bar/baz
```
A _variable part_ (replacement marker) is specified in the form _\{identifier}_, where this means "accept any characters up to the next slash character and use this as the name in the `HttpRequest.match_info()` object".
2018-05-22 23:15:08 +02:00
A replacement marker in a pattern matches the regular expression `[^{}/]+`.
2023-02-03 20:12:21 +01:00
A `match_info` is the `Params` object representing the dynamic parts extracted from a _URL_ based on the routing pattern. It is available as _request.match_info_. For example, the following pattern defines one literal segment (foo) and two replacement markers (baz, and bar):
2018-05-22 23:15:08 +02:00
```
foo/{baz}/{bar}
```
The above pattern will match these URLs, generating the following match information:
```
foo/1/2 -> Params {'baz': '1', 'bar': '2'}
foo/abc/def -> Params {'baz': 'abc', 'bar': 'def'}
2018-05-22 23:15:08 +02:00
```
It will not match the following patterns however:
```
foo/1/2/ -> No match (trailing slash)
bar/abc/def -> First segment literal mismatch
```
2022-02-26 05:41:49 +01:00
The match for a segment replacement marker in a segment will be done only up to the first non-alphanumeric character in the segment in the pattern. So, for instance, if this route pattern was used:
2018-05-22 23:15:08 +02:00
```
foo/{name}.html
```
The literal path `/foo/biz.html` will match the above route pattern, and the match result will be `Params {'name': 'biz'}`. However, the literal path `/foo/biz` will not match, because it does not contain a literal `.html` at the end of the segment represented by `{name}.html` (it only contains biz, not biz.html).
2018-05-22 23:15:08 +02:00
To capture both segments, two replacement markers can be used:
```
foo/{name}.{ext}
```
The literal path `/foo/biz.html` will match the above route pattern, and the match result will be `Params {'name': 'biz', 'ext': 'html'}`. This occurs because there is a literal part of `.` (period) between the two replacement markers `{name}` and `{ext}`.
2018-05-22 23:15:08 +02:00
Replacement markers can optionally specify a regular expression which will be used to decide whether a path segment should match the marker. To specify that a replacement marker should match only a specific set of characters as defined by a regular expression, you must use a slightly extended form of replacement marker syntax. Within braces, the replacement marker name must be followed by a colon, then directly thereafter, the regular expression. The default regular expression associated with a replacement marker `[^/]+` matches one or more characters which are not a slash. For example, under the hood, the replacement marker `{foo}` can more verbosely be spelled as `{foo:[^/]+}`. You can change this to be an arbitrary regular expression to match an arbitrary sequence of characters, such as `{foo:\d+}` to match only digits.
2018-05-22 23:15:08 +02:00
Segments must contain at least one character in order to match a segment replacement marker. For example, for the URL `/abc/`:
2018-05-22 23:15:08 +02:00
- `/abc/{foo}` will not match.
- `/{foo}/` will match.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
> **Note**: path will be URL-unquoted and decoded into valid unicode string before matching pattern and values representing matched path segments will be URL-unquoted too.
2018-05-22 23:15:08 +02:00
So for instance, the following pattern:
```
foo/{bar}
```
When matching the following URL:
```
http://example.com/foo/La%20Pe%C3%B1a
```
2020-09-12 17:21:54 +02:00
The match dictionary will look like so (the value is URL-decoded):
2018-05-22 23:15:08 +02:00
```
Params {'bar': 'La Pe\xf1a'}
2018-05-22 23:15:08 +02:00
```
2022-02-26 05:41:49 +01:00
Literal strings in the path segment should represent the decoded value of the path provided to actix. You don't want to use a URL-encoded value in the pattern. For example, rather than this:
2018-05-22 23:15:08 +02:00
```
/Foo%20Bar/{baz}
```
You'll want to use something like this:
```
/Foo Bar/{baz}
```
It is possible to get "tail match". For this purpose custom regex has to be used.
```
foo/{bar}/{tail:.*}
```
The above pattern will match these URLs, generating the following match information:
```
foo/1/2/ -> Params {'bar': '1', 'tail': '2/'}
foo/abc/def/a/b/c -> Params {'bar': 'abc', 'tail': 'def/a/b/c'}
2018-05-22 23:15:08 +02:00
```
## Scoping Routes
2022-02-26 05:41:49 +01:00
Scoping helps you organize routes sharing common root paths. You can nest scopes within scopes.
Suppose that you want to organize paths to endpoints used to view "Users". Such paths may include:
- /users
- /users/show
- /users/show/\{id}
A scoped layout of these paths would appear as follows
<CodeBlock example="url-dispatch" file="scope.rs" section="scope" />
2022-02-26 05:41:49 +01:00
A _scoped_ path can contain variable path segments as resources. Consistent with un-scoped paths.
2022-02-26 05:41:49 +01:00
You can get variable path segments from `HttpRequest::match_info()`. [`Path` extractor][pathextractor] also is able to extract scope level variable segments.
## Match information
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
All values representing matched path segments are available in [`HttpRequest::match_info`][matchinfo]. Specific values can be retrieved with [`Path::get()`][pathget].
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="minfo.rs" section="minfo" />
2018-05-22 23:15:08 +02:00
For this example for path '/a/1/2/', values v1 and v2 will resolve to "1" and "2".
### Path information extractor
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Actix provides functionality for type safe path information extraction. [_Path_][pathstruct] extracts information, destination type could be defined in several different forms. Simplest approach is to use `tuple` type. Each element in tuple must correspond to one element from path pattern. i.e. you can match path pattern `/{id}/{username}/` against `Path<(u32, String)>` type, but `Path<(String, String, String)>` type will always fail.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="path.rs" section="path" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
It also possible to extract path pattern information to a struct. In this case, this struct must implement _serde's_ `Deserialize` trait.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="path2.rs" section="path" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
[_Query_][query] provides similar functionality for request query parameters.
2018-05-22 23:15:08 +02:00
## Generating resource URLs
2018-05-22 23:15:08 +02:00
Use the [_HttpRequest.url_for()_][urlfor] method to generate URLs based on resource patterns. For example, if you've configured a resource with the name "foo" and the pattern "\{a}/\{b}/\{c}", you might do this:
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="urls.rs" section="url" />
2018-05-22 23:15:08 +02:00
2023-02-03 20:11:14 +01:00
This would return something like the string `http://example.com/test/1/2/3` (at least if the current protocol and hostname implied http://example.com). `url_for()` method returns [_Url object_][urlobj] so you can modify this url (add query parameters, anchor, etc). `url_for()` could be called only for _named_ resources otherwise error get returned.
2018-05-22 23:15:08 +02:00
## External resources
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Resources that are valid URLs, can be registered as external resources. They are useful for URL generation purposes only and are never considered for matching at request time.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="url_ext.rs" section="ext" />
2018-05-22 23:15:08 +02:00
## Path normalization and redirecting to slash-appended routes
2018-05-22 23:15:08 +02:00
By normalizing it means:
2022-02-26 05:41:49 +01:00
- To add a trailing slash to the path.
- To replace multiple slashes with one.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The handler returns as soon as it finds a path that resolves correctly. The order of normalization conditions, if all are enabled, is 1) merge, 2) both merge and append and 3) append. If the path resolves with at least one of those conditions, it will redirect to the new path.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="norm.rs" section="norm" />
2018-05-22 23:15:08 +02:00
2019-06-26 00:20:36 +02:00
In this example `//resource///` will be redirected to `/resource/`.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
In this example, the path normalization handler is registered for all methods, but you should not rely on this mechanism to redirect _POST_ requests. The redirect of the slash-appending _Not Found_ will turn a _POST_ request into a GET, losing any _POST_ data in the original request.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
It is possible to register path normalization only for _GET_ requests only:
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="norm2.rs" section="norm" />
2018-05-22 23:15:08 +02:00
### Using an Application Prefix to Compose Applications
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The `web::scope()` method allows to set a specific application scope. This scope represents a resource prefix that will be prepended to all resource patterns added by the resource configuration. This can be used to help mount a set of routes at a different location than the included callable's author intended while still maintaining the same resource names.
2018-05-22 23:15:08 +02:00
For example:
<CodeBlock example="url-dispatch" file="scope.rs" section="scope" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
In the above example, the _show_users_ route will have an effective route pattern of _/users/show_ instead of _/show_ because the application's scope will be prepended to the pattern. The route will then only match if the URL path is _/users/show_, and when the `HttpRequest.url_for()` function is called with the route name show_users, it will generate a URL with that same path.
2018-05-22 23:15:08 +02:00
## Custom route guard
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
You can think of a guard as a simple function that accepts a _request_ object reference and returns _true_ or _false_. Formally, a guard is any object that implements the [`Guard`][guardtrait] trait. Actix provides several predicates, you can check [functions section][guardfuncs] of API docs.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Here is a simple guard that check that a request contains a specific _header_:
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="guard.rs" section="guard" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
In this example, _index_ handler will be called only if request contains _CONTENT-TYPE_ header.
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
Guards can not access or modify the request object, but it is possible to store extra information in [request extensions][requestextensions].
2018-05-22 23:15:08 +02:00
### Modifying guard values
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
You can invert the meaning of any predicate value by wrapping it in a `Not` predicate. For example, if you want to return "METHOD NOT ALLOWED" response for all methods except "GET":
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="guard2.rs" section="guard2" />
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
The `Any` guard accepts a list of guards and matches if any of the supplied guards match. i.e:
2018-05-22 23:15:08 +02:00
```rust
2019-06-17 10:12:11 +02:00
guard::Any(guard::Get()).or(guard::Post())
2018-05-22 23:15:08 +02:00
```
2022-02-26 05:41:49 +01:00
The `All` guard accepts a list of guard and matches if all of the supplied guards match. i.e:
2018-05-22 23:15:08 +02:00
```rust
2019-06-17 10:12:11 +02:00
guard::All(guard::Get()).and(guard::Header("content-type", "plain/text"))
2018-05-22 23:15:08 +02:00
```
## Changing the default Not Found response
2018-05-22 23:15:08 +02:00
2022-02-26 05:41:49 +01:00
If the path pattern can not be found in the routing table or a resource can not find matching route, the default resource is used. The default response is _NOT FOUND_. It is possible to override the _NOT FOUND_ response with `App::default_service()`. This method accepts a _configuration function_ same as normal resource configuration with `App::service()` method.
2018-05-22 23:15:08 +02:00
<CodeBlock example="url-dispatch" file="dhandler.rs" section="default" />
[handlersection]: /docs/handlers/
2022-03-06 00:55:35 +01:00
[approute]: https://docs.rs/actix-web/4/actix_web/struct.App.html#method.route
[appservice]: https://docs.rs/actix-web/4/actix_web/struct.App.html?search=#method.service
[webresource]: https://docs.rs/actix-web/4/actix_web/struct.Resource.html
[resourcehandler]: https://docs.rs/actix-web/4/actix_web/struct.Resource.html#method.route
[route]: https://docs.rs/actix-web/4/actix_web/struct.Route.html
[routeguard]: https://docs.rs/actix-web/4/actix_web/struct.Route.html#method.guard
[routemethod]: https://docs.rs/actix-web/4/actix_web/struct.Route.html#method.method
[routeto]: https://docs.rs/actix-web/4/actix_web/struct.Route.html#method.to
[matchinfo]: https://docs.rs/actix-web/4/actix_web/struct.HttpRequest.html#method.match_info
[pathget]: https://docs.rs/actix-web/4/actix_web/dev/struct.Path.html#method.get
[pathstruct]: https://docs.rs/actix-web/4/actix_web/dev/struct.Path.html
[query]: https://docs.rs/actix-web/4/actix_web/web/struct.Query.html
[urlfor]: https://docs.rs/actix-web/4/actix_web/struct.HttpRequest.html#method.url_for
2019-06-26 00:20:36 +02:00
[urlobj]: https://docs.rs/url/1.7.2/url/struct.Url.html
2022-03-06 00:55:35 +01:00
[guardtrait]: https://docs.rs/actix-web/4/actix_web/guard/trait.Guard.html
[guardfuncs]: https://docs.rs/actix-web/4/actix_web/guard/index.html#functions
[requestextensions]: https://docs.rs/actix-web/4/actix_web/struct.HttpRequest.html#method.extensions
[implfromrequest]: https://docs.rs/actix-web/4/actix_web/trait.FromRequest.html
[implresponder]: https://docs.rs/actix-web/4/actix_web/trait.Responder.html
[pathextractor]: /docs/extractors