如何在 ktor 中创建可重用的拦截器?
How to create reusable interceptors in ktor?
在 ktor 中,自定义权限检查的方式似乎是通过拦截器,如下所示:
route("/portal") {
route("articles") { … }
route("admin") {
intercept(ApplicationCallPipeline.Features) { … } // verify admin privileges
route("article/{id}") { … } // manage article with {id}
route("profile/{id}") { … } // manage profile with {id}
}
}
提取拦截器逻辑以供代码库中其他地方的其他路由重用的最佳方法是什么?
抱歉迟到了。在我的代码中,我创建了路由,一些路由有一个拦截器来测量和记录执行时间,而其他路由则没有。因此,我按照文档中的示例 (https://ktor.io/advanced/pipeline/route.html#) 创建了一个函数来执行此操作,然后我有这个函数围绕着需要测量的一组路由。
请在下面找到我的代码
install(Routing) {
val konfig = HoconKonfigAdapter()
val contextPath = konfig.get("ktor.deployment.context-path")
route("$contextPath/api/v1") {
val registry = feature(Metrics).registry
healthEndPoints()
metricsEndPoints(registry)
routeWithMeasureTime {
catalogSiEndPoints()
reunionCatalogEditoEndPoints()
telesurveillanceCatalogEditoEndPoints()
catalogLegacyEndPoints()
}
}
}
所有在routeWithMeasureTime块内的路由都会被拦截和测量。另一个,没有。
希望对这么晚的活动有所帮助。
在 ktor 中,自定义权限检查的方式似乎是通过拦截器,如下所示:
route("/portal") {
route("articles") { … }
route("admin") {
intercept(ApplicationCallPipeline.Features) { … } // verify admin privileges
route("article/{id}") { … } // manage article with {id}
route("profile/{id}") { … } // manage profile with {id}
}
}
提取拦截器逻辑以供代码库中其他地方的其他路由重用的最佳方法是什么?
抱歉迟到了。在我的代码中,我创建了路由,一些路由有一个拦截器来测量和记录执行时间,而其他路由则没有。因此,我按照文档中的示例 (https://ktor.io/advanced/pipeline/route.html#) 创建了一个函数来执行此操作,然后我有这个函数围绕着需要测量的一组路由。
请在下面找到我的代码
install(Routing) {
val konfig = HoconKonfigAdapter()
val contextPath = konfig.get("ktor.deployment.context-path")
route("$contextPath/api/v1") {
val registry = feature(Metrics).registry
healthEndPoints()
metricsEndPoints(registry)
routeWithMeasureTime {
catalogSiEndPoints()
reunionCatalogEditoEndPoints()
telesurveillanceCatalogEditoEndPoints()
catalogLegacyEndPoints()
}
}
}
所有在routeWithMeasureTime块内的路由都会被拦截和测量。另一个,没有。
希望对这么晚的活动有所帮助。