Sub2API v1.0 - AI API 网关(二开初始版本,基于上游 Wei-Shaw/sub2api)
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
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
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
package service
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"io"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
infraerrors "github.com/Wei-Shaw/sub2api/internal/pkg/errors"
|
||||
"github.com/Wei-Shaw/sub2api/internal/pkg/httpclient"
|
||||
)
|
||||
|
||||
const openAICodexPATWhoamiURLDefault = "https://auth.openai.com/api/accounts/v1/user-auth-credential/whoami"
|
||||
|
||||
var openAICodexPATWhoamiURL = openAICodexPATWhoamiURLDefault
|
||||
|
||||
var openAIPersonalAccessTokenOAuthCredentialKeys = [...]string{
|
||||
"refresh_token",
|
||||
"id_token",
|
||||
"expires_at",
|
||||
"expires_in",
|
||||
"client_id",
|
||||
}
|
||||
|
||||
type openAICodexPATWhoamiResponse struct {
|
||||
Email string `json:"email"`
|
||||
ChatGPTUserID string `json:"chatgpt_user_id"`
|
||||
ChatGPTAccountID string `json:"chatgpt_account_id"`
|
||||
ChatGPTPlanType string `json:"chatgpt_plan_type"`
|
||||
ChatGPTAccountIsFedRAMP *bool `json:"chatgpt_account_is_fedramp"`
|
||||
}
|
||||
|
||||
// ValidateCodexPersonalAccessToken validates a Codex at-* token using the same
|
||||
// first-class PAT endpoint used by the Codex client.
|
||||
func (s *OpenAIOAuthService) ValidateCodexPersonalAccessToken(ctx context.Context, accessToken, proxyURL string) (*OpenAITokenInfo, error) {
|
||||
accessToken = strings.TrimSpace(accessToken)
|
||||
if accessToken == "" {
|
||||
return nil, infraerrors.New(http.StatusBadRequest, "OPENAI_CODEX_PAT_REQUIRED", "access token is required")
|
||||
}
|
||||
if !strings.HasPrefix(accessToken, "at-") {
|
||||
return nil, infraerrors.New(http.StatusBadRequest, "OPENAI_CODEX_PAT_INVALID_PREFIX", "Codex personal access token must start with at-")
|
||||
}
|
||||
|
||||
client, err := httpclient.GetClient(httpclient.Options{
|
||||
ProxyURL: proxyURL,
|
||||
Timeout: 20 * time.Second,
|
||||
ResponseHeaderTimeout: 15 * time.Second,
|
||||
})
|
||||
if err != nil {
|
||||
return nil, infraerrors.Newf(http.StatusBadRequest, "OPENAI_CODEX_PAT_PROXY_INVALID", "invalid proxy configuration: %v", err)
|
||||
}
|
||||
|
||||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, openAICodexPATWhoamiURL, nil)
|
||||
if err != nil {
|
||||
return nil, infraerrors.Newf(http.StatusInternalServerError, "OPENAI_CODEX_PAT_REQUEST_FAILED", "failed to build validation request: %v", err)
|
||||
}
|
||||
req.Header.Set("authorization", "Bearer "+accessToken)
|
||||
req.Header.Set("accept", "application/json")
|
||||
ApplyCodexCanonicalAuthIdentity(req.Header)
|
||||
|
||||
resp, err := client.Do(req)
|
||||
if err != nil {
|
||||
return nil, infraerrors.Newf(http.StatusBadGateway, "OPENAI_CODEX_PAT_VALIDATE_FAILED", "failed to validate Codex personal access token: %v", err)
|
||||
}
|
||||
defer func() { _ = resp.Body.Close() }()
|
||||
|
||||
if resp.StatusCode == http.StatusUnauthorized || resp.StatusCode == http.StatusForbidden {
|
||||
return nil, infraerrors.New(http.StatusBadRequest, "OPENAI_CODEX_PAT_INVALID", "Codex personal access token is invalid or expired")
|
||||
}
|
||||
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
|
||||
body, _ := io.ReadAll(io.LimitReader(resp.Body, 2048))
|
||||
message := strings.TrimSpace(string(body))
|
||||
if message == "" {
|
||||
message = resp.Status
|
||||
}
|
||||
return nil, infraerrors.Newf(http.StatusBadGateway, "OPENAI_CODEX_PAT_VALIDATE_FAILED", "Codex personal access token validation failed: %s", message)
|
||||
}
|
||||
|
||||
var whoami openAICodexPATWhoamiResponse
|
||||
if err := json.NewDecoder(io.LimitReader(resp.Body, 64*1024)).Decode(&whoami); err != nil {
|
||||
return nil, infraerrors.Newf(http.StatusBadGateway, "OPENAI_CODEX_PAT_RESPONSE_INVALID", "invalid Codex personal access token validation response: %v", err)
|
||||
}
|
||||
if err := validateOpenAICodexPATWhoami(whoami); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &OpenAITokenInfo{
|
||||
AccessToken: accessToken,
|
||||
AuthMode: OpenAIAuthModePersonalAccessToken,
|
||||
Email: strings.TrimSpace(whoami.Email),
|
||||
ChatGPTAccountID: strings.TrimSpace(whoami.ChatGPTAccountID),
|
||||
ChatGPTUserID: strings.TrimSpace(whoami.ChatGPTUserID),
|
||||
ChatGPTAccountFedRAMP: *whoami.ChatGPTAccountIsFedRAMP,
|
||||
PlanType: strings.TrimSpace(whoami.ChatGPTPlanType),
|
||||
}, nil
|
||||
}
|
||||
|
||||
func validateOpenAICodexPATWhoami(whoami openAICodexPATWhoamiResponse) error {
|
||||
required := map[string]string{
|
||||
"email": whoami.Email,
|
||||
"chatgpt_user_id": whoami.ChatGPTUserID,
|
||||
"chatgpt_account_id": whoami.ChatGPTAccountID,
|
||||
"chatgpt_plan_type": whoami.ChatGPTPlanType,
|
||||
}
|
||||
for key, value := range required {
|
||||
if strings.TrimSpace(value) == "" {
|
||||
return infraerrors.Newf(http.StatusBadGateway, "OPENAI_CODEX_PAT_RESPONSE_INVALID", "Codex personal access token validation response is missing %s", key)
|
||||
}
|
||||
}
|
||||
if whoami.ChatGPTAccountIsFedRAMP == nil {
|
||||
return infraerrors.New(http.StatusBadGateway, "OPENAI_CODEX_PAT_RESPONSE_INVALID", "Codex personal access token validation response is missing chatgpt_account_is_fedramp")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// NormalizeOpenAIPersonalAccessTokenCredentials removes OAuth-only credential
|
||||
// fields from Codex personal access token accounts while preserving local
|
||||
// routing, mapping, quota, and metadata fields.
|
||||
func NormalizeOpenAIPersonalAccessTokenCredentials(account *Account, tokenInfo *OpenAITokenInfo, credentials map[string]any) map[string]any {
|
||||
if credentials == nil || !isOpenAIPersonalAccessTokenCredentialSet(account, tokenInfo, credentials) {
|
||||
return credentials
|
||||
}
|
||||
|
||||
for _, key := range openAIPersonalAccessTokenOAuthCredentialKeys {
|
||||
delete(credentials, key)
|
||||
}
|
||||
credentials[openAIAuthModeCredentialKey] = OpenAIAuthModePersonalAccessToken
|
||||
credentials[openAIAuthModeLegacyCredentialKey] = "personal_access_token"
|
||||
credentials["token_type"] = "Bearer"
|
||||
return credentials
|
||||
}
|
||||
|
||||
func isOpenAIPersonalAccessTokenCredentialSet(account *Account, tokenInfo *OpenAITokenInfo, credentials map[string]any) bool {
|
||||
if tokenInfo != nil && isOpenAIPersonalAccessTokenAuthMode(tokenInfo.AuthMode) {
|
||||
return true
|
||||
}
|
||||
if account != nil && account.IsOpenAIPersonalAccessToken() {
|
||||
return true
|
||||
}
|
||||
return isOpenAIPersonalAccessTokenAuthMode(openAICredentialString(credentials[openAIAuthModeCredentialKey])) ||
|
||||
isOpenAIPersonalAccessTokenAuthMode(openAICredentialString(credentials[openAIAuthModeLegacyCredentialKey]))
|
||||
}
|
||||
|
||||
func openAICredentialString(value any) string {
|
||||
switch v := value.(type) {
|
||||
case string:
|
||||
return strings.TrimSpace(v)
|
||||
default:
|
||||
return ""
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user