Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
315 lines
9.9 KiB
Go
315 lines
9.9 KiB
Go
package service
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"sync/atomic"
|
|
"time"
|
|
|
|
coderws "github.com/coder/websocket"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
// supportedGrokVoiceHTTPEndpoints are xAI Voice HTTP paths we forward as-is.
|
|
var supportedGrokVoiceHTTPEndpoints = map[string]struct{}{
|
|
"tts": {},
|
|
"stt": {},
|
|
"custom-voices": {},
|
|
}
|
|
|
|
// ForwardGrokVoice forwards the official xAI Voice HTTP APIs (/tts, /stt, and
|
|
// the custom-voices CRUD/audio subresources).
|
|
// The response is intentionally passed through because TTS returns audio bytes
|
|
// while STT returns JSON and xAI may add format-specific headers.
|
|
func (s *OpenAIGatewayService) ForwardGrokVoice(ctx context.Context, c *gin.Context, account *Account, endpoint string, body []byte, contentType string) (*OpenAIForwardResult, error) {
|
|
if s == nil || account == nil {
|
|
return nil, fmt.Errorf("grok voice service/account is required")
|
|
}
|
|
if account.Platform != PlatformGrok {
|
|
return nil, fmt.Errorf("account platform %s is not supported for grok voice", account.Platform)
|
|
}
|
|
endpoint = strings.Trim(strings.TrimSpace(endpoint), "/")
|
|
parts := strings.Split(endpoint, "/")
|
|
baseEndpoint := parts[0]
|
|
if _, ok := supportedGrokVoiceHTTPEndpoints[baseEndpoint]; !ok {
|
|
return nil, fmt.Errorf("unsupported grok voice endpoint: %s", endpoint)
|
|
}
|
|
if len(parts) > 1 && baseEndpoint != "custom-voices" {
|
|
return nil, fmt.Errorf("unsupported grok voice endpoint: %s", endpoint)
|
|
}
|
|
if baseEndpoint == "custom-voices" {
|
|
if len(parts) > 3 || (len(parts) == 3 && parts[2] != "audio") {
|
|
return nil, fmt.Errorf("unsupported grok voice endpoint: %s", endpoint)
|
|
}
|
|
}
|
|
for _, part := range parts[1:] {
|
|
if part == "" || part == "." || part == ".." || strings.ContainsAny(part, "?#\\") {
|
|
return nil, fmt.Errorf("invalid grok voice endpoint path")
|
|
}
|
|
}
|
|
token, _, err := s.getRequestCredential(ctx, c, account)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
targetURL, err := buildGrokVoiceURL(account, s.cfg, endpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
upstreamCtx, release := detachUpstreamContext(ctx)
|
|
defer release()
|
|
method := http.MethodPost
|
|
if c != nil && c.Request != nil && strings.TrimSpace(c.Request.Method) != "" {
|
|
method = c.Request.Method
|
|
}
|
|
req, err := http.NewRequestWithContext(upstreamCtx, method, targetURL, bytes.NewReader(body))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
req.Header.Set("Authorization", "Bearer "+token)
|
|
req.Header.Set("Accept", "application/json, audio/*")
|
|
if strings.TrimSpace(contentType) == "" {
|
|
contentType = "application/json"
|
|
}
|
|
req.Header.Set("Content-Type", contentType)
|
|
// Match media path: CLI identity headers only on the CLI chat proxy.
|
|
// Official api.x.ai voice rejects or mistreats OAuth when CLI headers are stamped.
|
|
if account.IsGrokOAuth() && isGrokCLIProxyTarget(targetURL) {
|
|
applyGrokCLIHeaders(req.Header)
|
|
}
|
|
account.ApplyHeaderOverrides(req.Header)
|
|
|
|
proxyURL := ""
|
|
if account.ProxyID != nil && account.Proxy != nil {
|
|
proxyURL = account.Proxy.URL()
|
|
}
|
|
started := time.Now()
|
|
resp, err := s.httpUpstream.Do(req, proxyURL, account.ID, account.Concurrency)
|
|
SetOpsLatencyMs(c, OpsUpstreamLatencyMsKey, time.Since(started).Milliseconds())
|
|
if err != nil {
|
|
return nil, s.handleOpenAIUpstreamTransportError(ctx, c, account, err, false)
|
|
}
|
|
defer func() { _ = resp.Body.Close() }()
|
|
if resp.StatusCode >= 400 {
|
|
return s.handleGrokMediaErrorResponse(ctx, resp, c, account, resp.Header.Get("x-request-id"), endpoint)
|
|
}
|
|
data, err := ReadUpstreamResponseBody(resp.Body, s.cfg, c, openAITooLargeError)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
writeGrokMediaResponse(c, resp, data, s.responseHeaderFilter)
|
|
audioUsage := estimateGrokVoiceAudioUsage(baseEndpoint, body, contentType, data, time.Since(started))
|
|
upstreamID := firstNonEmpty(resp.Header.Get("x-request-id"), resp.Header.Get("xai-request-id"))
|
|
return &OpenAIForwardResult{
|
|
// Forced durable money-event id so usage_billing_dedup cannot collapse under a reused client id.
|
|
RequestID: StableGrokAudioBillingRequestID(upstreamID),
|
|
Model: baseEndpoint,
|
|
UpstreamModel: baseEndpoint,
|
|
Duration: time.Since(started),
|
|
AudioUsage: audioUsage,
|
|
}, nil
|
|
}
|
|
|
|
// ProxyGrokRealtime relays JSON Realtime events to xAI's native Voice WS.
|
|
// Audio is carried as base64 inside JSON events, so preserving the JSON bytes
|
|
// is sufficient and avoids translating protocol event types.
|
|
func (s *OpenAIGatewayService) ProxyGrokRealtime(ctx context.Context, c *gin.Context, client *coderws.Conn, account *Account, token, model string) (bool, error) {
|
|
if s == nil || client == nil || account == nil {
|
|
return false, fmt.Errorf("realtime service, client, and account are required")
|
|
}
|
|
if account.Platform != PlatformGrok {
|
|
return false, fmt.Errorf("account platform %s is not supported for grok realtime", account.Platform)
|
|
}
|
|
base, err := buildGrokVoiceURL(account, s.cfg, "realtime")
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
u, err := url.Parse(base)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
u.Scheme = "wss"
|
|
u.RawQuery = "model=" + url.QueryEscape(firstNonEmpty(model, "grok-voice-latest"))
|
|
headers := http.Header{"Authorization": []string{"Bearer " + token}}
|
|
// Match media/voice HTTP: CLI headers only on CLI proxy hosts.
|
|
if account.IsGrokOAuth() && isGrokCLIProxyTarget(u.String()) {
|
|
applyGrokCLIHeaders(headers)
|
|
}
|
|
if account != nil {
|
|
account.ApplyHeaderOverrides(headers)
|
|
}
|
|
|
|
dialer := s.getOpenAIWSPassthroughDialer()
|
|
proxyURL := ""
|
|
if account.ProxyID != nil && account.Proxy != nil {
|
|
proxyURL = account.Proxy.URL()
|
|
}
|
|
upstream, _, _, err := dialer.Dial(ctx, u.String(), headers, proxyURL)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
defer func() { _ = upstream.Close() }()
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
defer cancel()
|
|
errCh := make(chan error, 2)
|
|
var audioObserved atomic.Bool
|
|
|
|
// Upstream → client
|
|
go func() {
|
|
for {
|
|
msg, readErr := upstream.ReadMessage(ctx)
|
|
if readErr != nil {
|
|
errCh <- readErr
|
|
return
|
|
}
|
|
if grokRealtimeEventHasAudio(msg) {
|
|
audioObserved.Store(true)
|
|
}
|
|
if writeErr := client.Write(ctx, coderws.MessageText, msg); writeErr != nil {
|
|
errCh <- writeErr
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
// Client → upstream (JSON events only)
|
|
go func() {
|
|
for {
|
|
kind, msg, readErr := client.Read(ctx)
|
|
if readErr != nil {
|
|
errCh <- readErr
|
|
return
|
|
}
|
|
if kind != coderws.MessageText && kind != coderws.MessageBinary {
|
|
continue
|
|
}
|
|
if grokRealtimeEventHasAudio(msg) {
|
|
audioObserved.Store(true)
|
|
}
|
|
var raw json.RawMessage
|
|
if unmarshalErr := json.Unmarshal(msg, &raw); unmarshalErr != nil {
|
|
errCh <- fmt.Errorf("invalid realtime event: %w", unmarshalErr)
|
|
return
|
|
}
|
|
if writeErr := upstream.WriteJSON(ctx, raw); writeErr != nil {
|
|
errCh <- writeErr
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
return awaitGrokRealtimeAudioObserved(errCh, &audioObserved)
|
|
}
|
|
|
|
func awaitGrokRealtimeAudioObserved(errCh <-chan error, audioObserved *atomic.Bool) (bool, error) {
|
|
err := <-errCh
|
|
if audioObserved == nil {
|
|
return false, err
|
|
}
|
|
return audioObserved.Load(), err
|
|
}
|
|
|
|
func grokRealtimeEventHasAudio(msg []byte) bool {
|
|
if !gjson.ValidBytes(msg) {
|
|
return false
|
|
}
|
|
eventType := strings.ToLower(strings.TrimSpace(gjson.GetBytes(msg, "type").String()))
|
|
if !strings.Contains(eventType, "audio") || strings.Contains(eventType, "transcript") {
|
|
return false
|
|
}
|
|
for _, path := range []string{"audio", "delta", "data"} {
|
|
value := gjson.GetBytes(msg, path)
|
|
if value.Type == gjson.String && strings.TrimSpace(value.String()) != "" {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// estimateGrokVoiceAudioUsage derives billing units from the request/response.
|
|
// TTS: million characters of input text; STT: hours approximated from request body size
|
|
// when duration is unknown; custom-voices: no units (nil).
|
|
func estimateGrokVoiceAudioUsage(endpoint string, reqBody []byte, contentType string, respBody []byte, elapsed time.Duration) *AudioUsage {
|
|
switch strings.TrimSpace(endpoint) {
|
|
case "tts":
|
|
// Prefer JSON "input" / "text" fields; fallback to raw body length.
|
|
chars := 0
|
|
if gjson.ValidBytes(reqBody) {
|
|
for _, key := range []string{"input", "text", "prompt"} {
|
|
if s := strings.TrimSpace(gjson.GetBytes(reqBody, key).String()); s != "" {
|
|
chars = len([]rune(s))
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if chars <= 0 {
|
|
chars = len(reqBody)
|
|
}
|
|
if chars <= 0 {
|
|
return nil
|
|
}
|
|
return &AudioUsage{Mode: "tts", DurationOrUnits: float64(chars) / 1_000_000.0}
|
|
case "stt":
|
|
// Prefer response duration when present; do not trust client duration_seconds alone
|
|
// (under-report would underbill). Floor against body-size heuristic and elapsed.
|
|
secs := 0.0
|
|
if gjson.ValidBytes(respBody) {
|
|
for _, path := range []string{"duration", "duration_seconds", "audio_duration", "usage.seconds"} {
|
|
if v := gjson.GetBytes(respBody, path); v.Exists() && v.Type == gjson.Number && v.Float() > 0 {
|
|
secs = v.Float()
|
|
break
|
|
}
|
|
}
|
|
}
|
|
// Multipart / body size heuristic: ~16KB/s for compressed speech (lower bound).
|
|
sizeFloor := 0.0
|
|
if len(reqBody) > 0 {
|
|
sizeFloor = float64(len(reqBody)) / 16000.0
|
|
}
|
|
clientSecs := 0.0
|
|
if gjson.ValidBytes(reqBody) {
|
|
if v := gjson.GetBytes(reqBody, "duration_seconds"); v.Exists() && v.Type == gjson.Number {
|
|
clientSecs = v.Float()
|
|
}
|
|
}
|
|
if secs <= 0 {
|
|
secs = elapsed.Seconds()
|
|
}
|
|
if secs <= 0 {
|
|
secs = clientSecs
|
|
}
|
|
if secs <= 0 {
|
|
secs = sizeFloor
|
|
}
|
|
// Cap untrusted client under-report: if client duration is much smaller than
|
|
// size/elapsed floors, bill the larger of floors (anti underbill).
|
|
if clientSecs > 0 && secs == clientSecs {
|
|
floor := sizeFloor
|
|
if elapsed.Seconds() > floor {
|
|
floor = elapsed.Seconds()
|
|
}
|
|
if floor > 0 && clientSecs < floor*0.5 {
|
|
secs = floor
|
|
}
|
|
}
|
|
if secs <= 0 {
|
|
return nil
|
|
}
|
|
return &AudioUsage{Mode: "stt", DurationOrUnits: secs / 3600.0}
|
|
case "realtime":
|
|
mins := elapsed.Minutes()
|
|
if mins <= 0 {
|
|
return nil
|
|
}
|
|
return &AudioUsage{Mode: "realtime", DurationOrUnits: mins}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|