-
Notifications
You must be signed in to change notification settings - Fork 3
/
volumes.go
134 lines (109 loc) · 3.37 KB
/
volumes.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
package cloudscale
import (
"context"
"fmt"
"net/http"
"time"
)
const volumeBasePath = "v1/volumes"
type Volume struct {
ZonalResource
TaggedResource
// Just use omitempty everywhere. This makes it easy to use restful. Errors
// will be coming from the API if something is disabled.
HREF string `json:"href,omitempty"`
UUID string `json:"uuid,omitempty"`
Name string `json:"name,omitempty"`
SizeGB int `json:"size_gb,omitempty"`
Type string `json:"type,omitempty"`
ServerUUIDs *[]string `json:"server_uuids,omitempty"`
CreatedAt time.Time `json:"created_at"`
}
type VolumeRequest struct {
ZonalResourceRequest
TaggedResourceRequest
Name string `json:"name,omitempty"`
SizeGB int `json:"size_gb,omitempty"`
Type string `json:"type,omitempty"`
ServerUUIDs *[]string `json:"server_uuids,omitempty"`
}
type VolumeService interface {
Create(ctx context.Context, createRequest *VolumeRequest) (*Volume, error)
Get(ctx context.Context, volumeID string) (*Volume, error)
List(ctx context.Context, modifiers ...ListRequestModifier) ([]Volume, error)
Update(ctx context.Context, volumeID string, updateRequest *VolumeRequest) error
Delete(ctx context.Context, volumeID string) error
}
type VolumeServiceOperations struct {
client *Client
}
func (s VolumeServiceOperations) Create(ctx context.Context, createRequest *VolumeRequest) (*Volume, error) {
path := volumeBasePath
req, err := s.client.NewRequest(ctx, http.MethodPost, path, createRequest)
if err != nil {
return nil, err
}
volume := new(Volume)
err = s.client.Do(ctx, req, volume)
if err != nil {
return nil, err
}
return volume, nil
}
func (f VolumeServiceOperations) Update(ctx context.Context, volumeID string, updateRequest *VolumeRequest) error {
path := fmt.Sprintf("%s/%s", volumeBasePath, volumeID)
req, err := f.client.NewRequest(ctx, http.MethodPatch, path, updateRequest)
if err != nil {
return err
}
err = f.client.Do(ctx, req, nil)
if err != nil {
return err
}
return nil
}
func (s VolumeServiceOperations) Get(ctx context.Context, volumeID string) (*Volume, error) {
path := fmt.Sprintf("%s/%s", volumeBasePath, volumeID)
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, err
}
volume := new(Volume)
err = s.client.Do(ctx, req, volume)
if err != nil {
return nil, err
}
return volume, nil
}
func (s VolumeServiceOperations) Delete(ctx context.Context, volumeID string) error {
path := fmt.Sprintf("%s/%s", volumeBasePath, volumeID)
req, err := s.client.NewRequest(ctx, http.MethodDelete, path, nil)
if err != nil {
return err
}
return s.client.Do(ctx, req, nil)
}
func (s VolumeServiceOperations) List(ctx context.Context, modifiers ...ListRequestModifier) ([]Volume, error) {
path := volumeBasePath
req, err := s.client.NewRequest(ctx, http.MethodGet, path, nil)
if err != nil {
return nil, err
}
for _, modifier := range modifiers {
modifier(req)
}
volumes := []Volume{}
err = s.client.Do(ctx, req, &volumes)
if err != nil {
return nil, err
}
return volumes, nil
}
//WithNameFilter uses an undocumented feature of the cloudscale.ch API
func WithNameFilter(name string) ListRequestModifier {
return func(request *http.Request) {
query := request.URL.Query()
query.Add(fmt.Sprintf("name"), name)
request.URL.RawQuery = query.Encode()
}
}