| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- package model
- import (
- "gorm.io/gorm"
- "one-api/common"
- )
- type Channel struct {
- Id int `json:"id"`
- Type int `json:"type" gorm:"default:0"`
- Key string `json:"key" gorm:"not null"`
- OpenAIOrganization *string `json:"openai_organization"`
- TestModel *string `json:"test_model"`
- Status int `json:"status" gorm:"default:1"`
- Name string `json:"name" gorm:"index"`
- Weight *uint `json:"weight" gorm:"default:0"`
- CreatedTime int64 `json:"created_time" gorm:"bigint"`
- TestTime int64 `json:"test_time" gorm:"bigint"`
- ResponseTime int `json:"response_time"` // in milliseconds
- BaseURL *string `json:"base_url" gorm:"column:base_url;default:''"`
- Other string `json:"other"`
- Balance float64 `json:"balance"` // in USD
- BalanceUpdatedTime int64 `json:"balance_updated_time" gorm:"bigint"`
- Models string `json:"models"`
- Group string `json:"group" gorm:"type:varchar(64);default:'default'"`
- UsedQuota int64 `json:"used_quota" gorm:"bigint;default:0"`
- ModelMapping *string `json:"model_mapping" gorm:"type:varchar(1024);default:''"`
- //MaxInputTokens *int `json:"max_input_tokens" gorm:"default:0"`
- StatusCodeMapping *string `json:"status_code_mapping" gorm:"type:varchar(1024);default:''"`
- Priority *int64 `json:"priority" gorm:"bigint;default:0"`
- AutoBan *int `json:"auto_ban" gorm:"default:1"`
- }
- func GetAllChannels(startIdx int, num int, selectAll bool, idSort bool) ([]*Channel, error) {
- var channels []*Channel
- var err error
- order := "priority desc"
- if idSort {
- order = "id desc"
- }
- if selectAll {
- err = DB.Order(order).Find(&channels).Error
- } else {
- err = DB.Order(order).Limit(num).Offset(startIdx).Omit("key").Find(&channels).Error
- }
- return channels, err
- }
- func SearchChannels(keyword string, group string, model string) ([]*Channel, error) {
- var channels []*Channel
- keyCol := "`key`"
- groupCol := "`group`"
- modelsCol := "`models`"
- // 如果是 PostgreSQL,使用双引号
- if common.UsingPostgreSQL {
- keyCol = `"key"`
- groupCol = `"group"`
- modelsCol = `"models"`
- }
- // 构造基础查询
- baseQuery := DB.Model(&Channel{}).Omit(keyCol)
- // 构造WHERE子句
- var whereClause string
- var args []interface{}
- if group != "" {
- whereClause = "(id = ? OR name LIKE ? OR " + keyCol + " = ?) AND " + groupCol + " LIKE ? AND " + modelsCol + " LIKE ?"
- args = append(args, common.String2Int(keyword), "%"+keyword+"%", keyword, "%"+group+"%", "%"+model+"%")
- } else {
- whereClause = "(id = ? OR name LIKE ? OR " + keyCol + " = ?) AND " + modelsCol + " LIKE ?"
- args = append(args, common.String2Int(keyword), "%"+keyword+"%", keyword, "%"+model+"%")
- }
- // 执行查询
- err := baseQuery.Where(whereClause, args...).Find(&channels).Error
- if err != nil {
- return nil, err
- }
- return channels, nil
- }
- func GetChannelById(id int, selectAll bool) (*Channel, error) {
- channel := Channel{Id: id}
- var err error = nil
- if selectAll {
- err = DB.First(&channel, "id = ?", id).Error
- } else {
- err = DB.Omit("key").First(&channel, "id = ?", id).Error
- }
- return &channel, err
- }
- func BatchInsertChannels(channels []Channel) error {
- var err error
- err = DB.Create(&channels).Error
- if err != nil {
- return err
- }
- for _, channel_ := range channels {
- err = channel_.AddAbilities()
- if err != nil {
- return err
- }
- }
- return nil
- }
- func BatchDeleteChannels(ids []int) error {
- //使用事务 删除channel表和channel_ability表
- tx := DB.Begin()
- err := tx.Where("id in (?)", ids).Delete(&Channel{}).Error
- if err != nil {
- // 回滚事务
- tx.Rollback()
- return err
- }
- err = tx.Where("channel_id in (?)", ids).Delete(&Ability{}).Error
- if err != nil {
- // 回滚事务
- tx.Rollback()
- return err
- }
- // 提交事务
- tx.Commit()
- return err
- }
- func (channel *Channel) GetPriority() int64 {
- if channel.Priority == nil {
- return 0
- }
- return *channel.Priority
- }
- func (channel *Channel) GetWeight() int {
- if channel.Weight == nil {
- return 0
- }
- return int(*channel.Weight)
- }
- func (channel *Channel) GetBaseURL() string {
- if channel.BaseURL == nil {
- return ""
- }
- return *channel.BaseURL
- }
- func (channel *Channel) GetModelMapping() string {
- if channel.ModelMapping == nil {
- return ""
- }
- return *channel.ModelMapping
- }
- func (channel *Channel) GetStatusCodeMapping() string {
- if channel.StatusCodeMapping == nil {
- return ""
- }
- return *channel.StatusCodeMapping
- }
- func (channel *Channel) Insert() error {
- var err error
- err = DB.Create(channel).Error
- if err != nil {
- return err
- }
- err = channel.AddAbilities()
- return err
- }
- func (channel *Channel) Update() error {
- var err error
- err = DB.Model(channel).Updates(channel).Error
- if err != nil {
- return err
- }
- DB.Model(channel).First(channel, "id = ?", channel.Id)
- err = channel.UpdateAbilities()
- return err
- }
- func (channel *Channel) UpdateResponseTime(responseTime int64) {
- err := DB.Model(channel).Select("response_time", "test_time").Updates(Channel{
- TestTime: common.GetTimestamp(),
- ResponseTime: int(responseTime),
- }).Error
- if err != nil {
- common.SysError("failed to update response time: " + err.Error())
- }
- }
- func (channel *Channel) UpdateBalance(balance float64) {
- err := DB.Model(channel).Select("balance_updated_time", "balance").Updates(Channel{
- BalanceUpdatedTime: common.GetTimestamp(),
- Balance: balance,
- }).Error
- if err != nil {
- common.SysError("failed to update balance: " + err.Error())
- }
- }
- func (channel *Channel) Delete() error {
- var err error
- err = DB.Delete(channel).Error
- if err != nil {
- return err
- }
- err = channel.DeleteAbilities()
- return err
- }
- func UpdateChannelStatusById(id int, status int) {
- err := UpdateAbilityStatus(id, status == common.ChannelStatusEnabled)
- if err != nil {
- common.SysError("failed to update ability status: " + err.Error())
- }
- err = DB.Model(&Channel{}).Where("id = ?", id).Update("status", status).Error
- if err != nil {
- common.SysError("failed to update channel status: " + err.Error())
- }
- }
- func UpdateChannelUsedQuota(id int, quota int) {
- if common.BatchUpdateEnabled {
- addNewRecord(BatchUpdateTypeChannelUsedQuota, id, quota)
- return
- }
- updateChannelUsedQuota(id, quota)
- }
- func updateChannelUsedQuota(id int, quota int) {
- err := DB.Model(&Channel{}).Where("id = ?", id).Update("used_quota", gorm.Expr("used_quota + ?", quota)).Error
- if err != nil {
- common.SysError("failed to update channel used quota: " + err.Error())
- }
- }
- func DeleteChannelByStatus(status int64) (int64, error) {
- result := DB.Where("status = ?", status).Delete(&Channel{})
- return result.RowsAffected, result.Error
- }
- func DeleteDisabledChannel() (int64, error) {
- result := DB.Where("status = ? or status = ?", common.ChannelStatusAutoDisabled, common.ChannelStatusManuallyDisabled).Delete(&Channel{})
- return result.RowsAffected, result.Error
- }
|