EventAMFSubscriptionInfoDocumentApi.cpp 2.65 KB
Newer Older
yangjian's avatar
yangjian committed
1
/**
yangjian's avatar
yangjian committed
2 3 4 5 6 7 8 9 10 11 12
 * Nudr_DataRepository API OpenAPI file
 * Unified Data Repository Service. © 2020, 3GPP Organizational Partners (ARIB,
 * ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
 *
 * The version of the OpenAPI document: 2.1.2
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator
 * (https://openapi-generator.tech). https://openapi-generator.tech Do not edit
 * the class manually.
 */
yangjian's avatar
yangjian committed
13 14 15 16 17 18 19 20 21 22 23

#include "EventAMFSubscriptionInfoDocumentApi.h"
#include "Helpers.h"

namespace org {
namespace openapitools {
namespace server {
namespace api {

using namespace org::openapitools::server::helpers;

yangjian's avatar
yangjian committed
24 25 26
EventAMFSubscriptionInfoDocumentApi::EventAMFSubscriptionInfoDocumentApi(
    std::shared_ptr<Pistache::Rest::Router> rtr) {
  router = rtr;
yangjian's avatar
yangjian committed
27 28
}

yangjian's avatar
yangjian committed
29
void EventAMFSubscriptionInfoDocumentApi::init() { setupRoutes(); }
yangjian's avatar
yangjian committed
30 31

void EventAMFSubscriptionInfoDocumentApi::setupRoutes() {
yangjian's avatar
yangjian committed
32
  using namespace Pistache::Rest;
yangjian's avatar
yangjian committed
33

yangjian's avatar
yangjian committed
34 35 36 37 38 39
  Routes::Delete(*router,
                 base + "/subscription-data/:ueId/context-data/"
                        "ee-subscriptions/:subsId/amf-subscriptions",
                 Routes::bind(&EventAMFSubscriptionInfoDocumentApi::
                                  remove_amf_subscriptions_info_handler,
                              this));
yangjian's avatar
yangjian committed
40

yangjian's avatar
yangjian committed
41 42 43 44 45
  // Default handler, called when a route is not found
  router->addCustomHandler(
      Routes::bind(&EventAMFSubscriptionInfoDocumentApi::
                       event_amf_subscription_info_document_api_default_handler,
                   this));
yangjian's avatar
yangjian committed
46 47
}

yangjian's avatar
yangjian committed
48 49 50 51 52 53
void EventAMFSubscriptionInfoDocumentApi::remove_amf_subscriptions_info_handler(
    const Pistache::Rest::Request &request,
    Pistache::Http::ResponseWriter response) {
  // Getting the path params
  auto ueId = request.param(":ueId").as<std::string>();
  auto subsId = request.param(":subsId").as<std::string>();
yangjian's avatar
yangjian committed
54

yangjian's avatar
yangjian committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68
  try {
    this->remove_amf_subscriptions_info(ueId, subsId, response);
  } catch (nlohmann::detail::exception &e) {
    // send a 400 error
    response.send(Pistache::Http::Code::Bad_Request, e.what());
    return;
  } catch (Pistache::Http::HttpError &e) {
    response.send(static_cast<Pistache::Http::Code>(e.code()), e.what());
    return;
  } catch (std::exception &e) {
    // send a 500 error
    response.send(Pistache::Http::Code::Internal_Server_Error, e.what());
    return;
  }
yangjian's avatar
yangjian committed
69 70
}

yangjian's avatar
yangjian committed
71 72 73 74 75 76
void EventAMFSubscriptionInfoDocumentApi::
    event_amf_subscription_info_document_api_default_handler(
        const Pistache::Rest::Request &,
        Pistache::Http::ResponseWriter response) {
  response.send(Pistache::Http::Code::Not_Found,
                "The requested method does not exist");
yangjian's avatar
yangjian committed
77 78
}

yangjian's avatar
yangjian committed
79 80 81 82
} // namespace api
} // namespace server
} // namespace openapitools
} // namespace org