|
|
@ -5,16 +5,19 @@ import com.gitee.easyopen.annotation.Api; |
|
|
|
import com.gitee.easyopen.annotation.ApiService; |
|
|
|
import com.gitee.easyopen.annotation.ApiService; |
|
|
|
import com.gitee.easyopen.doc.annotation.ApiDoc; |
|
|
|
import com.gitee.easyopen.doc.annotation.ApiDoc; |
|
|
|
import com.gitee.easyopen.doc.annotation.ApiDocMethod; |
|
|
|
import com.gitee.easyopen.doc.annotation.ApiDocMethod; |
|
|
|
|
|
|
|
import com.gitee.easyopen.exception.ApiException; |
|
|
|
import com.gitee.sop.adminserver.api.service.param.RouteSearchParam; |
|
|
|
import com.gitee.sop.adminserver.api.service.param.RouteSearchParam; |
|
|
|
import com.gitee.sop.adminserver.api.service.param.UpdateRouteParam; |
|
|
|
import com.gitee.sop.adminserver.api.service.param.RouteParam; |
|
|
|
|
|
|
|
import com.gitee.sop.adminserver.api.service.result.ServiceInfo; |
|
|
|
import com.gitee.sop.adminserver.bean.GatewayRouteDefinition; |
|
|
|
import com.gitee.sop.adminserver.bean.GatewayRouteDefinition; |
|
|
|
import com.gitee.sop.adminserver.bean.SopAdminConstants; |
|
|
|
|
|
|
|
import com.gitee.sop.adminserver.bean.ZookeeperContext; |
|
|
|
import com.gitee.sop.adminserver.bean.ZookeeperContext; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
import org.apache.curator.framework.recipes.cache.ChildData; |
|
|
|
import org.apache.curator.framework.recipes.cache.ChildData; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.Collections; |
|
|
|
import java.util.Collections; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
@ -23,7 +26,7 @@ import java.util.stream.Collectors; |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@ApiService |
|
|
|
@ApiService |
|
|
|
@ApiDoc("服务管理") |
|
|
|
@ApiDoc("服务管理") |
|
|
|
public class RouteListApi { |
|
|
|
public class RouteApi { |
|
|
|
|
|
|
|
|
|
|
|
@Api(name = "route.list") |
|
|
|
@Api(name = "route.list") |
|
|
|
@ApiDocMethod(description = "路由列表", elementClass = GatewayRouteDefinition.class) |
|
|
|
@ApiDocMethod(description = "路由列表", elementClass = GatewayRouteDefinition.class) |
|
|
@ -58,13 +61,33 @@ public class RouteListApi { |
|
|
|
|
|
|
|
|
|
|
|
@Api(name = "route.update") |
|
|
|
@Api(name = "route.update") |
|
|
|
@ApiDocMethod(description = "修改路由") |
|
|
|
@ApiDocMethod(description = "修改路由") |
|
|
|
void updateRoute(UpdateRouteParam param) throws Exception { |
|
|
|
void updateRoute(RouteParam param) throws Exception { |
|
|
|
String serviceIdPath = ZookeeperContext.getSopRouteRootPath(param.getProfile()) + "/" + param.getServiceId(); |
|
|
|
String serviceIdPath = ZookeeperContext.getSopRouteRootPath(param.getProfile()) + "/" + param.getServiceId(); |
|
|
|
String zookeeperRoutePath = serviceIdPath + "/" + param.getId(); |
|
|
|
String zookeeperRoutePath = serviceIdPath + "/" + param.getId(); |
|
|
|
String data = ZookeeperContext.getData(zookeeperRoutePath); |
|
|
|
String data = ZookeeperContext.getData(zookeeperRoutePath); |
|
|
|
GatewayRouteDefinition routeDefinition = JSON.parseObject(data, GatewayRouteDefinition.class); |
|
|
|
GatewayRouteDefinition routeDefinition = JSON.parseObject(data, GatewayRouteDefinition.class); |
|
|
|
BeanUtils.copyProperties(param, routeDefinition); |
|
|
|
BeanUtils.copyProperties(param, routeDefinition); |
|
|
|
ZookeeperContext.setData(zookeeperRoutePath, JSON.toJSONString(routeDefinition)); |
|
|
|
ZookeeperContext.updatePathData(zookeeperRoutePath, JSON.toJSONString(routeDefinition)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Api(name = "route.add") |
|
|
|
|
|
|
|
@ApiDocMethod(description = "新增路由") |
|
|
|
|
|
|
|
void addRoute(RouteParam param) throws Exception { |
|
|
|
|
|
|
|
String serviceIdPath = ZookeeperContext.getSopRouteRootPath(param.getProfile()) + "/" + param.getServiceId(); |
|
|
|
|
|
|
|
String zookeeperRoutePath = serviceIdPath + "/" + param.getId(); |
|
|
|
|
|
|
|
if (ZookeeperContext.isPathExist(zookeeperRoutePath)) { |
|
|
|
|
|
|
|
throw new ApiException("id已存在"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
GatewayRouteDefinition routeDefinition = new GatewayRouteDefinition(); |
|
|
|
|
|
|
|
BeanUtils.copyProperties(param, routeDefinition); |
|
|
|
|
|
|
|
ZookeeperContext.createNewData(zookeeperRoutePath, JSON.toJSONString(routeDefinition)); |
|
|
|
|
|
|
|
ServiceInfo serviceInfo = new ServiceInfo(); |
|
|
|
|
|
|
|
serviceInfo.setServiceId(param.getServiceId()); |
|
|
|
|
|
|
|
serviceInfo.setDescription(param.getServiceId()); |
|
|
|
|
|
|
|
String now = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); |
|
|
|
|
|
|
|
serviceInfo.setCreateTime(now); |
|
|
|
|
|
|
|
serviceInfo.setUpdateTime(now); |
|
|
|
|
|
|
|
ZookeeperContext.updatePathData(serviceIdPath, JSON.toJSONString(serviceInfo)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |