-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpath.go
43 lines (38 loc) · 995 Bytes
/
path.go
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
package jsonutil
import (
"strconv"
serrors "github.com/koki/structurederrors"
)
func AtPathIn(obj interface{}, path []string) (interface{}, error) {
if len(path) == 0 {
return obj, nil
}
key := path[0]
remainder := path[1:]
switch obj := obj.(type) {
case []interface{}:
i, err := strconv.ParseInt(key, 10, 64)
if err != nil {
return nil, serrors.ContextualizeErrorf(err, key)
}
if len(obj) <= int(i) {
return nil, serrors.InvalidValueErrorf(i, "index not found")
}
val, err := AtPathIn(obj[i], remainder)
if err != nil {
return nil, serrors.ContextualizeErrorf(err, key)
}
return val, nil
case map[string]interface{}:
if val, ok := obj[key]; ok {
val, err := AtPathIn(val, remainder)
if err != nil {
return nil, serrors.ContextualizeErrorf(err, key)
}
return val, nil
}
return nil, serrors.InvalidValueErrorf(key, "key not found")
default:
return nil, serrors.InvalidValueErrorf(key, "can only index into slice or map")
}
}