105 lines
3.0 KiB
Go
105 lines
3.0 KiB
Go
package helps
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/router-for-me/CLIProxyAPI/v7/internal/config"
|
|
cliproxyauth "github.com/router-for-me/CLIProxyAPI/v7/sdk/cliproxy/auth"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/tidwall/gjson"
|
|
"github.com/tidwall/sjson"
|
|
)
|
|
|
|
func isAntigravityVertexSearchRedirect(rawURL string) bool {
|
|
parsed, err := url.Parse(rawURL)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return parsed.Scheme == "https" &&
|
|
parsed.Host == "vertexaisearch.cloud.google.com" &&
|
|
strings.HasPrefix(parsed.Path, "/grounding-api-redirect/")
|
|
}
|
|
|
|
func resolveAntigravityGroundingURL(ctx context.Context, cfg *config.Config, auth *cliproxyauth.Auth, rawURL string) string {
|
|
if !isAntigravityVertexSearchRedirect(rawURL) {
|
|
return rawURL
|
|
}
|
|
client := NewProxyAwareHTTPClient(ctx, cfg, auth, 0)
|
|
client.CheckRedirect = func(_ *http.Request, _ []*http.Request) error {
|
|
return http.ErrUseLastResponse
|
|
}
|
|
req, errReq := http.NewRequestWithContext(ctx, http.MethodHead, rawURL, nil)
|
|
if errReq != nil {
|
|
log.WithError(errReq).Debug("antigravity grounding url: create redirect request failed")
|
|
return rawURL
|
|
}
|
|
resp, errDo := client.Do(req)
|
|
if errDo != nil {
|
|
log.WithError(errDo).Debug("antigravity grounding url: resolve redirect failed")
|
|
return rawURL
|
|
}
|
|
defer func() {
|
|
if errClose := resp.Body.Close(); errClose != nil {
|
|
log.WithError(errClose).Debug("antigravity grounding url: close redirect response failed")
|
|
}
|
|
}()
|
|
|
|
if resp.StatusCode < http.StatusMultipleChoices || resp.StatusCode >= http.StatusBadRequest {
|
|
return rawURL
|
|
}
|
|
location := strings.TrimSpace(resp.Header.Get("Location"))
|
|
if location == "" {
|
|
return rawURL
|
|
}
|
|
parsed, errParse := url.Parse(location)
|
|
if errParse != nil || parsed.Scheme != "https" || parsed.Host == "" {
|
|
return rawURL
|
|
}
|
|
return location
|
|
}
|
|
|
|
// ResolveAntigravityGroundingURLs replaces Vertex Search redirect URLs in grounding chunks with their target URLs.
|
|
func ResolveAntigravityGroundingURLs(ctx context.Context, cfg *config.Config, auth *cliproxyauth.Auth, payload []byte) []byte {
|
|
if len(payload) == 0 {
|
|
return payload
|
|
}
|
|
|
|
basePath := "response.candidates.0.groundingMetadata.groundingChunks"
|
|
chunks := gjson.GetBytes(payload, basePath)
|
|
if !chunks.IsArray() {
|
|
basePath = "candidates.0.groundingMetadata.groundingChunks"
|
|
chunks = gjson.GetBytes(payload, basePath)
|
|
}
|
|
if !chunks.IsArray() {
|
|
return payload
|
|
}
|
|
|
|
output := payload
|
|
resolved := map[string]string{}
|
|
for i, chunk := range chunks.Array() {
|
|
uri := strings.TrimSpace(chunk.Get("web.uri").String())
|
|
if uri == "" {
|
|
continue
|
|
}
|
|
resolvedURI, ok := resolved[uri]
|
|
if !ok {
|
|
resolvedURI = resolveAntigravityGroundingURL(ctx, cfg, auth, uri)
|
|
resolved[uri] = resolvedURI
|
|
}
|
|
if resolvedURI == uri {
|
|
continue
|
|
}
|
|
updated, errSet := sjson.SetBytes(output, fmt.Sprintf("%s.%d.web.uri", basePath, i), resolvedURI)
|
|
if errSet != nil {
|
|
log.WithError(errSet).Debug("antigravity grounding url: set resolved url failed")
|
|
continue
|
|
}
|
|
output = updated
|
|
}
|
|
return output
|
|
}
|