mirror of
https://github.com/rancher/steve.git
synced 2025-04-27 02:51:10 +00:00
57 lines
1.7 KiB
Go
57 lines
1.7 KiB
Go
package proxy
|
|
|
|
import (
|
|
"github.com/rancher/steve/pkg/schemaserver/httperror"
|
|
"github.com/rancher/steve/pkg/schemaserver/types"
|
|
"github.com/rancher/wrangler/pkg/schemas/validation"
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
)
|
|
|
|
type errorStore struct {
|
|
types.Store
|
|
}
|
|
|
|
func (e *errorStore) ByID(apiOp *types.APIRequest, schema *types.APISchema, id string) (types.APIObject, error) {
|
|
data, err := e.Store.ByID(apiOp, schema, id)
|
|
return data, translateError(err)
|
|
}
|
|
|
|
func (e *errorStore) List(apiOp *types.APIRequest, schema *types.APISchema) (types.APIObjectList, error) {
|
|
data, err := e.Store.List(apiOp, schema)
|
|
return data, translateError(err)
|
|
}
|
|
|
|
func (e *errorStore) Create(apiOp *types.APIRequest, schema *types.APISchema, data types.APIObject) (types.APIObject, error) {
|
|
data, err := e.Store.Create(apiOp, schema, data)
|
|
return data, translateError(err)
|
|
|
|
}
|
|
|
|
func (e *errorStore) Update(apiOp *types.APIRequest, schema *types.APISchema, data types.APIObject, id string) (types.APIObject, error) {
|
|
data, err := e.Store.Update(apiOp, schema, data, id)
|
|
return data, translateError(err)
|
|
|
|
}
|
|
|
|
func (e *errorStore) Delete(apiOp *types.APIRequest, schema *types.APISchema, id string) (types.APIObject, error) {
|
|
data, err := e.Store.Delete(apiOp, schema, id)
|
|
return data, translateError(err)
|
|
|
|
}
|
|
|
|
func (e *errorStore) Watch(apiOp *types.APIRequest, schema *types.APISchema, wr types.WatchRequest) (chan types.APIEvent, error) {
|
|
data, err := e.Store.Watch(apiOp, schema, wr)
|
|
return data, translateError(err)
|
|
}
|
|
|
|
func translateError(err error) error {
|
|
if apiError, ok := err.(errors.APIStatus); ok {
|
|
status := apiError.Status()
|
|
return httperror.NewAPIError(validation.ErrorCode{
|
|
Status: int(status.Code),
|
|
Code: string(status.Reason),
|
|
}, status.Message)
|
|
}
|
|
return err
|
|
}
|