No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

835 líneas
28 KiB

  1. package controller
  2. import (
  3. "errors"
  4. "fmt"
  5. "io"
  6. "log"
  7. "net/http"
  8. "strconv"
  9. "strings"
  10. "time"
  11. "github.com/QuantumNous/new-api/common"
  12. "github.com/QuantumNous/new-api/common/metrics"
  13. "github.com/QuantumNous/new-api/constant"
  14. "github.com/QuantumNous/new-api/dto"
  15. "github.com/QuantumNous/new-api/logger"
  16. "github.com/QuantumNous/new-api/middleware"
  17. "github.com/QuantumNous/new-api/model"
  18. "github.com/QuantumNous/new-api/relay"
  19. relaycommon "github.com/QuantumNous/new-api/relay/common"
  20. relayconstant "github.com/QuantumNous/new-api/relay/constant"
  21. "github.com/QuantumNous/new-api/relay/helper"
  22. "github.com/QuantumNous/new-api/service"
  23. "github.com/QuantumNous/new-api/setting"
  24. "github.com/QuantumNous/new-api/setting/operation_setting"
  25. "github.com/QuantumNous/new-api/setting/ratio_setting"
  26. "github.com/QuantumNous/new-api/types"
  27. "github.com/bytedance/gopkg/util/gopool"
  28. "github.com/gin-gonic/gin"
  29. "github.com/gorilla/websocket"
  30. )
  31. func relayHandler(c *gin.Context, info *relaycommon.RelayInfo) *types.NewAPIError {
  32. var err *types.NewAPIError
  33. switch info.RelayMode {
  34. case relayconstant.RelayModeImagesGenerations, relayconstant.RelayModeImagesEdits:
  35. err = relay.ImageHelper(c, info)
  36. case relayconstant.RelayModeAudioSpeech:
  37. fallthrough
  38. case relayconstant.RelayModeAudioTranslation:
  39. fallthrough
  40. case relayconstant.RelayModeAudioTranscription:
  41. err = relay.AudioHelper(c, info)
  42. case relayconstant.RelayModeRerank:
  43. err = relay.RerankHelper(c, info)
  44. case relayconstant.RelayModeEmbeddings:
  45. err = relay.EmbeddingHelper(c, info)
  46. case relayconstant.RelayModeResponses, relayconstant.RelayModeResponsesCompact:
  47. err = relay.ResponsesHelper(c, info)
  48. default:
  49. err = relay.TextHelper(c, info)
  50. }
  51. return err
  52. }
  53. func geminiRelayHandler(c *gin.Context, info *relaycommon.RelayInfo) *types.NewAPIError {
  54. var err *types.NewAPIError
  55. if strings.Contains(c.Request.URL.Path, "embed") {
  56. err = relay.GeminiEmbeddingHandler(c, info)
  57. } else {
  58. err = relay.GeminiHelper(c, info)
  59. }
  60. return err
  61. }
  62. func Relay(c *gin.Context, relayFormat types.RelayFormat) {
  63. requestId := c.GetString(common.RequestIdKey)
  64. //group := common.GetContextKeyString(c, constant.ContextKeyUsingGroup)
  65. //originalModel := common.GetContextKeyString(c, constant.ContextKeyOriginalModel)
  66. var (
  67. newAPIError *types.NewAPIError
  68. ws *websocket.Conn
  69. )
  70. if relayFormat == types.RelayFormatOpenAIRealtime {
  71. var err error
  72. ws, err = upgrader.Upgrade(c.Writer, c.Request, nil)
  73. if err != nil {
  74. helper.WssError(c, ws, types.NewError(err, types.ErrorCodeGetChannelFailed, types.ErrOptionWithSkipRetry()).ToOpenAIError())
  75. return
  76. }
  77. defer ws.Close()
  78. }
  79. defer func() {
  80. if newAPIError != nil {
  81. logger.LogError(c, fmt.Sprintf("relay error: %s", newAPIError.Error()))
  82. // Prometheus: 错误计数
  83. if metrics.IsEnabled() {
  84. channelId := strconv.Itoa(c.GetInt("channel_id"))
  85. modelName := c.GetString("original_model")
  86. errorType, errorCode := metrics.ClassifyError(newAPIError.StatusCode, newAPIError.Error())
  87. metrics.GetMetrics().RequestErrorsTotal.WithLabelValues(channelId, modelName, errorType, errorCode).Inc()
  88. }
  89. newAPIError.SetMessage(common.MessageWithRequestId(newAPIError.Error(), requestId))
  90. switch relayFormat {
  91. case types.RelayFormatOpenAIRealtime:
  92. helper.WssError(c, ws, newAPIError.ToOpenAIError())
  93. case types.RelayFormatClaude:
  94. c.JSON(newAPIError.StatusCode, gin.H{
  95. "type": "error",
  96. "error": newAPIError.ToClaudeError(),
  97. })
  98. default:
  99. c.JSON(newAPIError.StatusCode, gin.H{
  100. "error": newAPIError.ToOpenAIError(),
  101. })
  102. }
  103. }
  104. }()
  105. request, err := helper.GetAndValidateRequest(c, relayFormat)
  106. if err != nil {
  107. // Map "request body too large" to 413 so clients can handle it correctly
  108. if common.IsRequestBodyTooLargeError(err) || errors.Is(err, common.ErrRequestBodyTooLarge) {
  109. newAPIError = types.NewErrorWithStatusCode(err, types.ErrorCodeReadRequestBodyFailed, http.StatusRequestEntityTooLarge, types.ErrOptionWithSkipRetry())
  110. } else {
  111. newAPIError = types.NewError(err, types.ErrorCodeInvalidRequest)
  112. }
  113. return
  114. }
  115. relayInfo, err := relaycommon.GenRelayInfo(c, relayFormat, request, ws)
  116. if err != nil {
  117. newAPIError = types.NewError(err, types.ErrorCodeGenRelayInfoFailed)
  118. return
  119. }
  120. needSensitiveCheck := setting.ShouldCheckPromptSensitive()
  121. needCountToken := constant.CountToken
  122. // Avoid building huge CombineText (strings.Join) when token counting and sensitive check are both disabled.
  123. var meta *types.TokenCountMeta
  124. if needSensitiveCheck || needCountToken {
  125. meta = request.GetTokenCountMeta()
  126. } else {
  127. meta = fastTokenCountMetaForPricing(request)
  128. }
  129. if needSensitiveCheck && meta != nil {
  130. contains, words := service.CheckSensitiveText(meta.CombineText)
  131. if contains {
  132. logger.LogWarn(c, fmt.Sprintf("user sensitive words detected: %s", strings.Join(words, ", ")))
  133. newAPIError = types.NewError(err, types.ErrorCodeSensitiveWordsDetected)
  134. return
  135. }
  136. }
  137. tokens, err := service.EstimateRequestToken(c, meta, relayInfo)
  138. if err != nil {
  139. newAPIError = types.NewError(err, types.ErrorCodeCountTokenFailed)
  140. return
  141. }
  142. relayInfo.SetEstimatePromptTokens(tokens)
  143. priceData, err := helper.ModelPriceHelper(c, relayInfo, tokens, meta)
  144. if err != nil {
  145. newAPIError = types.NewError(err, types.ErrorCodeModelPriceError)
  146. return
  147. }
  148. // common.SetContextKey(c, constant.ContextKeyTokenCountMeta, meta)
  149. if priceData.FreeModel {
  150. logger.LogInfo(c, fmt.Sprintf("模型 %s 免费,跳过预扣费", relayInfo.OriginModelName))
  151. } else {
  152. common.SysLog(fmt.Sprintf("[RegionSync] relay PreConsumeBilling: userId=%d, QuotaToPreConsume=%d, FreeModel=%v, UsePrice=%v, ModelRatio=%.4f, GroupRatio=%.4f, ModelPrice=%.4f, model=%s",
  153. relayInfo.UserId, priceData.QuotaToPreConsume, priceData.FreeModel, priceData.UsePrice, priceData.ModelRatio, priceData.GroupRatioInfo.GroupRatio, priceData.ModelPrice, relayInfo.OriginModelName))
  154. newAPIError = service.PreConsumeBilling(c, priceData.QuotaToPreConsume, relayInfo)
  155. if newAPIError != nil {
  156. return
  157. }
  158. }
  159. defer func() {
  160. // Only return quota if downstream failed and quota was actually pre-consumed
  161. if newAPIError != nil {
  162. newAPIError = service.NormalizeViolationFeeError(newAPIError)
  163. if relayInfo.Billing != nil {
  164. relayInfo.Billing.Refund(c)
  165. }
  166. service.ChargeViolationFeeIfNeeded(c, relayInfo, newAPIError)
  167. }
  168. }()
  169. retryParam := &service.RetryParam{
  170. Ctx: c,
  171. TokenGroup: relayInfo.TokenGroup,
  172. ModelName: relayInfo.OriginModelName,
  173. Retry: common.GetPointer(0),
  174. RequireMatrixUsageBilling: relayInfo.RequireMatrixUsageBilling,
  175. }
  176. for ; retryParam.GetRetry() <= common.RetryTimes; retryParam.IncreaseRetry() {
  177. channel, _, channelErr := getChannel(c, relayInfo, retryParam)
  178. if channelErr != nil {
  179. logger.LogError(c, channelErr.Error())
  180. newAPIError = channelErr
  181. break
  182. }
  183. addUsedChannel(c, channel.Id)
  184. bodyStorage, bodyErr := common.GetBodyStorage(c)
  185. if bodyErr != nil {
  186. // Ensure consistent 413 for oversized bodies even when error occurs later (e.g., retry path)
  187. if common.IsRequestBodyTooLargeError(bodyErr) || errors.Is(bodyErr, common.ErrRequestBodyTooLarge) {
  188. newAPIError = types.NewErrorWithStatusCode(bodyErr, types.ErrorCodeReadRequestBodyFailed, http.StatusRequestEntityTooLarge, types.ErrOptionWithSkipRetry())
  189. } else {
  190. newAPIError = types.NewErrorWithStatusCode(bodyErr, types.ErrorCodeReadRequestBodyFailed, http.StatusBadRequest, types.ErrOptionWithSkipRetry())
  191. }
  192. break
  193. }
  194. c.Request.Body = io.NopCloser(bodyStorage)
  195. switch relayFormat {
  196. case types.RelayFormatOpenAIRealtime:
  197. newAPIError = relay.WssHelper(c, relayInfo)
  198. case types.RelayFormatClaude:
  199. newAPIError = relay.ClaudeHelper(c, relayInfo)
  200. case types.RelayFormatGemini:
  201. newAPIError = geminiRelayHandler(c, relayInfo)
  202. default:
  203. newAPIError = relayHandler(c, relayInfo)
  204. }
  205. if newAPIError == nil {
  206. return
  207. }
  208. newAPIError = service.NormalizeViolationFeeError(newAPIError)
  209. processChannelError(c, *types.NewChannelError(channel.Id, channel.Type, channel.Name, channel.ChannelInfo.IsMultiKey, common.GetContextKeyString(c, constant.ContextKeyChannelKey), channel.GetAutoBan()), newAPIError)
  210. if !shouldRetry(c, newAPIError, common.RetryTimes-retryParam.GetRetry()) {
  211. break
  212. }
  213. // Prometheus: 重试计数
  214. if metrics.IsEnabled() {
  215. channelIdStr := strconv.Itoa(channel.Id)
  216. metrics.GetMetrics().RequestRetriesTotal.WithLabelValues(channelIdStr, relayInfo.OriginModelName).Inc()
  217. }
  218. }
  219. useChannel := c.GetStringSlice("use_channel")
  220. if len(useChannel) > 1 {
  221. retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
  222. logger.LogInfo(c, retryLogStr)
  223. }
  224. }
  225. var upgrader = websocket.Upgrader{
  226. Subprotocols: []string{"realtime"}, // WS 握手支持的协议,如果有使用 Sec-WebSocket-Protocol,则必须在此声明对应的 Protocol TODO add other protocol
  227. CheckOrigin: func(r *http.Request) bool {
  228. return true // 允许跨域
  229. },
  230. }
  231. func addUsedChannel(c *gin.Context, channelId int) {
  232. useChannel := c.GetStringSlice("use_channel")
  233. useChannel = append(useChannel, fmt.Sprintf("%d", channelId))
  234. c.Set("use_channel", useChannel)
  235. }
  236. func fastTokenCountMetaForPricing(request dto.Request) *types.TokenCountMeta {
  237. if request == nil {
  238. return &types.TokenCountMeta{}
  239. }
  240. meta := &types.TokenCountMeta{
  241. TokenType: types.TokenTypeTokenizer,
  242. }
  243. switch r := request.(type) {
  244. case *dto.GeneralOpenAIRequest:
  245. if r.MaxCompletionTokens > r.MaxTokens {
  246. meta.MaxTokens = int(r.MaxCompletionTokens)
  247. } else {
  248. meta.MaxTokens = int(r.MaxTokens)
  249. }
  250. case *dto.OpenAIResponsesRequest:
  251. meta.MaxTokens = int(r.MaxOutputTokens)
  252. case *dto.ClaudeRequest:
  253. meta.MaxTokens = int(r.MaxTokens)
  254. case *dto.ImageRequest:
  255. // Pricing for image requests depends on ImagePriceRatio; safe to compute even when CountToken is disabled.
  256. return r.GetTokenCountMeta()
  257. default:
  258. // Best-effort: leave CombineText empty to avoid large allocations.
  259. }
  260. return meta
  261. }
  262. func concreteTaskVideoBindingGroup(c *gin.Context, group string) string {
  263. group = strings.TrimSpace(group)
  264. if group == "" {
  265. group = strings.TrimSpace(common.GetContextKeyString(c, constant.ContextKeyTokenGroup))
  266. }
  267. if group == "auto" {
  268. autoGroup := strings.TrimSpace(common.GetContextKeyString(c, constant.ContextKeyAutoGroup))
  269. if autoGroup == "" || autoGroup == "auto" {
  270. return ""
  271. }
  272. return autoGroup
  273. }
  274. return group
  275. }
  276. func persistTaskVideoBindingIfNeeded(userId int, group string, channel *model.Channel) error {
  277. group = strings.TrimSpace(group)
  278. if group == "" || group == "auto" || channel == nil {
  279. return nil
  280. }
  281. family, ok := service.VideoAssetFamilyForChannelType(channel.Type)
  282. if !ok {
  283. return nil
  284. }
  285. if !service.IsUsableVideoAssetChannelForFamily(channel, group, "", family) {
  286. return nil
  287. }
  288. return service.BindVideoAssetChannel(userId, group, channel, family)
  289. }
  290. func getChannel(c *gin.Context, info *relaycommon.RelayInfo, retryParam *service.RetryParam) (*model.Channel, string, *types.NewAPIError) {
  291. if info.ChannelMeta == nil {
  292. autoBan := c.GetBool("auto_ban")
  293. autoBanInt := 1
  294. if !autoBan {
  295. autoBanInt = 0
  296. }
  297. return &model.Channel{
  298. Id: c.GetInt("channel_id"),
  299. Type: c.GetInt("channel_type"),
  300. Name: c.GetString("channel_name"),
  301. AutoBan: &autoBanInt,
  302. }, concreteTaskVideoBindingGroup(c, info.TokenGroup), nil
  303. }
  304. channel, selectGroup, err := service.CacheGetRandomSatisfiedChannel(retryParam)
  305. info.PriceData.GroupRatioInfo = helper.HandleGroupRatio(c, info)
  306. if err != nil {
  307. if apiErr, ok := err.(*types.NewAPIError); ok {
  308. return nil, selectGroup, apiErr
  309. }
  310. return nil, selectGroup, types.NewError(fmt.Errorf("获取分组 %s 下模型 %s 的可用渠道失败(retry): %s", selectGroup, info.OriginModelName, err.Error()), types.ErrorCodeGetChannelFailed, types.ErrOptionWithSkipRetry())
  311. }
  312. if channel == nil {
  313. return nil, selectGroup, types.NewError(fmt.Errorf("分组 %s 下模型 %s 的可用渠道不存在(retry)", selectGroup, info.OriginModelName), types.ErrorCodeGetChannelFailed, types.ErrOptionWithSkipRetry())
  314. }
  315. newAPIError := middleware.SetupContextForSelectedChannel(c, channel, info.OriginModelName)
  316. if newAPIError != nil {
  317. return nil, selectGroup, newAPIError
  318. }
  319. return channel, selectGroup, nil
  320. }
  321. func requiredTaskChannelTypeForRequest(c *gin.Context) int {
  322. return 0
  323. }
  324. func allowedTaskChannelTypesForRequest(c *gin.Context) []int {
  325. if strings.HasPrefix(c.Request.URL.Path, "/api/v3/contents/generations/tasks") {
  326. // Keep in sync with allowedChannelTypesForRequest in middleware/distributor.go
  327. return append(service.VideoAssetChannelTypesForFamily(service.VideoAssetFamilySeedance),
  328. constant.ChannelTypeDoubaoVideo)
  329. }
  330. if isKlingAipingNativePath(c.Request.URL.Path) {
  331. return service.VideoAssetChannelTypesForFamily(service.VideoAssetFamilyKling)
  332. }
  333. return nil
  334. }
  335. func shouldRetry(c *gin.Context, openaiErr *types.NewAPIError, retryTimes int) bool {
  336. if openaiErr == nil {
  337. return false
  338. }
  339. if service.ShouldSkipRetryAfterChannelAffinityFailure(c) {
  340. return false
  341. }
  342. if types.IsChannelError(openaiErr) {
  343. return true
  344. }
  345. if types.IsSkipRetryError(openaiErr) {
  346. return false
  347. }
  348. if retryTimes <= 0 {
  349. return false
  350. }
  351. code := openaiErr.StatusCode
  352. if code >= 200 && code < 300 {
  353. return false
  354. }
  355. if code < 100 || code > 599 {
  356. return true
  357. }
  358. return operation_setting.ShouldRetryByStatusCode(code)
  359. }
  360. func processChannelError(c *gin.Context, channelError types.ChannelError, err *types.NewAPIError) {
  361. logger.LogError(c, fmt.Sprintf("channel error (channel #%d, status code: %d): %s", channelError.ChannelId, err.StatusCode, err.Error()))
  362. // 不要使用context获取渠道信息,异步处理时可能会出现渠道信息不一致的情况
  363. // do not use context to get channel info, there may be inconsistent channel info when processing asynchronously
  364. if service.ShouldDisableChannel(channelError.ChannelType, err) && channelError.AutoBan {
  365. gopool.Go(func() {
  366. service.DisableChannel(channelError, err.ErrorWithStatusCode())
  367. })
  368. }
  369. if constant.ErrorLogEnabled && types.IsRecordErrorLog(err) {
  370. // 保存错误日志到mysql中
  371. userId := c.GetInt("id")
  372. tokenName := c.GetString("token_name")
  373. modelName := c.GetString("original_model")
  374. tokenId := c.GetInt("token_id")
  375. userGroup := c.GetString("group")
  376. channelId := c.GetInt("channel_id")
  377. other := make(map[string]interface{})
  378. if c.Request != nil && c.Request.URL != nil {
  379. other["request_path"] = c.Request.URL.Path
  380. }
  381. other["error_type"] = err.GetErrorType()
  382. other["error_code"] = err.GetErrorCode()
  383. other["status_code"] = err.StatusCode
  384. other["channel_id"] = channelId
  385. other["channel_name"] = c.GetString("channel_name")
  386. other["channel_type"] = c.GetInt("channel_type")
  387. if err.UpstreamRequestId != "" {
  388. other["upstream_request_id"] = err.UpstreamRequestId
  389. }
  390. if err.UpstreamBody != "" {
  391. other["upstream_body"] = err.UpstreamBody
  392. }
  393. adminInfo := make(map[string]interface{})
  394. adminInfo["use_channel"] = c.GetStringSlice("use_channel")
  395. isMultiKey := common.GetContextKeyBool(c, constant.ContextKeyChannelIsMultiKey)
  396. if isMultiKey {
  397. adminInfo["is_multi_key"] = true
  398. adminInfo["multi_key_index"] = common.GetContextKeyInt(c, constant.ContextKeyChannelMultiKeyIndex)
  399. }
  400. service.AppendChannelAffinityAdminInfo(c, adminInfo)
  401. other["admin_info"] = adminInfo
  402. startTime := common.GetContextKeyTime(c, constant.ContextKeyRequestStartTime)
  403. if startTime.IsZero() {
  404. startTime = time.Now()
  405. }
  406. useTimeSeconds := int(time.Since(startTime).Seconds())
  407. model.RecordErrorLog(c, userId, channelId, modelName, tokenName, err.MaskSensitiveErrorWithStatusCode(), tokenId, useTimeSeconds, false, userGroup, other)
  408. }
  409. }
  410. func RelayMidjourney(c *gin.Context) {
  411. relayInfo, err := relaycommon.GenRelayInfo(c, types.RelayFormatMjProxy, nil, nil)
  412. if err != nil {
  413. c.JSON(http.StatusInternalServerError, gin.H{
  414. "description": fmt.Sprintf("failed to generate relay info: %s", err.Error()),
  415. "type": "upstream_error",
  416. "code": 4,
  417. })
  418. return
  419. }
  420. var mjErr *dto.MidjourneyResponse
  421. switch relayInfo.RelayMode {
  422. case relayconstant.RelayModeMidjourneyNotify:
  423. mjErr = relay.RelayMidjourneyNotify(c)
  424. case relayconstant.RelayModeMidjourneyTaskFetch, relayconstant.RelayModeMidjourneyTaskFetchByCondition:
  425. mjErr = relay.RelayMidjourneyTask(c, relayInfo.RelayMode)
  426. case relayconstant.RelayModeMidjourneyTaskImageSeed:
  427. mjErr = relay.RelayMidjourneyTaskImageSeed(c)
  428. case relayconstant.RelayModeSwapFace:
  429. mjErr = relay.RelaySwapFace(c, relayInfo)
  430. default:
  431. mjErr = relay.RelayMidjourneySubmit(c, relayInfo)
  432. }
  433. //err = relayMidjourneySubmit(c, relayMode)
  434. log.Println(mjErr)
  435. if mjErr != nil {
  436. statusCode := http.StatusBadRequest
  437. if mjErr.Code == 30 {
  438. mjErr.Result = "当前分组负载已饱和,请稍后再试,或升级账户以提升服务质量。"
  439. statusCode = http.StatusTooManyRequests
  440. }
  441. c.JSON(statusCode, gin.H{
  442. "description": fmt.Sprintf("%s %s", mjErr.Description, mjErr.Result),
  443. "type": "upstream_error",
  444. "code": mjErr.Code,
  445. })
  446. channelId := c.GetInt("channel_id")
  447. logger.LogError(c, fmt.Sprintf("relay error (channel #%d, status code %d): %s", channelId, statusCode, fmt.Sprintf("%s %s", mjErr.Description, mjErr.Result)))
  448. }
  449. }
  450. func RelayNotImplemented(c *gin.Context) {
  451. err := types.OpenAIError{
  452. Message: "API not implemented",
  453. Type: "new_api_error",
  454. Param: "",
  455. Code: "api_not_implemented",
  456. }
  457. c.JSON(http.StatusNotImplemented, gin.H{
  458. "error": err,
  459. })
  460. }
  461. func RelayNotFound(c *gin.Context) {
  462. err := types.OpenAIError{
  463. Message: fmt.Sprintf("Invalid URL (%s %s)", c.Request.Method, c.Request.URL.Path),
  464. Type: "invalid_request_error",
  465. Param: "",
  466. Code: "",
  467. }
  468. c.JSON(http.StatusNotFound, gin.H{
  469. "error": err,
  470. })
  471. }
  472. func RelayTaskFetch(c *gin.Context) {
  473. relayInfo, err := relaycommon.GenRelayInfo(c, types.RelayFormatTask, nil, nil)
  474. if err != nil {
  475. c.JSON(http.StatusInternalServerError, &dto.TaskError{
  476. Code: "gen_relay_info_failed",
  477. Message: err.Error(),
  478. StatusCode: http.StatusInternalServerError,
  479. })
  480. return
  481. }
  482. if taskErr := relay.RelayTaskFetch(c, relayInfo.RelayMode); taskErr != nil {
  483. respondTaskError(c, taskErr)
  484. }
  485. }
  486. func preloadTaskPricingConfig(c *gin.Context, info *relaycommon.RelayInfo) *dto.TaskError {
  487. modelName := strings.TrimSpace(info.OriginModelName)
  488. action := strings.TrimSpace(info.Action)
  489. contentType := c.Request.Header.Get("Content-Type")
  490. storage, err := common.GetBodyStorage(c)
  491. if err != nil {
  492. status := http.StatusBadRequest
  493. if common.IsRequestBodyTooLargeError(err) || errors.Is(err, common.ErrRequestBodyTooLarge) {
  494. status = http.StatusRequestEntityTooLarge
  495. }
  496. return service.TaskErrorWrapperLocal(err, "read_request_body_failed", status)
  497. }
  498. defer func() {
  499. _, _ = storage.Seek(0, io.SeekStart)
  500. c.Request.Body = io.NopCloser(storage)
  501. }()
  502. switch {
  503. case strings.HasPrefix(contentType, "application/json"):
  504. body, err := storage.Bytes()
  505. if err != nil {
  506. return service.TaskErrorWrapperLocal(err, "read_request_body_failed", http.StatusBadRequest)
  507. }
  508. if strings.TrimSpace(string(body)) != "" {
  509. var payload map[string]any
  510. if err := common.Unmarshal(body, &payload); err != nil {
  511. return service.TaskErrorWrapperLocal(err, "invalid_json", http.StatusBadRequest)
  512. }
  513. if raw, ok := payload["model_name"].(string); ok && strings.TrimSpace(raw) != "" {
  514. modelName = strings.TrimSpace(raw)
  515. } else if raw, ok := payload["model"].(string); ok && strings.TrimSpace(raw) != "" {
  516. modelName = strings.TrimSpace(raw)
  517. }
  518. if raw, ok := payload["action"].(string); ok && strings.TrimSpace(raw) != "" {
  519. action = strings.TrimSpace(raw)
  520. }
  521. }
  522. case strings.Contains(contentType, gin.MIMEMultipartPOSTForm):
  523. form, err := common.ParseMultipartFormReusable(c)
  524. if err != nil {
  525. return service.TaskErrorWrapperLocal(err, "invalid_multipart_form", http.StatusBadRequest)
  526. }
  527. if vals := form.Value["model"]; len(vals) > 0 && strings.TrimSpace(vals[0]) != "" {
  528. modelName = strings.TrimSpace(vals[0])
  529. }
  530. if vals := form.Value["action"]; len(vals) > 0 && strings.TrimSpace(vals[0]) != "" {
  531. action = strings.TrimSpace(vals[0])
  532. }
  533. }
  534. if modelName == "" && action != "" {
  535. platform := constant.TaskPlatform(c.GetString("platform"))
  536. modelName = service.CoverTaskActionToModelName(platform, action)
  537. }
  538. if modelName != "" {
  539. info.OriginModelName = modelName
  540. }
  541. if action != "" {
  542. info.Action = action
  543. }
  544. info.PricingConfigSnapshotLoaded = true
  545. info.PricingConfigSnapshot = ratio_setting.GetPricingConfig(info.OriginModelName)
  546. info.RequireMatrixUsageBilling = info.PricingConfigSnapshot != nil &&
  547. info.PricingConfigSnapshot.BillingUnit == types.BillingUnitPer1MTokens
  548. return nil
  549. }
  550. func buildTaskBillingContext(info *relaycommon.RelayInfo) *model.TaskBillingContext {
  551. bc := &model.TaskBillingContext{
  552. ModelPrice: info.PriceData.ModelPrice,
  553. GroupRatio: info.PriceData.GroupRatioInfo.GroupRatio,
  554. ModelRatio: info.PriceData.ModelRatio,
  555. OtherRatios: info.PriceData.OtherRatios,
  556. OriginModelName: info.OriginModelName,
  557. PerCallBilling: common.StringsContains(constant.TaskPricePatches, info.OriginModelName),
  558. }
  559. if decision := info.PricingDecisionFrozen; decision != nil && decision.BillingMode == types.BillingModeMatrix {
  560. bc.BillingMode = decision.BillingMode
  561. bc.PricingSnapshot = types.CloneMapAny(decision.Snapshot)
  562. bc.BillingUnit = decision.BillingUnit
  563. bc.TokenUnitPriceUSD = decision.TokenUnitPriceUSD
  564. bc.PerCallBilling = decision.PerCallBilling
  565. if decision.BillingUnit == types.BillingUnitPer1MTokens {
  566. bc.ModelPrice = decision.TokenUnitPriceUSD
  567. } else {
  568. bc.ModelPrice = decision.PriceUSD
  569. }
  570. bc.GroupRatio = decision.GroupRatioInfo.GroupRatio
  571. bc.OtherRatios = types.CloneRatios(decision.OtherRatios)
  572. }
  573. return bc
  574. }
  575. func RelayTask(c *gin.Context) {
  576. relayInfo, err := relaycommon.GenRelayInfo(c, types.RelayFormatTask, nil, nil)
  577. if err != nil {
  578. c.JSON(http.StatusInternalServerError, &dto.TaskError{
  579. Code: "gen_relay_info_failed",
  580. Message: err.Error(),
  581. StatusCode: http.StatusInternalServerError,
  582. })
  583. return
  584. }
  585. relayTaskWithInfo(c, relayInfo)
  586. }
  587. func relayTaskWithInfo(c *gin.Context, relayInfo *relaycommon.RelayInfo) {
  588. if taskErr := relay.ResolveOriginTask(c, relayInfo); taskErr != nil {
  589. respondTaskError(c, taskErr)
  590. return
  591. }
  592. if taskErr := preloadTaskPricingConfig(c, relayInfo); taskErr != nil {
  593. respondTaskError(c, taskErr)
  594. return
  595. }
  596. var result *relay.TaskSubmitResult
  597. var taskErr *dto.TaskError
  598. defer func() {
  599. if taskErr != nil && relayInfo.Billing != nil {
  600. relayInfo.Billing.Refund(c)
  601. }
  602. }()
  603. retryParam := &service.RetryParam{
  604. Ctx: c,
  605. TokenGroup: relayInfo.TokenGroup,
  606. ModelName: relayInfo.OriginModelName,
  607. Retry: common.GetPointer(0),
  608. RequiredChannelType: requiredTaskChannelTypeForRequest(c),
  609. AllowedChannelTypes: allowedTaskChannelTypesForRequest(c),
  610. }
  611. for ; retryParam.GetRetry() <= common.RetryTimes; retryParam.IncreaseRetry() {
  612. var channel *model.Channel
  613. var selectedGroup string
  614. if lockedCh, ok := relayInfo.LockedChannel.(*model.Channel); ok && lockedCh != nil {
  615. channel = lockedCh
  616. selectedGroup = concreteTaskVideoBindingGroup(c, relayInfo.TokenGroup)
  617. if setupErr := middleware.SetupContextForSelectedChannel(c, channel, relayInfo.OriginModelName); setupErr != nil {
  618. taskErr = service.TaskErrorWrapperLocal(setupErr.Err, "setup_locked_channel_failed", http.StatusInternalServerError)
  619. break
  620. }
  621. } else {
  622. var channelErr *types.NewAPIError
  623. channel, selectedGroup, channelErr = getChannel(c, relayInfo, retryParam)
  624. if channelErr != nil {
  625. logger.LogError(c, channelErr.Error())
  626. taskErr = service.TaskErrorWrapperLocal(channelErr.Err, "get_channel_failed", http.StatusInternalServerError)
  627. break
  628. }
  629. }
  630. if bindErr := persistTaskVideoBindingIfNeeded(c.GetInt("id"), selectedGroup, channel); bindErr != nil {
  631. taskErr = service.TaskErrorWrapperLocal(bindErr, "bind_task_video_channel_failed", http.StatusServiceUnavailable)
  632. break
  633. }
  634. addUsedChannel(c, channel.Id)
  635. bodyStorage, bodyErr := common.GetBodyStorage(c)
  636. if bodyErr != nil {
  637. if common.IsRequestBodyTooLargeError(bodyErr) || errors.Is(bodyErr, common.ErrRequestBodyTooLarge) {
  638. taskErr = service.TaskErrorWrapperLocal(bodyErr, "read_request_body_failed", http.StatusRequestEntityTooLarge)
  639. } else {
  640. taskErr = service.TaskErrorWrapperLocal(bodyErr, "read_request_body_failed", http.StatusBadRequest)
  641. }
  642. break
  643. }
  644. c.Request.Body = io.NopCloser(bodyStorage)
  645. result, taskErr = relay.RelayTaskSubmit(c, relayInfo)
  646. if taskErr == nil {
  647. break
  648. }
  649. if !taskErr.LocalError {
  650. processChannelError(c,
  651. *types.NewChannelError(channel.Id, channel.Type, channel.Name, channel.ChannelInfo.IsMultiKey,
  652. common.GetContextKeyString(c, constant.ContextKeyChannelKey), channel.GetAutoBan()),
  653. types.NewOpenAIError(taskErr.Error, types.ErrorCodeBadResponseStatusCode, taskErr.StatusCode))
  654. }
  655. if !shouldRetryTaskRelay(c, channel.Id, taskErr, common.RetryTimes-retryParam.GetRetry()) {
  656. break
  657. }
  658. }
  659. useChannel := c.GetStringSlice("use_channel")
  660. if len(useChannel) > 1 {
  661. retryLogStr := fmt.Sprintf("重试:%s", strings.Trim(strings.Join(strings.Fields(fmt.Sprint(useChannel)), "->"), "[]"))
  662. logger.LogInfo(c, retryLogStr)
  663. }
  664. // ── 成功:结算 + 日志 + 插入任务 ──
  665. if taskErr == nil {
  666. if settleErr := service.SettleBilling(c, relayInfo, result.Quota); settleErr != nil {
  667. common.SysError("settle task billing error: " + settleErr.Error())
  668. }
  669. service.LogTaskConsumption(c, relayInfo)
  670. task := model.InitTask(result.Platform, relayInfo)
  671. task.PrivateData.UpstreamTaskID = result.UpstreamTaskID
  672. task.PrivateData.BillingSource = relayInfo.BillingSource
  673. task.PrivateData.SubscriptionId = relayInfo.SubscriptionId
  674. task.PrivateData.TokenId = relayInfo.TokenId
  675. task.PrivateData.BillingContext = buildTaskBillingContext(relayInfo)
  676. task.PrivateData.UpstreamRequest = relay.BuildUpstreamRequestSnapshotForTask(result.UpstreamReqJSON)
  677. task.Quota = result.Quota
  678. task.Data = result.TaskData
  679. task.Action = relayInfo.Action
  680. if insertErr := task.Insert(); insertErr != nil {
  681. common.SysError("insert task error: " + insertErr.Error())
  682. }
  683. }
  684. if taskErr != nil {
  685. respondTaskError(c, taskErr)
  686. }
  687. }
  688. // respondTaskError 统一输出 Task 错误响应(含 429 限流提示改写)
  689. func respondTaskError(c *gin.Context, taskErr *dto.TaskError) {
  690. if taskErr.StatusCode == http.StatusTooManyRequests {
  691. taskErr.Message = "当前分组上游负载已饱和,请稍后再试"
  692. }
  693. if isKlingAipingNativePath(c.Request.URL.Path) {
  694. normalizeKlingAipingTaskError(taskErr)
  695. }
  696. c.JSON(taskErr.StatusCode, taskErr)
  697. }
  698. func isKlingAipingNativePath(path string) bool {
  699. return pathMatchesAnyKlingAipingNativePrefix(path,
  700. "/v1/videos/text2video",
  701. "/v1/videos/image2video",
  702. "/v1/videos/motion-control",
  703. "/v1/videos/omni-video",
  704. "/v1/videos/multi-image2video",
  705. "/v1/videos/video-extend",
  706. "/v1/general/advanced-custom-elements",
  707. "/v1/general/custom-voices",
  708. )
  709. }
  710. func pathMatchesAnyKlingAipingNativePrefix(path string, prefixes ...string) bool {
  711. for _, prefix := range prefixes {
  712. if path == prefix || strings.HasPrefix(path, prefix+"/") {
  713. return true
  714. }
  715. }
  716. return false
  717. }
  718. func shouldRetryTaskRelay(c *gin.Context, channelId int, taskErr *dto.TaskError, retryTimes int) bool {
  719. if taskErr == nil {
  720. return false
  721. }
  722. if service.ShouldSkipRetryAfterChannelAffinityFailure(c) {
  723. return false
  724. }
  725. if retryTimes <= 0 {
  726. return false
  727. }
  728. if taskErr.StatusCode == http.StatusTooManyRequests {
  729. return true
  730. }
  731. if taskErr.StatusCode == 307 {
  732. return true
  733. }
  734. if taskErr.StatusCode/100 == 5 {
  735. // 超时不重试
  736. if operation_setting.IsAlwaysSkipRetryStatusCode(taskErr.StatusCode) {
  737. return false
  738. }
  739. return true
  740. }
  741. if taskErr.StatusCode == http.StatusBadRequest {
  742. return false
  743. }
  744. if taskErr.StatusCode == 408 {
  745. // azure处理超时不重试
  746. return false
  747. }
  748. if taskErr.LocalError {
  749. return false
  750. }
  751. if taskErr.StatusCode/100 == 2 {
  752. return false
  753. }
  754. return true
  755. }