-
Notifications
You must be signed in to change notification settings - Fork 12
/
tenants.go
151 lines (135 loc) · 4.57 KB
/
tenants.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
package dsdk
import (
"context"
_path "path"
greq "github.com/levigross/grequests"
)
type Tenant struct {
Path string `json:"path,omitempty" mapstructure:"path"`
Descr string `json:"descr,omitempty" mapstructure:"descr"`
InitiatorListSrc string `json:"initiator_list_src,omitempty" mapstructure:"initiator_list_src"`
MgmtIps []interface{} `json:"mgmt_ips,omitempty" mapstructure:"mgmt_ips"`
Name string `json:"name,omitempty" mapstructure:"name"`
ParentPath string `json:"parent_path,omitempty" mapstructure:"parent_path"`
Quota Quota `json:"quota,omitempty" mapstructure:"quota"`
QuotaStatus QuotaStatus `json:"quota_status,omitempty" mapstructure:"quota_status"`
Subtenants []string `json:"subtenants,omitempty" mapstructure:"subtenants"`
}
type Tenants struct {
Path string
}
type TenantsCreateRequest struct {
Ctxt context.Context `json:"-"`
Id string `json:"id,omitempty" mapstructure:"id"`
Name string `json:"name,omitempty" mapstructure:"name"`
Force bool `json:"force,omitempty" mapstructure:"force"`
}
func newTenants(path string) *Tenants {
return &Tenants{
Path: _path.Join(path, "tenants"),
}
}
func (e *Tenants) Create(ro *TenantsCreateRequest) (*Tenant, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Post(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &Tenant{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type TenantsListRequest struct {
Ctxt context.Context `json:"-"`
Params ListParams `json:"params,omitempty"`
}
func (e *Tenants) List(ro *TenantsListRequest) ([]*Tenant, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{
JSON: ro,
Params: ro.Params.ToMap()}
rs, apierr, err := GetConn(ro.Ctxt).GetList(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := []*Tenant{}
for _, data := range rs.Data {
elem := &Tenant{}
adata := data.(map[string]interface{})
if err = FillStruct(adata, elem); err != nil {
return nil, nil, err
}
resp = append(resp, elem)
}
return resp, nil, nil
}
type TenantsGetRequest struct {
Ctxt context.Context `json:"-"`
Path string `json:"-"`
}
func (e *Tenants) Get(ro *TenantsGetRequest) (*Tenant, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Get(ro.Ctxt, _path.Join(e.Path, ro.Path), gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &Tenant{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type TenantSetRequest struct {
Ctxt context.Context `json:"-"`
Path string `json:"path,omitempty" mapstructure:"path"`
Descr string `json:"descr,omitempty" mapstructure:"descr"`
InitiatorListSrc string `json:"initiator_list_src,omitempty" mapstructure:"initiator_list_src"`
MgmtIps []string `json:"mgmt_ips,omitempty" mapstructure:"mgmt_ips"`
Name string `json:"name,omitempty" mapstructure:"name"`
ParentPath string `json:"parent_path,omitempty" mapstructure:"parent_path"`
Quota Quota `json:"quota,omitempty" mapstructure:"quota"`
QuotaStatus QuotaStatus `json:"quota_status,omitempty" mapstructure:"quota_status"`
Subtenants []Tenant `json:"subtenants,omitempty" mapstructure:"subtenants"`
}
func (e *Tenant) Set(ro *TenantSetRequest) (*Tenant, *ApiErrorResponse, error) {
gro := &greq.RequestOptions{JSON: ro}
rs, apierr, err := GetConn(ro.Ctxt).Put(ro.Ctxt, e.Path, gro)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &Tenant{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}
type TenantDeleteRequest struct {
Ctxt context.Context `json:"-"`
}
func (e *Tenant) Delete(ro *TenantDeleteRequest) (*Tenant, *ApiErrorResponse, error) {
rs, apierr, err := GetConn(ro.Ctxt).Delete(ro.Ctxt, e.Path, nil)
if apierr != nil {
return nil, apierr, err
}
if err != nil {
return nil, nil, err
}
resp := &Tenant{}
if err = FillStruct(rs.Data, resp); err != nil {
return nil, nil, err
}
return resp, nil, nil
}