forked from pufferpanel/pufferpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypewithmetadata.go
More file actions
54 lines (47 loc) · 1.14 KB
/
typewithmetadata.go
File metadata and controls
54 lines (47 loc) · 1.14 KB
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
package pufferpanel
import (
"encoding/json"
"errors"
"fmt"
"reflect"
)
//designed to be overridden
type MetadataType struct {
Type string `json:"type,omitempty"`
Metadata map[string]interface{} `json:"-,omitempty"`
}
//parses a type with this declaration, storing what it needs into metadata and type
func (t *MetadataType) UnmarshalJSON(bs []byte) (err error) {
err = json.Unmarshal(bs, &t.Metadata)
if err != nil {
return
}
a := t.Metadata["type"]
if a == nil {
return errors.New("no type defined")
}
var ok bool
t.Type, ok = a.(string)
if !ok {
return errors.New(fmt.Sprintf("type is of %s instead of string", reflect.TypeOf(a)))
}
delete(t.Metadata, "type")
return
}
func (t *MetadataType) MarshalJSON() ([]byte, error) {
newMapping := make(map[string]interface{})
for k, v := range t.Metadata {
newMapping[k] = v
}
newMapping["type"] = t.Type
return json.Marshal(newMapping)
}
//Parses the metadata into the target interface
func (t *MetadataType) ParseMetadata(target interface{}) (err error) {
data, err := json.Marshal(t)
if err != nil {
return
}
err = json.Unmarshal(data, &target)
return
}