-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathagents.go
217 lines (180 loc) · 6.35 KB
/
agents.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
package gocd
import (
"encoding/json"
"fmt"
"net/http"
"path/filepath"
"github.com/nikhilsbhat/gocd-sdk-go/pkg/errors"
"github.com/jinzhu/copier"
)
// GetAgents implements method that fetches the details of all the agents present in GoCD server.
func (conf *client) GetAgents() ([]Agent, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return nil, err
}
var agentsConf AgentsConfig
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
}).
Get(AgentsEndpoint)
if err != nil {
return nil, &errors.APIError{Err: err, Message: "get agents information"}
}
if resp.StatusCode() != http.StatusOK {
return nil, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &agentsConf); err != nil {
return nil, &errors.MarshalError{Err: err}
}
return agentsConf.Config.Config, nil
}
// GetAgent implements method that fetches the details of a specific agent present in GoCD server.
func (conf *client) GetAgent(agentID string) (Agent, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return Agent{}, err
}
var agentConf Agent
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
}).
Get(filepath.Join(AgentsEndpoint, agentID))
if err != nil {
return Agent{}, &errors.APIError{Err: err, Message: fmt.Sprintf("get agent '%s' information", agentID)}
}
if resp.StatusCode() != http.StatusOK {
return Agent{}, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &agentConf); err != nil {
return Agent{}, &errors.MarshalError{Err: err}
}
return agentConf, nil
}
// GetAgentJobRunHistory implements method that fetches job run history from selected agents.
func (conf *client) GetAgentJobRunHistory(agentID string) (AgentJobHistory, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return AgentJobHistory{}, err
}
var jobHistoryConf AgentJobHistory
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionOne,
}).
SetQueryParam("sort_order", "DESC").
Get(fmt.Sprintf(JobRunHistoryEndpoint, agentID))
if err != nil {
return AgentJobHistory{}, &errors.APIError{Err: err, Message: "get agent job run history"}
}
if resp.StatusCode() != http.StatusOK {
return AgentJobHistory{}, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &jobHistoryConf); err != nil {
return AgentJobHistory{}, &errors.MarshalError{Err: err}
}
return jobHistoryConf, nil
}
// UpdateAgent updates specific agent with updated configuration passed.
func (conf *client) UpdateAgent(agent Agent) error {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
"Content-Type": ContentJSON,
}).
SetBody(agent).
Patch(filepath.Join(AgentsEndpoint, agent.ID))
if err != nil {
return &errors.APIError{Err: err, Message: fmt.Sprintf("update %s agent information", agent.Name)}
}
if resp.StatusCode() != http.StatusOK {
return &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return nil
}
// UpdateAgentBulk will bulk update the specified agents with updated configurations.
func (conf *client) UpdateAgentBulk(agent Agent) error {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
"Content-Type": ContentJSON,
}).
SetBody(agent).
Patch(AgentsEndpoint)
if err != nil {
return &errors.APIError{Err: err, Message: fmt.Sprintf("bulk update %v agents information", agent.UUIDS)}
}
if resp.StatusCode() != http.StatusOK {
return &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return nil
}
// DeleteAgent deletes the specified agent.
func (conf *client) DeleteAgent(agentID string) (string, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return "", err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
}).
Delete(filepath.Join(AgentsEndpoint, agentID))
if err != nil {
return "", &errors.APIError{Err: err, Message: fmt.Sprintf("delete agent %s", agentID)}
}
if resp.StatusCode() != http.StatusOK {
return "", &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return resp.String(), nil
}
// DeleteAgentBulk bulk deletes the specified agents.
func (conf *client) DeleteAgentBulk(agent Agent) (string, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return "", err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
}).
SetBody(agent).
Delete(AgentsEndpoint)
if err != nil {
return "", &errors.APIError{Err: err, Message: fmt.Sprintf("delete agents %s", agent.UUIDS)}
}
if resp.StatusCode() != http.StatusOK {
return "", &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return resp.String(), nil
}
// AgentKillTask will kill running tasks from an selected agent.
func (conf *client) AgentKillTask(agent Agent) error {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionSeven,
HeaderConfirm: "true",
}).
Post(filepath.Join(AgentsEndpoint, agent.ID, "kill_running_tasks"))
if err != nil {
return &errors.APIError{Err: err, Message: fmt.Sprintf("kill tasks from agent %s", agent.ID)}
}
if resp.StatusCode() != http.StatusOK {
return &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return nil
}