diff options
author | neodarz <neodarz@neodarz.net> | 2019-08-08 19:07:02 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-08-08 19:07:02 +0200 |
commit | 85e1431aa382f721e3b51804ca0b00ab063553ef (patch) | |
tree | 71ea37b36a5c534e62b6d755aa03405a122e934a /api/umosapi.cpp | |
parent | f502716912b349ea446aa52556701bbda9083de8 (diff) | |
download | umosapicpp-85e1431aa382f721e3b51804ca0b00ab063553ef.tar.xz umosapicpp-85e1431aa382f721e3b51804ca0b00ab063553ef.zip |
Add ability to delete an uobject
Diffstat (limited to '')
-rw-r--r-- | api/umosapi.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/api/umosapi.cpp b/api/umosapi.cpp index de2a693..6be8690 100644 --- a/api/umosapi.cpp +++ b/api/umosapi.cpp @@ -104,6 +104,15 @@ void UmosapiService::createDescription() { .parameter<Rest::Type::String>("mcollection", "Name of the collection where the uobjects are located") .response(Http::Code::Ok, "Uobject created") .response(backendErrorResponse); + + versionPath + .route(desc.del("/:mcollection/:oid")) + .bind(&UmosapiService::UmosapiService::deleteUObject, this) + .produces(MIME(Application, Json)) + .parameter<Rest::Type::String>("mcollection", "Name of the collection where the uobjects are located") + .parameter<Rest::Type::String>("oid", "MongoDB oid of the uobject") + .response(Http::Code::Ok, "Uobject deleted") + .response(backendErrorResponse); } void UmosapiService::retrieveAll(const Rest::Request& request, Http::ResponseWriter response) { @@ -122,3 +131,12 @@ void UmosapiService::addUObject(const Rest::Request& request, Http::ResponseWrit response.send(Http::Code::Ok, json_string, MIME(Application, Json)); json_object_put(jsonObject); } + +void UmosapiService::deleteUObject(const Rest::Request& request, Http::ResponseWriter response) { + + auto jsonObjet = json_object_new_object(); + + auto json_string = uobject::remove(request.param(":mcollection").as<string>(), request.param(":oid").as<string>(), jsonObjet); + + response.send(Http::Code::Ok, json_string, MIME(Application, Json)); +} |