fixed review

This commit is contained in:
Ruslan Efanov 2021-04-20 21:07:45 +03:00
parent 6716538e0a
commit 12d18fb295
4 changed files with 32 additions and 31 deletions

View file

@ -66,6 +66,10 @@ func (c *Client) GetRequest(urlWithParameters string, versioned ...bool) ([]byte
return res, 0, err
}
if resp.StatusCode >= http.StatusBadRequest && resp.StatusCode < http.StatusInternalServerError {
return res, resp.StatusCode, NewAPIError(res)
}
if c.Debug {
log.Printf("API Response: %s", res)
}
@ -129,6 +133,10 @@ func (c *Client) PostRequest(uri string, postData interface{}, contType ...strin
return res, 0, err
}
if resp.StatusCode >= http.StatusBadRequest && resp.StatusCode < http.StatusInternalServerError {
return res, resp.StatusCode, NewAPIError(res)
}
if c.Debug {
log.Printf("API Response: %s", res)
}

View file

@ -1,11 +1,6 @@
package v5
import (
"encoding/json"
"strconv"
)
const ArrowHTML = 60
import "encoding/json"
// APIErrorsList struct.
type APIErrorsList map[string]string
@ -24,8 +19,8 @@ func (e *APIError) Error() string {
func NewAPIError(dataResponse []byte) error {
a := &APIError{}
if dataResponse[0] == ArrowHTML {
a.ErrorMsg = "405 Not Allowed"
if dataResponse[0] == '<' {
a.ErrorMsg = "Account does not exist."
return a
}
@ -35,21 +30,3 @@ func NewAPIError(dataResponse []byte) error {
return a
}
// ErrorsHandler returns map.
func ErrorsHandler(errs interface{}) map[string]string {
m := make(map[string]string)
switch e := errs.(type) {
case map[string]interface{}:
for idx, val := range e {
m[idx] = val.(string)
}
case []interface{}:
for idx, val := range e {
m[strconv.Itoa(idx)] = val.(string)
}
}
return m
}

View file

@ -1,6 +1,7 @@
package v5
import (
"reflect"
"testing"
"golang.org/x/xerrors"
@ -8,7 +9,7 @@ import (
func TestFailure_ApiErrorsSlice(t *testing.T) {
b := []byte(`{"success": false, "errorMsg": "Failed to activate module", "errors": ["Your account has insufficient funds to activate integration module"]}`)
expected := map[string]string{
expected := APIErrorsList{
"0": "Your account has insufficient funds to activate integration module",
}
@ -16,7 +17,7 @@ func TestFailure_ApiErrorsSlice(t *testing.T) {
e := NewAPIError(b)
if xerrors.As(e, &expEr) {
if eq := expEr.Errors["0"] == expected["0"]; eq != true {
if eq := reflect.DeepEqual(expEr.Errors, expected); eq != true {
t.Errorf("%+v", eq)
}
} else {
@ -26,7 +27,7 @@ func TestFailure_ApiErrorsSlice(t *testing.T) {
func TestFailure_ApiErrorsMap(t *testing.T) {
b := []byte(`{"success": false, "errorMsg": "Failed to activate module", "errors": {"id": "ID must be an integer"}}`)
expected := map[string]string{
expected := APIErrorsList{
"id": "ID must be an integer",
}
@ -34,7 +35,7 @@ func TestFailure_ApiErrorsMap(t *testing.T) {
e := NewAPIError(b)
if xerrors.As(e, &expEr) {
if eq := expected["id"] == expEr.Errors["id"]; eq != true {
if eq := reflect.DeepEqual(expEr.Errors, expected); eq != true {
t.Errorf("%+v", eq)
}
} else {

View file

@ -2,6 +2,8 @@ package v5
import (
"encoding/json"
"fmt"
"strconv"
)
func (t Tag) MarshalJSON() ([]byte, error) {
@ -13,6 +15,19 @@ func (a *APIErrorsList) UnmarshalJSON(data []byte) error {
if err := json.Unmarshal(data, &i); err != nil {
return err
}
*a = ErrorsHandler(i)
m := make(map[string]string)
switch e := i.(type) {
case map[string]interface{}:
for idx, val := range e {
m[idx] = fmt.Sprint(val)
}
case []interface{}:
for idx, val := range e {
m[strconv.Itoa(idx)] = fmt.Sprint(val)
}
}
*a = m
return nil
}