8 changed files with 5 additions and 324 deletions
@ -1,55 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.AllArgsConstructor; |
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
import springfox.documentation.swagger.web.SwaggerResourcesProvider; |
|
||||||
|
|
||||||
/** |
|
||||||
* SwaggerResourceHandler |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
@AllArgsConstructor |
|
||||||
public class SwaggerResourceHandler implements HandlerFunction<ServerResponse> { |
|
||||||
private final SwaggerResourcesProvider swaggerResources; |
|
||||||
|
|
||||||
/** |
|
||||||
* Handle the given request. |
|
||||||
* |
|
||||||
* @param request the request to handler |
|
||||||
* @return the response |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest request) { |
|
||||||
return ServerResponse.status(HttpStatus.OK) |
|
||||||
.contentType(MediaType.APPLICATION_JSON) |
|
||||||
.body(BodyInserters.fromValue(swaggerResources.get())); |
|
||||||
} |
|
||||||
} |
|
@ -1,52 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
import springfox.documentation.swagger.web.SecurityConfigurationBuilder; |
|
||||||
|
|
||||||
/** |
|
||||||
* SwaggerSecurityHandler |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
public class SwaggerSecurityHandler implements HandlerFunction<ServerResponse> { |
|
||||||
|
|
||||||
/** |
|
||||||
* Handle the given request. |
|
||||||
* |
|
||||||
* @param request the request to handler |
|
||||||
* @return the response |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest request) { |
|
||||||
return ServerResponse.status(HttpStatus.OK) |
|
||||||
.contentType(MediaType.APPLICATION_JSON) |
|
||||||
.body(BodyInserters.fromValue(SecurityConfigurationBuilder.builder().build())); |
|
||||||
} |
|
||||||
} |
|
@ -1,52 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springblade.gateway.handler; |
|
||||||
|
|
||||||
import lombok.extern.slf4j.Slf4j; |
|
||||||
import org.springframework.http.HttpStatus; |
|
||||||
import org.springframework.http.MediaType; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import org.springframework.web.reactive.function.BodyInserters; |
|
||||||
import org.springframework.web.reactive.function.server.HandlerFunction; |
|
||||||
import org.springframework.web.reactive.function.server.ServerRequest; |
|
||||||
import org.springframework.web.reactive.function.server.ServerResponse; |
|
||||||
import reactor.core.publisher.Mono; |
|
||||||
import springfox.documentation.swagger.web.UiConfigurationBuilder; |
|
||||||
|
|
||||||
/** |
|
||||||
* SwaggerUiHandler |
|
||||||
* |
|
||||||
* @author lengleng |
|
||||||
*/ |
|
||||||
@Slf4j |
|
||||||
@Component |
|
||||||
public class SwaggerUiHandler implements HandlerFunction<ServerResponse> { |
|
||||||
|
|
||||||
/** |
|
||||||
* Handle the given request. |
|
||||||
* |
|
||||||
* @param request the request to handler |
|
||||||
* @return the response |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public Mono<ServerResponse> handle(ServerRequest request) { |
|
||||||
return ServerResponse.status(HttpStatus.OK) |
|
||||||
.contentType(MediaType.APPLICATION_JSON) |
|
||||||
.body(BodyInserters.fromValue(UiConfigurationBuilder.builder().build())); |
|
||||||
} |
|
||||||
} |
|
@ -1,38 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package org.springblade.gateway.props; |
|
||||||
|
|
||||||
import lombok.Data; |
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
|
||||||
import org.springframework.cloud.context.config.annotation.RefreshScope; |
|
||||||
|
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.List; |
|
||||||
|
|
||||||
/** |
|
||||||
* 路由配置类 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
@RefreshScope |
|
||||||
@ConfigurationProperties("blade.document") |
|
||||||
public class RouteProperties { |
|
||||||
|
|
||||||
private final List<RouteResource> resources = new ArrayList<>(); |
|
||||||
|
|
||||||
} |
|
@ -1,45 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package org.springblade.gateway.props; |
|
||||||
|
|
||||||
import lombok.Data; |
|
||||||
import org.springblade.core.launch.constant.AppConstant; |
|
||||||
|
|
||||||
/** |
|
||||||
* Swagger聚合文档属性 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Data |
|
||||||
public class RouteResource { |
|
||||||
|
|
||||||
/** |
|
||||||
* 文档名 |
|
||||||
*/ |
|
||||||
private String name; |
|
||||||
|
|
||||||
/** |
|
||||||
* 文档所在服务地址 |
|
||||||
*/ |
|
||||||
private String location; |
|
||||||
|
|
||||||
/** |
|
||||||
* 文档版本 |
|
||||||
*/ |
|
||||||
private String version = AppConstant.APPLICATION_VERSION; |
|
||||||
|
|
||||||
} |
|
@ -1,59 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are met: |
|
||||||
* |
|
||||||
* Redistributions of source code must retain the above copyright notice, |
|
||||||
* this list of conditions and the following disclaimer. |
|
||||||
* Redistributions in binary form must reproduce the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer in the |
|
||||||
* documentation and/or other materials provided with the distribution. |
|
||||||
* Neither the name of the dreamlu.net developer nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* Author: Chill 庄骞 (smallchill@163.com) |
|
||||||
*/ |
|
||||||
package org.springblade.gateway.provider; |
|
||||||
|
|
||||||
import lombok.AllArgsConstructor; |
|
||||||
import org.springblade.gateway.props.RouteProperties; |
|
||||||
import org.springblade.gateway.props.RouteResource; |
|
||||||
import org.springframework.context.annotation.Primary; |
|
||||||
import org.springframework.stereotype.Component; |
|
||||||
import springfox.documentation.swagger.web.SwaggerResource; |
|
||||||
import springfox.documentation.swagger.web.SwaggerResourcesProvider; |
|
||||||
|
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.List; |
|
||||||
|
|
||||||
/** |
|
||||||
* 聚合接口文档注册 |
|
||||||
* |
|
||||||
* @author Chill |
|
||||||
*/ |
|
||||||
@Primary |
|
||||||
@Component |
|
||||||
@AllArgsConstructor |
|
||||||
public class SwaggerProvider implements SwaggerResourcesProvider { |
|
||||||
private static final String API_URI = "/v2/api-docs"; |
|
||||||
|
|
||||||
private final RouteProperties routeProperties; |
|
||||||
|
|
||||||
@Override |
|
||||||
public List<SwaggerResource> get() { |
|
||||||
List<SwaggerResource> resources = new ArrayList<>(); |
|
||||||
List<RouteResource> routeResources = routeProperties.getResources(); |
|
||||||
routeResources.forEach(routeResource -> resources.add(swaggerResource(routeResource))); |
|
||||||
return resources; |
|
||||||
} |
|
||||||
|
|
||||||
private SwaggerResource swaggerResource(RouteResource routeResource) { |
|
||||||
SwaggerResource swaggerResource = new SwaggerResource(); |
|
||||||
swaggerResource.setName(routeResource.getName()); |
|
||||||
swaggerResource.setLocation(routeResource.getLocation().concat(API_URI)); |
|
||||||
swaggerResource.setSwaggerVersion(routeResource.getVersion()); |
|
||||||
return swaggerResource; |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue