mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-01 19:41:57 +00:00
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/QuantumNous/new-api/common"
|
|
"github.com/QuantumNous/new-api/dto"
|
|
"github.com/QuantumNous/new-api/logger"
|
|
pluginruntime "github.com/QuantumNous/new-api/pkg/jsplugin"
|
|
"github.com/QuantumNous/new-api/relaykit/types"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func abortWithOpenAiMessage(c *gin.Context, statusCode int, message string, code ...types.ErrorCode) {
|
|
codeStr := ""
|
|
if len(code) > 0 {
|
|
codeStr = string(code[0])
|
|
}
|
|
userId := c.GetInt("id")
|
|
_, preparedPluginRoute := c.Get(pluginruntime.ContextKeyRouteRequest)
|
|
if !preparedPluginRoute || !RespondTaskPluginError(c, &dto.TaskError{
|
|
Code: codeStr,
|
|
Message: message,
|
|
StatusCode: statusCode,
|
|
}) {
|
|
c.JSON(statusCode, gin.H{
|
|
"error": gin.H{
|
|
"message": common.MessageWithRequestId(message, c.GetString(common.RequestIdKey)),
|
|
"type": "new_api_error",
|
|
"code": codeStr,
|
|
},
|
|
})
|
|
}
|
|
c.Abort()
|
|
logger.LogError(c.Request.Context(), fmt.Sprintf("user %d | %s", userId, message))
|
|
}
|
|
|
|
func abortWithMidjourneyMessage(c *gin.Context, statusCode int, code int, description string) {
|
|
c.JSON(statusCode, gin.H{
|
|
"description": description,
|
|
"type": "new_api_error",
|
|
"code": code,
|
|
})
|
|
c.Abort()
|
|
logger.LogError(c.Request.Context(), description)
|
|
}
|