| 123456789101112131415161718192021222324252627282930313233343536 |
- package middleware
- import (
- "fmt"
- "github.com/QuantumNous/new-api/common"
- "github.com/QuantumNous/new-api/logger"
- "github.com/gin-gonic/gin"
- )
- func abortWithOpenAiMessage(c *gin.Context, statusCode int, message string, code ...string) {
- codeStr := ""
- if len(code) > 0 {
- codeStr = code[0]
- }
- userId := c.GetInt("id")
- 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)
- }
|