2023-06-20 04:33:09 +00:00
|
|
|
#include "StarJsonPatch.hpp"
|
|
|
|
#include "StarJsonPath.hpp"
|
|
|
|
#include "StarLexicalCast.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
Json jsonPatch(Json const& base, JsonArray const& patch) {
|
|
|
|
auto res = base;
|
|
|
|
try {
|
|
|
|
for (auto const& operation : patch) {
|
|
|
|
res = JsonPatching::applyOperation(res, operation);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
} catch (JsonException const& e) {
|
2023-06-27 10:23:44 +00:00
|
|
|
throw JsonPatchException(strf("Could not apply patch to base. {}", e.what()));
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace JsonPatching {
|
|
|
|
|
|
|
|
static const StringMap<std::function<Json(Json, Json)>> functionMap = StringMap<std::function<Json(Json, Json)>>{
|
|
|
|
{"test", std::bind(applyTestOperation, _1, _2)},
|
|
|
|
{"remove", std::bind(applyRemoveOperation, _1, _2)},
|
|
|
|
{"add", std::bind(applyAddOperation, _1, _2)},
|
|
|
|
{"replace", std::bind(applyReplaceOperation, _1, _2)},
|
|
|
|
{"move", std::bind(applyMoveOperation, _1, _2)},
|
|
|
|
{"copy", std::bind(applyCopyOperation, _1, _2)},
|
|
|
|
};
|
|
|
|
|
|
|
|
Json applyOperation(Json const& base, Json const& op) {
|
|
|
|
try {
|
|
|
|
auto operation = op.getString("op");
|
|
|
|
return JsonPatching::functionMap.get(operation)(base, op);
|
|
|
|
} catch (JsonException const& e) {
|
2023-06-27 10:23:44 +00:00
|
|
|
throw JsonPatchException(strf("Could not apply operation to base. {}", e.what()));
|
2023-06-20 04:33:09 +00:00
|
|
|
} catch (MapException const&) {
|
2023-06-27 10:23:44 +00:00
|
|
|
throw JsonPatchException(strf("Invalid operation: {}", op.getString("op")));
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Json applyTestOperation(Json const& base, Json const& op) {
|
|
|
|
auto path = op.getString("path");
|
|
|
|
auto inverseTest = op.getBool("inverse", false);
|
|
|
|
|
|
|
|
auto pointer = JsonPath::Pointer(path);
|
|
|
|
|
|
|
|
try {
|
2024-03-07 17:31:48 +00:00
|
|
|
if (op.contains("search")) {
|
|
|
|
Json searchArray = pointer.get(base);
|
|
|
|
Json searchValue = op.get("search");
|
|
|
|
if (searchArray.type() == Json::Type::Array) {
|
|
|
|
bool found = false;
|
|
|
|
for(auto& e : searchArray.toArray()) {
|
|
|
|
if (jsonCompare(e, searchValue)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found) {
|
|
|
|
if (inverseTest)
|
|
|
|
throw JsonPatchTestFail(strf("Test operation failure, expected {} to be missing.", searchValue));
|
|
|
|
return base;
|
|
|
|
} else {
|
|
|
|
if (!inverseTest)
|
|
|
|
throw JsonPatchTestFail(strf("Test operation failure, could not find {}.", searchValue));
|
|
|
|
return base;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
throw JsonPatchException(strf("Search operation failure, value at '{}' is not an array.", path));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto value = op.opt("value");
|
|
|
|
auto testValue = pointer.get(base);
|
|
|
|
if (!value) {
|
|
|
|
if (inverseTest)
|
|
|
|
throw JsonPatchTestFail(strf("Test operation failure, expected {} to be missing.", op.getString("path")));
|
|
|
|
return base;
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
|
2024-03-07 17:31:48 +00:00
|
|
|
if ((value && (testValue == *value)) ^ inverseTest) {
|
|
|
|
return base;
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
|
2024-03-07 17:31:48 +00:00
|
|
|
throw JsonPatchTestFail(strf("Test operation failure, expected {} found {}.", value, testValue));
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
} catch (JsonPath::TraversalException& e) {
|
|
|
|
if (inverseTest)
|
|
|
|
return base;
|
2023-06-27 10:23:44 +00:00
|
|
|
throw JsonPatchTestFail(strf("Test operation failure: {}", e.what()));
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Json applyRemoveOperation(Json const& base, Json const& op) {
|
2024-03-07 16:01:29 +00:00
|
|
|
if (op.contains("search")) {
|
|
|
|
String path = op.getString("path");
|
|
|
|
auto pointer = JsonPath::Pointer(path);
|
|
|
|
Json searchArray = pointer.get(base);
|
|
|
|
Json searchValue = op.get("search");
|
|
|
|
if (searchArray.type() == Json::Type::Array) {
|
|
|
|
size_t index = 0;
|
|
|
|
bool found = false;
|
|
|
|
for (auto& e : searchArray.toArray()) {
|
|
|
|
if (jsonCompare(e, searchValue)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
searchArray = searchArray.eraseIndex(index);
|
|
|
|
return pointer.add(pointer.remove(base), searchArray);
|
|
|
|
} else {
|
|
|
|
throw JsonPatchException(strf("Search operation failure, value at {} is not an array.", path));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return JsonPath::Pointer(op.getString("path")).remove(base);
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Json applyAddOperation(Json const& base, Json const& op) {
|
2024-03-07 17:31:48 +00:00
|
|
|
if (op.contains("search")) {
|
|
|
|
Json value = op.get("value");
|
|
|
|
String path = op.getString("path");
|
|
|
|
auto pointer = JsonPath::Pointer(path);
|
|
|
|
Json searchArray = pointer.get(base);
|
|
|
|
Json searchValue = op.get("search");
|
|
|
|
if (searchArray.type() == Json::Type::Array) {
|
|
|
|
bool found = false;
|
|
|
|
for (auto& e : searchArray.toArray()) {
|
|
|
|
if (jsonCompare(e, searchValue)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
searchArray = searchArray.append(value);
|
|
|
|
return pointer.add(pointer.remove(base), searchArray);
|
|
|
|
} else {
|
|
|
|
throw JsonPatchException(strf("Search operation failure, value at {} is not an array.", path));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return JsonPath::Pointer(op.getString("path")).add(base, op.get("value"));
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Json applyReplaceOperation(Json const& base, Json const& op) {
|
2024-03-07 17:31:48 +00:00
|
|
|
if (op.contains("search")) {
|
|
|
|
Json value = op.get("value");
|
|
|
|
String path = op.getString("path");
|
|
|
|
auto pointer = JsonPath::Pointer(path);
|
|
|
|
Json searchArray = pointer.get(base);
|
|
|
|
Json searchValue = op.get("search");
|
|
|
|
if (searchArray.type() == Json::Type::Array) {
|
|
|
|
size_t index = 0;
|
|
|
|
bool found = false;
|
|
|
|
for (auto& e : searchArray.toArray()) {
|
|
|
|
if (jsonCompare(e, searchValue)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
searchArray = searchArray.set(index, value);
|
|
|
|
return pointer.add(pointer.remove(base), searchArray);
|
|
|
|
} else {
|
|
|
|
throw JsonPatchException(strf("Search operation failure, value at {} is not an array.", path));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto pointer = JsonPath::Pointer(op.getString("path"));
|
|
|
|
return pointer.add(pointer.remove(base), op.get("value"));
|
|
|
|
}
|
2023-06-20 04:33:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Json applyMoveOperation(Json const& base, Json const& op) {
|
|
|
|
auto fromPointer = JsonPath::Pointer(op.getString("from"));
|
|
|
|
auto toPointer = JsonPath::Pointer(op.getString("path"));
|
|
|
|
|
|
|
|
Json value = fromPointer.get(base);
|
|
|
|
return toPointer.add(fromPointer.remove(base), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
Json applyCopyOperation(Json const& base, Json const& op) {
|
|
|
|
auto fromPointer = JsonPath::Pointer(op.getString("from"));
|
|
|
|
auto toPointer = JsonPath::Pointer(op.getString("path"));
|
|
|
|
|
|
|
|
return toPointer.add(base, fromPointer.get(base));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|