| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package service
- import (
- "fmt"
- "net/http"
- "one-api/common"
- relaymodel "one-api/dto"
- "one-api/model"
- "strings"
- )
- // disable & notify
- func DisableChannel(channelId int, channelName string, reason string) {
- model.UpdateChannelStatusById(channelId, common.ChannelStatusAutoDisabled)
- subject := fmt.Sprintf("通道「%s」(#%d)已被禁用", channelName, channelId)
- content := fmt.Sprintf("通道「%s」(#%d)已被禁用,原因:%s", channelName, channelId, reason)
- notifyRootUser(subject, content)
- }
- func EnableChannel(channelId int, channelName string) {
- model.UpdateChannelStatusById(channelId, common.ChannelStatusEnabled)
- subject := fmt.Sprintf("通道「%s」(#%d)已被启用", channelName, channelId)
- content := fmt.Sprintf("通道「%s」(#%d)已被启用", channelName, channelId)
- notifyRootUser(subject, content)
- }
- func ShouldDisableChannel(err *relaymodel.OpenAIError, statusCode int) bool {
- if !common.AutomaticDisableChannelEnabled {
- return false
- }
- if err == nil {
- return false
- }
- if statusCode == http.StatusUnauthorized {
- return true
- }
- switch err.Code {
- case "invalid_api_key":
- return true
- case "account_deactivated":
- return true
- case "billing_not_active":
- return true
- }
- switch err.Type {
- case "insufficient_quota":
- return true
- // https://docs.anthropic.com/claude/reference/errors
- case "authentication_error":
- return true
- case "permission_error":
- return true
- case "forbidden":
- return true
- }
- if strings.HasPrefix(err.Message, "Your credit balance is too low") { // anthropic
- return true
- } else if strings.HasPrefix(err.Message, "This organization has been disabled.") {
- return true
- }
- return false
- }
- func ShouldEnableChannel(err error, openAIErr *relaymodel.OpenAIError) bool {
- if !common.AutomaticEnableChannelEnabled {
- return false
- }
- if err != nil {
- return false
- }
- if openAIErr != nil {
- return false
- }
- return true
- }
|