-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodes.go
234 lines (192 loc) · 5.76 KB
/
Nodes.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
package pterodactyl
import (
"encoding/json"
"fmt"
"net/http"
)
// GetNodes - Returns list of nodes
func (c *Client) GetNodes() ([]Node, error) {
req, err := http.NewRequest("GET", fmt.Sprintf("%s/api/application/nodes", c.HostURL), nil)
if err != nil {
return nil, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return nil, err
}
var nodeList NodesResponse
err = json.Unmarshal(body, &nodeList)
if err != nil {
return nil, err
}
nodesData := nodeList.Data
nodes := make([]Node, len(nodesData))
for i, nodeData := range nodesData {
nodes[i] = nodeData.Attributes
}
return nodes, nil
}
// GetNode - Returns specific node
func (c *Client) GetNode(nodeID int32) (Node, error) {
req, err := http.NewRequest("GET", fmt.Sprintf("%s/api/application/nodes/%d", c.HostURL, nodeID), nil)
if err != nil {
return Node{}, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return Node{}, err
}
var response NodeResponse
err = json.Unmarshal(body, &response)
if err != nil {
return Node{}, err
}
node := response.Attributes
return node, nil
}
// GetNodeConfiguration - Returns node configuration
func (c *Client) GetNodeConfiguration(nodeID int32) (NodeConfiguration, error) {
req, err := http.NewRequest("GET", fmt.Sprintf("%s/api/application/nodes/%d/configuration", c.HostURL, nodeID), nil)
if err != nil {
return NodeConfiguration{}, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return NodeConfiguration{}, err
}
var response NodeConfigurationResponse
err = json.Unmarshal(body, &response)
if err != nil {
return NodeConfiguration{}, err
}
nodeConfiguration := response.Attributes
return nodeConfiguration, nil
}
// CreateNode - Creates a new node
func (c *Client) CreateNode(node NodesInterface) (Node, error) {
createNode := PartialNode{
Name: node.GetName(),
Description: node.GetDescription(),
Public: node.GetPublic(),
BehindProxy: node.GetBehindProxy(),
MaintenanceMode: node.GetMaintenanceMode(),
LocationID: node.GetLocationID(),
FQDN: node.GetFQDN(),
Scheme: node.GetScheme(),
Memory: node.GetMemory(),
MemoryOverallocate: node.GetMemoryOverallocate(),
Disk: node.GetDisk(),
DiskOverallocate: node.GetDiskOverallocate(),
UploadSize: node.GetUploadSize(),
DaemonListen: node.GetDaemonListen(),
DaemonSFTP: node.GetDaemonSFTP(),
}
req, err := http.NewRequest("POST", fmt.Sprintf("%s/api/application/nodes", c.HostURL), c.prepareBody(createNode))
if err != nil {
return Node{}, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return Node{}, err
}
var response NodeResponse
err = json.Unmarshal(body, &response)
if err != nil {
return Node{}, err
}
newNode := response.Attributes
return newNode, nil
}
// UpdateNode - Updates a node
func (c *Client) UpdateNode(nodeID int32, node NodesInterface) (Node, error) {
updatedNode := PartialNode{
Name: node.GetName(),
Description: node.GetDescription(),
Public: node.GetPublic(),
BehindProxy: node.GetBehindProxy(),
MaintenanceMode: node.GetMaintenanceMode(),
LocationID: node.GetLocationID(),
FQDN: node.GetFQDN(),
Scheme: node.GetScheme(),
Memory: node.GetMemory(),
MemoryOverallocate: node.GetMemoryOverallocate(),
Disk: node.GetDisk(),
DiskOverallocate: node.GetDiskOverallocate(),
UploadSize: node.GetUploadSize(),
DaemonListen: node.GetDaemonListen(),
DaemonSFTP: node.GetDaemonSFTP(),
}
req, err := http.NewRequest("PATCH", fmt.Sprintf("%s/api/application/nodes/%d", c.HostURL, nodeID), c.prepareBody(updatedNode))
if err != nil {
return Node{}, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return Node{}, err
}
var response NodeResponse
err = json.Unmarshal(body, &response)
if err != nil {
return Node{}, err
}
newNode := response.Attributes
return newNode, nil
}
// DeleteNode - Deletes a node
func (c *Client) DeleteNode(nodeID int32) error {
req, err := http.NewRequest("DELETE", fmt.Sprintf("%s/api/application/nodes/%d", c.HostURL, nodeID), nil)
if err != nil {
return err
}
_, err = c.doRequest(req, nil)
if err != nil {
return err
}
return nil
}
// GetNodeAllocations - Returns list of allocations added to a node
func (c *Client) GetNodeAllocations(nodeID int32) ([]Allocation, error) {
req, err := http.NewRequest("GET", fmt.Sprintf("%s/api/application/nodes/%d/allocations", c.HostURL, nodeID), nil)
if err != nil {
return nil, err
}
body, err := c.doRequest(req, nil)
if err != nil {
return nil, err
}
var allocationList AllocationsResponse
err = json.Unmarshal(body, &allocationList)
if err != nil {
return nil, err
}
allocationsData := allocationList.Data
allocations := make([]Allocation, len(allocationsData))
for i, allocationData := range allocationsData {
allocations[i] = allocationData.Attributes
}
return allocations, nil
}
// CreateAllocation - Adds an allocation to a node
func (c *Client) CreateAllocation(nodeID int32, allocation PartialAllocation) error {
req, err := http.NewRequest("POST", fmt.Sprintf("%s/api/application/nodes/%d/allocations", c.HostURL, nodeID), c.prepareBody(allocation))
if err != nil {
return err
}
_, err = c.doRequest(req, nil)
if err != nil {
return err
}
return nil
}
// DeleteAllocation - Deletes an allocation from a node
func (c *Client) DeleteAllocation(nodeID, allocationID int32) error {
req, err := http.NewRequest("DELETE", fmt.Sprintf("%s/api/application/nodes/%d/allocations/%d", c.HostURL, nodeID, allocationID), nil)
if err != nil {
return err
}
_, err = c.doRequest(req, nil)
if err != nil {
return err
}
return nil
}