mirror of
https://github.com/benbusby/farside.git
synced 2025-04-29 23:20:03 +00:00
Replace poison
dependency w/ jason
The dependency took a long time to compile, and was causing problems for a user who was attempting to build the project. Since it wasn't a strictly necessary dependency, and `jason` was already included in the project, all instances of `poison` have been replaced with `jason`. The only additional code that this introduced was converting from generic maps returned by `Jason.decode` into Service structs.
This commit is contained in:
parent
51aba2ad78
commit
5235f5a3bf
3 changed files with 9 additions and 4 deletions
|
@ -43,10 +43,16 @@ defmodule Farside.Instances do
|
|||
|
||||
def update() do
|
||||
{:ok, file} = File.read(@services_json)
|
||||
{:ok, json} = Poison.decode(file, as: [%Service{}])
|
||||
{:ok, json} = Jason.decode(file)
|
||||
|
||||
# Loop through all instances and check each for availability
|
||||
for service <- json do
|
||||
for service_json <- json do
|
||||
service_atom = for {key, val} <- service_json, into: %{} do
|
||||
{String.to_existing_atom(key), val}
|
||||
end
|
||||
|
||||
service = struct(%Service{}, service_atom)
|
||||
|
||||
IO.puts("#{@debug_header}#{service.type}")
|
||||
|
||||
result =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue