InternalDnsCtrl.java
4.58 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
package com.ui.ctrl;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.domain.InternalDomain;
import com.ui.model.domain.InternalDomainHistory;
import com.ui.model.req.ProjectBuildReq;
import com.ui.model.req.TagReq;
import com.ui.model.req.User;
import com.ui.project.ProjectEnvironment;
import com.ui.project.ProjectOnline;
import org.apache.commons.lang.StringUtils;
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.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpSession;
import java.util.ArrayList;
import java.util.List;
/**
* Created by zhengyouwei on 2016/12/16.
*/
@Controller
@RequestMapping("/internalDns")
public class InternalDnsCtrl {
Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private HttpRestClient httpRestClient;
@RequestMapping("/toInternalDns")
public ModelAndView toInternalDns(Model model) {
TagReq req=new TagReq();
BaseResponse response=httpRestClient.defaultPost(HttpUriContants.HOST_ALL_GROUPS, req, BaseResponse.class);
model.addAttribute("tags",response.getData());
return new ModelAndView("project/internal_domain");
}
@RequestMapping("save")
@ResponseBody
public BaseResponse insert(InternalDomain internalDomain,HttpSession httpSession){
addUser(internalDomain,httpSession);
if (StringUtils.equals(internalDomain.getType(),"cname") && !StringUtils.endsWith(internalDomain.getValue(),".")){
internalDomain.setValue(internalDomain.getValue().trim() + ".");
}
if (internalDomain.getId() == 0){
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_INSERT, internalDomain, BaseResponse.class);
}else {
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_UPDATE, internalDomain, BaseResponse.class);
}
}
@RequestMapping("selectAll")
@ResponseBody
public BaseResponse selectAll(InternalDomain internalDomain,HttpSession httpSession){
if (StringUtils.isBlank(internalDomain.getDomain()) || StringUtils.isBlank(internalDomain.getEnvironment()) ){
return null;
}
addUser(internalDomain,httpSession);
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_SELECTALL, internalDomain, BaseResponse.class);
}
@RequestMapping("deleteById")
@ResponseBody
public BaseResponse deleteById(InternalDomain internalDomain,HttpSession httpSession){
addUser(internalDomain,httpSession);
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_DELBYID, internalDomain, BaseResponse.class);
}
@RequestMapping("selectById")
@ResponseBody
public BaseResponse selectById(InternalDomain internalDomain,HttpSession httpSession){
addUser(internalDomain, httpSession);
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_SELECTBYID, internalDomain, BaseResponse.class);
}
@RequestMapping("refresh")
@ResponseBody
public BaseResponse refresh(InternalDomain internalDomain,HttpSession httpSession){
addUser(internalDomain,httpSession);
return httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_REFRESH, internalDomain, BaseResponse.class);
}
public void addUser(InternalDomain internalDomain,HttpSession httpSession){
User user = (User) httpSession.getAttribute("user");
internalDomain.setUser(user.getName());
}
@RequestMapping("/toHistory")
public ModelAndView toHistory(Model model) {
List<String> environments = new ArrayList<>();
environments.add("aws");
environments.add("qcloud");
environments.add("aws_media");
model.addAttribute("environments", environments);
List<String> domains = new ArrayList<>();
domains.add("yohoops.org.");
domains.add("yohobuy.com.");
model.addAttribute("domains", domains);
return new ModelAndView("project/internal_dns_history");
}
@RequestMapping("/getHistory")
@ResponseBody
public BaseResponse getHistory(InternalDomainHistory req) throws Exception {
BaseResponse response = httpRestClient.defaultPost(HttpUriContants.INTERNAL_DOMAIN_HISTORY, req, BaseResponse.class);
return response;
}
}