-
-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathDeployAPIStep.java
More file actions
159 lines (128 loc) · 4.21 KB
/
DeployAPIStep.java
File metadata and controls
159 lines (128 loc) · 4.21 KB
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
/*
* -
* #%L
* Pipeline: AWS Steps
* %%
* Copyright (C) 2017 Taimos GmbH
* %%
* 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.
* #L%
*/
package de.taimos.pipeline.aws;
import java.io.Serial;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import org.jenkinsci.plugins.workflow.steps.Step;
import org.jenkinsci.plugins.workflow.steps.StepContext;
import org.jenkinsci.plugins.workflow.steps.StepDescriptor;
import org.jenkinsci.plugins.workflow.steps.StepExecution;
import org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution;
import org.kohsuke.stapler.DataBoundConstructor;
import org.kohsuke.stapler.DataBoundSetter;
import com.amazonaws.services.apigateway.AmazonApiGateway;
import com.amazonaws.services.apigateway.AmazonApiGatewayClient;
import com.amazonaws.services.apigateway.model.CreateDeploymentRequest;
import de.taimos.pipeline.aws.utils.StepUtils;
import hudson.Extension;
import hudson.model.TaskListener;
public class DeployAPIStep extends Step {
private final String stage;
private final String api;
private String description;
private String[] variables;
@DataBoundConstructor
public DeployAPIStep(String api, String stage) {
this.api = api;
this.stage = stage;
}
public String getStage() {
return this.stage;
}
public String getApi() {
return this.api;
}
public String getDescription() {
return this.description;
}
@DataBoundSetter
public void setDescription(String description) {
this.description = description;
}
public String[] getVariables() {
return this.variables != null ? this.variables.clone() : null;
}
@DataBoundSetter
public void setVariables(String[] variables) {
this.variables = variables.clone();
}
@Override
public StepExecution start(StepContext context) throws Exception {
return new DeployAPIStep.Execution(this, context);
}
@Extension
public static class DescriptorImpl extends StepDescriptor {
@Override
public Set<? extends Class<?>> getRequiredContext() {
return StepUtils.requiresDefault();
}
@Override
public String getFunctionName() {
return "deployAPI";
}
@Override
public String getDisplayName() {
return "Deploy the given API Gateway API";
}
}
public static class Execution extends SynchronousNonBlockingStepExecution<Void> {
private final transient DeployAPIStep step;
public Execution(DeployAPIStep step, StepContext context) {
super(context);
this.step = step;
}
@Override
protected Void run() throws Exception {
TaskListener listener = this.getContext().get(TaskListener.class);
AmazonApiGateway client = AWSClientFactory.create(AmazonApiGatewayClient.builder(), this.getContext());
String stage = this.step.getStage();
String api = this.step.getApi();
listener.getLogger().format("Deploying API %s to stage %s %n", api, stage);
CreateDeploymentRequest request = new CreateDeploymentRequest();
request.withRestApiId(api);
request.withStageName(stage);
if (this.step.getDescription() != null) {
request.withDescription(this.step.getDescription());
}
if (this.step.getVariables() != null && this.step.getVariables().length > 0) {
request.withVariables(this.parseVariables(this.step.getVariables()));
}
client.createDeployment(request);
listener.getLogger().println("Deployment complete");
return null;
}
@Serial
private static final long serialVersionUID = 1L;
private Map<String, String> parseVariables(String[] variables) {
Map<String, String> map = new HashMap<>();
for (String var : variables) {
int i = var.indexOf('=');
if (i < 0) {
throw new IllegalArgumentException("Missing = in variable " + var);
}
map.put(var.substring(0, i), var.substring(i + 1));
}
return map;
}
}
}