-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathSwaggerComponent.hpp
47 lines (33 loc) · 1.33 KB
/
SwaggerComponent.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef SwaggerComponent_hpp
#define SwaggerComponent_hpp
#include "dto/ConfigDto.hpp"
#include "oatpp-swagger/Model.hpp"
#include "oatpp-swagger/Resources.hpp"
#include "oatpp/core/utils/ConversionUtils.hpp"
#include "oatpp/core/macro/component.hpp"
class SwaggerComponent {
public:
/**
* General API docs info
*/
OATPP_CREATE_COMPONENT(std::shared_ptr<oatpp::swagger::DocumentInfo>, swaggerDocumentInfo)([] {
OATPP_COMPONENT(oatpp::Object<ConfigDto>, config); // Get config component
oatpp::swagger::DocumentInfo::Builder builder;
builder
.setTitle("Example: user-service")
.setDescription("Service which stores and reads user info to/from postgresql database")
.setVersion("1.0")
.setContactName("Leonid Stryzhevskyi")
.setContactUrl("https://oatpp.io/")
.addServer("http://localhost:" + oatpp::utils::conversion::int32ToStr(config->port), "server on localhost");
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(OATPP_SWAGGER_RES_PATH);
}());
};
#endif /* SwaggerComponent_hpp */