|
|
package com.ui.ctrl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.ui.contants.HttpUriContants;
|
|
|
import com.ui.http.HttpRestClient;
|
|
|
import com.ui.model.BaseResponse;
|
...
|
...
|
@@ -53,95 +54,102 @@ public class TopoSwitchCtrl { |
|
|
@RequestMapping(value = "getNgixnStatus")
|
|
|
@ResponseBody
|
|
|
public BaseResponse getNgixnStatus() {
|
|
|
//lua
|
|
|
String luaResponse = httpRestClient.defaultGet(HttpUriContants.VIEW_LUA_CONF, String.class, null);
|
|
|
//String luaResponse = "-- 1:aws ,2:qq ,3:aws+qq</br>context.cloud_flag = 1</br>";
|
|
|
String luaType = "aws";
|
|
|
if (luaResponse.matches(".*context.cloud_flag\\s*=\\s*2.*")) {
|
|
|
luaType = "qq";
|
|
|
} else if (luaResponse.matches(".*context.cloud_flag\\s*=\\s*3.*")) {
|
|
|
luaType = "aws+qq";
|
|
|
}
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
|
|
|
//nginx
|
|
|
BaseResponse<Map<String, List<Map<String, Object>>>> response = httpRestClient.exchangeForget(HttpUriContants.VIEW_NGINX_CONF, new ParameterizedTypeReference<BaseResponse<Map<String, List<Map<String, Object>>>>>() {
|
|
|
}, null);
|
|
|
Map<String, List<Map<String, Object>>> map = response.getData();
|
|
|
List<Map<String, Object>> awsList = map.get("awsList");
|
|
|
List<Map<String, Object>> qcloudList = map.get("qcloudList");
|
|
|
|
|
|
String awsApiNginx = "aws";
|
|
|
String awsGrayNginx = "aws";
|
|
|
String qqApiNginx = "qq";
|
|
|
String qqGrayNginx = "qq";
|
|
|
|
|
|
for (Map<String, Object> apiMap : awsList) {
|
|
|
if (StringUtils.equals("apigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("10")) {
|
|
|
awsApiNginx = "qq";
|
|
|
try{
|
|
|
//lua
|
|
|
String luaResponse = httpRestClient.defaultGet(HttpUriContants.VIEW_LUA_CONF, String.class, null);
|
|
|
String luaType = "";
|
|
|
if(StringUtils.isNotBlank(luaResponse)){
|
|
|
if (luaResponse.matches(".*context.cloud_flag\\s*=\\s*2.*")) {
|
|
|
luaType = "qq";
|
|
|
} else if (luaResponse.matches(".*context.cloud_flag\\s*=\\s*3.*")) {
|
|
|
luaType = "aws+qq";
|
|
|
} else{
|
|
|
luaType = "aws";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (StringUtils.equals("grayapigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("10")) {
|
|
|
awsGrayNginx = "qq";
|
|
|
//nginx
|
|
|
BaseResponse<Map<String, List<Map<String, Object>>>> response = httpRestClient.exchangeForget(HttpUriContants.VIEW_NGINX_CONF, new ParameterizedTypeReference<BaseResponse<Map<String, List<Map<String, Object>>>>>() {
|
|
|
}, null);
|
|
|
Map<String, List<Map<String, Object>>> map = response.getData();
|
|
|
List<Map<String, Object>> awsList = map.get("awsList");
|
|
|
List<Map<String, Object>> qcloudList = map.get("qcloudList");
|
|
|
|
|
|
String awsApiNginx = "aws";
|
|
|
String awsGrayNginx = "aws";
|
|
|
String qqApiNginx = "qq";
|
|
|
String qqGrayNginx = "qq";
|
|
|
|
|
|
for (Map<String, Object> apiMap : awsList) {
|
|
|
if (StringUtils.equals("apigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("10")) {
|
|
|
awsApiNginx = "qq";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
for (Map<String, Object> apiMap : qcloudList) {
|
|
|
if (StringUtils.equals("apigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("172")) {
|
|
|
qqApiNginx = "aws";
|
|
|
if (StringUtils.equals("grayapigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("10")) {
|
|
|
awsGrayNginx = "qq";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (StringUtils.equals("grayapigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("172")) {
|
|
|
qqApiNginx = "aws";
|
|
|
for (Map<String, Object> apiMap : qcloudList) {
|
|
|
if (StringUtils.equals("apigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("172")) {
|
|
|
qqApiNginx = "aws";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//dns
|
|
|
String defaultDns = "aws";
|
|
|
String qqDns = "qq";
|
|
|
if (StringUtils.equals("grayapigateway", String.valueOf(apiMap.get("name")))) {
|
|
|
List<String> serverList = (List<String>) apiMap.get("server");
|
|
|
if (serverList.get(0).startsWith("172")) {
|
|
|
qqApiNginx = "aws";
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
MultiValueMap<String, String> requestEntity = new LinkedMultiValueMap<>();
|
|
|
requestEntity.add("login_token", "14365,5ced8b63875ed1643b9ffeb285180fa9");
|
|
|
requestEntity.add("format","json");
|
|
|
requestEntity.add("domain_id", "16862974");
|
|
|
//requestEntity.add("record_id","183941138");
|
|
|
requestEntity.add("record_id","293178513");
|
|
|
//dns
|
|
|
String defaultDns = "";
|
|
|
|
|
|
MultiValueMap<String, String> requestEntity = new LinkedMultiValueMap<>();
|
|
|
requestEntity.add("login_token", "31578,5f5402160468dc375159e2e94eeef1da");
|
|
|
requestEntity.add("format","json");
|
|
|
requestEntity.add("domain_id", "16862974");
|
|
|
requestEntity.add("record_id","293178513");
|
|
|
|
|
|
try{
|
|
|
String requestResponse = httpRestClient.post("https://dnsapi.cn/Record.Info", requestEntity, String.class);
|
|
|
JSONObject responseJSON = JSONObject.parseObject(requestResponse);
|
|
|
JSONObject responseStatus = JSONObject.parseObject(responseJSON.getString("status"));
|
|
|
if ("1".equals(responseStatus.getString("code"))){
|
|
|
if (requestResponse.indexOf("amazonaws") == -1){
|
|
|
defaultDns = "qq";
|
|
|
}else{
|
|
|
defaultDns = "aws";
|
|
|
}
|
|
|
}else{
|
|
|
logger.error(" TopoSwitchCtrl - getNgixnStatus - JSON - err:" + responseJSON.getString("message"));
|
|
|
}
|
|
|
}catch (Exception e){
|
|
|
logger.error(" TopoSwitchCtrl - getNgixnStatus - https://dnsapi.cn/Record.Info - err", e);
|
|
|
}
|
|
|
|
|
|
String requestResponse = httpRestClient.post("https://dnsapi.cn/Record.Info", requestEntity, String.class);
|
|
|
if (requestResponse.indexOf("amazonaws") == -1){
|
|
|
defaultDns = "qq";
|
|
|
resultMap.put("luaType", luaType);
|
|
|
resultMap.put("awsApiNginx", awsApiNginx);
|
|
|
resultMap.put("awsGrayNginx", awsGrayNginx);
|
|
|
resultMap.put("qqApiNginx", qqApiNginx);
|
|
|
resultMap.put("qqGrayNginx", qqGrayNginx);
|
|
|
resultMap.put("defaultDns", defaultDns);
|
|
|
}catch (Exception e){
|
|
|
logger.error(" TopoSwitchCtrl - getNgixnStatus - err", e);
|
|
|
}
|
|
|
|
|
|
// requestEntity.add("record_id","188034065");
|
|
|
// String request2Response = httpRestClient.post("https://dnsapi.cn/Record.Info", requestEntity, String.class);
|
|
|
// if (request2Response.indexOf("amazonaws") != -1){
|
|
|
// qqDns = "aws";
|
|
|
// }
|
|
|
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
resultMap.put("luaType", luaType);
|
|
|
resultMap.put("awsApiNginx", awsApiNginx);
|
|
|
resultMap.put("awsGrayNginx", awsGrayNginx);
|
|
|
resultMap.put("qqApiNginx", qqApiNginx);
|
|
|
resultMap.put("qqGrayNginx", qqGrayNginx);
|
|
|
resultMap.put("defaultDns", defaultDns);
|
|
|
// resultMap.put("qqDns", qqDns);
|
|
|
|
|
|
return new
|
|
|
|
|
|
BaseResponse(resultMap);
|
|
|
return new BaseResponse(resultMap);
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|