新增功能: - 新增 TLS 指纹 Profile CRUD 管理(Ent schema + 迁移 + Admin API + 前端管理界面) - 支持账号绑定数据库中的自定义 TLS Profile,或随机选择(profile_id=-1) - HTTPUpstream.DoWithTLS 接口从 bool 改为 *tlsfingerprint.Profile,支持按账号指定 Profile - AccountUsageService 注入 TLSFingerprintProfileService,统一 usage 场景与网关的 Profile 解析逻辑 代码优化: - 删除已被 TLSFingerprintProfileService 完全取代的 registry.go 死代码(418 行) - 提取 3 个 dialer 的重复 TLS 握手逻辑为 performTLSHandshake() 共用函数 - 修复 GetTLSFingerprintProfileID 缺少 json.Number 处理的 bug - gateway_service.Forward 中 ResolveTLSProfile 从重试循环内重复调用改为预解析局部变量 - 删除冗余的 buildClientHelloSpec() 单行 wrapper 和 int64(e.ID) 无效转换 - tls_fingerprint_profile_cache.go 日志从 log.Printf 改为 slog 结构化日志 - dialer_capture_test.go 添加 //go:build integration 标签,防止 CI 失败 - 去重 TestProfileExpectation 类型至共享 test_types_test.go - 修复 9 个测试文件缺少 tlsfingerprint import 的编译错误 - 修复 error_policy_integration_test.go 中 handleError 回调签名被错误替换的问题
519 lines
16 KiB
Go
519 lines
16 KiB
Go
package service
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"strings"
|
|
"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"
|
|
"github.com/tidwall/gjson"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// ForwardAsResponses accepts an OpenAI Responses API request body, converts it
|
|
// to Anthropic Messages format, forwards to the Anthropic upstream, and converts
|
|
// the response back to Responses format. This enables OpenAI Responses API
|
|
// clients to access Anthropic models through Anthropic platform groups.
|
|
//
|
|
// The method follows the same pattern as OpenAIGatewayService.ForwardAsAnthropic
|
|
// but in reverse direction: Responses → Anthropic upstream → Responses.
|
|
func (s *GatewayService) ForwardAsResponses(
|
|
ctx context.Context,
|
|
c *gin.Context,
|
|
account *Account,
|
|
body []byte,
|
|
parsed *ParsedRequest,
|
|
) (*ForwardResult, error) {
|
|
startTime := time.Now()
|
|
|
|
// 1. Parse Responses request
|
|
var responsesReq apicompat.ResponsesRequest
|
|
if err := json.Unmarshal(body, &responsesReq); err != nil {
|
|
return nil, fmt.Errorf("parse responses request: %w", err)
|
|
}
|
|
originalModel := responsesReq.Model
|
|
clientStream := responsesReq.Stream
|
|
|
|
// 2. Convert Responses → Anthropic
|
|
anthropicReq, err := apicompat.ResponsesToAnthropicRequest(&responsesReq)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("convert responses to anthropic: %w", err)
|
|
}
|
|
|
|
// 3. Force upstream streaming (Anthropic works best with streaming)
|
|
anthropicReq.Stream = true
|
|
reqStream := true
|
|
|
|
// 4. Model mapping
|
|
mappedModel := originalModel
|
|
reasoningEffort := ExtractResponsesReasoningEffortFromBody(body)
|
|
if account.Type == AccountTypeAPIKey {
|
|
mappedModel = account.GetMappedModel(originalModel)
|
|
}
|
|
if mappedModel == originalModel && account.Platform == PlatformAnthropic && account.Type != AccountTypeAPIKey {
|
|
normalized := claude.NormalizeModelID(originalModel)
|
|
if normalized != originalModel {
|
|
mappedModel = normalized
|
|
}
|
|
}
|
|
anthropicReq.Model = mappedModel
|
|
|
|
logger.L().Debug("gateway forward_as_responses: model mapping applied",
|
|
zap.Int64("account_id", account.ID),
|
|
zap.String("original_model", originalModel),
|
|
zap.String("mapped_model", mappedModel),
|
|
zap.Bool("client_stream", clientStream),
|
|
)
|
|
|
|
// 5. Marshal Anthropic request body
|
|
anthropicBody, err := json.Marshal(anthropicReq)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("marshal anthropic request: %w", err)
|
|
}
|
|
|
|
// 6. Apply Claude Code mimicry for OAuth accounts (non-Claude-Code endpoints)
|
|
isClaudeCode := false // Responses API is never Claude Code
|
|
shouldMimicClaudeCode := account.IsOAuth() && !isClaudeCode
|
|
|
|
if shouldMimicClaudeCode {
|
|
if !strings.Contains(strings.ToLower(mappedModel), "haiku") &&
|
|
!systemIncludesClaudeCodePrompt(anthropicReq.System) {
|
|
anthropicBody = injectClaudeCodePrompt(anthropicBody, anthropicReq.System)
|
|
}
|
|
}
|
|
|
|
// 7. Enforce cache_control block limit
|
|
anthropicBody = enforceCacheControlLimit(anthropicBody)
|
|
|
|
// 8. Get access token
|
|
token, tokenType, err := s.GetAccessToken(ctx, account)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("get access token: %w", err)
|
|
}
|
|
|
|
// 9. Get proxy URL
|
|
proxyURL := ""
|
|
if account.ProxyID != nil && account.Proxy != nil {
|
|
proxyURL = account.Proxy.URL()
|
|
}
|
|
|
|
// 10. Build upstream request
|
|
upstreamCtx, releaseUpstreamCtx := detachStreamUpstreamContext(ctx, reqStream)
|
|
upstreamReq, err := s.buildUpstreamRequest(upstreamCtx, c, account, anthropicBody, token, tokenType, mappedModel, reqStream, shouldMimicClaudeCode)
|
|
releaseUpstreamCtx()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("build upstream request: %w", err)
|
|
}
|
|
|
|
// 11. Send request
|
|
resp, err := s.httpUpstream.DoWithTLS(upstreamReq, proxyURL, account.ID, account.Concurrency, s.tlsFPProfileService.ResolveTLSProfile(account))
|
|
if err != nil {
|
|
if resp != nil && resp.Body != nil {
|
|
_ = resp.Body.Close()
|
|
}
|
|
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,
|
|
})
|
|
writeResponsesError(c, http.StatusBadGateway, "server_error", "Upstream request failed")
|
|
return nil, fmt.Errorf("upstream request failed: %s", safeErr)
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
// 12. 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 s.shouldFailoverUpstreamError(resp.StatusCode) {
|
|
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,
|
|
})
|
|
if s.rateLimitService != nil {
|
|
s.rateLimitService.HandleUpstreamError(ctx, account, resp.StatusCode, resp.Header, respBody)
|
|
}
|
|
return nil, &UpstreamFailoverError{
|
|
StatusCode: resp.StatusCode,
|
|
ResponseBody: respBody,
|
|
}
|
|
}
|
|
|
|
// Non-failover error: return Responses-formatted error to client
|
|
writeResponsesError(c, mapUpstreamStatusCode(resp.StatusCode), "server_error", upstreamMsg)
|
|
return nil, fmt.Errorf("upstream error: %d %s", resp.StatusCode, upstreamMsg)
|
|
}
|
|
|
|
// 13. Handle normal response (convert Anthropic → Responses)
|
|
var result *ForwardResult
|
|
var handleErr error
|
|
if clientStream {
|
|
result, handleErr = s.handleResponsesStreamingResponse(resp, c, originalModel, mappedModel, reasoningEffort, startTime)
|
|
} else {
|
|
result, handleErr = s.handleResponsesBufferedStreamingResponse(resp, c, originalModel, mappedModel, reasoningEffort, startTime)
|
|
}
|
|
|
|
return result, handleErr
|
|
}
|
|
|
|
// ExtractResponsesReasoningEffortFromBody reads Responses API reasoning.effort
|
|
// and normalizes it for usage logging.
|
|
func ExtractResponsesReasoningEffortFromBody(body []byte) *string {
|
|
raw := strings.TrimSpace(gjson.GetBytes(body, "reasoning.effort").String())
|
|
if raw == "" {
|
|
return nil
|
|
}
|
|
normalized := normalizeOpenAIReasoningEffort(raw)
|
|
if normalized == "" {
|
|
return nil
|
|
}
|
|
return &normalized
|
|
}
|
|
|
|
func mergeAnthropicUsage(dst *ClaudeUsage, src apicompat.AnthropicUsage) {
|
|
if dst == nil {
|
|
return
|
|
}
|
|
if src.InputTokens > 0 {
|
|
dst.InputTokens = src.InputTokens
|
|
}
|
|
if src.OutputTokens > 0 {
|
|
dst.OutputTokens = src.OutputTokens
|
|
}
|
|
if src.CacheReadInputTokens > 0 {
|
|
dst.CacheReadInputTokens = src.CacheReadInputTokens
|
|
}
|
|
if src.CacheCreationInputTokens > 0 {
|
|
dst.CacheCreationInputTokens = src.CacheCreationInputTokens
|
|
}
|
|
}
|
|
|
|
// handleResponsesBufferedStreamingResponse reads all Anthropic SSE events from
|
|
// the upstream streaming response, assembles them into a complete Anthropic
|
|
// response, converts to Responses API JSON format, and writes it to the client.
|
|
func (s *GatewayService) handleResponsesBufferedStreamingResponse(
|
|
resp *http.Response,
|
|
c *gin.Context,
|
|
originalModel string,
|
|
mappedModel string,
|
|
reasoningEffort *string,
|
|
startTime time.Time,
|
|
) (*ForwardResult, error) {
|
|
requestID := resp.Header.Get("x-request-id")
|
|
|
|
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)
|
|
|
|
// Accumulate the final Anthropic response from streaming events
|
|
var finalResp *apicompat.AnthropicResponse
|
|
var usage ClaudeUsage
|
|
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if !strings.HasPrefix(line, "event: ") {
|
|
continue
|
|
}
|
|
eventType := strings.TrimPrefix(line, "event: ")
|
|
|
|
// Read the data line
|
|
if !scanner.Scan() {
|
|
break
|
|
}
|
|
dataLine := scanner.Text()
|
|
if !strings.HasPrefix(dataLine, "data: ") {
|
|
continue
|
|
}
|
|
payload := dataLine[6:]
|
|
|
|
var event apicompat.AnthropicStreamEvent
|
|
if err := json.Unmarshal([]byte(payload), &event); err != nil {
|
|
logger.L().Warn("forward_as_responses buffered: failed to parse event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
zap.String("event_type", eventType),
|
|
)
|
|
continue
|
|
}
|
|
|
|
// message_start carries the initial response structure
|
|
if event.Type == "message_start" && event.Message != nil {
|
|
finalResp = event.Message
|
|
mergeAnthropicUsage(&usage, event.Message.Usage)
|
|
}
|
|
|
|
// message_delta carries final usage and stop_reason
|
|
if event.Type == "message_delta" {
|
|
if event.Usage != nil {
|
|
mergeAnthropicUsage(&usage, *event.Usage)
|
|
}
|
|
if event.Delta != nil && event.Delta.StopReason != "" && finalResp != nil {
|
|
finalResp.StopReason = event.Delta.StopReason
|
|
}
|
|
}
|
|
|
|
// Accumulate content blocks
|
|
if event.Type == "content_block_start" && event.ContentBlock != nil && finalResp != nil {
|
|
finalResp.Content = append(finalResp.Content, *event.ContentBlock)
|
|
}
|
|
if event.Type == "content_block_delta" && event.Delta != nil && finalResp != nil && event.Index != nil {
|
|
idx := *event.Index
|
|
if idx < len(finalResp.Content) {
|
|
switch event.Delta.Type {
|
|
case "text_delta":
|
|
finalResp.Content[idx].Text += event.Delta.Text
|
|
case "thinking_delta":
|
|
finalResp.Content[idx].Thinking += event.Delta.Thinking
|
|
case "input_json_delta":
|
|
finalResp.Content[idx].Input = appendRawJSON(finalResp.Content[idx].Input, event.Delta.PartialJSON)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
if !errors.Is(err, context.Canceled) && !errors.Is(err, context.DeadlineExceeded) {
|
|
logger.L().Warn("forward_as_responses buffered: read error",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
}
|
|
}
|
|
|
|
if finalResp == nil {
|
|
writeResponsesError(c, http.StatusBadGateway, "server_error", "Upstream stream ended without a response")
|
|
return nil, fmt.Errorf("upstream stream ended without response")
|
|
}
|
|
|
|
// Update usage from accumulated delta
|
|
if usage.InputTokens > 0 || usage.OutputTokens > 0 {
|
|
finalResp.Usage = apicompat.AnthropicUsage{
|
|
InputTokens: usage.InputTokens,
|
|
OutputTokens: usage.OutputTokens,
|
|
CacheCreationInputTokens: usage.CacheCreationInputTokens,
|
|
CacheReadInputTokens: usage.CacheReadInputTokens,
|
|
}
|
|
}
|
|
|
|
// Convert to Responses format
|
|
responsesResp := apicompat.AnthropicToResponsesResponse(finalResp)
|
|
responsesResp.Model = originalModel // Use original model name
|
|
|
|
if s.responseHeaderFilter != nil {
|
|
responseheaders.WriteFilteredHeaders(c.Writer.Header(), resp.Header, s.responseHeaderFilter)
|
|
}
|
|
c.JSON(http.StatusOK, responsesResp)
|
|
|
|
return &ForwardResult{
|
|
RequestID: requestID,
|
|
Usage: usage,
|
|
Model: originalModel,
|
|
UpstreamModel: mappedModel,
|
|
ReasoningEffort: reasoningEffort,
|
|
Stream: false,
|
|
Duration: time.Since(startTime),
|
|
}, nil
|
|
}
|
|
|
|
// handleResponsesStreamingResponse reads Anthropic SSE events from upstream,
|
|
// converts each to Responses SSE events, and writes them to the client.
|
|
func (s *GatewayService) handleResponsesStreamingResponse(
|
|
resp *http.Response,
|
|
c *gin.Context,
|
|
originalModel string,
|
|
mappedModel string,
|
|
reasoningEffort *string,
|
|
startTime time.Time,
|
|
) (*ForwardResult, 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.NewAnthropicEventToResponsesState()
|
|
state.Model = originalModel
|
|
var usage ClaudeUsage
|
|
var firstTokenMs *int
|
|
firstChunk := true
|
|
|
|
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)
|
|
|
|
resultWithUsage := func() *ForwardResult {
|
|
return &ForwardResult{
|
|
RequestID: requestID,
|
|
Usage: usage,
|
|
Model: originalModel,
|
|
UpstreamModel: mappedModel,
|
|
ReasoningEffort: reasoningEffort,
|
|
Stream: true,
|
|
Duration: time.Since(startTime),
|
|
FirstTokenMs: firstTokenMs,
|
|
}
|
|
}
|
|
|
|
// processEvent handles a single parsed Anthropic SSE event.
|
|
processEvent := func(event *apicompat.AnthropicStreamEvent) bool {
|
|
if firstChunk {
|
|
firstChunk = false
|
|
ms := int(time.Since(startTime).Milliseconds())
|
|
firstTokenMs = &ms
|
|
}
|
|
|
|
// Extract usage from message_delta
|
|
if event.Type == "message_delta" && event.Usage != nil {
|
|
mergeAnthropicUsage(&usage, *event.Usage)
|
|
}
|
|
// Also capture usage from message_start
|
|
if event.Type == "message_start" && event.Message != nil {
|
|
mergeAnthropicUsage(&usage, event.Message.Usage)
|
|
}
|
|
|
|
// Convert to Responses events
|
|
events := apicompat.AnthropicEventToResponsesEvents(event, state)
|
|
for _, evt := range events {
|
|
sse, err := apicompat.ResponsesEventToSSE(evt)
|
|
if err != nil {
|
|
logger.L().Warn("forward_as_responses stream: failed to marshal event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
continue
|
|
}
|
|
if _, err := fmt.Fprint(c.Writer, sse); err != nil {
|
|
logger.L().Info("forward_as_responses stream: client disconnected",
|
|
zap.String("request_id", requestID),
|
|
)
|
|
return true // client disconnected
|
|
}
|
|
}
|
|
if len(events) > 0 {
|
|
c.Writer.Flush()
|
|
}
|
|
return false
|
|
}
|
|
|
|
finalizeStream := func() (*ForwardResult, error) {
|
|
if finalEvents := apicompat.FinalizeAnthropicResponsesStream(state); len(finalEvents) > 0 {
|
|
for _, evt := range finalEvents {
|
|
sse, err := apicompat.ResponsesEventToSSE(evt)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
fmt.Fprint(c.Writer, sse) //nolint:errcheck
|
|
}
|
|
c.Writer.Flush()
|
|
}
|
|
return resultWithUsage(), nil
|
|
}
|
|
|
|
// Read Anthropic SSE events
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if !strings.HasPrefix(line, "event: ") {
|
|
continue
|
|
}
|
|
eventType := strings.TrimPrefix(line, "event: ")
|
|
|
|
// Read data line
|
|
if !scanner.Scan() {
|
|
break
|
|
}
|
|
dataLine := scanner.Text()
|
|
if !strings.HasPrefix(dataLine, "data: ") {
|
|
continue
|
|
}
|
|
payload := dataLine[6:]
|
|
|
|
var event apicompat.AnthropicStreamEvent
|
|
if err := json.Unmarshal([]byte(payload), &event); err != nil {
|
|
logger.L().Warn("forward_as_responses stream: failed to parse event",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
zap.String("event_type", eventType),
|
|
)
|
|
continue
|
|
}
|
|
|
|
if processEvent(&event) {
|
|
return resultWithUsage(), nil
|
|
}
|
|
}
|
|
|
|
if err := scanner.Err(); err != nil {
|
|
if !errors.Is(err, context.Canceled) && !errors.Is(err, context.DeadlineExceeded) {
|
|
logger.L().Warn("forward_as_responses stream: read error",
|
|
zap.Error(err),
|
|
zap.String("request_id", requestID),
|
|
)
|
|
}
|
|
}
|
|
|
|
return finalizeStream()
|
|
}
|
|
|
|
// appendRawJSON appends a JSON fragment string to existing raw JSON.
|
|
func appendRawJSON(existing json.RawMessage, fragment string) json.RawMessage {
|
|
if len(existing) == 0 {
|
|
return json.RawMessage(fragment)
|
|
}
|
|
return json.RawMessage(string(existing) + fragment)
|
|
}
|
|
|
|
// writeResponsesError writes an error response in OpenAI Responses API format.
|
|
func writeResponsesError(c *gin.Context, statusCode int, code, message string) {
|
|
c.JSON(statusCode, gin.H{
|
|
"error": gin.H{
|
|
"code": code,
|
|
"message": message,
|
|
},
|
|
})
|
|
}
|
|
|
|
// mapUpstreamStatusCode maps upstream HTTP status codes to appropriate client-facing codes.
|
|
func mapUpstreamStatusCode(code int) int {
|
|
if code >= 500 {
|
|
return http.StatusBadGateway
|
|
}
|
|
return code
|
|
}
|