EventAMFSubscriptionInfoDocumentApi.cpp 2.53 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

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

17
namespace oai::udr::api {
yangjian's avatar
yangjian committed
18

19
using namespace oai::udr::helpers;
yangjian's avatar
yangjian committed
20

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

yangjian's avatar
yangjian committed
26
void EventAMFSubscriptionInfoDocumentApi::init() { setupRoutes(); }
yangjian's avatar
yangjian committed
27 28

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

yangjian's avatar
yangjian committed
31 32 33 34 35 36
  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
37

yangjian's avatar
yangjian committed
38 39 40 41 42
  // 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
43 44
}

yangjian's avatar
yangjian committed
45 46 47 48 49 50
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
51

yangjian's avatar
yangjian committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65
  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
66 67
}

yangjian's avatar
yangjian committed
68 69 70 71 72 73
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
74 75
}

76
} // namespace oai::udr::model