diff options
| author | Ben Busby <contact@benbusby.com> | 2022-02-14 11:21:32 -0700 |
|---|---|---|
| committer | Ben Busby <contact@benbusby.com> | 2022-02-14 11:21:32 -0700 |
| commit | 5235f5a3bf620a787d0d2ee0021336c893ffa013 (patch) | |
| tree | f8ada4659f2b650c2e56abbaa31ea4eaf79c30fb /lib | |
| parent | 51aba2ad789bf5efc340ff686dcfee7aeb6fd873 (diff) | |
| download | farside-5235f5a3bf620a787d0d2ee0021336c893ffa013.tar.gz | |
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.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/farside/instances.ex | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/farside/instances.ex b/lib/farside/instances.ex index 7a07827..625bbb4 100644 --- a/lib/farside/instances.ex +++ b/lib/farside/instances.ex @@ -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 = |
