Files
CLIProxyAPI/sdk/cliproxy/auth/errors.go
Luis Pater 8392b180ce fix(cliproxy): avoid credential cooldown for connection-lifecycle disconnect errors
- Added a dedicated `connection_lifecycle` error code and lifecycle detection for context cancellation, EOF variants, and websocket close conditions.
- Introduced shared gating (`shouldSkipCredentialCooldown`) so transport/session lifecycle failures do not mark auth/model as unavailable or set retry cooldown.
- Kept request-scoped/invalid failures as high-priority and preserved status-bearing HTTP errors behavior so auth cooldown still applies when appropriate.

Closes: #4819 #4787
2026-08-06 22:52:45 +08:00

45 lines
1.3 KiB
Go

package auth
const requestScopedErrorCode = "request_scoped"
// connectionLifecycleErrorCode marks transport/session lifecycle failures that
// must skip credential cooldown without being treated as request-scoped faults.
const connectionLifecycleErrorCode = "connection_lifecycle"
// Error describes an authentication related failure in a provider agnostic format.
type Error struct {
// Code is a short machine readable identifier.
Code string `json:"code,omitempty"`
// Message is a human readable description of the failure.
Message string `json:"message"`
// Retryable indicates whether a retry might fix the issue automatically.
Retryable bool `json:"retryable"`
// HTTPStatus optionally records an HTTP-like status code for the error.
HTTPStatus int `json:"http_status,omitempty"`
}
// Error implements the error interface.
func (e *Error) Error() string {
if e == nil {
return ""
}
if e.Code == "" {
return e.Message
}
return e.Code + ": " + e.Message
}
// StatusCode implements optional status accessor for manager decision making.
func (e *Error) StatusCode() int {
if e == nil {
return 0
}
return e.HTTPStatus
}
// IsRequestScoped reports whether the failure is tied to the current request
// rather than the selected credential.
func (e *Error) IsRequestScoped() bool {
return e != nil && e.Code == requestScopedErrorCode
}