feat(task): replace built-in task adaptors with a sandboxed JS plugin system (#7076)

This commit is contained in:
Calcium-Ion
2026-08-29 18:51:57 +08:00
committed by GitHub
parent 7037ac15bd
commit eb48396d5f
336 changed files with 52333 additions and 6369 deletions
+37
View File
@@ -0,0 +1,37 @@
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)
}
}