File size: 17,003 Bytes
1766992 | 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 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 | // Copyright (c) 2025-2026 libaxuan
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package services
import (
"bufio"
"context"
"github.com/libaxuan/cursor2api-go/config"
"github.com/libaxuan/cursor2api-go/middleware"
"github.com/libaxuan/cursor2api-go/models"
"github.com/libaxuan/cursor2api-go/utils"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/http/cookiejar"
"os"
"path/filepath"
"strings"
"sync"
"time"
"github.com/imroc/req/v3"
"github.com/sirupsen/logrus"
)
const cursorAPIURL = "https://cursor.com/api/chat"
// CursorService handles interactions with Cursor API.
type CursorService struct {
config *config.Config
client *req.Client
mainJS string
envJS string
scriptCache string
scriptCacheTime time.Time
scriptMutex sync.RWMutex
headerGenerator *utils.HeaderGenerator
}
// NewCursorService creates a new service instance.
func NewCursorService(cfg *config.Config) *CursorService {
mainJS, err := os.ReadFile(filepath.Join("jscode", "main.js"))
if err != nil {
logrus.Fatalf("failed to read jscode/main.js: %v", err)
}
envJS, err := os.ReadFile(filepath.Join("jscode", "env.js"))
if err != nil {
logrus.Fatalf("failed to read jscode/env.js: %v", err)
}
jar, err := cookiejar.New(nil)
if err != nil {
logrus.Warnf("failed to create cookie jar: %v", err)
}
client := req.C()
client.SetTimeout(time.Duration(cfg.Timeout) * time.Second)
client.ImpersonateChrome()
if jar != nil {
client.SetCookieJar(jar)
}
return &CursorService{
config: cfg,
client: client,
mainJS: string(mainJS),
envJS: string(envJS),
headerGenerator: utils.NewHeaderGenerator(),
}
}
// ChatCompletion creates a chat completion stream for the given request.
func (s *CursorService) ChatCompletion(ctx context.Context, request *models.ChatCompletionRequest) (<-chan interface{}, error) {
buildResult, err := s.buildCursorRequest(request)
if err != nil {
return nil, err
}
jsonPayload, err := json.Marshal(buildResult.Payload)
if err != nil {
return nil, fmt.Errorf("failed to marshal cursor payload: %w", err)
}
// 尝试最多2次
maxRetries := 2
for attempt := 1; attempt <= maxRetries; attempt++ {
xIsHuman, err := s.fetchXIsHuman(ctx)
if err != nil {
if attempt < maxRetries {
logrus.WithError(err).Warnf("Failed to fetch x-is-human token (attempt %d/%d), retrying...", attempt, maxRetries)
time.Sleep(time.Second * time.Duration(attempt)) // 指数退避
continue
}
return nil, err
}
// 添加详细的调试日志
headers := s.chatHeaders(xIsHuman)
logrus.WithFields(logrus.Fields{
"url": cursorAPIURL,
"x-is-human": xIsHuman[:50] + "...", // 只显示前50个字符
"payload_length": len(jsonPayload),
"model": request.Model,
"attempt": attempt,
}).Debug("Sending request to Cursor API")
resp, err := s.client.R().
SetContext(ctx).
SetHeaders(headers).
SetBody(jsonPayload).
DisableAutoReadResponse().
Post(cursorAPIURL)
if err != nil {
if attempt < maxRetries {
logrus.WithError(err).Warnf("Cursor request failed (attempt %d/%d), retrying...", attempt, maxRetries)
time.Sleep(time.Second * time.Duration(attempt))
continue
}
return nil, fmt.Errorf("cursor request failed: %w", err)
}
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Response.Body)
resp.Response.Body.Close()
message := strings.TrimSpace(string(body))
// 记录详细的错误信息
logrus.WithFields(logrus.Fields{
"status_code": resp.StatusCode,
"response": message,
"headers": resp.Header,
"attempt": attempt,
}).Error("Cursor API returned non-OK status")
// 如果是 403 错误且还有重试机会,清除缓存并重试
if resp.StatusCode == http.StatusForbidden && attempt < maxRetries {
logrus.Warn("Received 403 Access Denied, refreshing browser fingerprint and clearing token cache...")
// 刷新浏览器指纹
s.headerGenerator.Refresh()
logrus.WithFields(logrus.Fields{
"platform": s.headerGenerator.GetProfile().Platform,
"chrome_version": s.headerGenerator.GetProfile().ChromeVersion,
}).Debug("Refreshed browser fingerprint")
// 清除 token 缓存
s.scriptMutex.Lock()
s.scriptCache = ""
s.scriptCacheTime = time.Time{}
s.scriptMutex.Unlock()
time.Sleep(time.Second * time.Duration(attempt))
continue
}
if strings.Contains(message, "Attention Required! | Cloudflare") {
message = "Cloudflare 403"
}
return nil, middleware.NewCursorWebError(resp.StatusCode, message)
}
// 成功,返回结果
output := make(chan interface{}, 32)
go s.consumeSSE(ctx, resp.Response, output, buildResult.ParseConfig)
return output, nil
}
return nil, fmt.Errorf("failed after %d attempts", maxRetries)
}
type nonStreamCollectResult struct {
Message models.Message
FinishReason string
Usage models.Usage
ToolCalls []models.ToolCall
Text string
}
func (s *CursorService) collectNonStream(ctx context.Context, gen <-chan interface{}, modelName string) (nonStreamCollectResult, error) {
var fullContent strings.Builder
var usage models.Usage
toolCalls := make([]models.ToolCall, 0, 2)
finishReason := "stop"
for {
select {
case <-ctx.Done():
return nonStreamCollectResult{}, ctx.Err()
case data, ok := <-gen:
if !ok {
msg := models.Message{Role: "assistant"}
if fullContent.Len() > 0 || len(toolCalls) == 0 {
msg.Content = fullContent.String()
}
if len(toolCalls) > 0 {
msg.ToolCalls = toolCalls
finishReason = "tool_calls"
}
return nonStreamCollectResult{
Message: msg,
FinishReason: finishReason,
Usage: usage,
ToolCalls: toolCalls,
Text: fullContent.String(),
}, nil
}
switch v := data.(type) {
case models.AssistantEvent:
switch v.Kind {
case models.AssistantEventText:
fullContent.WriteString(v.Text)
case models.AssistantEventToolCall:
if v.ToolCall != nil {
toolCalls = append(toolCalls, *v.ToolCall)
}
case models.AssistantEventThinking:
// thinking 对于 OpenAI chat.completion 的 message.content 不直接暴露
continue
}
case string:
fullContent.WriteString(v)
case models.Usage:
usage = v
case error:
return nonStreamCollectResult{}, v
default:
continue
}
}
}
}
func (s *CursorService) toolCallRequiredForRequest(request *models.ChatCompletionRequest) (bool, toolChoiceSpec, error) {
choice, err := parseToolChoice(request.ToolChoice)
if err != nil {
return false, toolChoiceSpec{}, err
}
if s.config != nil && s.config.KiloToolStrict && len(request.Tools) > 0 && choice.Mode == "auto" {
choice.Mode = "required"
}
if len(request.Tools) == 0 {
return false, choice, nil
}
return choice.Mode == "required" || choice.Mode == "function", choice, nil
}
func (s *CursorService) withToolRetrySystemMessage(request *models.ChatCompletionRequest, choice toolChoiceSpec) *models.ChatCompletionRequest {
cloned := *request
cloned.Messages = append([]models.Message(nil), request.Messages...)
var b strings.Builder
b.WriteString("TOOL USE REQUIRED.\n")
b.WriteString("Your next assistant message MUST be a tool call and must contain only the tool call in the exact bridge format. Do not output any natural language.\n")
if choice.Mode == "function" && strings.TrimSpace(choice.FunctionName) != "" {
b.WriteString(fmt.Sprintf("You MUST call function %q.\n", strings.TrimSpace(choice.FunctionName)))
} else {
b.WriteString("You MUST call at least one tool.\n")
}
b.WriteString("After receiving the tool result, you will provide the final answer.\n")
sys := models.Message{Role: "system", Content: b.String()}
cloned.Messages = append([]models.Message{sys}, cloned.Messages...)
return &cloned
}
// ChatCompletionNonStream runs a non-stream chat completion and returns a single OpenAI-compatible response.
// It includes a Kilo-compatibility retry: if tools are provided and tool use is required but no tool_calls
// are produced, it retries once with a stronger system instruction.
func (s *CursorService) ChatCompletionNonStream(ctx context.Context, request *models.ChatCompletionRequest) (*models.ChatCompletionResponse, error) {
required, choice, err := s.toolCallRequiredForRequest(request)
if err != nil {
return nil, middleware.NewRequestValidationError(err.Error(), "invalid_tool_choice")
}
runOnce := func(req *models.ChatCompletionRequest) (nonStreamCollectResult, error) {
gen, err := s.ChatCompletion(ctx, req)
if err != nil {
return nonStreamCollectResult{}, err
}
return s.collectNonStream(ctx, gen, req.Model)
}
result, err := runOnce(request)
if err != nil {
return nil, err
}
if required && len(result.ToolCalls) == 0 {
retryReq := s.withToolRetrySystemMessage(request, choice)
retryResult, retryErr := runOnce(retryReq)
if retryErr == nil {
result = retryResult
} else {
logrus.WithError(retryErr).Warn("tool-required retry failed; returning first attempt")
}
}
respID := utils.GenerateChatCompletionID()
return models.NewChatCompletionResponse(respID, request.Model, result.Message, result.FinishReason, result.Usage), nil
}
func (s *CursorService) consumeSSE(ctx context.Context, resp *http.Response, output chan interface{}, parseConfig models.CursorParseConfig) {
defer close(output)
defer resp.Body.Close()
parser := utils.NewCursorProtocolParser(parseConfig)
scanner := bufio.NewScanner(resp.Body)
scanner.Buffer(make([]byte, 0, 64*1024), 1024*1024)
flushParser := func() {
for _, event := range parser.Finish() {
select {
case output <- event:
case <-ctx.Done():
return
}
}
}
for scanner.Scan() {
select {
case <-ctx.Done():
return
default:
}
data := utils.ParseSSELine(scanner.Text())
if data == "" {
continue
}
if data == "[DONE]" {
flushParser()
return
}
var eventData models.CursorEventData
if err := json.Unmarshal([]byte(data), &eventData); err != nil {
logrus.WithError(err).Debugf("Failed to parse SSE data: %s", data)
continue
}
switch eventData.Type {
case "error":
if eventData.ErrorText != "" {
errResp := middleware.NewCursorWebError(http.StatusBadGateway, "cursor API error: "+eventData.ErrorText)
select {
case output <- errResp:
default:
logrus.WithError(errResp).Warn("failed to push SSE error to channel")
}
return
}
case "finish":
flushParser()
if eventData.MessageMetadata != nil && eventData.MessageMetadata.Usage != nil {
usage := models.Usage{
PromptTokens: eventData.MessageMetadata.Usage.InputTokens,
CompletionTokens: eventData.MessageMetadata.Usage.OutputTokens,
TotalTokens: eventData.MessageMetadata.Usage.TotalTokens,
}
select {
case output <- usage:
case <-ctx.Done():
return
}
}
return
default:
if eventData.Delta == "" {
continue
}
for _, event := range parser.Feed(eventData.Delta) {
select {
case output <- event:
case <-ctx.Done():
return
}
}
}
}
if err := scanner.Err(); err != nil {
if errors.Is(err, context.Canceled) {
return
}
errResp := middleware.NewCursorWebError(http.StatusBadGateway, err.Error())
select {
case output <- errResp:
default:
logrus.WithError(err).Warn("failed to push SSE error to channel")
}
return
}
flushParser()
}
func (s *CursorService) fetchXIsHuman(ctx context.Context) (string, error) {
// 检查缓存
s.scriptMutex.RLock()
cached := s.scriptCache
lastFetch := s.scriptCacheTime
s.scriptMutex.RUnlock()
var scriptBody string
// 缓存有效期缩短到1分钟,避免 token 过期
if cached != "" && time.Since(lastFetch) < 1*time.Minute {
scriptBody = cached
} else {
resp, err := s.client.R().
SetContext(ctx).
SetHeaders(s.scriptHeaders()).
Get(s.config.ScriptURL)
if err != nil {
// 如果请求失败且有缓存,使用缓存
if cached != "" {
logrus.Warnf("Failed to fetch script, using cached version: %v", err)
scriptBody = cached
} else {
// 清除缓存并生成一个简单的token
s.scriptMutex.Lock()
s.scriptCache = ""
s.scriptCacheTime = time.Time{}
s.scriptMutex.Unlock()
// 生成一个简单的x-is-human token作为fallback
token := utils.GenerateRandomString(64)
logrus.Warnf("Failed to fetch script, generated fallback token")
return token, nil
}
} else if resp.StatusCode != http.StatusOK {
// 如果状态码异常且有缓存,使用缓存
if cached != "" {
logrus.Warnf("Script fetch returned status %d, using cached version", resp.StatusCode)
scriptBody = cached
} else {
// 清除缓存并生成一个简单的token
s.scriptMutex.Lock()
s.scriptCache = ""
s.scriptCacheTime = time.Time{}
s.scriptMutex.Unlock()
// 生成一个简单的x-is-human token作为fallback
token := utils.GenerateRandomString(64)
logrus.Warnf("Script fetch returned status %d, generated fallback token", resp.StatusCode)
return token, nil
}
} else {
scriptBody = string(resp.Bytes())
// 更新缓存
s.scriptMutex.Lock()
s.scriptCache = scriptBody
s.scriptCacheTime = time.Now()
s.scriptMutex.Unlock()
}
}
compiled := s.prepareJS(scriptBody)
value, err := utils.RunJS(compiled)
if err != nil {
// JS 执行失败时清除缓存并生成fallback token
s.scriptMutex.Lock()
s.scriptCache = ""
s.scriptCacheTime = time.Time{}
s.scriptMutex.Unlock()
token := utils.GenerateRandomString(64)
logrus.Warnf("Failed to execute JS, generated fallback token: %v", err)
return token, nil
}
logrus.WithField("length", len(value)).Debug("Fetched x-is-human token")
return value, nil
}
func (s *CursorService) prepareJS(cursorJS string) string {
replacer := strings.NewReplacer(
"$$currentScriptSrc$$", s.config.ScriptURL,
"$$UNMASKED_VENDOR_WEBGL$$", s.config.FP.UNMASKED_VENDOR_WEBGL,
"$$UNMASKED_RENDERER_WEBGL$$", s.config.FP.UNMASKED_RENDERER_WEBGL,
"$$userAgent$$", s.config.FP.UserAgent,
)
mainScript := replacer.Replace(s.mainJS)
mainScript = strings.Replace(mainScript, "$$env_jscode$$", s.envJS, 1)
mainScript = strings.Replace(mainScript, "$$cursor_jscode$$", cursorJS, 1)
return mainScript
}
func (s *CursorService) truncateCursorMessages(messages []models.CursorMessage) []models.CursorMessage {
if len(messages) == 0 || s.config.MaxInputLength <= 0 {
return messages
}
maxLength := s.config.MaxInputLength
total := 0
for _, msg := range messages {
total += cursorMessageTextLength(msg)
}
if total <= maxLength {
return messages
}
var result []models.CursorMessage
startIdx := 0
if strings.EqualFold(messages[0].Role, "system") {
result = append(result, messages[0])
maxLength -= cursorMessageTextLength(messages[0])
if maxLength < 0 {
maxLength = 0
}
startIdx = 1
}
current := 0
collected := make([]models.CursorMessage, 0, len(messages)-startIdx)
for i := len(messages) - 1; i >= startIdx; i-- {
msg := messages[i]
msgLen := cursorMessageTextLength(msg)
if msgLen == 0 {
continue
}
if current+msgLen > maxLength {
continue
}
collected = append(collected, msg)
current += msgLen
}
for i, j := 0, len(collected)-1; i < j; i, j = i+1, j-1 {
collected[i], collected[j] = collected[j], collected[i]
}
return append(result, collected...)
}
func cursorMessageTextLength(msg models.CursorMessage) int {
total := 0
for _, part := range msg.Parts {
total += len(part.Text)
}
return total
}
func (s *CursorService) chatHeaders(xIsHuman string) map[string]string {
return s.headerGenerator.GetChatHeaders(xIsHuman)
}
func (s *CursorService) scriptHeaders() map[string]string {
return s.headerGenerator.GetScriptHeaders()
}
|