2023-04-23 10:24:11 +00:00
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
2024-02-26 14:52:16 +00:00
|
|
|
"bytes"
|
2024-02-25 11:01:49 +00:00
|
|
|
"context"
|
2023-04-23 10:24:11 +00:00
|
|
|
"fmt"
|
2024-01-21 15:21:42 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
2024-02-26 14:52:16 +00:00
|
|
|
"github.com/songquanpeng/one-api/common"
|
2024-01-28 11:38:58 +00:00
|
|
|
"github.com/songquanpeng/one-api/common/config"
|
|
|
|
"github.com/songquanpeng/one-api/common/helper"
|
|
|
|
"github.com/songquanpeng/one-api/common/logger"
|
2024-02-25 11:01:49 +00:00
|
|
|
"github.com/songquanpeng/one-api/middleware"
|
|
|
|
dbmodel "github.com/songquanpeng/one-api/model"
|
2024-01-28 11:38:58 +00:00
|
|
|
"github.com/songquanpeng/one-api/relay/constant"
|
|
|
|
"github.com/songquanpeng/one-api/relay/controller"
|
2024-02-17 16:15:31 +00:00
|
|
|
"github.com/songquanpeng/one-api/relay/model"
|
2024-01-28 11:38:58 +00:00
|
|
|
"github.com/songquanpeng/one-api/relay/util"
|
2024-02-26 14:52:16 +00:00
|
|
|
"io"
|
2023-04-23 10:24:11 +00:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2023-05-21 06:26:59 +00:00
|
|
|
// https://platform.openai.com/docs/api-reference/chat
|
|
|
|
|
2024-02-25 11:01:49 +00:00
|
|
|
func relay(c *gin.Context, relayMode int) *model.ErrorWithStatusCode {
|
2024-02-17 16:15:31 +00:00
|
|
|
var err *model.ErrorWithStatusCode
|
2023-06-19 02:28:55 +00:00
|
|
|
switch relayMode {
|
2024-01-14 11:21:03 +00:00
|
|
|
case constant.RelayModeImagesGenerations:
|
|
|
|
err = controller.RelayImageHelper(c, relayMode)
|
|
|
|
case constant.RelayModeAudioSpeech:
|
2023-11-17 13:18:51 +00:00
|
|
|
fallthrough
|
2024-01-14 11:21:03 +00:00
|
|
|
case constant.RelayModeAudioTranslation:
|
2023-11-17 13:18:51 +00:00
|
|
|
fallthrough
|
2024-01-14 11:21:03 +00:00
|
|
|
case constant.RelayModeAudioTranscription:
|
|
|
|
err = controller.RelayAudioHelper(c, relayMode)
|
2023-06-19 02:28:55 +00:00
|
|
|
default:
|
2024-01-28 11:13:11 +00:00
|
|
|
err = controller.RelayTextHelper(c)
|
2023-06-08 06:54:02 +00:00
|
|
|
}
|
2024-02-25 11:01:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func Relay(c *gin.Context) {
|
|
|
|
ctx := c.Request.Context()
|
|
|
|
relayMode := constant.Path2RelayMode(c.Request.URL.Path)
|
2024-03-01 16:55:48 +00:00
|
|
|
if config.DebugEnabled {
|
|
|
|
requestBody, _ := common.GetRequestBody(c)
|
|
|
|
logger.Debugf(ctx, "request body: %s", string(requestBody))
|
|
|
|
}
|
2024-02-25 11:01:49 +00:00
|
|
|
bizErr := relay(c, relayMode)
|
|
|
|
if bizErr == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
channelId := c.GetInt("channel_id")
|
|
|
|
lastFailedChannelId := channelId
|
|
|
|
channelName := c.GetString("channel_name")
|
|
|
|
group := c.GetString("group")
|
|
|
|
originalModel := c.GetString("original_model")
|
|
|
|
go processChannelRelayError(ctx, channelId, channelName, bizErr)
|
|
|
|
requestId := c.GetString(logger.RequestIdKey)
|
|
|
|
retryTimes := config.RetryTimes
|
2024-02-26 14:52:16 +00:00
|
|
|
if !shouldRetry(c, bizErr.StatusCode) {
|
|
|
|
logger.Errorf(ctx, "relay error happen, status code is %d, won't retry in this case", bizErr.StatusCode)
|
2024-02-25 11:01:49 +00:00
|
|
|
retryTimes = 0
|
|
|
|
}
|
|
|
|
for i := retryTimes; i > 0; i-- {
|
|
|
|
channel, err := dbmodel.CacheGetRandomSatisfiedChannel(group, originalModel)
|
|
|
|
if err != nil {
|
|
|
|
logger.Errorf(ctx, "CacheGetRandomSatisfiedChannel failed: %w", err)
|
|
|
|
break
|
2023-07-15 11:06:51 +00:00
|
|
|
}
|
2024-02-25 11:01:49 +00:00
|
|
|
logger.Infof(ctx, "using channel #%d to retry (remain times %d)", channel.Id, i)
|
|
|
|
if channel.Id == lastFailedChannelId {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
middleware.SetupContextForSelectedChannel(c, channel, originalModel)
|
2024-02-26 14:52:16 +00:00
|
|
|
requestBody, err := common.GetRequestBody(c)
|
|
|
|
c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
|
2024-02-25 11:01:49 +00:00
|
|
|
bizErr = relay(c, relayMode)
|
|
|
|
if bizErr == nil {
|
|
|
|
return
|
2023-05-18 07:27:15 +00:00
|
|
|
}
|
2023-05-17 12:20:48 +00:00
|
|
|
channelId := c.GetInt("channel_id")
|
2024-02-25 11:01:49 +00:00
|
|
|
lastFailedChannelId = channelId
|
|
|
|
channelName := c.GetString("channel_name")
|
|
|
|
go processChannelRelayError(ctx, channelId, channelName, bizErr)
|
|
|
|
}
|
|
|
|
if bizErr != nil {
|
|
|
|
if bizErr.StatusCode == http.StatusTooManyRequests {
|
|
|
|
bizErr.Error.Message = "当前分组上游负载已饱和,请稍后再试"
|
2023-05-15 09:34:09 +00:00
|
|
|
}
|
2024-02-25 11:01:49 +00:00
|
|
|
bizErr.Error.Message = helper.MessageWithRequestId(bizErr.Error.Message, requestId)
|
|
|
|
c.JSON(bizErr.StatusCode, gin.H{
|
|
|
|
"error": bizErr.Error,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-26 14:52:16 +00:00
|
|
|
func shouldRetry(c *gin.Context, statusCode int) bool {
|
|
|
|
if _, ok := c.Get("specific_channel_id"); ok {
|
|
|
|
return false
|
|
|
|
}
|
2024-02-25 11:01:49 +00:00
|
|
|
if statusCode == http.StatusTooManyRequests {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if statusCode/100 == 5 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if statusCode == http.StatusBadRequest {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if statusCode/100 == 2 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func processChannelRelayError(ctx context.Context, channelId int, channelName string, err *model.ErrorWithStatusCode) {
|
|
|
|
logger.Errorf(ctx, "relay error (channel #%d): %s", channelId, err.Message)
|
|
|
|
// https://platform.openai.com/docs/guides/error-codes/api-errors
|
|
|
|
if util.ShouldDisableChannel(&err.Error, err.StatusCode) {
|
|
|
|
disableChannel(channelId, channelName, err.Message)
|
2023-04-28 09:11:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-28 08:58:55 +00:00
|
|
|
func RelayNotImplemented(c *gin.Context) {
|
2024-02-17 16:15:31 +00:00
|
|
|
err := model.Error{
|
2023-05-18 03:11:15 +00:00
|
|
|
Message: "API not implemented",
|
|
|
|
Type: "one_api_error",
|
|
|
|
Param: "",
|
|
|
|
Code: "api_not_implemented",
|
|
|
|
}
|
2023-06-23 14:59:44 +00:00
|
|
|
c.JSON(http.StatusNotImplemented, gin.H{
|
2023-05-18 03:11:15 +00:00
|
|
|
"error": err,
|
2023-04-28 08:58:55 +00:00
|
|
|
})
|
|
|
|
}
|
2023-06-17 01:46:07 +00:00
|
|
|
|
|
|
|
func RelayNotFound(c *gin.Context) {
|
2024-02-17 16:15:31 +00:00
|
|
|
err := model.Error{
|
2023-08-11 11:53:01 +00:00
|
|
|
Message: fmt.Sprintf("Invalid URL (%s %s)", c.Request.Method, c.Request.URL.Path),
|
|
|
|
Type: "invalid_request_error",
|
2023-06-17 01:46:07 +00:00
|
|
|
Param: "",
|
2023-08-11 11:53:01 +00:00
|
|
|
Code: "",
|
2023-06-17 01:46:07 +00:00
|
|
|
}
|
2023-06-23 14:59:44 +00:00
|
|
|
c.JSON(http.StatusNotFound, gin.H{
|
2023-06-17 01:46:07 +00:00
|
|
|
"error": err,
|
|
|
|
})
|
|
|
|
}
|