forked from MartialBE/one-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchannel-model.go
93 lines (82 loc) · 1.72 KB
/
channel-model.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package controller
import (
"net/http"
"one-api/model"
"one-api/providers"
providersBase "one-api/providers/base"
"strings"
"github.com/gin-gonic/gin"
)
func GetModelList(c *gin.Context) {
channel := &model.Channel{}
err := c.ShouldBindJSON(channel)
if err != nil {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": err.Error(),
})
return
}
keys := strings.Split(channel.Key, "\n")
channel.Key = keys[0]
if channel.Key == "" {
if channel.Id == 0 {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "key is required",
})
return
}
channel, err = model.GetChannelById(channel.Id)
if err != nil {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": err.Error(),
})
return
}
}
provider := providers.GetProvider(channel, c)
if provider == nil {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "provider not found",
})
return
}
modelProvider, ok := provider.(providersBase.ModelListInterface)
if !ok {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": "channel not implemented",
})
return
}
modelList, err := modelProvider.GetModelList()
if err != nil {
c.JSON(http.StatusOK, gin.H{
"success": false,
"message": err.Error(),
})
return
}
// 去除重复的模型名称
uniqueModels := removeDuplicates(modelList)
c.JSON(http.StatusOK, gin.H{
"success": true,
"message": "",
"data": uniqueModels,
})
}
// 辅助函数:去除切片中的重复元素
func removeDuplicates(slice []string) []string {
keys := make(map[string]bool)
list := []string{}
for _, entry := range slice {
if _, value := keys[entry]; !value {
keys[entry] = true
list = append(list, entry)
}
}
return list
}