* Vendors packages * Adds a Makefile that uses docker to build a static binary against musl using alpine linux. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
package shared
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Jmap map[string]any
|
|
|
|
func (m Jmap) GetString(key string) (string, error) {
|
|
if val, ok := m[key]; !ok {
|
|
return "", fmt.Errorf("Response was missing `%s`", key)
|
|
} else if val, ok := val.(string); !ok {
|
|
return "", fmt.Errorf("`%s` was not a string", key)
|
|
} else {
|
|
return val, nil
|
|
}
|
|
}
|
|
|
|
func (m Jmap) GetMap(key string) (Jmap, error) {
|
|
if val, ok := m[key]; !ok {
|
|
return nil, fmt.Errorf("Response was missing `%s`", key)
|
|
} else if val, ok := val.(map[string]any); !ok {
|
|
return nil, fmt.Errorf("`%s` was not a map, got %T", key, m[key])
|
|
} else {
|
|
return val, nil
|
|
}
|
|
}
|
|
|
|
func (m Jmap) GetInt(key string) (int, error) {
|
|
if val, ok := m[key]; !ok {
|
|
return -1, fmt.Errorf("Response was missing `%s`", key)
|
|
} else if val, ok := val.(float64); !ok {
|
|
return -1, fmt.Errorf("`%s` was not an int", key)
|
|
} else {
|
|
return int(val), nil
|
|
}
|
|
}
|
|
|
|
func (m Jmap) GetBool(key string) (bool, error) {
|
|
if val, ok := m[key]; !ok {
|
|
return false, fmt.Errorf("Response was missing `%s`", key)
|
|
} else if val, ok := val.(bool); !ok {
|
|
return false, fmt.Errorf("`%s` was not an int", key)
|
|
} else {
|
|
return val, nil
|
|
}
|
|
}
|