one-api/middleware/distributor.go
2023-06-02 20:27:00 +08:00

118 lines
2.6 KiB
Go

package middleware
import (
"bytes"
"encoding/json"
"fmt"
"github.com/gin-gonic/gin"
"io"
"net/http"
"one-api/common"
"one-api/controller"
"one-api/model"
"strconv"
)
func Distribute() func(c *gin.Context) {
return func(c *gin.Context) {
var channel *model.Channel
channelId, ok := c.Get("channelId")
if ok {
id, err := strconv.Atoi(channelId.(string))
if err != nil {
c.JSON(http.StatusOK, gin.H{
"error": gin.H{
"message": "无效的渠道 ID",
"type": "one_api_error",
},
})
c.Abort()
return
}
channel, err = model.GetChannelById(id, true)
if err != nil {
c.JSON(200, gin.H{
"error": gin.H{
"message": "无效的渠道 ID",
"type": "one_api_error",
},
})
c.Abort()
return
}
if channel.Status != common.ChannelStatusEnabled {
c.JSON(200, gin.H{
"error": gin.H{
"message": "该渠道已被禁用",
"type": "one_api_error",
},
})
c.Abort()
return
}
} else {
// Select a channel for the user
var err error
var textRequest controller.GeneralOpenAIRequest
requestBody, err := io.ReadAll(c.Request.Body)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": gin.H{
"message": "read_request_body_failed",
"type": "one_api_error",
},
})
c.Abort()
return
}
err = c.Request.Body.Close()
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": gin.H{
"message": "close_request_body_failed",
"type": "one_api_error",
},
})
c.Abort()
return
}
err = json.Unmarshal(requestBody, &textRequest)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": gin.H{
"message": "unmarshal_request_body_failed",
"type": "one_api_error",
},
})
c.Abort()
return
}
// Reset request body
c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
model_ := textRequest.Model
channel, err = model.GetRandomChannel(model_)
if err != nil {
c.JSON(200, gin.H{
"error": gin.H{
"message": "无可用渠道",
"type": "one_api_error",
},
})
c.Abort()
return
}
}
c.Set("channel", channel.Type)
c.Set("channel_id", channel.Id)
c.Set("channel_name", channel.Name)
c.Request.Header.Set("Authorization", fmt.Sprintf("Bearer %s", channel.Key))
if channel.Type == common.ChannelTypeCustom || channel.Type == common.ChannelTypeAzure {
c.Set("base_url", channel.BaseURL)
if channel.Type == common.ChannelTypeAzure {
c.Set("api_version", channel.Other)
}
}
c.Next()
}
}