diff options
author | neodarz <neodarz@neodarz.net> | 2019-09-10 16:20:11 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-09-10 16:20:11 +0200 |
commit | 1ae302dae3df2cb48c99ebdf407e490dca97d5fd (patch) | |
tree | 491e1f6ee0708ea379e3ead5f48246a36b88c0e9 /db/uobject.cpp | |
parent | cc42e3be1c2cfe357efaaa49b6d3738f037a9696 (diff) | |
parent | cc8c1ad450667c8f6f983ba4f0d640accdcb49cf (diff) | |
download | umosapicpp-1ae302dae3df2cb48c99ebdf407e490dca97d5fd.tar.xz umosapicpp-1ae302dae3df2cb48c99ebdf407e490dca97d5fd.zip |
Merge branch 'restbed_rewrite'
Diffstat (limited to '')
-rw-r--r-- | db/uobject.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/db/uobject.cpp b/db/uobject.cpp index 6401307..bb911bb 100644 --- a/db/uobject.cpp +++ b/db/uobject.cpp @@ -3,7 +3,9 @@ using bsoncxx::builder::basic::kvp; using bsoncxx::builder::basic::make_document; -std::string uobject::retrieveAll(std::string collection, struct json_object* jsonObjects) { +UmosapiService::uobject::uobject() {} + +std::string UmosapiService::uobject::retrieveAll(std::string collection, struct json_object* jsonObjects) { auto conn = mongo.get_connection(); @@ -11,14 +13,14 @@ std::string uobject::retrieveAll(std::string collection, struct json_object* jso auto cursor = coll.find({}); - for (auto&& doc : cursor) { + for (const auto& doc : cursor) { json_object_array_add(jsonObjects, json_tokener_parse(bsoncxx::to_json(doc).c_str())); } return json_object_to_json_string_ext(jsonObjects, JSON_C_TO_STRING_SPACED | JSON_C_TO_STRING_PRETTY); } -std::string uobject::add(std::string collection, struct json_object* jsonObject, const char * body) { +std::string UmosapiService::uobject::add(std::string collection, struct json_object* jsonObject, const char * body) { auto conn = mongo.get_connection(); auto coll = (*conn)[config["mongo_db"]][collection]; @@ -77,7 +79,7 @@ std::string uobject::add(std::string collection, struct json_object* jsonObject, return json_object_to_json_string_ext(jsonObject, JSON_C_TO_STRING_SPACED | JSON_C_TO_STRING_PRETTY); } -std::string uobject::remove(std::string collection, std::string oid, struct json_object* jsonObject) { +std::string UmosapiService::uobject::remove(std::string collection, std::string oid, struct json_object* jsonObject) { auto conn = mongo.get_connection(); auto coll = (*conn)[config["mongo_db"]][collection]; @@ -103,11 +105,13 @@ std::string uobject::remove(std::string collection, std::string oid, struct json json_object_object_add(json_id, "$oid", json_oid); json_object_object_add(jsonObject, "_id", json_id); json_object_object_add(jsonObject, "datas", {}); + return json_object_to_json_string_ext(jsonObject, JSON_C_TO_STRING_SPACED | JSON_C_TO_STRING_PRETTY); + } else { + return "0"; } - return json_object_to_json_string_ext(jsonObject, JSON_C_TO_STRING_SPACED | JSON_C_TO_STRING_PRETTY); } -std::string uobject::searchKeyValue(std::string collection, std::string key, std::string value, struct json_object* jsonArray) { +std::string UmosapiService::uobject::searchKeyValue(std::string collection, std::string key, std::string value, struct json_object* jsonArray) { auto conn = mongo.get_connection(); auto coll = (*conn)[config["mongo_db"]][collection]; @@ -122,7 +126,7 @@ std::string uobject::searchKeyValue(std::string collection, std::string key, std auto cursor = coll.find(bsoncxx::from_json(json_string)); - for (auto&& doc : cursor) { + for (const auto& doc : cursor) { json_object_array_add(jsonArray, json_tokener_parse(bsoncxx::to_json(doc).c_str())); } |