mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-08 10:46:58 +00:00
38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
package router
|
|
|
|
import (
|
|
"github.com/QuantumNous/new-api/controller"
|
|
"github.com/QuantumNous/new-api/middleware"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// SetTaskRouter registers the generic task-plugin API surface.
|
|
//
|
|
// Gin requires every route sharing a path position to use the same wildcard
|
|
// name, so the first segment is uniformly ":key"; it carries the plugin key
|
|
// on submit routes and the task id on read routes.
|
|
func SetTaskRouter(router *gin.Engine) {
|
|
taskSubmitRouter := router.Group("/v1/tasks")
|
|
taskSubmitRouter.Use(middleware.RouteTag("relay"), middleware.TokenAuth())
|
|
{
|
|
taskSubmitRouter.POST("/:key", middleware.PrepareTaskPluginSubmit(), middleware.Distribute(), controller.RelayTask)
|
|
}
|
|
|
|
taskReadRouter := router.Group("/v1/tasks")
|
|
taskReadRouter.Use(middleware.RouteTag("relay"), middleware.TokenAuth())
|
|
{
|
|
taskReadRouter.GET("/:key", controller.GetTask)
|
|
taskReadRouter.GET("/:key/artifacts", controller.GetTaskArtifacts)
|
|
}
|
|
|
|
taskContentRouter := router.Group("/v1/tasks")
|
|
taskContentRouter.Use(
|
|
middleware.RouteTag("relay"),
|
|
middleware.TokenOrTaskArtifactAccessAuth("key", "artifact_key"),
|
|
)
|
|
{
|
|
taskContentRouter.GET("/:key/artifacts/:artifact_key/content", controller.TaskArtifactContent)
|
|
taskContentRouter.HEAD("/:key/artifacts/:artifact_key/content", controller.TaskArtifactContent)
|
|
}
|
|
}
|