forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.go
261 lines (225 loc) · 7.63 KB
/
application.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
package ccv3
import (
"bytes"
"encoding/json"
"code.cloudfoundry.org/cli/api/cloudcontroller"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/constant"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/internal"
)
// Application represents a Cloud Controller V3 Application.
type Application struct {
// GUID is the unique application identifier.
GUID string
// StackName is the name of the stack on which the application runs.
StackName string
// LifecycleBuildpacks is a list of the names of buildpacks.
LifecycleBuildpacks []string
// LifecycleType is the type of the lifecycle.
LifecycleType constant.AppLifecycleType
// Metadata is used for custom tagging of API resources
Metadata *Metadata
// Name is the name given to the application.
Name string
// Relationships list the relationships to the application.
Relationships Relationships
// State is the desired state of the application.
State constant.ApplicationState
}
// MarshalJSON converts an Application into a Cloud Controller Application.
func (a Application) MarshalJSON() ([]byte, error) {
ccApp := ccApplication{
Name: a.Name,
Relationships: a.Relationships,
Metadata: a.Metadata,
}
if a.LifecycleType == constant.AppLifecycleTypeDocker {
ccApp.setDockerLifecycle()
} else if a.LifecycleType == constant.AppLifecycleTypeBuildpack {
if len(a.LifecycleBuildpacks) > 0 || a.StackName != "" {
if a.hasAutodetectedBuildpack() {
ccApp.setAutodetectedBuildpackLifecycle(a)
} else {
ccApp.setBuildpackLifecycle(a)
}
}
}
return json.Marshal(ccApp)
}
// UnmarshalJSON helps unmarshal a Cloud Controller Application response.
func (a *Application) UnmarshalJSON(data []byte) error {
lifecycle := ccLifecycle{}
ccApp := ccApplication{
Lifecycle: &lifecycle,
}
err := cloudcontroller.DecodeJSON(data, &ccApp)
if err != nil {
return err
}
a.GUID = ccApp.GUID
a.StackName = lifecycle.Data.Stack
a.LifecycleBuildpacks = lifecycle.Data.Buildpacks
a.LifecycleType = lifecycle.Type
a.Name = ccApp.Name
a.Relationships = ccApp.Relationships
a.State = ccApp.State
a.Metadata = ccApp.Metadata
return nil
}
func (a Application) hasAutodetectedBuildpack() bool {
if len(a.LifecycleBuildpacks) == 0 {
return false
}
return a.LifecycleBuildpacks[0] == constant.AutodetectBuildpackValueDefault || a.LifecycleBuildpacks[0] == constant.AutodetectBuildpackValueNull
}
type ccLifecycle struct {
Type constant.AppLifecycleType `json:"type,omitempty"`
Data struct {
Buildpacks []string `json:"buildpacks,omitempty"`
Stack string `json:"stack,omitempty"`
} `json:"data"`
}
type ccApplication struct {
Name string `json:"name,omitempty"`
Relationships Relationships `json:"relationships,omitempty"`
Lifecycle interface{} `json:"lifecycle,omitempty"`
GUID string `json:"guid,omitempty"`
State constant.ApplicationState `json:"state,omitempty"`
Metadata *Metadata `json:"metadata,omitempty"`
}
func (ccApp *ccApplication) setAutodetectedBuildpackLifecycle(a Application) {
var nullBuildpackLifecycle struct {
Type constant.AppLifecycleType `json:"type,omitempty"`
Data struct {
Buildpacks []string `json:"buildpacks"`
Stack string `json:"stack,omitempty"`
} `json:"data"`
}
nullBuildpackLifecycle.Type = constant.AppLifecycleTypeBuildpack
nullBuildpackLifecycle.Data.Stack = a.StackName
ccApp.Lifecycle = nullBuildpackLifecycle
}
func (ccApp *ccApplication) setBuildpackLifecycle(a Application) {
var lifecycle ccLifecycle
lifecycle.Type = a.LifecycleType
lifecycle.Data.Buildpacks = a.LifecycleBuildpacks
lifecycle.Data.Stack = a.StackName
ccApp.Lifecycle = lifecycle
}
func (ccApp *ccApplication) setDockerLifecycle() {
ccApp.Lifecycle = ccLifecycle{
Type: constant.AppLifecycleTypeDocker,
}
}
// CreateApplication creates an application with the given settings.
func (client *Client) CreateApplication(app Application) (Application, Warnings, error) {
bodyBytes, err := json.Marshal(app)
if err != nil {
return Application{}, nil, err
}
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.PostApplicationRequest,
Body: bytes.NewReader(bodyBytes),
})
if err != nil {
return Application{}, nil, err
}
var responseApp Application
response := cloudcontroller.Response{
DecodeJSONResponseInto: &responseApp,
}
err = client.connection.Make(request, &response)
return responseApp, response.Warnings, err
}
// GetApplications lists applications with optional queries.
func (client *Client) GetApplications(query ...Query) ([]Application, Warnings, error) {
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.GetApplicationsRequest,
Query: query,
})
if err != nil {
return nil, nil, err
}
var fullAppsList []Application
warnings, err := client.paginate(request, Application{}, func(item interface{}) error {
if app, ok := item.(Application); ok {
fullAppsList = append(fullAppsList, app)
} else {
return ccerror.UnknownObjectInListError{
Expected: Application{},
Unexpected: item,
}
}
return nil
})
return fullAppsList, warnings, err
}
// UpdateApplication updates an application with the given settings.
func (client *Client) UpdateApplication(app Application) (Application, Warnings, error) {
bodyBytes, err := json.Marshal(app)
if err != nil {
return Application{}, nil, err
}
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.PatchApplicationRequest,
Body: bytes.NewReader(bodyBytes),
URIParams: map[string]string{"app_guid": app.GUID},
})
if err != nil {
return Application{}, nil, err
}
var responseApp Application
response := cloudcontroller.Response{
DecodeJSONResponseInto: &responseApp,
}
err = client.connection.Make(request, &response)
return responseApp, response.Warnings, err
}
// UpdateApplicationRestart restarts the given application.
func (client *Client) UpdateApplicationRestart(appGUID string) (Application, Warnings, error) {
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.PostApplicationActionRestartRequest,
URIParams: map[string]string{"app_guid": appGUID},
})
if err != nil {
return Application{}, nil, err
}
var responseApp Application
response := cloudcontroller.Response{
DecodeJSONResponseInto: &responseApp,
}
err = client.connection.Make(request, &response)
return responseApp, response.Warnings, err
}
// UpdateApplicationStart starts the given application.
func (client *Client) UpdateApplicationStart(appGUID string) (Application, Warnings, error) {
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.PostApplicationActionStartRequest,
URIParams: map[string]string{"app_guid": appGUID},
})
if err != nil {
return Application{}, nil, err
}
var responseApp Application
response := cloudcontroller.Response{
DecodeJSONResponseInto: &responseApp,
}
err = client.connection.Make(request, &response)
return responseApp, response.Warnings, err
}
// UpdateApplicationStop stops the given application.
func (client *Client) UpdateApplicationStop(appGUID string) (Application, Warnings, error) {
request, err := client.newHTTPRequest(requestOptions{
RequestName: internal.PostApplicationActionStopRequest,
URIParams: map[string]string{"app_guid": appGUID},
})
if err != nil {
return Application{}, nil, err
}
var responseApp Application
response := cloudcontroller.Response{
DecodeJSONResponseInto: &responseApp,
}
err = client.connection.Make(request, &response)
return responseApp, response.Warnings, err
}