-
Notifications
You must be signed in to change notification settings - Fork 10
/
fs.go
326 lines (302 loc) · 8.17 KB
/
fs.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/*
*
* Copyright © 2020-2022 Dell Inc. or its subsidiaries. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package gopowerstore
import (
"context"
"fmt"
"github.com/dell/gopowerstore/api"
)
const (
nasURL = "nas_server"
fsURL = "file_system"
)
func getNASDefaultQueryParams(c Client) api.QueryParamsEncoder {
nas := NAS{}
return c.APIClient().QueryParamsWithFields(&nas)
}
func getFSDefaultQueryParams(c Client) api.QueryParamsEncoder {
fs := FileSystem{}
return c.APIClient().QueryParamsWithFields(&fs)
}
func getNfsServerDefaultQueryParams(c Client) api.QueryParamsEncoder {
nfsServer := NFSServerInstance{}
return c.APIClient().QueryParamsWithFields(&nfsServer)
}
// GetNASByName query and return specific NAS by name
func (c *ClientIMPL) GetNASByName(ctx context.Context, name string) (resp NAS, err error) {
var nasList []NAS
qp := getNASDefaultQueryParams(c)
qp.RawArg("name", fmt.Sprintf("eq.%s", name))
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: nasURL,
QueryParams: qp,
},
&nasList)
err = WrapErr(err)
if err != nil {
return resp, err
}
if len(nasList) != 1 {
return resp, NewNotFoundError()
}
return nasList[0], err
}
// GetNAS query and return specific NAS by id
func (c *ClientIMPL) GetNAS(ctx context.Context, id string) (resp NAS, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: nasURL,
ID: id,
QueryParams: getNASDefaultQueryParams(c),
},
&resp)
return resp, WrapErr(err)
}
// GetNfsServer query and return specified NFS server instance by id
func (c *ClientIMPL) GetNfsServer(ctx context.Context, id string) (resp NFSServerInstance, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: nfsServerURL,
ID: id,
QueryParams: getNfsServerDefaultQueryParams(c),
},
&resp)
return resp, WrapErr(err)
}
// CreateNAS creates new NAS on storage array
func (c *ClientIMPL) CreateNAS(ctx context.Context, createParams *NASCreate) (resp CreateResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "POST",
Endpoint: nasURL,
Body: createParams,
},
&resp)
return resp, WrapErr(err)
}
// DeleteNAS deletes existing NAS
func (c *ClientIMPL) DeleteNAS(ctx context.Context, id string) (resp EmptyResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "DELETE",
Endpoint: nasURL,
ID: id,
},
&resp)
return resp, WrapErr(err)
}
// GetFSByName query and return specific FS by name
func (c *ClientIMPL) GetFSByName(ctx context.Context, name string) (resp FileSystem, err error) {
var fsList []FileSystem
qp := getFSDefaultQueryParams(c)
qp.RawArg("name", fmt.Sprintf("eq.%s", name))
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: fsURL,
QueryParams: qp,
},
&fsList)
err = WrapErr(err)
if err != nil {
return resp, err
}
if len(fsList) != 1 {
return resp, NewNotFoundError()
}
return fsList[0], err
}
// GetFS query and return specific fs by id
func (c *ClientIMPL) GetFS(ctx context.Context, id string) (resp FileSystem, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: fsURL,
ID: id,
QueryParams: getFSDefaultQueryParams(c),
},
&resp)
return resp, WrapErr(err)
}
// CreateFS creates new filesystem on storage array
func (c *ClientIMPL) CreateFS(ctx context.Context, createParams *FsCreate) (resp CreateResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "POST",
Endpoint: fsURL,
Body: createParams,
},
&resp)
return resp, WrapErr(err)
}
// DeleteFS deletes existing filesystem
func (c *ClientIMPL) DeleteFS(ctx context.Context, id string) (resp EmptyResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "DELETE",
Endpoint: fsURL,
ID: id,
},
&resp)
return resp, WrapErr(err)
}
// CreateSnapshot creates a new snapshot
func (c *ClientIMPL) CreateFsSnapshot(ctx context.Context,
createSnapFSParams *SnapshotFSCreate, id string,
) (resp CreateResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "POST",
Endpoint: fsURL,
ID: id,
Action: "snapshot",
Body: createSnapFSParams,
},
&resp)
return resp, WrapErr(err)
}
// DeleteFsSnapshot is an alias for delete filesystem, because snapshots are essentially just filesystems
func (c *ClientIMPL) DeleteFsSnapshot(ctx context.Context, id string) (resp EmptyResponse, err error) {
return c.DeleteFS(ctx, id)
}
// GetFsSnapshot query and return specific fs snapshot by it's id
func (c *ClientIMPL) GetFsSnapshot(ctx context.Context, snapID string) (resVol FileSystem, err error) {
qp := getFSDefaultQueryParams(c)
qp.RawArg("filesystem_type", fmt.Sprintf("eq.%s", FileSystemTypeEnumSnapshot))
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: fsURL,
ID: snapID,
QueryParams: qp,
},
&resVol)
return resVol, WrapErr(err)
}
// GetFsSnapshots returns all fs snapshots
func (c *ClientIMPL) GetFsSnapshots(ctx context.Context) ([]FileSystem, error) {
var result []FileSystem
err := c.readPaginatedData(func(offset int) (api.RespMeta, error) {
var page []FileSystem
qp := getFSDefaultQueryParams(c)
qp.RawArg("filesystem_type", fmt.Sprintf("eq.%s", FileSystemTypeEnumSnapshot))
qp.Order("name")
qp.Offset(offset).Limit(paginationDefaultPageSize)
meta, err := c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: fsURL,
QueryParams: qp,
},
&page)
err = WrapErr(err)
if err == nil {
result = append(result, page...)
}
return meta, err
})
return result, err
}
// GetFsSnapshotsByVolumeID returns a list of fs snapshots for specific volume
func (c *ClientIMPL) GetFsSnapshotsByVolumeID(ctx context.Context, volID string) ([]FileSystem, error) {
var result []FileSystem
err := c.readPaginatedData(func(offset int) (api.RespMeta, error) {
var page []FileSystem
qp := getFSDefaultQueryParams(c)
qp.RawArg("parent_id", fmt.Sprintf("eq.%s", volID))
qp.RawArg("filesystem_type", fmt.Sprintf("eq.%s", FileSystemTypeEnumSnapshot))
qp.Order("name")
qp.Offset(offset).Limit(paginationDefaultPageSize)
meta, err := c.APIClient().Query(
ctx,
RequestConfig{
Method: "GET",
Endpoint: fsURL,
QueryParams: qp,
},
&page)
err = WrapErr(err)
if err == nil {
result = append(result, page...)
}
return meta, err
})
return result, err
}
func (c *ClientIMPL) ModifyFS(ctx context.Context,
modifyParams *FSModify, id string,
) (resp EmptyResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "PATCH",
Endpoint: fsURL,
ID: id,
Body: modifyParams,
},
&resp)
return resp, WrapErr(err)
}
// CreateFsFromSnapshot creates a new fs by cloning a snapshot
func (c *ClientIMPL) CreateFsFromSnapshot(ctx context.Context,
createParams *FsClone, snapID string,
) (resp CreateResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "POST",
Endpoint: fsURL,
ID: snapID,
Action: "clone",
Body: createParams,
},
&resp)
return resp, WrapErr(err)
}
// CloneFS creates a new fs by cloning a existing fs
func (c *ClientIMPL) CloneFS(ctx context.Context,
createParams *FsClone, fsID string,
) (resp CreateResponse, err error) {
_, err = c.APIClient().Query(
ctx,
RequestConfig{
Method: "POST",
Endpoint: fsURL,
ID: fsID,
Action: "clone",
Body: createParams,
},
&resp)
return resp, WrapErr(err)
}