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
100 lines
3.4 KiB
Go
100 lines
3.4 KiB
Go
package handler
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/service"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
func ensureCompositeTargetPlatform(c *gin.Context, apiKey *service.APIKey, model string) {
|
|
if c == nil || c.Request == nil || apiKey == nil || apiKey.Group == nil || apiKey.Group.Platform != service.PlatformComposite {
|
|
return
|
|
}
|
|
if _, ok := service.ResolvedTargetPlatformFromContext(c.Request.Context()); ok {
|
|
return
|
|
}
|
|
if platform, ok := service.DetectModelPlatform(model); ok {
|
|
c.Request = c.Request.WithContext(service.WithResolvedTargetPlatform(c.Request.Context(), platform))
|
|
}
|
|
}
|
|
|
|
func compositeTargetPlatformAllowed(c *gin.Context, apiKey *service.APIKey, model string, allowed ...string) bool {
|
|
if c == nil || c.Request == nil || apiKey == nil || apiKey.Group == nil || apiKey.Group.Platform != service.PlatformComposite {
|
|
return true
|
|
}
|
|
ensureCompositeTargetPlatform(c, apiKey, model)
|
|
platform, ok := service.ResolvedTargetPlatformFromContext(c.Request.Context())
|
|
if !ok {
|
|
return false
|
|
}
|
|
for _, allowedPlatform := range allowed {
|
|
if platform == allowedPlatform {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func compositeTargetPlatformResolved(c *gin.Context, apiKey *service.APIKey, model string) bool {
|
|
if c == nil || c.Request == nil || apiKey == nil || apiKey.Group == nil || apiKey.Group.Platform != service.PlatformComposite {
|
|
return true
|
|
}
|
|
ensureCompositeTargetPlatform(c, apiKey, model)
|
|
_, ok := service.ResolvedTargetPlatformFromContext(c.Request.Context())
|
|
return ok
|
|
}
|
|
|
|
func effectiveAPIKeyPlatform(c *gin.Context, apiKey *service.APIKey) string {
|
|
if c != nil && c.Request != nil {
|
|
if platform, ok := service.ResolvedTargetPlatformFromContext(c.Request.Context()); ok {
|
|
return platform
|
|
}
|
|
}
|
|
if apiKey == nil || apiKey.Group == nil {
|
|
return ""
|
|
}
|
|
return apiKey.Group.Platform
|
|
}
|
|
|
|
func openAIReasoningEffortPolicyForRequest(c *gin.Context, apiKey *service.APIKey) (string, []service.ReasoningEffortMapping, bool) {
|
|
if apiKey == nil || apiKey.Group == nil {
|
|
return "", nil, false
|
|
}
|
|
if apiKey.Group.Platform != service.PlatformOpenAI && apiKey.Group.Platform != service.PlatformComposite {
|
|
return "", nil, false
|
|
}
|
|
if effectiveAPIKeyPlatform(c, apiKey) != service.PlatformOpenAI {
|
|
return "", nil, false
|
|
}
|
|
return apiKey.Group.MaxReasoningEffort, apiKey.Group.ReasoningEffortMappings, true
|
|
}
|
|
|
|
func applyOpenAIReasoningEffortPolicyForRequest(c *gin.Context, apiKey *service.APIKey, body []byte) ([]byte, bool) {
|
|
maxEffort, mappings, ok := openAIReasoningEffortPolicyForRequest(c, apiKey)
|
|
if !ok {
|
|
return body, false
|
|
}
|
|
return service.ApplyOpenAIReasoningEffortPolicy(body, maxEffort, mappings)
|
|
}
|
|
|
|
func bindOpenAIReasoningEffortPolicyForMessagesRequest(c *gin.Context, apiKey *service.APIKey, body []byte) {
|
|
if c == nil || c.Request == nil {
|
|
return
|
|
}
|
|
// The Messages bridge synthesizes a default OpenAI effort when
|
|
// output_config.effort is omitted. Bind the group policy only for an
|
|
// explicit client value so the ceiling does not alter that default.
|
|
effort := gjson.GetBytes(body, "output_config.effort")
|
|
if !effort.Exists() || effort.Type != gjson.String || strings.TrimSpace(effort.String()) == "" {
|
|
return
|
|
}
|
|
maxEffort, mappings, ok := openAIReasoningEffortPolicyForRequest(c, apiKey)
|
|
if !ok {
|
|
return
|
|
}
|
|
c.Request = c.Request.WithContext(service.WithOpenAIReasoningEffortPolicy(c.Request.Context(), maxEffort, mappings))
|
|
}
|