This commit refactors the application's error handling mechanism by introducing a new standardized error type, `types.NewAPIError`. It also renames common JSON utility functions for better clarity. Previously, internal error handling was tightly coupled to the `dto.OpenAIError` format. This change decouples the internal logic from the external API representation. Key changes: - A new `types.NewAPIError` struct is introduced to serve as a canonical internal representation for all API errors. - All relay adapters (OpenAI, Claude, Gemini, etc.) are updated to return `*types.NewAPIError`. - Controllers now convert the internal `NewAPIError` to the client-facing `OpenAIError` format at the API boundary, ensuring backward compatibility. - Channel auto-disable/enable logic is updated to use the new standardized error type. - JSON utility functions are renamed to align with Go's standard library conventions (e.g., `UnmarshalJson` -> `Unmarshal`, `EncodeJson` -> `Marshal`).
105 lines
2.6 KiB
Go
105 lines
2.6 KiB
Go
package service
|
||
|
||
import (
|
||
"fmt"
|
||
"net/http"
|
||
"one-api/common"
|
||
"one-api/constant"
|
||
"one-api/dto"
|
||
"one-api/model"
|
||
"one-api/setting/operation_setting"
|
||
"one-api/types"
|
||
"strings"
|
||
)
|
||
|
||
func formatNotifyType(channelId int, status int) string {
|
||
return fmt.Sprintf("%s_%d_%d", dto.NotifyTypeChannelUpdate, channelId, status)
|
||
}
|
||
|
||
// disable & notify
|
||
func DisableChannel(channelId int, channelName string, reason string) {
|
||
success := model.UpdateChannelStatusById(channelId, common.ChannelStatusAutoDisabled, reason)
|
||
if success {
|
||
subject := fmt.Sprintf("通道「%s」(#%d)已被禁用", channelName, channelId)
|
||
content := fmt.Sprintf("通道「%s」(#%d)已被禁用,原因:%s", channelName, channelId, reason)
|
||
NotifyRootUser(formatNotifyType(channelId, common.ChannelStatusAutoDisabled), subject, content)
|
||
}
|
||
}
|
||
|
||
func EnableChannel(channelId int, channelName string) {
|
||
success := model.UpdateChannelStatusById(channelId, common.ChannelStatusEnabled, "")
|
||
if success {
|
||
subject := fmt.Sprintf("通道「%s」(#%d)已被启用", channelName, channelId)
|
||
content := fmt.Sprintf("通道「%s」(#%d)已被启用", channelName, channelId)
|
||
NotifyRootUser(formatNotifyType(channelId, common.ChannelStatusEnabled), subject, content)
|
||
}
|
||
}
|
||
|
||
func ShouldDisableChannel(channelType int, err *types.NewAPIError) bool {
|
||
if !common.AutomaticDisableChannelEnabled {
|
||
return false
|
||
}
|
||
if err == nil {
|
||
return false
|
||
}
|
||
if types.IsChannelError(err) {
|
||
return true
|
||
}
|
||
if types.IsLocalError(err) {
|
||
return false
|
||
}
|
||
if err.StatusCode == http.StatusUnauthorized {
|
||
return true
|
||
}
|
||
if err.StatusCode == http.StatusForbidden {
|
||
switch channelType {
|
||
case constant.ChannelTypeGemini:
|
||
return true
|
||
}
|
||
}
|
||
oaiErr := err.ToOpenAIError()
|
||
switch oaiErr.Code {
|
||
case "invalid_api_key":
|
||
return true
|
||
case "account_deactivated":
|
||
return true
|
||
case "billing_not_active":
|
||
return true
|
||
case "pre_consume_token_quota_failed":
|
||
return true
|
||
}
|
||
switch oaiErr.Type {
|
||
case "insufficient_quota":
|
||
return true
|
||
case "insufficient_user_quota":
|
||
return true
|
||
// https://docs.anthropic.com/claude/reference/errors
|
||
case "authentication_error":
|
||
return true
|
||
case "permission_error":
|
||
return true
|
||
case "forbidden":
|
||
return true
|
||
}
|
||
|
||
lowerMessage := strings.ToLower(err.Error())
|
||
search, _ := AcSearch(lowerMessage, operation_setting.AutomaticDisableKeywords, true)
|
||
return search
|
||
}
|
||
|
||
func ShouldEnableChannel(err error, newAPIError *types.NewAPIError, status int) bool {
|
||
if !common.AutomaticEnableChannelEnabled {
|
||
return false
|
||
}
|
||
if err != nil {
|
||
return false
|
||
}
|
||
if newAPIError != nil {
|
||
return false
|
||
}
|
||
if status != common.ChannelStatusAutoDisabled {
|
||
return false
|
||
}
|
||
return true
|
||
}
|