ProjectBuildCtrl.java
9.64 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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package com.ui.ctrl;
import com.alibaba.fastjson.JSONArray;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.domain.BuildMessage;
import com.ui.model.req.*;
import com.ui.project.ProjectEnvironment;
import com.ui.project.ProjectOnline;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpSession;
import java.util.*;
/**
* Created by fruwei on 2016/6/16.
*/
@RestController
@RequestMapping("project")
public class ProjectBuildCtrl {
Logger log = LoggerFactory.getLogger(ProjectBuildCtrl.class);
@Autowired
private HttpRestClient httpRestClient;
@RequestMapping("/toOm")
public ModelAndView toOm() {
return new ModelAndView("project/om");
}
@RequestMapping("/toNewOm")
public ModelAndView toOmNew() {
return new ModelAndView("project/newOm");
}
@RequestMapping("/toNode")
public ModelAndView toNode() {
return new ModelAndView("project/node");
}
@RequestMapping("/toProject")
public ModelAndView toProject(Model model) {
model.addAttribute("environments", ProjectEnvironment.getEnviroments());
return new ModelAndView("project/project");
}
@RequestMapping("/toHistory")
public ModelAndView toHistory(Model model) {
model.addAttribute("environments", ProjectEnvironment.getEnviroments());
model.addAttribute("projects", ProjectOnline.getJavaList());
return new ModelAndView("project/history");
}
/**
* 获取所有项目
*
* @return
*/
@RequestMapping(value = "getProjects", method = RequestMethod.POST)
@ResponseBody
public String getProjects() {
try {
return JSONArray.toJSON(ProjectOnline.getJavaList()).toString();
} catch (Exception ex) {
return "failed";
}
}
/**
* 校验tag
*
* @return
*/
@RequestMapping(value = "checkTag", method = RequestMethod.POST)
@ResponseBody
public String checkTag(String projects, String tag, String enviromment) {
Map<String, String> map = new HashMap<>();
map.put("projects", projects);
map.put("tag", tag);
return httpRestClient.get(ProjectEnvironment.getUrl(enviromment) + "checkTag", String.class, map);
}
/**
* 校验branch
*
* @return
*/
@RequestMapping(value = "checkBranch")
@ResponseBody
public String checkBranch(String projects, String branch, String environment) {
if (!("master".equals(branch) || "test".equals(branch) || "dev".equals(branch))) {
Map<String, String> map = new HashMap<>();
map.put("projects", projects);
map.put("branch", branch);
return httpRestClient.get(ProjectEnvironment.getUrl(environment) + "checkBranch", String.class, map);
}
return "1";
}
@RequestMapping(value = "tobuildpage")
@ResponseBody
public ModelAndView tobuildpage(String messageid, String project, String environment, String operate, String branch, String rollbackfile, Model model) {
model.addAttribute("messageid", messageid);
model.addAttribute("project", project);
model.addAttribute("environment", environment);
model.addAttribute("operate", operate);
model.addAttribute("branch", branch);
model.addAttribute("rollbackfile", rollbackfile);
return new ModelAndView("project/single_project_build");
}
/**
* 执行任务
*
* @return
*/
@RequestMapping(value = "build", method = RequestMethod.POST)
public ModelAndView build(String project_name, String environment_name, String operate_name, String branch_name, String rollbackfile_name, Model model, HttpSession session) {
try {
User user = (User) session.getAttribute("user");
List<BuildMessage> list = new ArrayList<>();
BuildRequest buildRequest = new BuildRequest();
buildRequest.setBranch(branch_name);
buildRequest.setUser(user.getName());
buildRequest.setEnvironment(environment_name);
buildRequest.setRollbackfile(rollbackfile_name);
buildRequest.setOperate(operate_name);
String messageids = "";
if ("Deploy".equals(operate_name)) {
String[] array = project_name.split(",");
if (array.length > 4) {
String[] newArray = new String[]{"","","",""};
for (int i = 0; i < array.length; i++) {
newArray[i%4] = newArray[i%4] + array[i] + ",";
}
for (String project : newArray) {
buildRequest.setProject(project.substring(0,project.length() - 1));
BuildMessage buildMessage = httpRestClient.post(ProjectEnvironment.getUrl(environment_name) + "build", buildRequest, BuildMessage.class);
if (buildMessage != null) {
list.add(buildMessage);
messageids = messageids + buildMessage.getId() + ",";
}
}
} else {
for (String project : array) {
buildRequest.setProject(project);
BuildMessage buildMessage = httpRestClient.post(ProjectEnvironment.getUrl(environment_name) + "build", buildRequest, BuildMessage.class);
if (buildMessage != null) {
list.add(buildMessage);
messageids = messageids + buildMessage.getId() + ",";
}
}
}
} else {
BuildMessage buildMessage = httpRestClient.post(ProjectEnvironment.getUrl(environment_name) + "build", buildRequest, BuildMessage.class);
if (buildMessage != null) {
list.add(buildMessage);
messageids = messageids + buildMessage.getId() + ",";
}
}
model.addAttribute("environment_name", environment_name);
model.addAttribute("operate_name", operate_name);
model.addAttribute("branch_name", branch_name);
model.addAttribute("rollbackfile_name", rollbackfile_name);
model.addAttribute("messageids", messageids);
model.addAttribute("messageList", list);
} catch (Exception ex) {
}
return new ModelAndView("project/project_build");
}
/**
* 获取执行结果
*
* @param messageid
* @return
*/
@RequestMapping(value = "getbuildmsg", method = RequestMethod.POST)
@ResponseBody
public String getbuildmsg(String messageid, String project) {
try {
Map<String, String> map = new HashMap<>();
map.put("messageid", messageid);
map.put("project", project);
return httpRestClient.get(ProjectEnvironment.getUrl(messageid.split("_")[0]) + "getbuildmsg", String.class, map);
} catch (Exception ex) {
return "failed";
}
}
@RequestMapping(value = "cancelBuild")
@ResponseBody
public String cancelBuild(String id) {
try {
Map<String, String> map = new HashMap<>();
map.put("id", id);
return httpRestClient.get(ProjectEnvironment.getUrl(id.split("_")[0]) + "cancelBuild", String.class, map);
} catch (Exception ex) {
return "failed";
}
}
@RequestMapping(value = "rollbackList", method = RequestMethod.POST)
@ResponseBody
public String rollbackList(String project, String environment) {
try {
Map<String, String> map = new HashMap<>();
map.put("project", project);
map.put("environment", environment);
return httpRestClient.get(ProjectEnvironment.getUrl(environment) + "rollbackList", String.class, map);
} catch (Exception ex) {
return "failed";
}
}
@RequestMapping("/getHistory")
@ResponseBody
public BaseResponse getHistory(ProjectBuildReq req) throws Exception {
if ("all".equals(req.getEnvironment())) {
req.setEnvironment(null);
}
if ("all".equals(req.getCurrentProject())) {
req.setCurrentProject(null);
}
BaseResponse response = httpRestClient.defaultPost("/projectBuild/getHistory", req, BaseResponse.class);
return response;
}
@RequestMapping("/newOm/query")
public BaseResponse queryProjects(ProjectInfoReq req) {
BaseResponse response = httpRestClient.defaultPost("/projectManager/query", req, BaseResponse.class);
return response;
}
@RequestMapping("/newOm/save")
public BaseResponse addProject(ProjectInfoReq req) {
BaseResponse response = httpRestClient.defaultPost("/projectManager/add", req, BaseResponse.class);
return response;
}
@RequestMapping("/newOm/del")
public BaseResponse delProject(ProjectInfoReq req) {
BaseResponse response = httpRestClient.defaultPost("/projectManager/del", req, BaseResponse.class);
return response;
}
@RequestMapping("/newOm/build")
public BaseResponse buildOmProject(ProjectBuildInfoReq req) {
BaseResponse response = httpRestClient.defaultPost("/projectManager/build", req, BaseResponse.class);
return response;
}
}