package api import ( "net/http" "strconv" "github.com/gin-gonic/gin" "github.com/openteam/server/internal/pkg/resp" "github.com/openteam/server/internal/store" ) // AdminChannelModels GET /api/v1/admin/channels/:id/models — 渠道的模型绑定列表(含上游映射名)。 func (h *Handler) AdminChannelModels(c *gin.Context) { id, err := strconv.ParseUint(c.Param("id"), 10, 64) if err != nil { resp.Fail(c, http.StatusBadRequest, "invalid channel id") return } var bindings []store.ChannelModelBinding h.a.DB.Preload("Model").Where("channel_id = ?", id).Order("id ASC").Find(&bindings) out := make([]gin.H, 0, len(bindings)) for _, b := range bindings { out = append(out, gin.H{ "id": b.ID, "model_id": b.ModelID, "model_name": b.Model.Name, "upstream_model": b.UpstreamModel, "weight": b.Weight, }) } resp.OK(c, gin.H{"items": out}) } // AdminChannelAddModel POST /api/v1/admin/channels/:id/models — 手工添加渠道支持的模型。 // 无需渠道具备 /v1/models 接口:直接填上游模型名,可选自定义名称作为客户端调用名。 func (h *Handler) AdminChannelAddModel(c *gin.Context) { id, err := strconv.ParseUint(c.Param("id"), 10, 64) if err != nil { resp.Fail(c, http.StatusBadRequest, "invalid channel id") return } var req struct { UpstreamModel string `json:"upstream_model" binding:"required"` // 渠道侧真实模型名 CustomName string `json:"custom_name"` // 客户端调用名,空=用上游名 Weight *int `json:"weight"` } if err := c.ShouldBindJSON(&req); err != nil { resp.Fail(c, http.StatusBadRequest, "invalid input") return } globalName := req.CustomName if globalName == "" { globalName = req.UpstreamModel } // 解析或创建全局模型(客户端名) var m store.Model if err := h.a.DB.Where("name = ?", globalName).First(&m).Error; err != nil { m = store.Model{Name: globalName, DisplayName: globalName, Enabled: true} if err := h.a.DB.Create(&m).Error; err != nil { resp.Fail(c, http.StatusInternalServerError, "failed to create model") return } } b := store.ChannelModelBinding{ ChannelID: id, ModelID: m.ID, UpstreamModel: req.UpstreamModel, Weight: intOr(req.Weight, 1), } if err := h.a.DB.Create(&b).Error; err != nil { resp.Fail(c, http.StatusConflict, "binding may already exist") return } resp.Created(c, gin.H{"id": b.ID, "model_id": m.ID, "model_name": m.Name, "upstream_model": req.UpstreamModel, "weight": b.Weight}) } // AdminChannelUpdateModel PATCH /api/v1/admin/channels/:id/models/:bid — 改映射名/权重。 func (h *Handler) AdminChannelUpdateModel(c *gin.Context) { bid, err := strconv.ParseUint(c.Param("bid"), 10, 64) if err != nil { resp.Fail(c, http.StatusBadRequest, "invalid binding id") return } var req struct { UpstreamModel *string `json:"upstream_model"` Weight *int `json:"weight"` } if err := c.ShouldBindJSON(&req); err != nil { resp.Fail(c, http.StatusBadRequest, "invalid input") return } updates := map[string]any{} if req.UpstreamModel != nil { updates["upstream_model"] = *req.UpstreamModel } if req.Weight != nil { updates["weight"] = *req.Weight } if len(updates) > 0 { res := h.a.DB.Model(&store.ChannelModelBinding{}).Where("id = ?", bid).Updates(updates) if res.Error != nil { resp.Fail(c, http.StatusInternalServerError, "failed to update binding") return } if res.RowsAffected == 0 { resp.Fail(c, http.StatusNotFound, "binding not found") return } } resp.OK(c, gin.H{"ok": true}) } // AdminChannelDeleteModel DELETE /api/v1/admin/channels/:id/models/:bid — 解除绑定。 func (h *Handler) AdminChannelDeleteModel(c *gin.Context) { bid, err := strconv.ParseUint(c.Param("bid"), 10, 64) if err != nil { resp.Fail(c, http.StatusBadRequest, "invalid binding id") return } res := h.a.DB.Delete(&store.ChannelModelBinding{}, bid) if res.Error != nil { resp.Fail(c, http.StatusInternalServerError, "failed to delete binding") return } if res.RowsAffected == 0 { resp.Fail(c, http.StatusNotFound, "binding not found") return } resp.OK(c, gin.H{"ok": true}) }