2025-12-28 17:48:52 +08:00
|
|
|
|
package service
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"context"
|
2025-12-31 23:37:51 +08:00
|
|
|
|
"fmt"
|
2025-12-28 17:48:52 +08:00
|
|
|
|
"time"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-12-31 10:33:00 +08:00
|
|
|
|
const (
|
|
|
|
|
|
// antigravityRefreshWindow Antigravity token 提前刷新窗口:15分钟
|
|
|
|
|
|
// Google OAuth token 有效期55分钟,提前15分钟刷新
|
|
|
|
|
|
antigravityRefreshWindow = 15 * time.Minute
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-12-28 17:48:52 +08:00
|
|
|
|
// AntigravityTokenRefresher 实现 TokenRefresher 接口
|
|
|
|
|
|
type AntigravityTokenRefresher struct {
|
|
|
|
|
|
antigravityOAuthService *AntigravityOAuthService
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewAntigravityTokenRefresher(antigravityOAuthService *AntigravityOAuthService) *AntigravityTokenRefresher {
|
|
|
|
|
|
return &AntigravityTokenRefresher{
|
|
|
|
|
|
antigravityOAuthService: antigravityOAuthService,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CanRefresh 检查是否可以刷新此账户
|
|
|
|
|
|
func (r *AntigravityTokenRefresher) CanRefresh(account *Account) bool {
|
|
|
|
|
|
return account.Platform == PlatformAntigravity && account.Type == AccountTypeOAuth
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// NeedsRefresh 检查账户是否需要刷新
|
2025-12-31 23:37:51 +08:00
|
|
|
|
// Antigravity 使用固定的15分钟刷新窗口,忽略全局配置
|
2025-12-31 10:33:00 +08:00
|
|
|
|
func (r *AntigravityTokenRefresher) NeedsRefresh(account *Account, _ time.Duration) bool {
|
2025-12-28 17:48:52 +08:00
|
|
|
|
if !r.CanRefresh(account) {
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
2025-12-31 16:25:45 +08:00
|
|
|
|
expiresAt := account.GetCredentialAsTime("expires_at")
|
|
|
|
|
|
if expiresAt == nil {
|
2025-12-28 17:48:52 +08:00
|
|
|
|
return false
|
|
|
|
|
|
}
|
2025-12-31 23:37:51 +08:00
|
|
|
|
timeUntilExpiry := time.Until(*expiresAt)
|
|
|
|
|
|
needsRefresh := timeUntilExpiry < antigravityRefreshWindow
|
|
|
|
|
|
if needsRefresh {
|
|
|
|
|
|
fmt.Printf("[AntigravityTokenRefresher] Account %d needs refresh: expires_at=%s, time_until_expiry=%v, window=%v\n",
|
|
|
|
|
|
account.ID, expiresAt.Format("2006-01-02 15:04:05"), timeUntilExpiry, antigravityRefreshWindow)
|
|
|
|
|
|
}
|
|
|
|
|
|
return needsRefresh
|
2025-12-28 17:48:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Refresh 执行 token 刷新
|
|
|
|
|
|
func (r *AntigravityTokenRefresher) Refresh(ctx context.Context, account *Account) (map[string]any, error) {
|
|
|
|
|
|
tokenInfo, err := r.antigravityOAuthService.RefreshAccountToken(ctx, account)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
newCredentials := r.antigravityOAuthService.BuildAccountCredentials(tokenInfo)
|
|
|
|
|
|
for k, v := range account.Credentials {
|
|
|
|
|
|
if _, exists := newCredentials[k]; !exists {
|
|
|
|
|
|
newCredentials[k] = v
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return newCredentials, nil
|
|
|
|
|
|
}
|