跳转至

Route

Index-py 的路由基于 Radix Tree

基本用法

装饰器注册

与 bottle/flask 之类的框架一样,Index-py 支持使用装饰器注册路由。下面的例子里,name 是路由名称,这在反向查找路由时会起到作用。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from indexpy import Index

app = Index()


@app.router.http("/hello", name="hello")
async def hello():
    ...


@app.router.websocket("/hello", name="hello_ws")
async def hello_ws():
    ...

如果 name 没有被指定,则会默认使用被注册的可调用对象的 __name__ 属性。

如果指定路由的 nameNone,则无法通过 name 查找到该路由。

路由对象

事实上,装饰器路由申明方式是如下方法的快捷方式

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from indexpy import Index
from indexpy.routing import HttpRoute, SocketRoute

app = Index()


async def hello():
    return "hello world"


async def hello_ws():
    ...


app.router < HttpRoute("/hello", hello, name="hello")
app.router < SocketRoute("/hello", hello_ws, name="hello_ws")

Index-py 的路由对象有两种,分别对应 Http 和 WebSocket 方法。

1
2
3
4
5
# Http
HttpRoute(path: str, endpoint: Any, name: Optional[str] = "")

# WebSocket
SocketRoute(path: str, endpoint: Any, name: Optional[str] = "")
  • path 指定路由能匹配到的字符串

  • endpoint 指定路由对应的可调用对象

  • name 为路由指定名称,nameNone 时,此路由将没有名称;name"" 时,将自动读取 endpoint.__name__ 作为路由名称。

预处理

使用路由对象注册的可调用对象 endpoint,Index-py 会自动为其注册一个装饰器,用于处理部分参数的自动校验和注入。

装饰器

你可以对路由对象使用装饰器,这将会作用到 endpoint 上,但与直接对 endpoint 使用装饰器不同的是它作用于 Index-py 预处理后的 endpoint 上。

你可以在这样注册的装饰器里捕捉到可能抛出的参数校验异常。

在本文档其他地方,这样注册的装饰器被称为中间件。“中间件”这一名称主要是为了沿用其他框架中的说法。

1
HttpRoute(...) @ decorator

像注册普通的装饰器一样,你可以注册多个;执行顺序也一样,由远到近的执行。

1
HttpRoute(...) @ decorator1 @ decorator2 @ decorator3

以下是两个定义装饰器的模板,只需要填充进你自己的代码,就可以使用了。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def http_middleware(endpoint):
    async def wrapper():
        return await endpoint()
    return wrapper


def socket_middleware(endpoint):
    async def wrapper():
        await endpoint()
    return wrapper

WebSocket 处理器一定会返回 None,所以你可以省略 return 语句,就像上例一样。

列表式注册

Index-py 同样支持类似于 Django 的列表式写法:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
from indexpy import Index
from indexpy.routing import HttpRoute, SocketRoute


async def hello():
    return "hello world"


async def hello_ws():
    ...


app = Index(routes=[
    HttpRoute("/hello", hello, name="hello"),
    SocketRoute("/hello", hello_ws, name="hello_ws"),
])

路径参数

使用 {name:type} 可以标注路径参数,目前支持的类型有 strintdecimaldateuuidpath

如果路径参数的类型为 str,可以忽略掉 :str,直接使用 {name}

str 不能匹配到 /,如果需要匹配 / 请使用 path

path 是极为特殊的参数类型,它只能出现在路径的最后,并且能匹配到所有的字符。

1
2
3
4
5
6
7
8
from indexpy import Index, request

app = Index()


@app.router.http("/{username:str}")
async def what_is_your_name():
    return request.path_params["username"]

反向查找

某些情况下,需要由路由名称反向生成对应的 URL 值,可以使用 app.router.url_for

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
from indexpy import Index, request

app = Index()


@app.router.http("/hello", name="hello")
@app.router.http("/hello/{name}", name="hello-with-name")
async def hello():
    return f"hello {request.path_params.get('name')}"


assert app.router.url_for("hello") == "/hello"
assert app.router.url_for("hello-with-name", {"name": "Aber"}) == "/hello/Aber"

反向查找中,websockethttp 是互相独立的。通过 protocol 参数可以选择查找的路由,默认为 http

路由分组

当需要把某一些路由归为一组时,可使用 Routes 对象。

Routes 对象拥有 .http.websocket 方法允许你使用装饰器方式注册路由,使用方法与 app.router 相同。

Routes 也同样允许你使用类似于 Django 一样的路由申明方式,示例如下。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from indexpy.routing import Routes, HttpRoute


async def hello(request):
    return "hello world"


routes = Routes(
    HttpRoute("/hello", hello),
)

使用 << 运算符即可注册 Routes 中所有路由给 app.router,并且这一运算的返回结果是 app.router,这意味着你可以进行链式调用。

1
2
3
4
from .app1.urls import routes as app1_routes
from .app2.urls import routes as app2_routes

app.router << app1_routes << app2_routes

当然,你也可以直接在初始化 Index 对象时传入。

1
2
3
4
5
from indexpy import Index

from .app1.urls import routes as app1_routes

app = Index(routes=app1_routes)

路由组合

Routes 可以轻松和其他 Routes 组合起来。

