feat:add swagger report switch. (#1150)

pull/1153/head
Haotian Zhang 1 year ago committed by GitHub
parent e79aa90d8f
commit 947c0d8fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,3 +7,4 @@
- [refactor:optimize the order and condition matching of service registration automatic configuration.](https://github.com/Tencent/spring-cloud-tencent/pull/1131) - [refactor:optimize the order and condition matching of service registration automatic configuration.](https://github.com/Tencent/spring-cloud-tencent/pull/1131)
- [feat:support service contract reporting.](https://github.com/Tencent/spring-cloud-tencent/pull/1141) - [feat:support service contract reporting.](https://github.com/Tencent/spring-cloud-tencent/pull/1141)
- [feat: support log path configuration parameters,](https://github.com/Tencent/spring-cloud-tencent/pull/1142) - [feat: support log path configuration parameters,](https://github.com/Tencent/spring-cloud-tencent/pull/1142)
- [feat:add swagger report switch.](https://github.com/Tencent/spring-cloud-tencent/pull/1150)

@ -24,6 +24,7 @@ import java.util.Map;
import com.tencent.cloud.common.util.JacksonUtils; import com.tencent.cloud.common.util.JacksonUtils;
import com.tencent.cloud.polaris.PolarisDiscoveryProperties; import com.tencent.cloud.polaris.PolarisDiscoveryProperties;
import com.tencent.cloud.polaris.contract.config.PolarisContractProperties;
import com.tencent.polaris.api.core.ProviderAPI; import com.tencent.polaris.api.core.ProviderAPI;
import com.tencent.polaris.api.plugin.server.InterfaceDescriptor; import com.tencent.polaris.api.plugin.server.InterfaceDescriptor;
import com.tencent.polaris.api.plugin.server.ReportServiceContractRequest; import com.tencent.polaris.api.plugin.server.ReportServiceContractRequest;
@ -55,7 +56,7 @@ public class PolarisContractReporter implements ApplicationListener<ApplicationR
private final org.springdoc.webmvc.api.MultipleOpenApiResource multipleOpenApiWebMvcResource; private final org.springdoc.webmvc.api.MultipleOpenApiResource multipleOpenApiWebMvcResource;
private final org.springdoc.webflux.api.MultipleOpenApiResource multipleOpenApiWebFluxResource; private final org.springdoc.webflux.api.MultipleOpenApiResource multipleOpenApiWebFluxResource;
private final String groupName; private final PolarisContractProperties polarisContractProperties;
private final ProviderAPI providerAPI; private final ProviderAPI providerAPI;
@ -63,54 +64,56 @@ public class PolarisContractReporter implements ApplicationListener<ApplicationR
public PolarisContractReporter(org.springdoc.webmvc.api.MultipleOpenApiResource multipleOpenApiWebMvcResource, public PolarisContractReporter(org.springdoc.webmvc.api.MultipleOpenApiResource multipleOpenApiWebMvcResource,
org.springdoc.webflux.api.MultipleOpenApiResource multipleOpenApiWebFluxResource, org.springdoc.webflux.api.MultipleOpenApiResource multipleOpenApiWebFluxResource,
String groupName, ProviderAPI providerAPI, PolarisContractProperties polarisContractProperties, ProviderAPI providerAPI,
PolarisDiscoveryProperties polarisDiscoveryProperties) { PolarisDiscoveryProperties polarisDiscoveryProperties) {
this.multipleOpenApiWebMvcResource = multipleOpenApiWebMvcResource; this.multipleOpenApiWebMvcResource = multipleOpenApiWebMvcResource;
this.multipleOpenApiWebFluxResource = multipleOpenApiWebFluxResource; this.multipleOpenApiWebFluxResource = multipleOpenApiWebFluxResource;
this.groupName = groupName; this.polarisContractProperties = polarisContractProperties;
this.providerAPI = providerAPI; this.providerAPI = providerAPI;
this.polarisDiscoveryProperties = polarisDiscoveryProperties; this.polarisDiscoveryProperties = polarisDiscoveryProperties;
} }
@Override @Override
public void onApplicationEvent(@NonNull ApplicationReadyEvent applicationReadyEvent) { public void onApplicationEvent(@NonNull ApplicationReadyEvent applicationReadyEvent) {
try { if (polarisContractProperties.isReportEnabled()) {
AbstractOpenApiResource openApiResource = null; try {
if (multipleOpenApiWebMvcResource != null) { AbstractOpenApiResource openApiResource = null;
openApiResource = OpenApiWebMvcUtil.getOpenApiResourceOrThrow(multipleOpenApiWebMvcResource, groupName); if (multipleOpenApiWebMvcResource != null) {
} openApiResource = OpenApiWebMvcUtil.getOpenApiResourceOrThrow(multipleOpenApiWebMvcResource, polarisContractProperties.getGroup());
else if (multipleOpenApiWebFluxResource != null) { }
openApiResource = OpenApiWebFluxUtil.getOpenApiResourceOrThrow(multipleOpenApiWebFluxResource, groupName); else if (multipleOpenApiWebFluxResource != null) {
} openApiResource = OpenApiWebFluxUtil.getOpenApiResourceOrThrow(multipleOpenApiWebFluxResource, polarisContractProperties.getGroup());
OpenAPI openAPI = null; }
if (openApiResource != null) { OpenAPI openAPI = null;
openAPI = AbstractOpenApiResourceUtil.getOpenApi(openApiResource); if (openApiResource != null) {
} openAPI = AbstractOpenApiResourceUtil.getOpenApi(openApiResource);
if (openAPI != null) { }
ReportServiceContractRequest request = new ReportServiceContractRequest(); if (openAPI != null) {
request.setName(polarisDiscoveryProperties.getService()); ReportServiceContractRequest request = new ReportServiceContractRequest();
request.setNamespace(polarisDiscoveryProperties.getNamespace()); request.setName(polarisDiscoveryProperties.getService());
request.setService(polarisDiscoveryProperties.getService()); request.setNamespace(polarisDiscoveryProperties.getNamespace());
request.setProtocol("http"); request.setService(polarisDiscoveryProperties.getService());
request.setVersion(polarisDiscoveryProperties.getVersion()); request.setProtocol("http");
List<InterfaceDescriptor> interfaceDescriptorList = getInterfaceDescriptorFromSwagger(openAPI); request.setVersion(polarisDiscoveryProperties.getVersion());
request.setInterfaceDescriptors(interfaceDescriptorList); List<InterfaceDescriptor> interfaceDescriptorList = getInterfaceDescriptorFromSwagger(openAPI);
ReportServiceContractResponse response = providerAPI.reportServiceContract(request); request.setInterfaceDescriptors(interfaceDescriptorList);
LOG.info("Service contract [Namespace: {}. Name: {}. Service: {}. Protocol:{}. Version: {}. API counter: {}] is reported.", ReportServiceContractResponse response = providerAPI.reportServiceContract(request);
request.getNamespace(), request.getName(), request.getService(), request.getProtocol(), LOG.info("Service contract [Namespace: {}. Name: {}. Service: {}. Protocol:{}. Version: {}. API counter: {}] is reported.",
request.getVersion(), request.getInterfaceDescriptors().size()); request.getNamespace(), request.getName(), request.getService(), request.getProtocol(),
if (LOG.isDebugEnabled()) { request.getVersion(), request.getInterfaceDescriptors().size());
String jsonValue = JacksonUtils.serialize2Json(openAPI); if (LOG.isDebugEnabled()) {
LOG.debug("OpenApi json data: {}", jsonValue); String jsonValue = JacksonUtils.serialize2Json(openAPI);
LOG.debug("OpenApi json data: {}", jsonValue);
}
}
else {
LOG.warn("OpenAPI or json is null, group:{}", polarisContractProperties.getGroup());
} }
} }
else { catch (Throwable t) {
LOG.warn("OpenAPI or json is null, group:{}", groupName); LOG.error("Report contract failed.", t);
} }
} }
catch (Throwable t) {
LOG.error("Report contract failed.", t);
}
} }
private List<InterfaceDescriptor> getInterfaceDescriptorFromSwagger(OpenAPI openAPI) { private List<InterfaceDescriptor> getInterfaceDescriptorFromSwagger(OpenAPI openAPI) {

@ -47,4 +47,8 @@ public interface ContractProperties {
boolean isExposure(); boolean isExposure();
void setExposure(boolean exposure); void setExposure(boolean exposure);
boolean isReportEnabled();
void setReportEnabled(boolean reportEnabled);
} }

@ -21,6 +21,7 @@ import java.util.Objects;
import javax.annotation.Nullable; import javax.annotation.Nullable;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.ConfigurationProperties;
/** /**
@ -53,6 +54,9 @@ public class PolarisContractProperties implements ContractProperties {
private boolean exposure = true; private boolean exposure = true;
@Value("${spring.cloud.polaris.contract.report.enabled:true}")
private boolean reportEnabled = true;
public PolarisContractProperties(@Nullable ExtendedContractProperties extendContractProperties) { public PolarisContractProperties(@Nullable ExtendedContractProperties extendContractProperties) {
this.extendContractProperties = extendContractProperties; this.extendContractProperties = extendContractProperties;
} }
@ -134,4 +138,14 @@ public class PolarisContractProperties implements ContractProperties {
public void setExposure(boolean exposure) { public void setExposure(boolean exposure) {
this.exposure = exposure; this.exposure = exposure;
} }
@Override
public boolean isReportEnabled() {
return reportEnabled;
}
@Override
public void setReportEnabled(boolean reportEnabled) {
this.reportEnabled = reportEnabled;
}
} }

@ -100,7 +100,7 @@ public class PolarisSwaggerAutoConfiguration {
PolarisContractProperties polarisContractProperties, PolarisSDKContextManager polarisSDKContextManager, PolarisContractProperties polarisContractProperties, PolarisSDKContextManager polarisSDKContextManager,
PolarisDiscoveryProperties polarisDiscoveryProperties) { PolarisDiscoveryProperties polarisDiscoveryProperties) {
return new PolarisContractReporter(multipleOpenApiWebMvcResource, multipleOpenApiWebFluxResource, return new PolarisContractReporter(multipleOpenApiWebMvcResource, multipleOpenApiWebFluxResource,
polarisContractProperties.getGroup(), polarisSDKContextManager.getProviderAPI(), polarisDiscoveryProperties); polarisContractProperties, polarisSDKContextManager.getProviderAPI(), polarisDiscoveryProperties);
} }
@Bean @Bean

@ -35,6 +35,12 @@
"type": "java.lang.Boolean", "type": "java.lang.Boolean",
"defaultValue": "true", "defaultValue": "true",
"description": "Enable polaris contract exposure or not." "description": "Enable polaris contract exposure or not."
},
{
"name": "spring.cloud.polaris.contract.report.enabled",
"type": "java.lang.Boolean",
"defaultValue": "true",
"description": "Enable polaris contract report or not."
} }
] ]
} }

@ -24,6 +24,8 @@ spring:
health-check-url: /discovery/service/caller/healthCheck health-check-url: /discovery/service/caller/healthCheck
contract: contract:
exposure: true exposure: true
report:
enabled: true
stat: stat:
enabled: true enabled: true
port: 28081 port: 28081

Loading…
Cancel
Save