86 lines
2.6 KiB
Go
86 lines
2.6 KiB
Go
package middleware
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/songquanpeng/one-api/common"
|
|
"github.com/songquanpeng/one-api/common/logger"
|
|
"github.com/songquanpeng/one-api/model"
|
|
"github.com/songquanpeng/one-api/relay/channeltype"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
type ModelRequest struct {
|
|
Model string `json:"model"`
|
|
}
|
|
|
|
func Distribute() func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
userId := c.GetInt("id")
|
|
userGroup, _ := model.CacheGetUserGroup(userId)
|
|
c.Set("group", userGroup)
|
|
var requestModel string
|
|
var channel *model.Channel
|
|
channelId, ok := c.Get("specific_channel_id")
|
|
if ok {
|
|
id, err := strconv.Atoi(channelId.(string))
|
|
if err != nil {
|
|
abortWithMessage(c, http.StatusBadRequest, "无效的渠道 Id")
|
|
return
|
|
}
|
|
channel, err = model.GetChannelById(id, true)
|
|
if err != nil {
|
|
abortWithMessage(c, http.StatusBadRequest, "无效的渠道 Id")
|
|
return
|
|
}
|
|
if channel.Status != common.ChannelStatusEnabled {
|
|
abortWithMessage(c, http.StatusForbidden, "该渠道已被禁用")
|
|
return
|
|
}
|
|
} else {
|
|
requestModel := c.GetString("request_model")
|
|
var err error
|
|
channel, err = model.CacheGetRandomSatisfiedChannel(userGroup, requestModel, false)
|
|
if err != nil {
|
|
message := fmt.Sprintf("当前分组 %s 下对于模型 %s 无可用渠道", userGroup, requestModel)
|
|
if channel != nil {
|
|
logger.SysError(fmt.Sprintf("渠道不存在:%d", channel.Id))
|
|
message = "数据库一致性已被破坏,请联系管理员"
|
|
}
|
|
abortWithMessage(c, http.StatusServiceUnavailable, message)
|
|
return
|
|
}
|
|
}
|
|
SetupContextForSelectedChannel(c, channel, requestModel)
|
|
c.Next()
|
|
}
|
|
}
|
|
|
|
func SetupContextForSelectedChannel(c *gin.Context, channel *model.Channel, modelName string) {
|
|
c.Set("channel", channel.Type)
|
|
c.Set("channel_id", channel.Id)
|
|
c.Set("channel_name", channel.Name)
|
|
c.Set("model_mapping", channel.GetModelMapping())
|
|
c.Set("original_model", modelName) // for retry
|
|
c.Request.Header.Set("Authorization", fmt.Sprintf("Bearer %s", channel.Key))
|
|
c.Set("base_url", channel.GetBaseURL())
|
|
// this is for backward compatibility
|
|
switch channel.Type {
|
|
case channeltype.Azure:
|
|
c.Set(common.ConfigKeyAPIVersion, channel.Other)
|
|
case channeltype.Xunfei:
|
|
c.Set(common.ConfigKeyAPIVersion, channel.Other)
|
|
case channeltype.Gemini:
|
|
c.Set(common.ConfigKeyAPIVersion, channel.Other)
|
|
case channeltype.AIProxyLibrary:
|
|
c.Set(common.ConfigKeyLibraryID, channel.Other)
|
|
case channeltype.Ali:
|
|
c.Set(common.ConfigKeyPlugin, channel.Other)
|
|
}
|
|
cfg, _ := channel.LoadConfig()
|
|
for k, v := range cfg {
|
|
c.Set(common.ConfigKeyPrefix+k, v)
|
|
}
|
|
}
|