1
2
3
from .app1.urls import routes as app1_routes

routes = Routes(...) << app1_routes

并且 << 的结果同样是 Routes 对象,这意味着你可以链式调用它,如下所示。

1
2
3
4
5
from .app1.urls import routes as app1_routes
from .app2.urls import routes as app2_routes


Routes() << app1_routes << app2_routes

名称空间

你可以为 Routes 设置 namespace 参数,这将在 Routes 对象中包含的每个路由名称(如果有的话)前加上 namespace:,以此来避免不同名称空间内的路由名称冲突。

1
routes = Routes(..., namespace="namespace")

在使用 app.router.url_for 时不要忘记加上路由所在的名称空间前缀。

注册中间件

通过 Routes 你可以为整组路由注册一个或多个中间件。以下为简单的样例:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
def one_http_middleware(endpoint):
    async def wrapper():
        return await endpoint()
    return wrapper


def one_socket_middleware(endpoint):
    async def wrapper():
        return await endpoint()
    return wrapper


routes = Routes(
    ...,
    http_middlewares=[one_http_middleware],
    socket_middlewares=[one_socket_middleware],
)

当然,你同样可以使用装饰器来注册中间件,与上例的结果没有什么不同。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
routes = Routes(...)


@routes.http_middleware
def one_http_middleware(endpoint):
    async def wrapper():
        return await endpoint()
    return wrapper


@routes.socket_middleware
def one_socket_middleware(endpoint):
    async def wrapper():
        return await endpoint()
    return wrapper

公共前缀

有时候某一组的路由我们希望放到同一个前缀下,如下两段代码的结果是相同的。

1
2
3
4
routes = "/auth" // Routes(
    HttpRoute("/login", ...),
    HttpRoute("/register", ...),
)
1
2
3
4
routes = Routes(
    HttpRoute("/auth/login", ...),
    HttpRoute("/auth/register", ...),
)

路由冲突

如果你没有遇到路由问题,请跳过本章节。

当多个路由匹配可以匹配到同一个 url path 时,称为路由冲突。

Index-py 做了大量的路由构造时检查,避免了很多没必要的路由错误与冲突,但仍然有一些路由冲突是一定会存在的。Index-py 的路由构造使用 Radix Tree,而遍历 Radix Tree 方式为深度优先遍历。但对于同一层级的节点来说,匹配顺序由插入顺序决定。

1
2
3
4
Routes(
    HttpRoute("/static/verify.txt", ...),
    HttpRoute("/static/{filepath:path}", ...),
)
  • 在上例中,两个路由同为 /static/ 节点下的子节点,故而在匹配 url 为 /static/verify.txt 的请求时,按照注册顺序,会匹配到第一条。
  • 在下例中,/static/verify/google.txt 能匹配到的是第三条路由而不是第二条——因为第三条路由与第一条路由同为 /static/verify/ 节点下的子节点,第二条路由属于 /static/ 节点下,/static/ 的子节点里优先匹配到 verify 节点与其子节点,后匹配 {filepath:path} 节点。故而匹配到第三条路由,而不是第二条。
1
2
3
4
5
Routes(
    HttpRoute("/static/verify/bing.txt", ...),
    HttpRoute("/static/{filepath:path}", ...),
    HttpRoute("/static/verify/google.txt", ...),
)

但如果注册顺序如下例,则 /static/verify/google.txt 匹配到的路由为第一条,

1
2
3
4
5
Routes(
    HttpRoute("/static/{filepath:path}", ...),
    HttpRoute("/static/verify/bing.txt", ...),
    HttpRoute("/static/verify/google.txt", ...),
)

路由拓展

通过构建路由对象的序列(Sequence[BaseRoute])可以编写自己喜爱的路由注册方式,在最终都会合并进 Radix Tree 里。

FileRoutes

这也是 Index.py 此项目的命名来源之一。

FileRoutes 是一个特殊的路由列表,它允许你将某一个 module 下所有的 .py 文件一一对应到其相对路径相同的路由。

中间件定义

__init__.py 中名为 HTTPMiddleware 的对象将被作为 HTTP 中间件、SocketMiddleware 将被作为 WebSocket 中间件,并作用于同目录下所有的路由。

处理器定义

除了 __init__.py 文件以外的 .py 文件中,名为 HTTP 的对象(任何可调用对象均可,函数、类等)将被视为 HTTP 处理器,名为 Socket 的对象(任何可调用对象均可,函数、类等)将被视为 WebSocket 处理器。

路由名称

在文件中定义名称为 name 的字符串将作为该文件对应的路由名称。

FileRoutes 同样拥有 namespace 参数,并且拥有同样的作用。

映射规则

module/filename.py 文件将对应路由 /filenamemodule/dirname/filename.py 将对应 /dirname/filename,以此类推。

文件映射有一个特殊规则:module/**/index.py 将负责处理 /**/ 路径的内容。

你可以将文件名或文件夹名修改为 module/{name}.py 以此接受路径参数。

可以为 FileRoutes 设置 suffix 参数,给每个路由加上后缀,譬如 suffix=".php" 这将使路径看起来很像 PHP 😀。

Version: 0.17
master
stable
0.21
0.20
0.19
0.18
0.17
0.16