mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 20:50:55 +00:00
460 lines
13 KiB
C++
460 lines
13 KiB
C++
/**
|
|
* OpenAPI Petstore
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
#include "PetApi.h"
|
|
#include "Helpers.h"
|
|
|
|
namespace org::openapitools::server::api
|
|
{
|
|
|
|
using namespace org::openapitools::server::helpers;
|
|
using namespace org::openapitools::server::model;
|
|
|
|
const std::string PetApi::base = "/v2";
|
|
|
|
PetApi::PetApi(const std::shared_ptr<Pistache::Rest::Router>& rtr)
|
|
: ApiBase(rtr)
|
|
{}
|
|
|
|
void PetApi::init() {
|
|
setupRoutes();
|
|
}
|
|
|
|
void PetApi::setupRoutes() {
|
|
using namespace Pistache::Rest;
|
|
|
|
Routes::Post(*router, base + "/pet", Routes::bind(&PetApi::add_pet_handler, this));
|
|
Routes::Delete(*router, base + "/pet/:petId", Routes::bind(&PetApi::delete_pet_handler, this));
|
|
Routes::Get(*router, base + "/pet/findByStatus", Routes::bind(&PetApi::find_pets_by_status_handler, this));
|
|
Routes::Get(*router, base + "/pet/findByTags", Routes::bind(&PetApi::find_pets_by_tags_handler, this));
|
|
Routes::Get(*router, base + "/pet/:petId", Routes::bind(&PetApi::get_pet_by_id_handler, this));
|
|
Routes::Put(*router, base + "/pet", Routes::bind(&PetApi::update_pet_handler, this));
|
|
Routes::Post(*router, base + "/pet/:petId", Routes::bind(&PetApi::update_pet_with_form_handler, this));
|
|
Routes::Post(*router, base + "/pet/:petId/uploadImage", Routes::bind(&PetApi::upload_file_handler, this));
|
|
|
|
// Default handler, called when a route is not found
|
|
router->addCustomHandler(Routes::bind(&PetApi::pet_api_default_handler, this));
|
|
}
|
|
|
|
void PetApi::handleParsingException(const std::exception& ex, Pistache::Http::ResponseWriter &response) const noexcept
|
|
{
|
|
std::pair<Pistache::Http::Code, std::string> codeAndError = handleParsingException(ex);
|
|
response.send(codeAndError.first, codeAndError.second);
|
|
}
|
|
|
|
std::pair<Pistache::Http::Code, std::string> PetApi::handleParsingException(const std::exception& ex) const noexcept
|
|
{
|
|
try {
|
|
throw;
|
|
} catch (nlohmann::detail::exception &e) {
|
|
return std::make_pair(Pistache::Http::Code::Bad_Request, e.what());
|
|
} catch (org::openapitools::server::helpers::ValidationException &e) {
|
|
return std::make_pair(Pistache::Http::Code::Bad_Request, e.what());
|
|
} catch (std::exception &e) {
|
|
return std::make_pair(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
}
|
|
|
|
void PetApi::handleOperationException(const std::exception& ex, Pistache::Http::ResponseWriter &response) const noexcept
|
|
{
|
|
std::pair<Pistache::Http::Code, std::string> codeAndError = handleOperationException(ex);
|
|
response.send(codeAndError.first, codeAndError.second);
|
|
}
|
|
|
|
std::pair<Pistache::Http::Code, std::string> PetApi::handleOperationException(const std::exception& ex) const noexcept
|
|
{
|
|
return std::make_pair(Pistache::Http::Code::Internal_Server_Error, ex.what());
|
|
}
|
|
|
|
void PetApi::add_pet_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
|
|
// Getting the body param
|
|
|
|
Pet body;
|
|
|
|
try {
|
|
nlohmann::json::parse(request.body()).get_to(body);
|
|
body.validate();
|
|
} catch (std::exception &e) {
|
|
this->handleParsingException(e, response);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->add_pet(body, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::delete_pet_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
// Getting the path params
|
|
auto petId = request.param(":petId").as<int64_t>();
|
|
|
|
// Getting the header params
|
|
auto apiKey = request.headers().tryGetRaw("api_key");
|
|
|
|
try {
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->delete_pet(petId, apiKey, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/:petId"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::find_pets_by_status_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
|
|
// Getting the query params
|
|
auto statusQuery = request.query().get("status");
|
|
std::optional<std::vector<std::string>> status;
|
|
if(statusQuery.has_value()){
|
|
std::vector<std::string> valueQuery_instance;
|
|
if(fromStringValue(statusQuery.value(), valueQuery_instance)){
|
|
status = valueQuery_instance;
|
|
}
|
|
}
|
|
|
|
try {
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->find_pets_by_status(status, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/findByStatus"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::find_pets_by_tags_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
|
|
// Getting the query params
|
|
auto tagsQuery = request.query().get("tags");
|
|
std::optional<std::vector<std::string>> tags;
|
|
if(tagsQuery.has_value()){
|
|
std::vector<std::string> valueQuery_instance;
|
|
if(fromStringValue(tagsQuery.value(), valueQuery_instance)){
|
|
tags = valueQuery_instance;
|
|
}
|
|
}
|
|
|
|
try {
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->find_pets_by_tags(tags, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/findByTags"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::get_pet_by_id_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
// Getting the path params
|
|
auto petId = request.param(":petId").as<int64_t>();
|
|
|
|
try {
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->get_pet_by_id(petId, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/:petId"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::update_pet_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
|
|
// Getting the body param
|
|
|
|
Pet body;
|
|
|
|
try {
|
|
nlohmann::json::parse(request.body()).get_to(body);
|
|
body.validate();
|
|
} catch (std::exception &e) {
|
|
this->handleParsingException(e, response);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
|
|
|
|
#ifndef HTTP_BASIC_AUTH_DEFINED
|
|
#define HTTP_BASIC_AUTH_DEFINED 0
|
|
#endif
|
|
#ifndef HTTP_BEARER_AUTH_DEFINED
|
|
#define HTTP_BEARER_AUTH_DEFINED 0
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this->update_pet(body, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::update_pet_with_form_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
try {
|
|
this->update_pet_with_form(request, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/:petId"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
void PetApi::upload_file_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response) {
|
|
try {
|
|
|
|
try {
|
|
this->upload_file(request, response);
|
|
} catch (Pistache::Http::HttpError &e) {
|
|
response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
|
|
return;
|
|
} catch (std::exception &e) {
|
|
this->handleOperationException(e, response);
|
|
return;
|
|
}
|
|
|
|
} catch (std::exception &e) {
|
|
response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
|
|
}
|
|
|
|
#define REST_PATH "/pet/:petId/uploadImage"
|
|
static_assert(HTTP_BASIC_AUTH_DEFINED + HTTP_BEARER_AUTH_DEFINED < 2, "Path '" REST_PATH "' has more than one security scheme specified, and the Pistache server generator does not support that." );
|
|
#undef REST_PATH
|
|
|
|
#ifdef HTTP_BEARER_AUTH_DEFINED
|
|
#undef HTTP_BEARER_AUTH_DEFINED
|
|
#endif
|
|
#ifdef HTTP_BASIC_AUTH_DEFINED
|
|
#undef HTTP_BASIC_AUTH_DEFINED
|
|
#endif
|
|
|
|
}
|
|
|
|
void PetApi::pet_api_default_handler(const Pistache::Rest::Request &, Pistache::Http::ResponseWriter response) {
|
|
response.send(Pistache::Http::Code::Not_Found, "The requested method does not exist");
|
|
}
|
|
|
|
} // namespace org::openapitools::server::api
|
|
|