-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmdm_profiles.go
164 lines (129 loc) · 3.99 KB
/
mdm_profiles.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
161
162
163
164
package goztl
import (
"context"
"fmt"
"net/http"
)
const mpBasePath = "mdm/profiles/"
// MDMProfilesService is an interface for interfacing with the MDM profile
// endpoints of the Zentral API
type MDMProfilesService interface {
List(context.Context, *ListOptions) ([]MDMProfile, *Response, error)
GetByID(context.Context, string) (*MDMProfile, *Response, error)
Create(context.Context, *MDMProfileRequest) (*MDMProfile, *Response, error)
Update(context.Context, string, *MDMProfileRequest) (*MDMProfile, *Response, error)
Delete(context.Context, string) (*Response, error)
}
// MDMProfilesServiceOp handles communication with the MDM profiles related
// methods of the Zentral API.
type MDMProfilesServiceOp struct {
client *Client
}
var _ MDMProfilesService = &MDMProfilesServiceOp{}
// MDMProfile represents a Zentral MDM profile
type MDMProfile struct {
ID string `json:"id"`
Source string `json:"source"`
MDMArtifactVersion
}
func (mp MDMProfile) String() string {
return Stringify(mp)
}
// MDMProfileRequest represents a request to create or update a MDM profile
type MDMProfileRequest struct {
Source string `json:"source"`
MDMArtifactVersionRequest
}
type listMPOptions struct{}
// List lists all the MDM profiles.
func (s *MDMProfilesServiceOp) List(ctx context.Context, opt *ListOptions) ([]MDMProfile, *Response, error) {
return s.list(ctx, opt, nil)
}
// GetByID retrieves a MDM profile by id.
func (s *MDMProfilesServiceOp) GetByID(ctx context.Context, mpID string) (*MDMProfile, *Response, error) {
if len(mpID) < 1 {
return nil, nil, NewArgError("mpID", "cannot be blank")
}
path := fmt.Sprintf("%s%s/", mpBasePath, mpID)
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
mp := new(MDMProfile)
resp, err := s.client.Do(ctx, req, mp)
if err != nil {
return nil, resp, err
}
return mp, resp, err
}
// Create a new MDM profile.
func (s *MDMProfilesServiceOp) Create(ctx context.Context, createRequest *MDMProfileRequest) (*MDMProfile, *Response, error) {
if createRequest == nil {
return nil, nil, NewArgError("createRequest", "cannot be nil")
}
req, err := s.client.NewRequest(ctx, http.MethodPost, mpBasePath, createRequest)
if err != nil {
return nil, nil, err
}
mp := new(MDMProfile)
resp, err := s.client.Do(ctx, req, mp)
if err != nil {
return nil, resp, err
}
return mp, resp, err
}
// Update a MDM profile.
func (s *MDMProfilesServiceOp) Update(ctx context.Context, mpID string, updateRequest *MDMProfileRequest) (*MDMProfile, *Response, error) {
if len(mpID) < 1 {
return nil, nil, NewArgError("mpID", "cannot be blank")
}
if updateRequest == nil {
return nil, nil, NewArgError("updateRequest", "cannot be nil")
}
path := fmt.Sprintf("%s%s/", mpBasePath, mpID)
req, err := s.client.NewRequest(ctx, http.MethodPut, path, updateRequest)
if err != nil {
return nil, nil, err
}
mp := new(MDMProfile)
resp, err := s.client.Do(ctx, req, mp)
if err != nil {
return nil, resp, err
}
return mp, resp, err
}
// Delete a MDM profile.
func (s *MDMProfilesServiceOp) Delete(ctx context.Context, mpID string) (*Response, error) {
if len(mpID) < 1 {
return nil, NewArgError("mpID", "cannot be blank")
}
path := fmt.Sprintf("%s%s/", mpBasePath, mpID)
req, err := s.client.NewRequest(ctx, http.MethodDelete, path, nil)
if err != nil {
return nil, err
}
resp, err := s.client.Do(ctx, req, nil)
return resp, err
}
// Helper method for listing MDM profiles
func (s *MDMProfilesServiceOp) list(ctx context.Context, opt *ListOptions, mpOpt *listMPOptions) ([]MDMProfile, *Response, error) {
path := mpBasePath
path, err := addOptions(path, opt)
if err != nil {
return nil, nil, err
}
path, err = addOptions(path, mpOpt)
if err != nil {
return nil, nil, err
}
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
var mps []MDMProfile
resp, err := s.client.Do(ctx, req, &mps)
if err != nil {
return nil, resp, err
}
return mps, resp, err
}