File size: 11,775 Bytes
6bc074c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | package handler
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"os"
"strings"
"time"
"aurora/httpclient/bogdanfinn"
"aurora/internal/accounts"
"aurora/internal/chatgpt"
"aurora/internal/config"
chatgpt_types "aurora/typings/chatgpt"
officialtypes "aurora/typings/official"
"aurora/util"
fhttp "github.com/bogdanfinn/fhttp"
"github.com/bogdanfinn/websocket"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)
var ErrNoAvailable = errors.New("no available account of the requested type")
func respondError(c *gin.Context, status int, err error) {
c.JSON(status, gin.H{"error": gin.H{
"message": err.Error(),
"type": "invalid_request_error",
"param": nil,
"code": http.StatusText(status),
}})
}
// resolveAccount 从请求 Authorization header 解析账号
// 替代旧的 secretFromAuthorization + accessTokenFromRefreshToken
// 返回 (account, http_status, error)
func resolveAccount(c *gin.Context, pool *accounts.Pool, cfg *config.Config, needsPaid bool) (*accounts.Account, int, error) {
authHeader := c.GetHeader("Authorization")
// 提取 Bearer token
payload := strings.TrimSpace(authHeader)
if len(payload) >= 7 && strings.EqualFold(payload[:7], "Bearer ") {
payload = strings.TrimSpace(payload[7:])
}
parts := strings.SplitN(payload, ",", 2)
token := strings.TrimSpace(parts[0])
teamAccountID := ""
if len(parts) > 1 {
teamAccountID = strings.TrimSpace(parts[1])
}
// 补充检查专用 header: ChatGPT-Account-ID, Team-Account-ID 等
for _, header := range []string{"ChatGPT-Account-ID", "Chatgpt-Account-Id", "Team-Account-ID", "X-ChatGPT-Account-ID"} {
if value := strings.TrimSpace(c.GetHeader(header)); value != "" {
teamAccountID = value
break
}
}
expected := cfg.Authorization
// 无 token 或匹配全局密钥 → 先尝试 free,再 fallback 到 noauth
if token == "" || (expected != "" && token == expected) {
acct, err := pool.Acquire(accounts.TypeFree)
if err != nil || acct == nil {
// free 池空时(无 session/access/refresh token 账号),fallback 到 noauth(UUID 设备)
acct, err = pool.Acquire(accounts.TypeNoAuth)
}
if err != nil || acct == nil {
return nil, http.StatusUnauthorized, ErrNoAvailable
}
if needsPaid && acct.Type == accounts.TypeNoAuth {
return nil, http.StatusForbidden, errors.New("this endpoint requires a logged-in ChatGPT account")
}
return acct, http.StatusOK, nil
}
// access_token (JWT) → 创建/复用临时账号 (受 ENABLE_EXTERNAL_TOKEN 控制)
if strings.HasPrefix(token, "eyJ") {
if !cfg.EnableExternalToken {
return nil, http.StatusUnauthorized, errors.New("external access token disabled (set ENABLE_EXTERNAL_TOKEN=true)")
}
userAgent := c.GetHeader("User-Agent")
proxyURL := cfg.ProxyURL
if proxyURL == "" {
proxyURL = cfg.HTTPProxy
}
acct := pool.GetOrCreateTempAccount(token, userAgent, proxyURL)
acct.TeamUserID = teamAccountID
return acct, http.StatusOK, nil
}
// UUID → noauth 账号
if _, err := uuid.Parse(token); err == nil {
if needsPaid {
return nil, http.StatusForbidden, errors.New("this endpoint requires a paid ChatGPT account")
}
acct := accounts.NewAccount(token, accounts.TypeNoAuth, token)
if err := acct.InitClient(); err != nil {
return nil, http.StatusInternalServerError, err
}
acct.Status = accounts.StatusActive
return acct, http.StatusOK, nil
}
// refresh_token → 换 access_token
if teamAccountID != "" || len(token) > 64 {
client := bogdanfinn.NewStdClient()
result, status, err := chatgpt.GETTokenForRefreshToken(client, token, cfg.ProxyURL)
if err != nil {
return nil, status, err
}
if data, ok := result.(map[string]interface{}); ok {
if accessToken, ok := data["access_token"].(string); ok && accessToken != "" {
acct := accounts.NewAccount(accessToken, accounts.TypeFree, accessToken)
acct.TeamUserID = teamAccountID
acct.Proxy = cfg.ProxyURL
acct.RefreshToken = token
if err := acct.InitClient(); err != nil {
return nil, http.StatusInternalServerError, err
}
acct.Status = accounts.StatusActive
return acct, http.StatusOK, nil
}
}
return nil, http.StatusBadRequest, errors.New("refresh token response did not include access_token")
}
// 兜底:从池里取
acct, err := pool.Acquire(accounts.TypeFree)
if err != nil {
return nil, http.StatusUnauthorized, ErrNoAvailable
}
if needsPaid && acct.Type == accounts.TypeNoAuth {
return nil, http.StatusForbidden, errors.New("this endpoint requires a logged-in ChatGPT account")
}
acct.LastUsed = time.Now()
return acct, http.StatusOK, nil
}
// conversationClientOrder 执行标准的 conversation 流程:
// sentinel → init → ws → prepare → POST
//
// 对齐 initialize/handlers.go:postConversationGptClientOrder
// pool 参数用于在 sentinel 401 时标记账号不可用
func conversationClientOrder(client **bogdanfinn.TlsClient, account *accounts.Account, translatedRequest chatgpt_types.ChatGPTRequest, proxyUrl string, stream bool, state *chatgpt.ChatClientState, pool *accounts.Pool) (*http.Response, *websocket.Conn, *chatgpt.TurnStile, int, error) {
if state != nil {
state.ApplyToRequest(&translatedRequest)
}
turnTraceID := uuid.NewString()
(*client).SetCookies("https://chatgpt.com", chatgpt.BasicCookies)
turnStile, status, err := chatgpt.InitSentinelWithState(*client, account, proxyUrl, 0, state)
if err != nil {
// sentinel 401 说明 token 可能过期,标记账号让 pool 后续绕过
if status == http.StatusUnauthorized && pool != nil {
pool.ReportFailure(account)
}
return nil, nil, nil, status, err
}
chatgpt.POSTConversationInit(*client, account, state)
var wsConn *websocket.Conn
if chatgpt.RequiresConversationWebsocket(stream, translatedRequest.ThinkingEffort) && account.Type.Satisfies(accounts.CapWebSocket) {
wsConn, err = chatgpt.DialChatWebsocketWithStateAndProxy(*client, account, state, proxyUrl)
if err != nil {
return nil, nil, nil, http.StatusInternalServerError, err
}
}
conduitToken, err := chatgpt.PrepareConversationConduitFullWithSentinel(*client, translatedRequest, account, proxyUrl, turnTraceID, state, turnStile)
if err != nil {
if wsConn != nil {
wsConn.Close()
}
return nil, nil, nil, http.StatusInternalServerError, err
}
response, err := chatgpt.POSTconversationPreparedWithState(*client, translatedRequest, account, turnStile, proxyUrl, conduitToken, turnTraceID, state)
if err != nil {
if wsConn != nil {
wsConn.Close()
}
return nil, nil, nil, http.StatusInternalServerError, err
}
return response, wsConn, turnStile, http.StatusOK, nil
}
// setupClientWithProxy 创建带代理的 std client
func setupClientWithProxy(proxyUrl string) *bogdanfinn.TlsClient {
client := bogdanfinn.NewStdClient()
if proxyUrl != "" {
_ = client.SetProxy(proxyUrl)
}
return client
}
// websocketProxyFunc 为 WebSocket 连接配置代理(从原 request.go 复制)
func websocketProxyFunc(proxy string) (func(*fhttp.Request) (*url.URL, error), error) {
if proxy == "" {
return fhttp.ProxyFromEnvironment, nil
}
proxyURL, err := url.Parse(proxy)
if err != nil {
return nil, err
}
return fhttp.ProxyURL(proxyURL), nil
}
// original_requestHasFiles 检查请求消息中是否包含文件引用
func original_requestHasFiles(request officialtypes.APIRequest) bool {
for _, message := range request.Messages {
if len(message.Files()) > 0 {
return true
}
}
return false
}
// toolCallingEnabled 根据 Config + Tools 列表判定是否启用工具调用模拟。
func toolCallingEnabled(tools []officialtypes.Tool, cfg *config.Config) bool {
if cfg != nil && !cfg.ToolCallingEnabled {
return false
}
return len(tools) > 0
}
// countMessagesTokens 统计消息的 token 数
func countMessagesTokens(messages []officialtypes.APIMessage) int {
total := 0
for _, message := range messages {
total += util.CountToken(message.Text())
}
return total
}
// writeChatCompletionStreamDone 写入流式结束标记
func writeChatCompletionStreamDone(c *gin.Context, stopSent bool, model string, conversationID string) {
if !stopSent {
finalLine := officialtypes.StopChunkWithConversation("stop", model, conversationID)
c.Writer.WriteString("data: " + finalLine.String() + "\n\n")
c.Writer.Flush()
}
c.Writer.WriteString("data: [DONE]\n\n")
c.Writer.Flush()
}
// looksLikeSandboxRefusal 检测模型是否声称自己处于隔离环境/无法访问工具。
func looksLikeSandboxRefusal(text string) bool {
if text == "" {
return false
}
t := strings.ToLower(text)
markers := []string{
"/mnt/data", "/workspace", "/home/oai", "filesystem isolado", "ambiente isolado",
"root linux", "linux/container", "container atual", "não tem acesso ao diret",
"nao tem acesso ao diret", "não está montado", "nao esta montado",
"não foi montado", "nao foi montado", "não existe neste ambiente",
"nao existe neste ambiente", "não pode continuar neste ambiente",
"não é possível ler", "nao e possivel ler",
"não foi possível abrir", "nao foi possivel abrir",
"não foi possível executar", "nao foi possivel executar",
"falha na interface de execução", "falha no parsing",
"inferência baseada na estrutura", "inferencia baseada na estrutura",
"baseada apenas na estrutura",
}
for _, m := range markers {
if strings.Contains(t, m) {
return true
}
}
return false
}
// appendToolDebugLog 把每次工具解析的输入文本和解析结果写入日志文件
func appendToolDebugLog(path string, attempt int, text string, calls []officialtypes.ToolCall) {
f, err := os.OpenFile(path, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
return
}
defer f.Close()
callsJSON, _ := json.Marshal(calls)
fmt.Fprintf(f, "\n=== attempt %d ===\ntext: %s\ncalls: %s\n", attempt, text, string(callsJSON))
}
// ── Responses 流式事件构造器 ──
func responsesCreatedEvent(respID, model string) string {
evt := map[string]interface{}{
"type": "response.created",
"response": map[string]interface{}{
"id": respID, "object": "response", "created_at": time.Now().Unix(),
"model": model, "status": "in_progress",
},
}
b, _ := json.Marshal(evt)
return string(b)
}
func responsesOutputItemAddedEvent(outputIndex int, itemID, itemType string) string {
evt := map[string]interface{}{
"type": "response.output_item.added",
"output_index": outputIndex,
"item": map[string]interface{}{
"id": itemID, "type": itemType, "status": "in_progress",
},
}
b, _ := json.Marshal(evt)
return string(b)
}
func responsesOutputItemDoneEvent(outputIndex int, itemID, itemType, text string) string {
item := map[string]interface{}{
"id": itemID, "type": itemType, "status": "completed",
}
if itemType == "message" {
item["role"] = "assistant"
item["content"] = []map[string]interface{}{
{"type": "output_text", "text": text},
}
} else if itemType == "reasoning" {
item["content"] = []map[string]interface{}{
{"type": "reasoning_text", "text": text},
}
}
evt := map[string]interface{}{
"type": "response.output_item.done",
"output_index": outputIndex,
"item": item,
}
b, _ := json.Marshal(evt)
return string(b)
}
func responsesFailedEvent(msg string) string {
evt := map[string]interface{}{
"type": "response.failed",
"response": map[string]interface{}{
"error": map[string]interface{}{
"message": msg, "type": "server_error",
},
},
}
b, _ := json.Marshal(evt)
return string(b)
}
func responsesCompletedEvent(resp officialtypes.ResponsesResponse) string {
evt := map[string]interface{}{
"type": "response.completed",
"response": resp,
}
b, _ := json.Marshal(evt)
return string(b)
}
|