1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package controllers
- import (
- "github.com/gin-gonic/gin"
- "github.com/langgenius/dify-plugin-daemon/internal/server/constants"
- "github.com/langgenius/dify-plugin-daemon/internal/types/entities"
- "github.com/langgenius/dify-plugin-daemon/internal/types/entities/plugin_entities"
- "github.com/langgenius/dify-plugin-daemon/internal/types/validators"
- )
- func BindRequest[T any](r *gin.Context, success func(T)) {
- var request T
- err := r.ShouldBindUri(&request)
- if err != nil {
- resp := entities.NewErrorResponse(-400, err.Error())
- r.JSON(400, resp)
- return
- }
- // validate, we have customized some validators which are not supported by gin binding
- if err := validators.GlobalEntitiesValidator.Struct(request); err != nil {
- resp := entities.NewErrorResponse(-400, err.Error())
- r.JSON(400, resp)
- return
- }
- success(request)
- }
- func BindRequestWithPluginUniqueIdentifier[T any](r *gin.Context, success func(
- T, plugin_entities.PluginUniqueIdentifier,
- )) {
- BindRequest(r, func(req T) {
- plugin_unique_identifier := r.GetHeader(constants.X_PLUGIN_IDENTIFIER)
- if plugin_unique_identifier == "" {
- resp := entities.NewErrorResponse(-400, "Plugin unique identifier is required")
- r.JSON(400, resp)
- return
- }
- identifier, err := plugin_entities.NewPluginUniqueIdentifier(plugin_unique_identifier)
- if err != nil {
- resp := entities.NewErrorResponse(-400, err.Error())
- r.JSON(400, resp)
- return
- }
- success(req, identifier)
- })
- }
|