Jsonpatch
A implementation of RFC 6902 in pure Elixir.
Features:
- Creating a patch by comparing to maps and structs
- Apply patches to maps and structs - supports operations:
- add
- replace
- remove
- copy
- move
- test
- De/Encoding and mapping
Usage
Create a diff
iex> source = %{"name" => "Bob", "married" => false, "hobbies" => ["Sport", "Elixir", "Football"]}
iex> destination = %{"name" => "Bob", "married" => true, "hobbies" => ["Elixir!"], "age" => 33}
iex> Jsonpatch.diff(source, destination)
{:ok, [
%Jsonpatch.Operation.Add{path: "/age", value: 33},
%Jsonpatch.Operation.Replace{path: "/hobbies/0", value: "Elixir!"},
%Jsonpatch.Operation.Replace{path: "/married", value: true},
%Jsonpatch.Operation.Remove{path: "/hobbies/1"},
%Jsonpatch.Operation.Remove{path: "/hobbies/2"}
]}
Encode and decode
Encode a JSON patch struct to JSON string.
iex> Jsonpatch.Coder.decode("{\"op\": \"add\",\"value\": \"1\",\"path\": \"/age\"}")
{:ok, %Jsonpatch.Operation.Add{path: "/age", value: 1}}
Decode a JSON patch struct from a JSON string.
iex> Jsonpatch.Coder.encode(%Jsonpatch.Operation.Add{path: "/age", value: 1})
{:ok, "{\"op\": \"add\",\"value\": \"1\",\"path\": \"/age\"}"}
Apply patches
iex> patch = [
%Jsonpatch.Operation.Add{path: "/age", value: 33},
%Jsonpatch.Operation.Replace{path: "/hobbies/0", value: "Elixir!"},
%Jsonpatch.Operation.Replace{path: "/married", value: true},
%Jsonpatch.Operation.Remove{path: "/hobbies/1"},
%Jsonpatch.Operation.Remove{path: "/hobbies/2"}
]
iex> target = %{"name" => "Bob", "married" => false, "hobbies" => ["Sport", "Elixir", "Football"]}
iex> Jsonpatch.apply_patch(patch, target)
%{"name" => "Bob", "married" => true, "hobbies" => ["Elixir!"], "age" => 33}
Installation
If available in Hex, the package can be installed
by adding jsonpatch to your list of dependencies in mix.exs:
def deps do
[
{:jsonpatch, "~> 0.5.0"}
]
end
Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/jsonpatch.