fix error handling in osem api client
This commit is contained in:
parent
d4c499df38
commit
e3df49f8bf
1 changed files with 8 additions and 2 deletions
|
@ -26,7 +26,10 @@ func NewOsemClient(endpoint string) *OsemClient {
|
||||||
func (client *OsemClient) GetBox(boxId string) (*Box, error) {
|
func (client *OsemClient) GetBox(boxId string) (*Box, error) {
|
||||||
box := &Box{}
|
box := &Box{}
|
||||||
fail := &OsemError{}
|
fail := &OsemError{}
|
||||||
client.sling.New().Path("boxes/").Path(boxId).Receive(box, fail)
|
_, err := client.sling.New().Path("boxes/").Path(boxId).Receive(box, fail)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
if fail.Message != "" {
|
if fail.Message != "" {
|
||||||
return box, errors.New("could not fetch box: " + fail.Message)
|
return box, errors.New("could not fetch box: " + fail.Message)
|
||||||
}
|
}
|
||||||
|
@ -36,7 +39,10 @@ func (client *OsemClient) GetBox(boxId string) (*Box, error) {
|
||||||
func (client *OsemClient) GetAllBoxes() (*[]Box, error) {
|
func (client *OsemClient) GetAllBoxes() (*[]Box, error) {
|
||||||
boxes := &[]Box{}
|
boxes := &[]Box{}
|
||||||
fail := &OsemError{}
|
fail := &OsemError{}
|
||||||
client.sling.New().Path("boxes").Receive(boxes, fail)
|
_, err := client.sling.New().Path("boxes").Receive(boxes, fail)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
if fail.Message != "" {
|
if fail.Message != "" {
|
||||||
return boxes, errors.New("could not fetch boxes: " + fail.Message)
|
return boxes, errors.New("could not fetch boxes: " + fail.Message)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue