1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
package jmap
import (
"fmt"
)
// Map represents a simple JSON map.
type Map map[string]any
// GetString retrieves a value from the map as a string.
func (m Map) GetString(key string) (string, error) {
val, ok := m[key]
if !ok {
return "", fmt.Errorf("Response was missing `%s`", key)
}
strVal, ok := val.(string)
if !ok {
return "", fmt.Errorf("`%s` was not a string", key)
}
return strVal, nil
}
// GetMap retrieves a value from the map as a map.
func (m Map) GetMap(key string) (Map, error) {
val, ok := m[key]
if !ok {
return nil, fmt.Errorf("Response was missing `%s`", key)
}
mapVal, ok := val.(map[string]any)
if !ok {
return nil, fmt.Errorf("`%s` was not a map, got %T", key, m[key])
}
return mapVal, nil
}
// GetInt retrieves a value from the map as an int.
func (m Map) GetInt(key string) (int, error) {
val, ok := m[key]
if !ok {
return -1, fmt.Errorf("Response was missing `%s`", key)
}
floatVal, ok := val.(float64)
if !ok {
return -1, fmt.Errorf("`%s` was not an int", key)
}
return int(floatVal), nil
}
// GetBool retrieves a value from the map as a bool.
func (m Map) GetBool(key string) (bool, error) {
val, ok := m[key]
if !ok {
return false, fmt.Errorf("Response was missing `%s`", key)
}
boolVal, ok := val.(bool)
if !ok {
return false, fmt.Errorf("`%s` was not a bool", key)
}
return boolVal, nil
}
|