| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- package controller
- import (
- "encoding/json"
- "net/http"
- "one-api/model"
- "one-api/setting/ratio_setting"
- "one-api/dto"
- "sync"
- "time"
- "github.com/gin-gonic/gin"
- )
- type upstreamResult struct {
- Name string `json:"name"`
- Data map[string]any `json:"data,omitempty"`
- Err string `json:"err,omitempty"`
- }
- type TestResult struct {
- Name string `json:"name"`
- Status string `json:"status"`
- Error string `json:"error,omitempty"`
- }
- type DifferenceItem struct {
- Current interface{} `json:"current"` // 当前本地值,可能为null
- Upstreams map[string]interface{} `json:"upstreams"` // 上游值:具体值/"same"/null
- }
- type SyncableChannel struct {
- ID int `json:"id"`
- Name string `json:"name"`
- BaseURL string `json:"base_url"`
- Status int `json:"status"`
- }
- func FetchUpstreamRatios(c *gin.Context) {
- var req dto.UpstreamRequest
- if err := c.ShouldBindJSON(&req); err != nil {
- c.JSON(http.StatusBadRequest, gin.H{"success": false, "message": err.Error()})
- return
- }
- if req.Timeout <= 0 {
- req.Timeout = 10
- }
- var upstreams []dto.UpstreamDTO
- if len(req.ChannelIDs) > 0 {
- intIds := make([]int, 0, len(req.ChannelIDs))
- for _, id64 := range req.ChannelIDs {
- intIds = append(intIds, int(id64))
- }
- dbChannels, _ := model.GetChannelsByIds(intIds)
- for _, ch := range dbChannels {
- upstreams = append(upstreams, dto.UpstreamDTO{
- Name: ch.Name,
- BaseURL: ch.GetBaseURL(),
- Endpoint: "",
- })
- }
- }
- var wg sync.WaitGroup
- ch := make(chan upstreamResult, len(upstreams))
- for _, chn := range upstreams {
- wg.Add(1)
- go func(chItem dto.UpstreamDTO) {
- defer wg.Done()
- endpoint := chItem.Endpoint
- if endpoint == "" {
- endpoint = "/api/ratio_config"
- }
- url := chItem.BaseURL + endpoint
- client := http.Client{Timeout: time.Duration(req.Timeout) * time.Second}
- resp, err := client.Get(url)
- if err != nil {
- ch <- upstreamResult{Name: chItem.Name, Err: err.Error()}
- return
- }
- defer resp.Body.Close()
- if resp.StatusCode != http.StatusOK {
- ch <- upstreamResult{Name: chItem.Name, Err: resp.Status}
- return
- }
- var body struct {
- Success bool `json:"success"`
- Data map[string]any `json:"data"`
- Message string `json:"message"`
- }
- if err := json.NewDecoder(resp.Body).Decode(&body); err != nil {
- ch <- upstreamResult{Name: chItem.Name, Err: err.Error()}
- return
- }
- if !body.Success {
- ch <- upstreamResult{Name: chItem.Name, Err: body.Message}
- return
- }
- ch <- upstreamResult{Name: chItem.Name, Data: body.Data}
- }(chn)
- }
- wg.Wait()
- close(ch)
- localData := ratio_setting.GetExposedData()
- var testResults []dto.TestResult
- var successfulChannels []struct {
- name string
- data map[string]any
- }
- for r := range ch {
- if r.Err != "" {
- testResults = append(testResults, dto.TestResult{
- Name: r.Name,
- Status: "error",
- Error: r.Err,
- })
- } else {
- testResults = append(testResults, dto.TestResult{
- Name: r.Name,
- Status: "success",
- })
- successfulChannels = append(successfulChannels, struct {
- name string
- data map[string]any
- }{name: r.Name, data: r.Data})
- }
- }
- differences := buildDifferences(localData, successfulChannels)
- c.JSON(http.StatusOK, gin.H{
- "success": true,
- "data": gin.H{
- "differences": differences,
- "test_results": testResults,
- },
- })
- }
- func buildDifferences(localData map[string]any, successfulChannels []struct {
- name string
- data map[string]any
- }) map[string]map[string]dto.DifferenceItem {
- differences := make(map[string]map[string]dto.DifferenceItem)
- ratioTypes := []string{"model_ratio", "completion_ratio", "cache_ratio", "model_price"}
- allModels := make(map[string]struct{})
-
- for _, ratioType := range ratioTypes {
- if localRatioAny, ok := localData[ratioType]; ok {
- if localRatio, ok := localRatioAny.(map[string]float64); ok {
- for modelName := range localRatio {
- allModels[modelName] = struct{}{}
- }
- }
- }
- }
-
- for _, channel := range successfulChannels {
- for _, ratioType := range ratioTypes {
- if upstreamRatio, ok := channel.data[ratioType].(map[string]any); ok {
- for modelName := range upstreamRatio {
- allModels[modelName] = struct{}{}
- }
- }
- }
- }
- for modelName := range allModels {
- for _, ratioType := range ratioTypes {
- var localValue interface{} = nil
- if localRatioAny, ok := localData[ratioType]; ok {
- if localRatio, ok := localRatioAny.(map[string]float64); ok {
- if val, exists := localRatio[modelName]; exists {
- localValue = val
- }
- }
- }
- upstreamValues := make(map[string]interface{})
- hasUpstreamValue := false
- hasDifference := false
- for _, channel := range successfulChannels {
- var upstreamValue interface{} = nil
-
- if upstreamRatio, ok := channel.data[ratioType].(map[string]any); ok {
- if val, exists := upstreamRatio[modelName]; exists {
- upstreamValue = val
- hasUpstreamValue = true
-
- if localValue != nil && localValue != val {
- hasDifference = true
- } else if localValue == val {
- upstreamValue = "same"
- }
- }
- }
- if upstreamValue == nil && localValue == nil {
- upstreamValue = "same"
- }
-
- if localValue == nil && upstreamValue != nil && upstreamValue != "same" {
- hasDifference = true
- }
-
- upstreamValues[channel.name] = upstreamValue
- }
- shouldInclude := false
-
- if localValue != nil {
- if hasDifference {
- shouldInclude = true
- }
- } else {
- if hasUpstreamValue {
- shouldInclude = true
- }
- }
- if shouldInclude {
- if differences[modelName] == nil {
- differences[modelName] = make(map[string]dto.DifferenceItem)
- }
- differences[modelName][ratioType] = dto.DifferenceItem{
- Current: localValue,
- Upstreams: upstreamValues,
- }
- }
- }
- }
- channelHasDiff := make(map[string]bool)
- for _, ratioMap := range differences {
- for _, item := range ratioMap {
- for chName, val := range item.Upstreams {
- if val != nil && val != "same" {
- channelHasDiff[chName] = true
- }
- }
- }
- }
- for modelName, ratioMap := range differences {
- for ratioType, item := range ratioMap {
- for chName := range item.Upstreams {
- if !channelHasDiff[chName] {
- delete(item.Upstreams, chName)
- }
- }
- differences[modelName][ratioType] = item
- }
- }
- return differences
- }
- func GetSyncableChannels(c *gin.Context) {
- channels, err := model.GetAllChannels(0, 0, true, false)
- if err != nil {
- c.JSON(http.StatusOK, gin.H{
- "success": false,
- "message": err.Error(),
- })
- return
- }
- var syncableChannels []dto.SyncableChannel
- for _, channel := range channels {
- if channel.GetBaseURL() != "" {
- syncableChannels = append(syncableChannels, dto.SyncableChannel{
- ID: channel.Id,
- Name: channel.Name,
- BaseURL: channel.GetBaseURL(),
- Status: channel.Status,
- })
- }
- }
- c.JSON(http.StatusOK, gin.H{
- "success": true,
- "message": "",
- "data": syncableChannels,
- })
- }
|