983 lines
32 KiB
Go
983 lines
32 KiB
Go
package service
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/apicompat"
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/claude"
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/logger"
|
|
"github.com/Wei-Shaw/sub2api/internal/util/responseheaders"
|
|
"github.com/gin-gonic/gin"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// ForwardAsAnthropic accepts an Anthropic Messages request body, converts it
|
|
// to OpenAI Responses API format, forwards to the OpenAI upstream, and converts
|
|
// the response back to Anthropic Messages format. This enables Claude Code
|
|
// clients to access OpenAI models through the standard /v1/messages endpoint.
|
|
func (s *OpenAIGatewayService) ForwardAsAnthropic(
|
|
ctx context.Context,
|
|
c *gin.Context,
|
|
account *Account,
|
|
body []byte,
|
|
promptCacheKey string,
|
|
defaultMappedModel string,
|
|
) (*OpenAIForwardResult, error) {
|
|
startTime := time.Now()
|
|
|
|
// 1. Parse Anthropic request
|
|
var anthropicReq apicompat.AnthropicRequest
|
|
if err := json.Unmarshal(body, &anthropicReq); err != nil {
|
|
return nil, fmt.Errorf("parse anthropic request: %w", err)
|
|
}
|
|
anthropicDigestReq := cloneAnthropicRequestForDigest(&anthropicReq)
|
|
originalModel := anthropicReq.Model
|
|
applyOpenAICompatModelNormalization(&anthropicReq)
|
|
normalizedModel := anthropicReq.Model
|
|
clientStream := anthropicReq.Stream // client's original stream preference
|
|
|
|
// 2. Model mapping
|
|
billingModel := resolveOpenAIForwardModel(account, normalizedModel, defaultMappedModel)
|
|
upstreamModel := normalizeOpenAIModelForUpstream(account, billingModel)
|
|
promptCacheKey = strings.TrimSpace(promptCacheKey)
|
|
apiKeyID := getAPIKeyIDFromContext(c)
|
|
anthropicDigestChain := ""
|
|
anthropicMatchedDigestChain := ""
|
|
compatPromptCacheInjected := false
|
|
if promptCacheKey == "" && shouldAutoInjectPromptCacheKeyForCompat(upstreamModel) {
|
|
promptCacheKey = promptCacheKeyFromAnthropicMetadataSession(&anthropicReq)
|
|
if promptCacheKey == "" {
|
|
promptCacheKey = deriveAnthropicCacheControlPromptCacheKey(&anthropicReq)
|
|
}
|
|
if promptCacheKey == "" {
|
|
anthropicDigestChain = buildOpenAICompatAnthropicDigestChain(anthropicDigestReq)
|
|
if reusedKey, matchedChain := s.findOpenAICompatAnthropicDigestPromptCacheKey(account, apiKeyID, anthropicDigestChain); reusedKey != "" {
|
|
promptCacheKey = reusedKey
|
|
anthropicMatchedDigestChain = matchedChain
|
|
} else {
|
|
promptCacheKey = promptCacheKeyFromAnthropicDigest(anthropicDigestChain)
|
|
}
|
|
}
|
|
compatPromptCacheInjected = promptCacheKey != ""
|
|
}
|
|
compatReplayTrimmed := false
|
|
compatReplayGuardEnabled := shouldAutoInjectPromptCacheKeyForCompat(upstreamModel)
|
|
compatContinuationEnabled := openAICompatContinuationEnabled(account, upstreamModel)
|
|
previousResponseID := ""
|
|
if compatContinuationEnabled {
|
|
previousResponseID = s.getOpenAICompatSessionResponseID(ctx, c, account, promptCacheKey)
|
|
}
|
|
compatContinuationDisabled := compatContinuationEnabled &&
|
|
s.isOpenAICompatSessionContinuationDisabled(ctx, c, account, promptCacheKey)
|
|
compatTurnState := ""
|
|
// OAuth/Plus relies on session_id + x-codex-turn-state; trimming to a
|
|
// sliding 12-message window makes the cached prefix stall at system/tools.
|
|
// Keep full replay there so upstream prompt caching can grow turn by turn.
|
|
if compatReplayGuardEnabled && account.Type != AccountTypeOAuth && previousResponseID == "" && !compatContinuationDisabled {
|
|
compatReplayTrimmed = applyAnthropicCompatFullReplayGuard(&anthropicReq)
|
|
}
|
|
|
|
// 3. Convert Anthropic → Responses after compatibility-only replay guard.
|
|
responsesReq, err := apicompat.AnthropicToResponses(&anthropicReq)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("convert anthropic to responses: %w", err)
|
|
}
|
|
|
|
// Upstream always uses streaming (upstream may not support sync mode).
|
|
// The client's original preference determines the response format.
|
|
responsesReq.Stream = true
|
|
isStream := true
|
|
|
|
// 3b. Handle BetaFastMode → service_tier: "priority"
|
|
if containsBetaToken(c.GetHeader("anthropic-beta"), claude.BetaFastMode) {
|
|
responsesReq.ServiceTier = "priority"
|
|
}
|
|
|
|
responsesReq.Model = upstreamModel
|
|
if previousResponseID != "" {
|
|
responsesReq.PreviousResponseID = previousResponseID
|
|
trimAnthropicCompatResponsesInputToLatestTurn(responsesReq)
|
|
}
|
|
if compatReplayGuardEnabled && account.Type != AccountTypeOAuth {
|
|
appendOpenAICompatClaudeCodeTodoGuard(responsesReq)
|
|
}
|
|
|
|
logFields := []zap.Field{
|
|
zap.Int64("account_id", account.ID),
|
|
zap.String("original_model", originalModel),
|
|
zap.String("normalized_model", normalizedModel),
|
|
zap.String("billing_model", billingModel),
|
|
zap.String("upstream_model", upstreamModel),
|
|
zap.Bool("stream", isStream),
|
|
}
|
|
if compatPromptCacheInjected {
|
|
logFields = append(logFields,
|
|
zap.Bool("compat_prompt_cache_key_injected", true),
|
|
zap.String("compat_prompt_cache_key_sha256", hashSensitiveValueForLog(promptCacheKey)),
|
|
)
|
|
}
|
|
if compatReplayTrimmed {
|
|
logFields = append(logFields,
|
|
zap.Bool("compat_full_replay_trimmed", true),
|
|
zap.Int("compat_messages_after_trim", len(anthropicReq.Messages)),
|
|
)
|
|
}
|
|
if previousResponseID != "" {
|
|
logFields = append(logFields,
|
|
zap.Bool("compat_previous_response_id_attached", true),
|
|
zap.String("compat_previous_response_id", truncateOpenAIWSLogValue(previousResponseID, openAIWSIDValueMaxLen)),
|
|
)
|
|
}
|
|
if compatTurnState != "" {
|
|
logFields = append(logFields, zap.Bool("compat_turn_state_attached", true))
|
|
}
|
|
logger.L().Debug("openai messages: model mapping applied", logFields...)
|
|
|
|
// 4. Marshal Responses request body, then apply OAuth codex transform
|
|
responsesBody, err := json.Marshal(responsesReq)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal responses request: %w", err)
|
|
}
|
|
|
|
if account.Type == AccountTypeOAuth {
|
|
var reqBody map[string]any
|
|
if err := json.Unmarshal(responsesBody, &reqBody); err != nil {
|
|
return nil, fmt.Errorf("unmarshal for codex transform: %w", err)
|
|
}
|
|
codexResult := applyCodexOAuthTransformWithOptions(reqBody, codexOAuthTransformOptions{
|
|
SkipDefaultInstructions: true,
|
|
PreserveToolCallIDs: true,
|
|
})
|
|
forcedTemplateText := ""
|
|
if s.cfg != nil {
|
|
forcedTemplateText = s.cfg.Gateway.ForcedCodexInstructionsTemplate
|
|
}
|
|
templateUpstreamModel := upstreamModel
|
|
if codexResult.NormalizedModel != "" {
|
|
templateUpstreamModel = codexResult.NormalizedModel
|
|
}
|
|
existingInstructions, _ := reqBody["instructions"].(string)
|
|
if strings.TrimSpace(existingInstructions) == "" {
|
|
existingInstructions = extractPromptLikeInstructionsFromInput(reqBody)
|
|
}
|
|
if _, err := applyForcedCodexInstructionsTemplate(reqBody, forcedTemplateText, forcedCodexInstructionsTemplateData{
|
|
ExistingInstructions: strings.TrimSpace(existingInstructions),
|
|
OriginalModel: originalModel,
|
|
NormalizedModel: normalizedModel,
|
|
BillingModel: billingModel,
|
|
UpstreamModel: templateUpstreamModel,
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
ensureCodexOAuthInstructionsField(reqBody)
|
|
if shouldAutoInjectPromptCacheKeyForCompat(upstreamModel) {
|
|
appendOpenAICompatClaudeCodeTodoGuardToRequestBody(reqBody)
|
|
}
|
|
if codexResult.NormalizedModel != "" {
|
|
upstreamModel = codexResult.NormalizedModel
|
|
}
|
|
if codexResult.PromptCacheKey != "" {
|
|
promptCacheKey = codexResult.PromptCacheKey
|
|
}
|
|
delete(reqBody, "prompt_cache_key")
|
|
if shouldAutoInjectPromptCacheKeyForCompat(upstreamModel) {
|
|
compatTurnState = s.getOpenAICompatSessionTurnState(ctx, c, account, promptCacheKey)
|
|
}
|
|
// OAuth codex transform forces stream=true upstream, so always use
|
|
// the streaming response handler regardless of what the client asked.
|
|
isStream = true
|
|
responsesBody, err = json.Marshal(reqBody)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("remarshal after codex transform: %w", err)
|
|
}
|
|
}
|
|
|
|
// For API key accounts (including OpenAI-compatible upstream gateways),
|
|
// ensure promptCacheKey is also propagated via the request body so that
|
|
// upstreams using the Responses API can derive a stable session identifier
|
|
// from prompt_cache_key. This makes our Anthropic /v1/messages compatibility
|
|
// path behave more like a native Responses client.
|
|
if account.Type == AccountTypeAPIKey {
|
|
if trimmedKey := strings.TrimSpace(promptCacheKey); trimmedKey != "" {
|
|
var reqBody map[string]any
|
|
if err := json.Unmarshal(responsesBody, &reqBody); err != nil {
|
|
return nil, fmt.Errorf("unmarshal for prompt cache key injection: %w", err)
|
|
}
|
|
if existing, ok := reqBody["prompt_cache_key"].(string); !ok || strings.TrimSpace(existing) == "" {
|
|
reqBody["prompt_cache_key"] = trimmedKey
|
|
updated, err := json.Marshal(reqBody)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("remarshal after prompt cache key injection: %w", err)
|
|
}
|
|
responsesBody = updated
|
|
}
|
|
}
|
|
}
|
|
|
|
// 4c. Apply OpenAI fast policy (may filter service_tier or block the request).
|
|
// Mirrors the Claude anthropic-beta "fast-mode-2026-02-01" filter, but keyed
|
|
// on the body-level service_tier field (priority/flex).
|
|
updatedBody, policyErr := s.applyOpenAIFastPolicyToBody(ctx, account, upstreamModel, responsesBody)
|
|
if policyErr != nil {
|
|
var blocked *OpenAIFastBlockedError
|
|
if errors.As(policyErr, &blocked) {
|
|
MarkOpsClientBusinessLimited(c, OpsClientBusinessLimitedReasonLocalPolicyDenied)
|
|
writeAnthropicError(c, http.StatusForbidden, "forbidden_error", blocked.Message)
|
|
}
|
|
return nil, policyErr
|
|
}
|
|
responsesBody = updatedBody
|
|
|
|
// 5. Get access token
|
|
token, _, err := s.GetAccessToken(ctx, account)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("get access token: %w", err)
|
|
}
|
|
|
|
// 6. Build upstream request
|
|
upstreamCtx, releaseUpstreamCtx := detachUpstreamContext(ctx)
|
|
upstreamReq, err := s.buildUpstreamRequest(upstreamCtx, c, account, responsesBody, token, isStream, promptCacheKey, false)
|
|
releaseUpstreamCtx()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("build upstream request: %w", err)
|
|
}
|
|
|
|
// Override session_id with a deterministic UUID derived from the isolated
|
|
// session key, ensuring different API keys produce different upstream sessions.
|
|
if promptCacheKey != "" {
|
|
isolatedSessionID := generateSessionUUID(isolateOpenAISessionID(apiKeyID, promptCacheKey))
|
|
upstreamReq.Header.Set("session_id", isolatedSessionID)
|
|
if upstreamReq.Header.Get("conversation_id") != "" {
|
|
upstreamReq.Header.Set("conversation_id", isolatedSessionID)
|
|
}
|
|
}
|
|
if account.Type == AccountTypeOAuth {
|
|
// Anthropic Messages compatibility uses the ChatGPT Codex SSE endpoint.
|
|
// Match airgate-openai's request shape: the SSE endpoint does not need
|
|
// the Responses experimental beta header, and forcing originator can make
|
|
// ChatGPT select a different internal continuation path.
|
|
upstreamReq.Header.Del("OpenAI-Beta")
|
|
upstreamReq.Header.Del("originator")
|
|
}
|
|
if account.Type == AccountTypeOAuth && promptCacheKey != "" && strings.TrimSpace(c.GetHeader("conversation_id")) == "" {
|
|
upstreamReq.Header.Del("conversation_id")
|
|
}
|
|
if compatTurnState != "" && upstreamReq.Header.Get("x-codex-turn-state") == "" {
|
|
upstreamReq.Header.Set("x-codex-turn-state", compatTurnState)
|
|
}
|
|
|
|
// 7. Send request
|
|
proxyURL := ""
|
|
if account.Proxy != nil {
|
|
proxyURL = account.Proxy.URL()
|
|
}
|
|
resp, err := s.httpUpstream.Do(upstreamReq, proxyURL, account.ID, account.Concurrency)
|
|
if err != nil {
|
|
safeErr := sanitizeUpstreamErrorMessage(err.Error())
|
|
setOpsUpstreamError(c, 0, safeErr, "")
|
|
appendOpsUpstreamError(c, OpsUpstreamErrorEvent{
|
|
Platform: account.Platform,
|
|
AccountID: account.ID,
|
|
AccountName: account.Name,
|
|
UpstreamStatusCode: 0,
|
|
Kind: "request_error",
|
|
Message: safeErr,
|
|
})
|
|
writeAnthropicError(c, http.StatusBadGateway, "api_error", "Upstream request failed")
|
|
return nil, fmt.Errorf("upstream request failed: %s", safeErr)
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
// 8. Handle error response with failover
|
|
if resp.StatusCode >= 400 {
|
|
respBody, _ := io.ReadAll(io.LimitReader(resp.Body, 2<<20))
|
|
_ = resp.Body.Close()
|
|
resp.Body = io.NopCloser(bytes.NewReader(respBody))
|
|
|
|
upstreamMsg := strings.TrimSpace(extractUpstreamErrorMessage(respBody))
|
|
upstreamMsg = sanitizeUpstreamErrorMessage(upstreamMsg)
|
|
if previousResponseID != "" && (isOpenAICompatPreviousResponseNotFound(resp.StatusCode, upstreamMsg, respBody) || isOpenAICompatPreviousResponseUnsupported(resp.StatusCode, upstreamMsg, respBody)) {
|
|
if isOpenAICompatPreviousResponseUnsupported(resp.StatusCode, upstreamMsg, respBody) {
|
|
s.disableOpenAICompatSessionContinuation(ctx, c, account, promptCacheKey)
|
|
} else {
|
|
s.deleteOpenAICompatSessionResponseID(ctx, c, account, promptCacheKey)
|
|
}
|
|
logger.L().Info("openai messages: previous_response_id unavailable, retrying without continuation",
|
|
zap.Int64("account_id", account.ID),
|
|
zap.String("previous_response_id", truncateOpenAIWSLogValue(previousResponseID, openAIWSIDValueMaxLen)),
|
|
zap.String("upstream_model", upstreamModel),
|
|
)
|
|
return s.ForwardAsAnthropic(ctx, c, account, body, promptCacheKey, defaultMappedModel)
|
|
}
|
|
if s.shouldFailoverOpenAIUpstreamResponse(resp.StatusCode, upstreamMsg, respBody) {
|
|
upstreamDetail := ""
|
|
if s.cfg != nil && s.cfg.Gateway.LogUpstreamErrorBody {
|
|
maxBytes := s.cfg.Gateway.LogUpstreamErrorBodyMaxBytes
|
|
if maxBytes <= 0 {
|
|
maxBytes = 2048
|
|
}
|
|
upstreamDetail = truncateString(string(respBody), maxBytes)
|
|
}
|
|
appendOpsUpstreamError(c, OpsUpstreamErrorEvent{
|
|
Platform: account.Platform,
|
|
AccountID: account.ID,
|
|
AccountName: account.Name,
|
|
UpstreamStatusCode: resp.StatusCode,
|
|
UpstreamRequestID: resp.Header.Get("x-request-id"),
|
|
Kind: "failover",
|
|
Message: upstreamMsg,
|
|
Detail: upstreamDetail,
|
|
})
|
|
s.handleOpenAIAccountUpstreamError(ctx, account, resp.StatusCode, resp.Header, respBody, upstreamModel)
|
|
return nil, &UpstreamFailoverError{
|
|
StatusCode: resp.StatusCode,
|
|
ResponseBody: respBody,
|
|
RetryableOnSameAccount: account.IsPoolMode() && (isPoolModeRetryableStatus(resp.StatusCode) || isOpenAITransientProcessingError(resp.StatusCode, upstreamMsg, respBody)),
|
|
}
|
|
}
|
|
// Non-failover error: return Anthropic-formatted error to client
|
|
return s.handleAnthropicErrorResponse(resp, c, account, billingModel)
|
|
}
|
|
|
|
if account.Type == AccountTypeOAuth && promptCacheKey != "" {
|
|
if turnState := strings.TrimSpace(resp.Header.Get("x-codex-turn-state")); turnState != "" {
|
|
s.bindOpenAICompatSessionTurnState(ctx, c, account, promptCacheKey, turnState)
|
|
}
|
|
}
|
|
|
|
// 9. Handle normal response
|
|
// Upstream is always streaming; choose response format based on client preference.
|
|
var result *OpenAIForwardResult
|
|
var handleErr error
|
|
if clientStream {
|
|
result, handleErr = s.handleAnthropicStreamingResponse(resp, c, originalModel, billingModel, upstreamModel, startTime)
|
|
} else {
|
|
// Client wants JSON: buffer the streaming response and assemble a JSON reply.
|
|
result, handleErr = s.handleAnthropicBufferedStreamingResponse(resp, c, originalModel, billingModel, upstreamModel, startTime)
|
|
}
|
|
|
|
// Propagate ServiceTier and ReasoningEffort to result for billing
|
|
if handleErr == nil && result != nil {
|
|
if compatContinuationEnabled && promptCacheKey != "" && result.ResponseID != "" {
|
|
s.bindOpenAICompatSessionResponseID(ctx, c, account, promptCacheKey, result.ResponseID)
|
|
}
|
|
if promptCacheKey != "" && anthropicDigestChain != "" {
|
|
s.bindOpenAICompatAnthropicDigestPromptCacheKey(account, apiKeyID, anthropicDigestChain, promptCacheKey, anthropicMatchedDigestChain)
|
|
}
|
|
if responsesReq.ServiceTier != "" {
|
|
st := responsesReq.ServiceTier
|
|
result.ServiceTier = &st
|
|
}
|
|
if responsesReq.Reasoning != nil && responsesReq.Reasoning.Effort != "" {
|
|
re := responsesReq.Reasoning.Effort
|
|
result.ReasoningEffort = &re
|
|
}
|
|
}
|
|
|
|
// Extract and save Codex usage snapshot from response headers (for OAuth accounts)
|
|
if handleErr == nil && account.Type == AccountTypeOAuth {
|
|
if snapshot := ParseCodexRateLimitHeaders(resp.Header); snapshot != nil {
|
|
s.updateCodexUsageSnapshot(ctx, account.ID, snapshot)
|
|
}
|
|
}
|
|
|
|
return result, handleErr
|
|
}
|
|
|
|
func ensureCodexOAuthInstructionsField(reqBody map[string]any) {
|
|
if reqBody == nil {
|
|
return
|
|
}
|
|
if value, ok := reqBody["instructions"]; !ok || value == nil {
|
|
reqBody["instructions"] = ""
|
|
return
|
|
}
|
|
if _, ok := reqBody["instructions"].(string); !ok {
|
|
reqBody["instructions"] = ""
|
|
}
|
|
}
|
|
|
|
// handleAnthropicErrorResponse reads an upstream error and returns it in
|
|
// Anthropic error format.
|
|
func (s *OpenAIGatewayService) handleAnthropicErrorResponse(
|
|
resp *http.Response,
|
|
c *gin.Context,
|
|
account *Account,
|
|
requestedModel ...string,
|
|
) (*OpenAIForwardResult, error) {
|
|
return s.handleCompatErrorResponse(resp, c, account, writeAnthropicError, requestedModel...)
|
|
}
|
|
|
|
// handleAnthropicBufferedStreamingResponse reads all Responses SSE events from
|
|
// the upstream streaming response, finds the terminal event (response.completed
|
|
// / response.incomplete / response.failed), converts the complete response to
|
|
// Anthropic Messages JSON format, and writes it to the client.
|
|
// This is used when the client requested stream=false but the upstream is always
|
|
// streaming.
|
|
func (s *OpenAIGatewayService) handleAnthropicBufferedStreamingResponse(
|
|
resp *http.Response,
|
|
c *gin.Context,
|
|
originalModel string,
|
|
billingModel string,
|
|
upstreamModel string,
|
|
startTime time.Time,
|
|
) (*OpenAIForwardResult, error) {
|
|
requestID := resp.Header.Get("x-request-id")
|
|
|
|
finalResponse, usage, acc, err := s.readOpenAICompatBufferedTerminal(resp, "openai messages buffered", requestID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if finalResponse == nil {
|
|
writeAnthropicError(c, http.StatusBadGateway, "api_error", "Upstream stream ended without a terminal response event")
|
|
return nil, fmt.Errorf("upstream stream ended without terminal event")
|
|
}
|
|
|
|
// When the terminal event has an empty output array, reconstruct from
|
|
// accumulated delta events so the client receives the full content.
|
|
acc.SupplementResponseOutput(finalResponse)
|
|
|
|
anthropicResp := apicompat.ResponsesToAnthropic(finalResponse, originalModel)
|
|
|
|
if s.responseHeaderFilter != nil {
|
|
responseheaders.WriteFilteredHeaders(c.Writer.Header(), resp.Header, s.responseHeaderFilter)
|
|
}
|
|
c.JSON(http.StatusOK, anthropicResp)
|
|
|
|
return &OpenAIForwardResult{
|
|
RequestID: requestID,
|
|
ResponseID: finalResponse.ID,
|
|
Usage: usage,
|
|
Model: originalModel,
|
|
BillingModel: billingModel,
|
|
UpstreamModel: upstreamModel,
|
|
Stream: false,
|
|
Duration: time.Since(startTime),
|
|
}, nil
|
|
}
|
|
|
|
func isOpenAICompatResponsesTerminalEvent(eventType string) bool {
|
|
switch strings.TrimSpace(eventType) {
|
|
case "response.completed", "response.done", "response.incomplete", "response.failed":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
func isOpenAICompatDoneSentinelLine(line string) bool {
|
|
payload, ok := extractOpenAISSEDataLine(line)
|
|
return ok && strings.TrimSpace(payload) == "[DONE]"
|
|
}
|
|
|
|
func (s *OpenAIGatewayService) readOpenAICompatBufferedTerminal(
|
|
resp *http.Response,
|
|
logPrefix string,
|
|
requestID string,
|
|
) (*apicompat.ResponsesResponse, OpenAIUsage, *apicompat.BufferedResponseAccumulator, error) {
|
|
acc := apicompat.NewBufferedResponseAccumulator()
|
|
var usage OpenAIUsage
|
|
if resp == nil || resp.Body == nil {
|
|
return nil, usage, acc, errors.New("upstream response body is nil")
|
|
}
|
|
|
|
scanner := bufio.NewScanner(resp.Body)
|
|
maxLineSize := defaultMaxLineSize
|
|
if s.cfg != nil && s.cfg.Gateway.MaxLineSize > 0 {
|
|
maxLineSize = s.cfg.Gateway.MaxLineSize
|
|
}
|
|
scanner.Buffer(make([]byte, 0, 64*1024), maxLineSize)
|
|
|
|
streamInterval := time.Duration(0)
|
|
if s.cfg != nil && s.cfg.Gateway.StreamDataIntervalTimeout > 0 {
|
|
streamInterval = time.Duration(s.cfg.Gateway.StreamDataIntervalTimeout) * time.Second
|
|
}
|
|
var timeoutCh <-chan time.Time
|
|
var timeoutTimer *time.Timer
|
|
resetTimeout := func() {
|
|
if streamInterval <= 0 {
|
|
return
|
|
}
|
|
if timeoutTimer == nil {
|
|
timeoutTimer = time.NewTimer(streamInterval)
|
|
timeoutCh = timeoutTimer.C
|
|
return
|
|
}
|
|
if !timeoutTimer.Stop() {
|
|
select {
|
|
case <-timeoutTimer.C:
|
|
default:
|
|
}
|
|
}
|
|
timeoutTimer.Reset(streamInterval)
|
|
}
|
|
stopTimeout := func() {
|
|
if timeoutTimer == nil {
|
|
return
|
|
}
|
|
if !timeoutTimer.Stop() {
|
|
select {
|
|
case <-timeoutTimer.C:
|
|
default:
|
|
}
|
|
}
|
|
}
|
|
resetTimeout()
|
|
defer stopTimeout()
|
|
|
|
type scanEvent struct {
|
|
line string
|
|
err error
|
|
}
|
|
events := make(chan scanEvent, 16)
|
|
done := make(chan struct{})
|
|
go func() {
|
|
defer close(events)
|
|
for scanner.Scan() {
|
|
select {
|
|
case events <- scanEvent{line: scanner.Text()}:
|
|
case <-done:
|
|
return
|
|
}
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
select {
|
|
case events <- scanEvent{err: err}:
|
|
case <-done:
|
|
}
|
|
}
|
|
}()
|
|
defer close(done)
|
|
|
|
var parser openAICompatSSEFrameParser
|
|
for {
|
|
select {
|
|
case ev, ok := <-events:
|
|
if !ok {
|
|
if frame, ok := parser.Finish(); ok {
|
|
payload := openAICompatPayloadWithEventType(frame.Data, frame.EventType)
|
|
var event apicompat.ResponsesStreamEvent
|
|
if err := json.Unmarshal([]byte(payload), &event); err == nil {
|
|
acc.ProcessEvent(&event)
|
|
if isOpenAICompatResponsesTerminalEvent(event.Type) && event.Response != nil {
|
|
if event.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Usage)
|
|
if event.Response.Usage == nil {
|
|
event.Response.Usage = event.Usage
|
|
}
|
|
}
|
|
if event.Response.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Response.Usage)
|
|
}
|
|
return event.Response, usage, acc, nil
|
|
}
|
|
}
|
|
}
|
|
return nil, usage, acc, nil
|
|
}
|
|
resetTimeout()
|
|
if ev.err != nil {
|
|
if !errors.Is(ev.err, context.Canceled) && !errors.Is(ev.err, context.DeadlineExceeded) {
|
|
logger.L().Warn(logPrefix+": read error",
|
|
zap.Error(ev.err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
}
|
|
return nil, usage, acc, ev.err
|
|
}
|
|
|
|
if isOpenAICompatDoneSentinelLine(ev.line) {
|
|
return nil, usage, acc, nil
|
|
}
|
|
frame, ok := parser.AddLine(ev.line)
|
|
if !ok {
|
|
continue
|
|
}
|
|
payload := openAICompatPayloadWithEventType(frame.Data, frame.EventType)
|
|
|
|
var event apicompat.ResponsesStreamEvent
|
|
if err := json.Unmarshal([]byte(payload), &event); err != nil {
|
|
logger.L().Warn(logPrefix+": failed to parse event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
continue
|
|
}
|
|
|
|
acc.ProcessEvent(&event)
|
|
|
|
if isOpenAICompatResponsesTerminalEvent(event.Type) && event.Response != nil {
|
|
if event.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Usage)
|
|
if event.Response.Usage == nil {
|
|
event.Response.Usage = event.Usage
|
|
}
|
|
}
|
|
if event.Response.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Response.Usage)
|
|
}
|
|
return event.Response, usage, acc, nil
|
|
}
|
|
|
|
case <-timeoutCh:
|
|
_ = resp.Body.Close()
|
|
logger.L().Warn(logPrefix+": data interval timeout",
|
|
zap.String("request_id", requestID),
|
|
zap.Duration("interval", streamInterval),
|
|
)
|
|
return nil, usage, acc, fmt.Errorf("stream data interval timeout")
|
|
}
|
|
}
|
|
}
|
|
|
|
// handleAnthropicStreamingResponse reads Responses SSE events from upstream,
|
|
// converts each to Anthropic SSE events, and writes them to the client.
|
|
// When StreamKeepaliveInterval is configured, it uses a goroutine + channel
|
|
// pattern to send Anthropic ping events during periods of upstream silence,
|
|
// preventing proxy/client timeout disconnections.
|
|
func (s *OpenAIGatewayService) handleAnthropicStreamingResponse(
|
|
resp *http.Response,
|
|
c *gin.Context,
|
|
originalModel string,
|
|
billingModel string,
|
|
upstreamModel string,
|
|
startTime time.Time,
|
|
) (*OpenAIForwardResult, error) {
|
|
requestID := resp.Header.Get("x-request-id")
|
|
|
|
if s.responseHeaderFilter != nil {
|
|
responseheaders.WriteFilteredHeaders(c.Writer.Header(), resp.Header, s.responseHeaderFilter)
|
|
}
|
|
c.Writer.Header().Set("Content-Type", "text/event-stream")
|
|
c.Writer.Header().Set("Cache-Control", "no-cache")
|
|
c.Writer.Header().Set("Connection", "keep-alive")
|
|
c.Writer.Header().Set("X-Accel-Buffering", "no")
|
|
c.Writer.WriteHeader(http.StatusOK)
|
|
|
|
state := apicompat.NewResponsesEventToAnthropicState()
|
|
state.Model = originalModel
|
|
var usage OpenAIUsage
|
|
responseID := ""
|
|
var firstTokenMs *int
|
|
firstChunk := true
|
|
clientDisconnected := false
|
|
|
|
scanner := bufio.NewScanner(resp.Body)
|
|
maxLineSize := defaultMaxLineSize
|
|
if s.cfg != nil && s.cfg.Gateway.MaxLineSize > 0 {
|
|
maxLineSize = s.cfg.Gateway.MaxLineSize
|
|
}
|
|
scanner.Buffer(make([]byte, 0, 64*1024), maxLineSize)
|
|
|
|
streamInterval := time.Duration(0)
|
|
if s.cfg != nil && s.cfg.Gateway.StreamDataIntervalTimeout > 0 {
|
|
streamInterval = time.Duration(s.cfg.Gateway.StreamDataIntervalTimeout) * time.Second
|
|
}
|
|
var intervalTicker *time.Ticker
|
|
if streamInterval > 0 {
|
|
intervalTicker = time.NewTicker(streamInterval)
|
|
defer intervalTicker.Stop()
|
|
}
|
|
var intervalCh <-chan time.Time
|
|
if intervalTicker != nil {
|
|
intervalCh = intervalTicker.C
|
|
}
|
|
|
|
// resultWithUsage builds the final result snapshot.
|
|
resultWithUsage := func() *OpenAIForwardResult {
|
|
return &OpenAIForwardResult{
|
|
RequestID: requestID,
|
|
ResponseID: responseID,
|
|
Usage: usage,
|
|
Model: originalModel,
|
|
BillingModel: billingModel,
|
|
UpstreamModel: upstreamModel,
|
|
Stream: true,
|
|
Duration: time.Since(startTime),
|
|
FirstTokenMs: firstTokenMs,
|
|
}
|
|
}
|
|
|
|
// processDataLine handles a single "data: ..." SSE line from upstream.
|
|
processDataLine := func(payload string) bool {
|
|
if firstChunk {
|
|
firstChunk = false
|
|
ms := int(time.Since(startTime).Milliseconds())
|
|
firstTokenMs = &ms
|
|
}
|
|
|
|
var event apicompat.ResponsesStreamEvent
|
|
if err := json.Unmarshal([]byte(payload), &event); err != nil {
|
|
logger.L().Warn("openai messages stream: failed to parse event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
return false
|
|
}
|
|
|
|
isTerminalEvent := isOpenAICompatResponsesTerminalEvent(event.Type)
|
|
if isTerminalEvent {
|
|
if event.Response != nil {
|
|
if id := strings.TrimSpace(event.Response.ID); id != "" {
|
|
responseID = id
|
|
}
|
|
if event.Response.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Response.Usage)
|
|
}
|
|
}
|
|
if event.Usage != nil {
|
|
usage = copyOpenAIUsageFromResponsesUsage(event.Usage)
|
|
}
|
|
}
|
|
|
|
// Convert to Anthropic events
|
|
events := apicompat.ResponsesEventToAnthropicEvents(&event, state)
|
|
if !clientDisconnected {
|
|
for _, evt := range events {
|
|
sse, err := apicompat.ResponsesAnthropicEventToSSE(evt)
|
|
if err != nil {
|
|
logger.L().Warn("openai messages stream: failed to marshal event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
continue
|
|
}
|
|
if _, err := fmt.Fprint(c.Writer, sse); err != nil {
|
|
clientDisconnected = true
|
|
logger.L().Info("openai messages stream: client disconnected, continuing to drain upstream for billing",
|
|
zap.String("request_id", requestID),
|
|
)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if len(events) > 0 && !clientDisconnected {
|
|
c.Writer.Flush()
|
|
}
|
|
return isTerminalEvent
|
|
}
|
|
|
|
// finalizeStream sends any remaining Anthropic events and returns the result.
|
|
finalizeStream := func() (*OpenAIForwardResult, error) {
|
|
if finalEvents := apicompat.FinalizeResponsesAnthropicStream(state); len(finalEvents) > 0 && !clientDisconnected {
|
|
for _, evt := range finalEvents {
|
|
sse, err := apicompat.ResponsesAnthropicEventToSSE(evt)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
if _, err := fmt.Fprint(c.Writer, sse); err != nil {
|
|
clientDisconnected = true
|
|
logger.L().Info("openai messages stream: client disconnected during final flush",
|
|
zap.String("request_id", requestID),
|
|
)
|
|
break
|
|
}
|
|
}
|
|
if !clientDisconnected {
|
|
c.Writer.Flush()
|
|
}
|
|
}
|
|
return resultWithUsage(), nil
|
|
}
|
|
|
|
// handleScanErr logs scanner errors if meaningful.
|
|
handleScanErr := func(err error) {
|
|
if err != nil && !errors.Is(err, context.Canceled) && !errors.Is(err, context.DeadlineExceeded) {
|
|
logger.L().Warn("openai messages stream: read error",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
}
|
|
}
|
|
missingTerminalErr := func() (*OpenAIForwardResult, error) {
|
|
return resultWithUsage(), fmt.Errorf("stream usage incomplete: missing terminal event")
|
|
}
|
|
processFrame := func(frame openAICompatSSEFrame) bool {
|
|
payload := openAICompatPayloadWithEventType(frame.Data, frame.EventType)
|
|
return processDataLine(payload)
|
|
}
|
|
|
|
// ── Determine keepalive interval ──
|
|
keepaliveInterval := time.Duration(0)
|
|
if s.cfg != nil && s.cfg.Gateway.StreamKeepaliveInterval > 0 {
|
|
keepaliveInterval = time.Duration(s.cfg.Gateway.StreamKeepaliveInterval) * time.Second
|
|
}
|
|
|
|
// ── No keepalive: fast synchronous path (no goroutine overhead) ──
|
|
if streamInterval <= 0 && keepaliveInterval <= 0 {
|
|
var parser openAICompatSSEFrameParser
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if isOpenAICompatDoneSentinelLine(line) {
|
|
return missingTerminalErr()
|
|
}
|
|
frame, ok := parser.AddLine(line)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if processFrame(frame) {
|
|
return finalizeStream()
|
|
}
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
handleScanErr(err)
|
|
return resultWithUsage(), fmt.Errorf("stream usage incomplete: %w", err)
|
|
}
|
|
if frame, ok := parser.Finish(); ok {
|
|
if strings.TrimSpace(frame.Data) == "[DONE]" {
|
|
return missingTerminalErr()
|
|
}
|
|
if processFrame(frame) {
|
|
return finalizeStream()
|
|
}
|
|
}
|
|
return missingTerminalErr()
|
|
}
|
|
|
|
// ── With keepalive: goroutine + channel + select ──
|
|
type scanEvent struct {
|
|
line string
|
|
err error
|
|
}
|
|
events := make(chan scanEvent, 16)
|
|
done := make(chan struct{})
|
|
var lastReadAt int64
|
|
atomic.StoreInt64(&lastReadAt, time.Now().UnixNano())
|
|
sendEvent := func(ev scanEvent) bool {
|
|
select {
|
|
case events <- ev:
|
|
return true
|
|
case <-done:
|
|
return false
|
|
}
|
|
}
|
|
go func() {
|
|
defer close(events)
|
|
for scanner.Scan() {
|
|
atomic.StoreInt64(&lastReadAt, time.Now().UnixNano())
|
|
if !sendEvent(scanEvent{line: scanner.Text()}) {
|
|
return
|
|
}
|
|
}
|
|
if err := scanner.Err(); err != nil {
|
|
_ = sendEvent(scanEvent{err: err})
|
|
}
|
|
}()
|
|
defer close(done)
|
|
|
|
var keepaliveTicker *time.Ticker
|
|
if keepaliveInterval > 0 {
|
|
keepaliveTicker = time.NewTicker(keepaliveInterval)
|
|
defer keepaliveTicker.Stop()
|
|
}
|
|
var keepaliveCh <-chan time.Time
|
|
if keepaliveTicker != nil {
|
|
keepaliveCh = keepaliveTicker.C
|
|
}
|
|
lastDataAt := time.Now()
|
|
var parser openAICompatSSEFrameParser
|
|
|
|
for {
|
|
select {
|
|
case ev, ok := <-events:
|
|
if !ok {
|
|
// Upstream closed
|
|
if frame, ok := parser.Finish(); ok {
|
|
if strings.TrimSpace(frame.Data) == "[DONE]" {
|
|
return missingTerminalErr()
|
|
}
|
|
if processFrame(frame) {
|
|
return finalizeStream()
|
|
}
|
|
}
|
|
return missingTerminalErr()
|
|
}
|
|
if ev.err != nil {
|
|
handleScanErr(ev.err)
|
|
return resultWithUsage(), fmt.Errorf("stream usage incomplete: %w", ev.err)
|
|
}
|
|
lastDataAt = time.Now()
|
|
line := ev.line
|
|
if isOpenAICompatDoneSentinelLine(line) {
|
|
return missingTerminalErr()
|
|
}
|
|
frame, ok := parser.AddLine(line)
|
|
if !ok {
|
|
continue
|
|
}
|
|
if processFrame(frame) {
|
|
return finalizeStream()
|
|
}
|
|
|
|
case <-intervalCh:
|
|
lastRead := time.Unix(0, atomic.LoadInt64(&lastReadAt))
|
|
if time.Since(lastRead) < streamInterval {
|
|
continue
|
|
}
|
|
if clientDisconnected {
|
|
return resultWithUsage(), fmt.Errorf("stream usage incomplete after timeout")
|
|
}
|
|
logger.L().Warn("openai messages stream: data interval timeout",
|
|
zap.String("request_id", requestID),
|
|
zap.String("model", originalModel),
|
|
zap.Duration("interval", streamInterval),
|
|
)
|
|
return resultWithUsage(), fmt.Errorf("stream data interval timeout")
|
|
|
|
case <-keepaliveCh:
|
|
if clientDisconnected {
|
|
continue
|
|
}
|
|
if time.Since(lastDataAt) < keepaliveInterval {
|
|
continue
|
|
}
|
|
// Send Anthropic-format ping event
|
|
if _, err := fmt.Fprint(c.Writer, "event: ping\ndata: {\"type\":\"ping\"}\n\n"); err != nil {
|
|
// Client disconnected
|
|
logger.L().Info("openai messages stream: client disconnected during keepalive",
|
|
zap.String("request_id", requestID),
|
|
)
|
|
clientDisconnected = true
|
|
continue
|
|
}
|
|
c.Writer.Flush()
|
|
}
|
|
}
|
|
}
|
|
|
|
// writeAnthropicError writes an error response in Anthropic Messages API format.
|
|
func writeAnthropicError(c *gin.Context, statusCode int, errType, message string) {
|
|
c.JSON(statusCode, gin.H{
|
|
"type": "error",
|
|
"error": gin.H{
|
|
"type": errType,
|
|
"message": message,
|
|
},
|
|
})
|
|
}
|
|
|
|
func copyOpenAIUsageFromResponsesUsage(usage *apicompat.ResponsesUsage) OpenAIUsage {
|
|
if usage == nil {
|
|
return OpenAIUsage{}
|
|
}
|
|
result := OpenAIUsage{
|
|
InputTokens: usage.InputTokens,
|
|
OutputTokens: usage.OutputTokens,
|
|
}
|
|
if usage.InputTokensDetails != nil {
|
|
result.CacheReadInputTokens = usage.InputTokensDetails.CachedTokens
|
|
}
|
|
return result
|
|
}
|