| package executor |
|
|
| import ( |
| "bufio" |
| "bytes" |
| "context" |
| "fmt" |
| "io" |
| "net/http" |
| "sync" |
| "time" |
|
|
| "github.com/google/uuid" |
| copilotauth "github.com/router-for-me/CLIProxyAPI/v6/internal/auth/copilot" |
| "github.com/router-for-me/CLIProxyAPI/v6/internal/config" |
| cliproxyauth "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/auth" |
| cliproxyexecutor "github.com/router-for-me/CLIProxyAPI/v6/sdk/cliproxy/executor" |
| sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator" |
| log "github.com/sirupsen/logrus" |
| "github.com/tidwall/gjson" |
| "github.com/tidwall/sjson" |
| ) |
|
|
| const ( |
| githubCopilotBaseURL = "https://api.githubcopilot.com" |
| githubCopilotChatPath = "/chat/completions" |
| githubCopilotResponsesPath = "/responses" |
| githubCopilotAuthType = "github-copilot" |
| githubCopilotTokenCacheTTL = 25 * time.Minute |
| |
| tokenExpiryBuffer = 5 * time.Minute |
| |
| maxScannerBufferSize = 20_971_520 |
|
|
| |
| copilotUserAgent = "GithubCopilot/1.0" |
| copilotEditorVersion = "vscode/1.100.0" |
| copilotPluginVersion = "copilot/1.300.0" |
| copilotIntegrationID = "vscode-chat" |
| copilotOpenAIIntent = "conversation-panel" |
| ) |
|
|
| |
| type GitHubCopilotExecutor struct { |
| cfg *config.Config |
| mu sync.RWMutex |
| cache map[string]*cachedAPIToken |
| } |
|
|
| |
| type cachedAPIToken struct { |
| token string |
| expiresAt time.Time |
| } |
|
|
| |
| func NewGitHubCopilotExecutor(cfg *config.Config) *GitHubCopilotExecutor { |
| return &GitHubCopilotExecutor{ |
| cfg: cfg, |
| cache: make(map[string]*cachedAPIToken), |
| } |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) Identifier() string { return githubCopilotAuthType } |
|
|
| |
| func (e *GitHubCopilotExecutor) PrepareRequest(req *http.Request, auth *cliproxyauth.Auth) error { |
| if req == nil { |
| return nil |
| } |
| ctx := req.Context() |
| if ctx == nil { |
| ctx = context.Background() |
| } |
| apiToken, errToken := e.ensureAPIToken(ctx, auth) |
| if errToken != nil { |
| return errToken |
| } |
| e.applyHeaders(req, apiToken) |
| return nil |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) HttpRequest(ctx context.Context, auth *cliproxyauth.Auth, req *http.Request) (*http.Response, error) { |
| if req == nil { |
| return nil, fmt.Errorf("github-copilot executor: request is nil") |
| } |
| if ctx == nil { |
| ctx = req.Context() |
| } |
| httpReq := req.WithContext(ctx) |
| if errPrepare := e.PrepareRequest(httpReq, auth); errPrepare != nil { |
| return nil, errPrepare |
| } |
| httpClient := newProxyAwareHTTPClient(ctx, e.cfg, auth, 0) |
| return httpClient.Do(httpReq) |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) Execute(ctx context.Context, auth *cliproxyauth.Auth, req cliproxyexecutor.Request, opts cliproxyexecutor.Options) (resp cliproxyexecutor.Response, err error) { |
| apiToken, errToken := e.ensureAPIToken(ctx, auth) |
| if errToken != nil { |
| return resp, errToken |
| } |
|
|
| reporter := newUsageReporter(ctx, e.Identifier(), req.Model, auth) |
| defer reporter.trackFailure(ctx, &err) |
|
|
| from := opts.SourceFormat |
| useResponses := useGitHubCopilotResponsesEndpoint(from) |
| to := sdktranslator.FromString("openai") |
| if useResponses { |
| to = sdktranslator.FromString("openai-response") |
| } |
| originalPayload := bytes.Clone(req.Payload) |
| if len(opts.OriginalRequest) > 0 { |
| originalPayload = bytes.Clone(opts.OriginalRequest) |
| } |
| originalTranslated := sdktranslator.TranslateRequest(from, to, req.Model, originalPayload, false) |
| body := sdktranslator.TranslateRequest(from, to, req.Model, bytes.Clone(req.Payload), false) |
| body = e.normalizeModel(req.Model, body) |
| requestedModel := payloadRequestedModel(opts, req.Model) |
| body = applyPayloadConfigWithRoot(e.cfg, req.Model, to.String(), "", body, originalTranslated, requestedModel) |
| body, _ = sjson.SetBytes(body, "stream", false) |
|
|
| path := githubCopilotChatPath |
| if useResponses { |
| path = githubCopilotResponsesPath |
| } |
| url := githubCopilotBaseURL + path |
| httpReq, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body)) |
| if err != nil { |
| return resp, err |
| } |
| e.applyHeaders(httpReq, apiToken) |
|
|
| |
| if detectVisionContent(body) { |
| httpReq.Header.Set("Copilot-Vision-Request", "true") |
| } |
|
|
| var authID, authLabel, authType, authValue string |
| if auth != nil { |
| authID = auth.ID |
| authLabel = auth.Label |
| authType, authValue = auth.AccountInfo() |
| } |
| recordAPIRequest(ctx, e.cfg, upstreamRequestLog{ |
| URL: url, |
| Method: http.MethodPost, |
| Headers: httpReq.Header.Clone(), |
| Body: body, |
| Provider: e.Identifier(), |
| AuthID: authID, |
| AuthLabel: authLabel, |
| AuthType: authType, |
| AuthValue: authValue, |
| }) |
|
|
| httpClient := newProxyAwareHTTPClient(ctx, e.cfg, auth, 0) |
| httpResp, err := httpClient.Do(httpReq) |
| if err != nil { |
| recordAPIResponseError(ctx, e.cfg, err) |
| return resp, err |
| } |
| defer func() { |
| if errClose := httpResp.Body.Close(); errClose != nil { |
| log.Errorf("github-copilot executor: close response body error: %v", errClose) |
| } |
| }() |
|
|
| recordAPIResponseMetadata(ctx, e.cfg, httpResp.StatusCode, httpResp.Header.Clone()) |
|
|
| if !isHTTPSuccess(httpResp.StatusCode) { |
| data, _ := io.ReadAll(httpResp.Body) |
| appendAPIResponseChunk(ctx, e.cfg, data) |
| log.Debugf("github-copilot executor: upstream error status: %d, body: %s", httpResp.StatusCode, summarizeErrorBody(httpResp.Header.Get("Content-Type"), data)) |
| err = statusErr{code: httpResp.StatusCode, msg: string(data)} |
| return resp, err |
| } |
|
|
| data, err := io.ReadAll(httpResp.Body) |
| if err != nil { |
| recordAPIResponseError(ctx, e.cfg, err) |
| return resp, err |
| } |
| appendAPIResponseChunk(ctx, e.cfg, data) |
|
|
| detail := parseOpenAIUsage(data) |
| if useResponses && detail.TotalTokens == 0 { |
| detail = parseOpenAIResponsesUsage(data) |
| } |
| if detail.TotalTokens > 0 { |
| reporter.publish(ctx, detail) |
| } |
|
|
| var param any |
| converted := sdktranslator.TranslateNonStream(ctx, from, to, req.Model, bytes.Clone(opts.OriginalRequest), body, data, ¶m) |
| resp = cliproxyexecutor.Response{Payload: []byte(converted)} |
| reporter.ensurePublished(ctx) |
| return resp, nil |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) ExecuteStream(ctx context.Context, auth *cliproxyauth.Auth, req cliproxyexecutor.Request, opts cliproxyexecutor.Options) (stream <-chan cliproxyexecutor.StreamChunk, err error) { |
| apiToken, errToken := e.ensureAPIToken(ctx, auth) |
| if errToken != nil { |
| return nil, errToken |
| } |
|
|
| reporter := newUsageReporter(ctx, e.Identifier(), req.Model, auth) |
| defer reporter.trackFailure(ctx, &err) |
|
|
| from := opts.SourceFormat |
| useResponses := useGitHubCopilotResponsesEndpoint(from) |
| to := sdktranslator.FromString("openai") |
| if useResponses { |
| to = sdktranslator.FromString("openai-response") |
| } |
| originalPayload := bytes.Clone(req.Payload) |
| if len(opts.OriginalRequest) > 0 { |
| originalPayload = bytes.Clone(opts.OriginalRequest) |
| } |
| originalTranslated := sdktranslator.TranslateRequest(from, to, req.Model, originalPayload, false) |
| body := sdktranslator.TranslateRequest(from, to, req.Model, bytes.Clone(req.Payload), true) |
| body = e.normalizeModel(req.Model, body) |
| requestedModel := payloadRequestedModel(opts, req.Model) |
| body = applyPayloadConfigWithRoot(e.cfg, req.Model, to.String(), "", body, originalTranslated, requestedModel) |
| body, _ = sjson.SetBytes(body, "stream", true) |
| |
| if !useResponses { |
| body, _ = sjson.SetBytes(body, "stream_options.include_usage", true) |
| } |
|
|
| path := githubCopilotChatPath |
| if useResponses { |
| path = githubCopilotResponsesPath |
| } |
| url := githubCopilotBaseURL + path |
| httpReq, err := http.NewRequestWithContext(ctx, http.MethodPost, url, bytes.NewReader(body)) |
| if err != nil { |
| return nil, err |
| } |
| e.applyHeaders(httpReq, apiToken) |
|
|
| |
| if detectVisionContent(body) { |
| httpReq.Header.Set("Copilot-Vision-Request", "true") |
| } |
|
|
| var authID, authLabel, authType, authValue string |
| if auth != nil { |
| authID = auth.ID |
| authLabel = auth.Label |
| authType, authValue = auth.AccountInfo() |
| } |
| recordAPIRequest(ctx, e.cfg, upstreamRequestLog{ |
| URL: url, |
| Method: http.MethodPost, |
| Headers: httpReq.Header.Clone(), |
| Body: body, |
| Provider: e.Identifier(), |
| AuthID: authID, |
| AuthLabel: authLabel, |
| AuthType: authType, |
| AuthValue: authValue, |
| }) |
|
|
| httpClient := newProxyAwareHTTPClient(ctx, e.cfg, auth, 0) |
| httpResp, err := httpClient.Do(httpReq) |
| if err != nil { |
| recordAPIResponseError(ctx, e.cfg, err) |
| return nil, err |
| } |
|
|
| recordAPIResponseMetadata(ctx, e.cfg, httpResp.StatusCode, httpResp.Header.Clone()) |
|
|
| if !isHTTPSuccess(httpResp.StatusCode) { |
| data, readErr := io.ReadAll(httpResp.Body) |
| if errClose := httpResp.Body.Close(); errClose != nil { |
| log.Errorf("github-copilot executor: close response body error: %v", errClose) |
| } |
| if readErr != nil { |
| recordAPIResponseError(ctx, e.cfg, readErr) |
| return nil, readErr |
| } |
| appendAPIResponseChunk(ctx, e.cfg, data) |
| log.Debugf("github-copilot executor: upstream error status: %d, body: %s", httpResp.StatusCode, summarizeErrorBody(httpResp.Header.Get("Content-Type"), data)) |
| err = statusErr{code: httpResp.StatusCode, msg: string(data)} |
| return nil, err |
| } |
|
|
| out := make(chan cliproxyexecutor.StreamChunk) |
| stream = out |
|
|
| go func() { |
| defer close(out) |
| defer func() { |
| if errClose := httpResp.Body.Close(); errClose != nil { |
| log.Errorf("github-copilot executor: close response body error: %v", errClose) |
| } |
| }() |
|
|
| scanner := bufio.NewScanner(httpResp.Body) |
| scanner.Buffer(nil, maxScannerBufferSize) |
| var param any |
|
|
| for scanner.Scan() { |
| line := scanner.Bytes() |
| appendAPIResponseChunk(ctx, e.cfg, line) |
|
|
| |
| if bytes.HasPrefix(line, dataTag) { |
| data := bytes.TrimSpace(line[5:]) |
| if bytes.Equal(data, []byte("[DONE]")) { |
| continue |
| } |
| if detail, ok := parseOpenAIStreamUsage(line); ok { |
| reporter.publish(ctx, detail) |
| } else if useResponses { |
| if detail, ok := parseOpenAIResponsesStreamUsage(line); ok { |
| reporter.publish(ctx, detail) |
| } |
| } |
| } |
|
|
| chunks := sdktranslator.TranslateStream(ctx, to, from, req.Model, bytes.Clone(opts.OriginalRequest), body, bytes.Clone(line), ¶m) |
| for i := range chunks { |
| out <- cliproxyexecutor.StreamChunk{Payload: []byte(chunks[i])} |
| } |
| } |
|
|
| if errScan := scanner.Err(); errScan != nil { |
| recordAPIResponseError(ctx, e.cfg, errScan) |
| reporter.publishFailure(ctx) |
| out <- cliproxyexecutor.StreamChunk{Err: errScan} |
| } else { |
| reporter.ensurePublished(ctx) |
| } |
| }() |
|
|
| return stream, nil |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) CountTokens(_ context.Context, _ *cliproxyauth.Auth, _ cliproxyexecutor.Request, _ cliproxyexecutor.Options) (cliproxyexecutor.Response, error) { |
| return cliproxyexecutor.Response{}, statusErr{code: http.StatusNotImplemented, msg: "count tokens not supported for github-copilot"} |
| } |
|
|
| |
| |
| func (e *GitHubCopilotExecutor) Refresh(ctx context.Context, auth *cliproxyauth.Auth) (*cliproxyauth.Auth, error) { |
| if auth == nil { |
| return nil, statusErr{code: http.StatusUnauthorized, msg: "missing auth"} |
| } |
|
|
| |
| accessToken := metaStringValue(auth.Metadata, "access_token") |
| if accessToken == "" { |
| return auth, nil |
| } |
|
|
| |
| copilotAuth := copilotauth.NewCopilotAuth(e.cfg) |
| _, err := copilotAuth.GetCopilotAPIToken(ctx, accessToken) |
| if err != nil { |
| return nil, statusErr{code: http.StatusUnauthorized, msg: fmt.Sprintf("github-copilot token validation failed: %v", err)} |
| } |
|
|
| return auth, nil |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) ensureAPIToken(ctx context.Context, auth *cliproxyauth.Auth) (string, error) { |
| if auth == nil { |
| return "", statusErr{code: http.StatusUnauthorized, msg: "missing auth"} |
| } |
|
|
| |
| accessToken := metaStringValue(auth.Metadata, "access_token") |
| if accessToken == "" { |
| return "", statusErr{code: http.StatusUnauthorized, msg: "missing github access token"} |
| } |
|
|
| |
| e.mu.RLock() |
| if cached, ok := e.cache[accessToken]; ok && cached.expiresAt.After(time.Now().Add(tokenExpiryBuffer)) { |
| e.mu.RUnlock() |
| return cached.token, nil |
| } |
| e.mu.RUnlock() |
|
|
| |
| copilotAuth := copilotauth.NewCopilotAuth(e.cfg) |
| apiToken, err := copilotAuth.GetCopilotAPIToken(ctx, accessToken) |
| if err != nil { |
| return "", statusErr{code: http.StatusUnauthorized, msg: fmt.Sprintf("failed to get copilot api token: %v", err)} |
| } |
|
|
| |
| expiresAt := time.Now().Add(githubCopilotTokenCacheTTL) |
| if apiToken.ExpiresAt > 0 { |
| expiresAt = time.Unix(apiToken.ExpiresAt, 0) |
| } |
| e.mu.Lock() |
| e.cache[accessToken] = &cachedAPIToken{ |
| token: apiToken.Token, |
| expiresAt: expiresAt, |
| } |
| e.mu.Unlock() |
|
|
| return apiToken.Token, nil |
| } |
|
|
| |
| func (e *GitHubCopilotExecutor) applyHeaders(r *http.Request, apiToken string) { |
| r.Header.Set("Content-Type", "application/json") |
| r.Header.Set("Authorization", "Bearer "+apiToken) |
| r.Header.Set("Accept", "application/json") |
| r.Header.Set("User-Agent", copilotUserAgent) |
| r.Header.Set("Editor-Version", copilotEditorVersion) |
| r.Header.Set("Editor-Plugin-Version", copilotPluginVersion) |
| r.Header.Set("Openai-Intent", copilotOpenAIIntent) |
| r.Header.Set("Copilot-Integration-Id", copilotIntegrationID) |
| r.Header.Set("X-Request-Id", uuid.NewString()) |
| } |
|
|
| |
| |
| func detectVisionContent(body []byte) bool { |
| |
| messagesResult := gjson.GetBytes(body, "messages") |
| if !messagesResult.Exists() || !messagesResult.IsArray() { |
| return false |
| } |
|
|
| |
| for _, message := range messagesResult.Array() { |
| content := message.Get("content") |
|
|
| |
| if content.IsArray() { |
| for _, block := range content.Array() { |
| blockType := block.Get("type").String() |
| |
| if blockType == "image_url" || blockType == "image" { |
| return true |
| } |
| } |
| } |
| } |
|
|
| return false |
| } |
|
|
| |
| |
| func (e *GitHubCopilotExecutor) normalizeModel(_ string, body []byte) []byte { |
| return body |
| } |
|
|
| func useGitHubCopilotResponsesEndpoint(sourceFormat sdktranslator.Format) bool { |
| return sourceFormat.String() == "openai-response" |
| } |
|
|
| |
| func isHTTPSuccess(statusCode int) bool { |
| return statusCode >= 200 && statusCode < 300 |
| } |
|
|