cmake | ||
res | ||
src | ||
test | ||
utility | ||
.gitignore | ||
azure-pipelines.yml | ||
CMakeLists.txt | ||
LICENSE | ||
README.md |
oatpp-swagger
Swagger UI for oatpp services
Read more:
Example
For full example project see: Example CRUD-API project with Swagger UI
Brief
-
Use
oatpp::swagger::Controller
withoatpp::web::server::HttpConnectionHandler
-
Use
oatpp::swagger::AsyncController
withoatpp::web::server::AsyncHttpConnectionHandler
-
Swagger UI location -
http://localhost:<PORT>/swagger/ui
-
OpenApi 3.0.0 specification location -
http://localhost:<PORT>/api-docs/oas-3.0.0.json
If you are using oatpp::web::server::api::ApiController
most parts of your endpoints are documented automatically like:
- Endpoint name
- Parameters
- Request Body
You may add more information to your endpoint like follows:
ENDPOINT_INFO(createUser) {
info->summary = "Create new User";
info->addConsumes<UserDto>("application/json");
info->addResponse<UserDto>(Status::CODE_200, "application/json");
info->addResponse(Status::CODE_500);
}
ENDPOINT("POST", "demo/api/users", createUser,
BODY_DTO(UserDto, userDto)) {
return createDtoResponse(Status::CODE_200, m_database->createUser(userDto));
}
How to add Swagger UI to your project
- Add
oatpp::swagger::DocumentInfo
andoatpp::swagger::Resources
components to your AppComponents:
/**
* General API docs info
*/
OATPP_CREATE_COMPONENT(std::shared_ptr<oatpp::swagger::DocumentInfo>, swaggerDocumentInfo)([] {
oatpp::swagger::DocumentInfo::Builder builder;
builder
.setTitle("User entity service")
.setDescription("CRUD API Example project with swagger docs")
.setVersion("1.0")
.setContactName("Ivan Ovsyanochka")
.setContactUrl("https://oatpp.io/")
.setLicenseName("Apache License, Version 2.0")
.setLicenseUrl("http://www.apache.org/licenses/LICENSE-2.0")
.addServer("http://localhost:8000", "server on localhost");
// When you are using the AUTHENTICATION() Endpoint-Macro you must add an SecurityScheme object (https://swagger.io/specification/#securitySchemeObject)
// For basic-authentication you can use the default Basic-Authorization-Security-Scheme like this
// For more complex authentication schemes you can use the oatpp::swagger::DocumentInfo::SecuritySchemeBuilder builder
// Don't forget to add info->addSecurityRequirement("basic_auth") to your ENDPOINT_INFO() Macro!
.addSecurityScheme("basic_auth", oatpp::swagger::DocumentInfo::SecuritySchemeBuilder::DefaultBasicAuthorizationSecurityScheme());
return builder.build();
}());
/**
* Swagger-Ui Resources (<oatpp-examples>/lib/oatpp-swagger/res)
*/
OATPP_CREATE_COMPONENT(std::shared_ptr<oatpp::swagger::Resources>, swaggerResources)([] {
// Make sure to specify correct full path to oatpp-swagger/res folder !!!
return oatpp::swagger::Resources::loadResources("<YOUR-PATH-TO-REPO>/lib/oatpp-swagger/res");
}());
- Create
oatpp::swagger::Controller
with list of endpoints you whant to document and add it to router:
auto swaggerController = oatpp::swagger::Controller::createShared(<list-of-endpoints-to-document>);
swaggerController->addEndpointsToRouter(router);
- cmake :
Add the following lines to your CMakeLists.txt project file
find_package(oatpp 1.3.0 REQUIRED)
if(oatpp_FOUND)
message(STATUS "Found oatpp version: ${oatpp_VERSION_STRING}")
else()
message(FATAL_ERROR "Could not find oatpp")
endif()
find_package(oatpp-swagger 1.3.0 REQUIRED)
if(oatpp-swagger_FOUND)
message(STATUS "Found oatpp-swagger version: ${oatpp-swagger_VERSION_STRING}")
else()
message(FATAL_ERROR "Could not find oatpp-swagger")
endif()
include_directories(${oatpp_INCLUDE_DIRS})
include_directories(${oatpp-swagger_INCLUDE_DIRS})
add_definitions(
-DOATPP_SWAGGER_RES_PATH="${OATPP_BASE_DIR}/bin/oatpp-swagger/res"
)
target_link_libraries (project PUBLIC
// add_your libraries here
PUBLIC oatpp::oatpp
PUBLIC oatpp::oatpp-swagger
)
Customise Swagger UI Paths
To customise swagger UI endpoints paths add the following component:
/**
* Swagger Controller Paths
*/
OATPP_CREATE_COMPONENT(std::shared_ptr<oatpp::swagger::ControllerPaths>, controllerPaths)([] {
auto paths = std::make_shared<oatpp::swagger::ControllerPaths>();
paths->apiJson = "custom/path/for/api.json"; // default is "api-docs/oas-3.0.0.json"
paths->ui = "my/custom/path/swagger-ui"; // default is "swagger/ui"
paths->uiResources = "my/custom/path/{filename}"; // default is "swagger/{filename}"
return paths;
}());
NOTE: paths->ui
and paths->uiResources
MUST have the same base path - as shown above.
Done!