| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- package controller
- import (
- "bytes"
- "errors"
- "fmt"
- "io"
- "log"
- "net/http"
- "one-api/common"
- "one-api/constant"
- constant2 "one-api/constant"
- "one-api/dto"
- "one-api/middleware"
- "one-api/model"
- "one-api/relay"
- relayconstant "one-api/relay/constant"
- "one-api/relay/helper"
- "one-api/service"
- "one-api/types"
- "strings"
- "github.com/gin-gonic/gin"
- "github.com/gorilla/websocket"
- )
- func relayHandler(c *gin.Context, relayMode int) *types.NewAPIError {
- var err *types.NewAPIError
- switch relayMode {
- case relayconstant.RelayModeImagesGenerations, relayconstant.RelayModeImagesEdits:
- err = relay.ImageHelper(c)
- case relayconstant.RelayModeAudioSpeech:
- fallthrough
- case relayconstant.RelayModeAudioTranslation:
- fallthrough
- case relayconstant.RelayModeAudioTranscription:
- err = relay.AudioHelper(c)
- case relayconstant.RelayModeRerank:
- err = relay.RerankHelper(c, relayMode)
- case relayconstant.RelayModeEmbeddings:
- err = relay.EmbeddingHelper(c)
- case relayconstant.RelayModeResponses:
- err = relay.ResponsesHelper(c)
- case relayconstant.RelayModeGemini:
- err = relay.GeminiHelper(c)
- default:
- err = relay.TextHelper(c)
- }
- if constant2.ErrorLogEnabled && err != nil {
- // 保存错误日志到mysql中
- userId := c.GetInt("id")
- tokenName := c.GetString("token_name")
- modelName := c.GetString("original_model")
- tokenId := c.GetInt("token_id")
- userGroup := c.GetString("group")
- channelId := c.GetInt("channel_id")
- other := make(map[string]interface{})
- other["error_type"] = err.ErrorType
- other["error_code"] = err.GetErrorCode()
- other["status_code"] = err.StatusCode
- other["channel_id"] = channelId
- other["channel_name"] = c.GetString("channel_name")
- other["channel_type"] = c.GetInt("channel_type")
- model.RecordErrorLog(c, userId, channelId, modelName, tokenName, err.Error(), tokenId, 0, false, userGroup, other)
- }
- return err
- }
- func Relay(c *gin.Context) {
- log.Println("===========Relay==========", c)
- relayMode := relayconstant.Path2RelayMode(c.Request.URL.Path)
- requestId := c.GetString(common.RequestIdKey)
- group := c.GetString("group")
- originalModel := c.GetString("original_model")
- var newAPIError *types.NewAPIError
- for i := 0; i <= common.RetryTimes; i++ {
- channel, err := getChannel(c, group, originalModel, i)
- if err != nil {
- common.LogError(c, err.Error())
- newAPIError = err
- break
- }
- newAPIError = relayRequest(c, relayMode, channel)
- if newAPIError == nil {
- return // 成功处理请求,直接返回
- }
- go processChannelError(c, *types.NewChannelError(channel.Id, channel.Type, channel.Name, channel.ChannelInfo.IsMultiKey, common.GetContextKeyString(c, constant.ContextKeyChannelKey), channel.GetAutoBan()), newAPIError)
- if !shouldRetry(c, newAPIError, common.RetryTimes-i) {
- break
- }
- }
- useChannel := c.GetStringSlice("use_channel")
- if len(useChannel) > 1 {
- retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
- common.LogInfo(c, retryLogStr)
- }
- if newAPIError != nil {
- //if newAPIError.StatusCode == http.StatusTooManyRequests {
- // common.LogError(c, fmt.Sprintf("origin 429 error: %s", newAPIError.Error()))
- // newAPIError.SetMessage("当前分组上游负载已饱和,请稍后再试")
- //}
- newAPIError.SetMessage(common.MessageWithRequestId(newAPIError.Error(), requestId))
- c.JSON(newAPIError.StatusCode, gin.H{
- "error": newAPIError.ToOpenAIError(),
- })
- }
- }
- var upgrader = websocket.Upgrader{
- Subprotocols: []string{"realtime"}, // WS 握手支持的协议,如果有使用 Sec-WebSocket-Protocol,则必须在此声明对应的 Protocol TODO add other protocol
- CheckOrigin: func(r *http.Request) bool {
- return true // 允许跨域
- },
- }
- func WssRelay(c *gin.Context) {
- // 将 HTTP 连接升级为 WebSocket 连接
- ws, err := upgrader.Upgrade(c.Writer, c.Request, nil)
- defer ws.Close()
- if err != nil {
- helper.WssError(c, ws, types.NewError(err, types.ErrorCodeGetChannelFailed).ToOpenAIError())
- return
- }
- relayMode := relayconstant.Path2RelayMode(c.Request.URL.Path)
- requestId := c.GetString(common.RequestIdKey)
- group := c.GetString("group")
- //wss://api.openai.com/v1/realtime?model=gpt-4o-realtime-preview-2024-10-01
- originalModel := c.GetString("original_model")
- var newAPIError *types.NewAPIError
- for i := 0; i <= common.RetryTimes; i++ {
- channel, err := getChannel(c, group, originalModel, i)
- if err != nil {
- common.LogError(c, err.Error())
- newAPIError = err
- break
- }
- newAPIError = wssRequest(c, ws, relayMode, channel)
- if newAPIError == nil {
- return // 成功处理请求,直接返回
- }
- go processChannelError(c, *types.NewChannelError(channel.Id, channel.Type, channel.Name, channel.ChannelInfo.IsMultiKey, common.GetContextKeyString(c, constant.ContextKeyChannelKey), channel.GetAutoBan()), newAPIError)
- if !shouldRetry(c, newAPIError, common.RetryTimes-i) {
- break
- }
- }
- useChannel := c.GetStringSlice("use_channel")
- if len(useChannel) > 1 {
- retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
- common.LogInfo(c, retryLogStr)
- }
- if newAPIError != nil {
- //if newAPIError.StatusCode == http.StatusTooManyRequests {
- // newAPIError.SetMessage("当前分组上游负载已饱和,请稍后再试")
- //}
- newAPIError.SetMessage(common.MessageWithRequestId(newAPIError.Error(), requestId))
- helper.WssError(c, ws, newAPIError.ToOpenAIError())
- }
- }
- func RelayClaude(c *gin.Context) {
- //relayMode := constant.Path2RelayMode(c.Request.URL.Path)
- log.Println("===========RelayClaude==========", c)
- requestId := c.GetString(common.RequestIdKey)
- group := c.GetString("group")
- originalModel := c.GetString("original_model")
- var newAPIError *types.NewAPIError
- for i := 0; i <= common.RetryTimes; i++ {
- channel, err := getChannel(c, group, originalModel, i)
- if err != nil {
- common.LogError(c, err.Error())
- newAPIError = err
- break
- }
- newAPIError = claudeRequest(c, channel)
- if newAPIError == nil {
- return // 成功处理请求,直接返回
- }
- go processChannelError(c, *types.NewChannelError(channel.Id, channel.Type, channel.Name, channel.ChannelInfo.IsMultiKey, common.GetContextKeyString(c, constant.ContextKeyChannelKey), channel.GetAutoBan()), newAPIError)
- if !shouldRetry(c, newAPIError, common.RetryTimes-i) {
- break
- }
- }
- useChannel := c.GetStringSlice("use_channel")
- if len(useChannel) > 1 {
- retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
- common.LogInfo(c, retryLogStr)
- }
- if newAPIError != nil {
- newAPIError.SetMessage(common.MessageWithRequestId(newAPIError.Error(), requestId))
- c.JSON(newAPIError.StatusCode, gin.H{
- "type": "error",
- "error": newAPIError.ToClaudeError(),
- })
- }
- }
- func relayRequest(c *gin.Context, relayMode int, channel *model.Channel) *types.NewAPIError {
- addUsedChannel(c, channel.Id)
- requestBody, _ := common.GetRequestBody(c)
- c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
- return relayHandler(c, relayMode)
- }
- func wssRequest(c *gin.Context, ws *websocket.Conn, relayMode int, channel *model.Channel) *types.NewAPIError {
- addUsedChannel(c, channel.Id)
- requestBody, _ := common.GetRequestBody(c)
- c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
- return relay.WssHelper(c, ws)
- }
- func claudeRequest(c *gin.Context, channel *model.Channel) *types.NewAPIError {
- addUsedChannel(c, channel.Id)
- requestBody, _ := common.GetRequestBody(c)
- c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
- return relay.ClaudeHelper(c)
- }
- func addUsedChannel(c *gin.Context, channelId int) {
- useChannel := c.GetStringSlice("use_channel")
- useChannel = append(useChannel, fmt.Sprintf("%d", channelId))
- c.Set("use_channel", useChannel)
- }
- func getChannel(c *gin.Context, group, originalModel string, retryCount int) (*model.Channel, *types.NewAPIError) {
- if retryCount == 0 {
- autoBan := c.GetBool("auto_ban")
- autoBanInt := 1
- if !autoBan {
- autoBanInt = 0
- }
- return &model.Channel{
- Id: c.GetInt("channel_id"),
- Type: c.GetInt("channel_type"),
- Name: c.GetString("channel_name"),
- AutoBan: &autoBanInt,
- }, nil
- }
- channel, selectGroup, err := model.CacheGetRandomSatisfiedChannel(c, group, originalModel, retryCount)
- if err != nil {
- if group == "auto" {
- return nil, types.NewError(errors.New(fmt.Sprintf("获取自动分组下模型 %s 的可用渠道失败: %s", originalModel, err.Error())), types.ErrorCodeGetChannelFailed)
- }
- return nil, types.NewError(errors.New(fmt.Sprintf("获取分组 %s 下模型 %s 的可用渠道失败: %s", selectGroup, originalModel, err.Error())), types.ErrorCodeGetChannelFailed)
- }
- newAPIError := middleware.SetupContextForSelectedChannel(c, channel, originalModel)
- if newAPIError != nil {
- return nil, newAPIError
- }
- return channel, nil
- }
- func shouldRetry(c *gin.Context, openaiErr *types.NewAPIError, retryTimes int) bool {
- if openaiErr == nil {
- return false
- }
- if types.IsChannelError(openaiErr) {
- return true
- }
- if types.IsLocalError(openaiErr) {
- return false
- }
- if retryTimes <= 0 {
- return false
- }
- if _, ok := c.Get("specific_channel_id"); ok {
- return false
- }
- if openaiErr.StatusCode == http.StatusTooManyRequests {
- return true
- }
- if openaiErr.StatusCode == 307 {
- return true
- }
- if openaiErr.StatusCode/100 == 5 {
- // 超时不重试
- if openaiErr.StatusCode == 504 || openaiErr.StatusCode == 524 {
- return false
- }
- return true
- }
- if openaiErr.StatusCode == http.StatusBadRequest {
- channelType := c.GetInt("channel_type")
- if channelType == constant.ChannelTypeAnthropic {
- return true
- }
- return false
- }
- if openaiErr.StatusCode == 408 {
- // azure处理超时不重试
- return false
- }
- if openaiErr.StatusCode/100 == 2 {
- return false
- }
- return true
- }
- func processChannelError(c *gin.Context, channelError types.ChannelError, err *types.NewAPIError) {
- // 不要使用context获取渠道信息,异步处理时可能会出现渠道信息不一致的情况
- // do not use context to get channel info, there may be inconsistent channel info when processing asynchronously
- common.LogError(c, fmt.Sprintf("relay error (channel #%d, status code: %d): %s", channelError.ChannelId, err.StatusCode, err.Error()))
- if service.ShouldDisableChannel(channelError.ChannelId, err) && channelError.AutoBan {
- service.DisableChannel(channelError, err.Error())
- }
- }
- func RelayMidjourney(c *gin.Context) {
- relayMode := c.GetInt("relay_mode")
- var err *dto.MidjourneyResponse
- switch relayMode {
- case relayconstant.RelayModeMidjourneyNotify:
- err = relay.RelayMidjourneyNotify(c)
- case relayconstant.RelayModeMidjourneyTaskFetch, relayconstant.RelayModeMidjourneyTaskFetchByCondition:
- err = relay.RelayMidjourneyTask(c, relayMode)
- case relayconstant.RelayModeMidjourneyTaskImageSeed:
- err = relay.RelayMidjourneyTaskImageSeed(c)
- case relayconstant.RelayModeSwapFace:
- err = relay.RelaySwapFace(c)
- default:
- err = relay.RelayMidjourneySubmit(c, relayMode)
- }
- //err = relayMidjourneySubmit(c, relayMode)
- log.Println(err)
- if err != nil {
- statusCode := http.StatusBadRequest
- if err.Code == 30 {
- err.Result = "当前分组负载已饱和,请稍后再试,或升级账户以提升服务质量。"
- statusCode = http.StatusTooManyRequests
- }
- c.JSON(statusCode, gin.H{
- "description": fmt.Sprintf("%s %s", err.Description, err.Result),
- "type": "upstream_error",
- "code": err.Code,
- })
- channelId := c.GetInt("channel_id")
- common.LogError(c, fmt.Sprintf("relay error (channel #%d, status code %d): %s", channelId, statusCode, fmt.Sprintf("%s %s", err.Description, err.Result)))
- }
- }
- func RelayNotImplemented(c *gin.Context) {
- err := dto.OpenAIError{
- Message: "API not implemented",
- Type: "new_api_error",
- Param: "",
- Code: "api_not_implemented",
- }
- c.JSON(http.StatusNotImplemented, gin.H{
- "error": err,
- })
- }
- func RelayNotFound(c *gin.Context) {
- err := dto.OpenAIError{
- Message: fmt.Sprintf("Invalid URL (%s %s)", c.Request.Method, c.Request.URL.Path),
- Type: "invalid_request_error",
- Param: "",
- Code: "",
- }
- c.JSON(http.StatusNotFound, gin.H{
- "error": err,
- })
- }
- func RelayTask(c *gin.Context) {
- retryTimes := common.RetryTimes
- channelId := c.GetInt("channel_id")
- relayMode := c.GetInt("relay_mode")
- group := c.GetString("group")
- originalModel := c.GetString("original_model")
- c.Set("use_channel", []string{fmt.Sprintf("%d", channelId)})
- taskErr := taskRelayHandler(c, relayMode)
- if taskErr == nil {
- retryTimes = 0
- }
- for i := 0; shouldRetryTaskRelay(c, channelId, taskErr, retryTimes) && i < retryTimes; i++ {
- channel, newAPIError := getChannel(c, group, originalModel, i)
- if newAPIError != nil {
- common.LogError(c, fmt.Sprintf("CacheGetRandomSatisfiedChannel failed: %s", newAPIError.Error()))
- taskErr = service.TaskErrorWrapperLocal(newAPIError.Err, "get_channel_failed", http.StatusInternalServerError)
- break
- }
- channelId = channel.Id
- useChannel := c.GetStringSlice("use_channel")
- useChannel = append(useChannel, fmt.Sprintf("%d", channelId))
- c.Set("use_channel", useChannel)
- common.LogInfo(c, fmt.Sprintf("using channel #%d to retry (remain times %d)", channel.Id, i))
- //middleware.SetupContextForSelectedChannel(c, channel, originalModel)
- requestBody, _ := common.GetRequestBody(c)
- c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
- taskErr = taskRelayHandler(c, relayMode)
- }
- useChannel := c.GetStringSlice("use_channel")
- if len(useChannel) > 1 {
- retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
- common.LogInfo(c, retryLogStr)
- }
- if taskErr != nil {
- if taskErr.StatusCode == http.StatusTooManyRequests {
- taskErr.Message = "当前分组上游负载已饱和,请稍后再试"
- }
- c.JSON(taskErr.StatusCode, taskErr)
- }
- }
- func taskRelayHandler(c *gin.Context, relayMode int) *dto.TaskError {
- var err *dto.TaskError
- switch relayMode {
- case relayconstant.RelayModeSunoFetch, relayconstant.RelayModeSunoFetchByID, relayconstant.RelayModeKlingFetchByID:
- err = relay.RelayTaskFetch(c, relayMode)
- default:
- err = relay.RelayTaskSubmit(c, relayMode)
- }
- return err
- }
- func shouldRetryTaskRelay(c *gin.Context, channelId int, taskErr *dto.TaskError, retryTimes int) bool {
- if taskErr == nil {
- return false
- }
- if retryTimes <= 0 {
- return false
- }
- if _, ok := c.Get("specific_channel_id"); ok {
- return false
- }
- if taskErr.StatusCode == http.StatusTooManyRequests {
- return true
- }
- if taskErr.StatusCode == 307 {
- return true
- }
- if taskErr.StatusCode/100 == 5 {
- // 超时不重试
- if taskErr.StatusCode == 504 || taskErr.StatusCode == 524 {
- return false
- }
- return true
- }
- if taskErr.StatusCode == http.StatusBadRequest {
- return false
- }
- if taskErr.StatusCode == 408 {
- // azure处理超时不重试
- return false
- }
- if taskErr.LocalError {
- return false
- }
- if taskErr.StatusCode/100 == 2 {
- return false
- }
- return true
- }
|