-
Notifications
You must be signed in to change notification settings - Fork 13
/
SupportContact.go
160 lines (130 loc) · 3.48 KB
/
SupportContact.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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
* This file is automatically generated
*/
package catalog
import (
"encoding/json"
apiv1 "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/api/v1"
"github.com/Axway/agent-sdk/pkg/util/log"
)
var (
SupportContactCtx log.ContextField = "supportContact"
_SupportContactGVK = apiv1.GroupVersionKind{
GroupKind: apiv1.GroupKind{
Group: "catalog",
Kind: "SupportContact",
},
APIVersion: "v1",
}
SupportContactScopes = []string{""}
)
const SupportContactResourceName = "supportcontacts"
func SupportContactGVK() apiv1.GroupVersionKind {
return _SupportContactGVK
}
func init() {
apiv1.RegisterGVK(_SupportContactGVK, SupportContactScopes[0], SupportContactResourceName)
log.RegisterContextField(SupportContactCtx)
}
// SupportContact Resource
type SupportContact struct {
apiv1.ResourceMeta
Owner *apiv1.Owner `json:"owner"`
Spec SupportContactSpec `json:"spec"`
}
// NewSupportContact creates an empty *SupportContact
func NewSupportContact(name string) *SupportContact {
return &SupportContact{
ResourceMeta: apiv1.ResourceMeta{
Name: name,
GroupVersionKind: _SupportContactGVK,
},
}
}
// SupportContactFromInstanceArray converts a []*ResourceInstance to a []*SupportContact
func SupportContactFromInstanceArray(fromArray []*apiv1.ResourceInstance) ([]*SupportContact, error) {
newArray := make([]*SupportContact, 0)
for _, item := range fromArray {
res := &SupportContact{}
err := res.FromInstance(item)
if err != nil {
return make([]*SupportContact, 0), err
}
newArray = append(newArray, res)
}
return newArray, nil
}
// AsInstance converts a SupportContact to a ResourceInstance
func (res *SupportContact) AsInstance() (*apiv1.ResourceInstance, error) {
meta := res.ResourceMeta
meta.GroupVersionKind = SupportContactGVK()
res.ResourceMeta = meta
m, err := json.Marshal(res)
if err != nil {
return nil, err
}
instance := apiv1.ResourceInstance{}
err = json.Unmarshal(m, &instance)
if err != nil {
return nil, err
}
return &instance, nil
}
// FromInstance converts a ResourceInstance to a SupportContact
func (res *SupportContact) FromInstance(ri *apiv1.ResourceInstance) error {
if ri == nil {
res = nil
return nil
}
var err error
rawResource := ri.GetRawResource()
if rawResource == nil {
rawResource, err = json.Marshal(ri)
if err != nil {
return err
}
}
err = json.Unmarshal(rawResource, res)
return err
}
// MarshalJSON custom marshaller to handle sub resources
func (res *SupportContact) MarshalJSON() ([]byte, error) {
m, err := json.Marshal(&res.ResourceMeta)
if err != nil {
return nil, err
}
var out map[string]interface{}
err = json.Unmarshal(m, &out)
if err != nil {
return nil, err
}
out["owner"] = res.Owner
out["spec"] = res.Spec
return json.Marshal(out)
}
// UnmarshalJSON custom unmarshaller to handle sub resources
func (res *SupportContact) UnmarshalJSON(data []byte) error {
var err error
aux := &apiv1.ResourceInstance{}
err = json.Unmarshal(data, aux)
if err != nil {
return err
}
res.ResourceMeta = aux.ResourceMeta
res.Owner = aux.Owner
// ResourceInstance holds the spec as a map[string]interface{}.
// Convert it to bytes, then convert to the spec type for the resource.
sr, err := json.Marshal(aux.Spec)
if err != nil {
return err
}
err = json.Unmarshal(sr, &res.Spec)
if err != nil {
return err
}
return nil
}
// PluralName returns the plural name of the resource
func (res *SupportContact) PluralName() string {
return SupportContactResourceName
}