-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
176 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,6 @@ erl_crash.dump | |
hex.config | ||
*.ez | ||
uof_messages-*.tar | ||
*~ | ||
*~ | ||
\#* | ||
.\#* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
defmodule UOF.API.Descriptions.Market do | ||
@moduledoc """ | ||
""" | ||
use Ecto.Schema | ||
import Ecto.Changeset | ||
import UOF.API.EctoHelpers | ||
|
||
@doc """ | ||
List all supported markets. | ||
""" | ||
@spec all(include_mappings? :: boolean(), lang :: String.t()) :: list(Market.t()) | ||
def all(include_mappings? \\ false, lang \\ "en") do | ||
case UOF.API.get("/descriptions/#{lang}/markets.xml", | ||
query: [include_mappings: include_mappings?] | ||
) do | ||
{:ok, %_{status: 200, body: resp}} -> | ||
resp | ||
|> Map.get("market_descriptions") | ||
|> Map.get("market") | ||
|
||
# |> Enum.map(fn x -> | ||
# {:ok, x} = changeset(x) | ||
# x | ||
# end) | ||
|
||
{:error, _} = error -> | ||
error | ||
end | ||
end | ||
|
||
defmodule Outcome do | ||
@moduledoc false | ||
use Ecto.Schema | ||
import Ecto.Changeset | ||
import UOF.API.EctoHelpers | ||
|
||
@primary_key false | ||
|
||
embedded_schema do | ||
field(:id, :integer) | ||
field(:name, :string) | ||
end | ||
|
||
def changeset(model \\ %__MODULE__{}, params) do | ||
cast(model, prepare(params), [:id, :name]) | ||
end | ||
|
||
defp prepare(params) do | ||
params | ||
|> rename_fields | ||
end | ||
end | ||
|
||
defmodule Specifier do | ||
@moduledoc false | ||
use Ecto.Schema | ||
import Ecto.Changeset | ||
import UOF.API.EctoHelpers | ||
|
||
@primary_key false | ||
|
||
embedded_schema do | ||
# ["decimal", "integer", "string", "variable_text"] | ||
field(:type, :string) | ||
field(:name, :string) | ||
end | ||
|
||
def changeset(model \\ %__MODULE__{}, params) do | ||
cast(model, prepare(params), [:name, :type]) | ||
end | ||
|
||
defp prepare(params) do | ||
params | ||
|> rename_fields | ||
end | ||
end | ||
|
||
@primary_key false | ||
|
||
embedded_schema do | ||
field(:id, :integer) | ||
field(:name, :string) | ||
field(:groups, {:array, :string}) | ||
# ["player", "competitor", "free_text"] | ||
field(:outcome_type, :string) | ||
field(:includes_outcomes_of_type, :string) | ||
embeds_many(:outcomes, Outcome) | ||
embeds_many(:specifiers, Specifier) | ||
# TO-DO: embeds_many(:mappings, Mapping) | ||
end | ||
|
||
def changeset(model \\ %__MODULE__{}, params) do | ||
model | ||
|> cast(prepare(params), [:id, :name, :groups, :outcome_type, :includes_outcomes_of_type]) | ||
|> cast_embed(:outcomes) | ||
|> cast_embed(:specifiers) | ||
|> case do | ||
%Ecto.Changeset{valid?: true} = changeset -> | ||
{:ok, apply_changes(changeset)} | ||
|
||
%Ecto.Changeset{} = changeset -> | ||
{:error, {params, traverse_errors(changeset)}} | ||
end | ||
end | ||
|
||
defp prepare(params) do | ||
params | ||
|> rename_fields | ||
|> prepare_outcomes | ||
|> prepare_specifiers | ||
|> split_groups | ||
end | ||
|
||
defp prepare_outcomes(params) do | ||
outcomes = | ||
params | ||
|> Map.get("outcomes", %{}) | ||
|> Map.get("outcome", []) | ||
|
||
case outcomes do | ||
outcome when not is_list(outcome) -> | ||
Map.put(params, "outcomes", [outcome]) | ||
|
||
_ -> | ||
Map.put(params, "outcomes", outcomes) | ||
end | ||
end | ||
|
||
defp prepare_specifiers(params) do | ||
specifiers = | ||
params | ||
|> Map.get("specifiers", %{}) | ||
|> Map.get("specifier", []) | ||
|
||
case specifiers do | ||
specifier when not is_list(specifier) -> | ||
Map.put(params, "specifiers", [specifier]) | ||
|
||
_ -> | ||
Map.put(params, "specifiers", specifiers) | ||
end | ||
end | ||
|
||
defp split_groups(params) do | ||
scope = String.split(params["groups"], "|") | ||
Map.put(params, "groups", scope) | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
defmodule UOF.API.Descriptions.Market.Test do | ||
use ExUnit.Case | ||
|
||
setup do | ||
:ok = Application.put_env(:tesla, UOF.API, adapter: Tesla.Mock) | ||
|
||
Tesla.Mock.mock(fn | ||
%{method: :get} -> | ||
resp = File.read!("test/data/markets.xml") | ||
%Tesla.Env{status: 200, headers: [{"content-type", "application/xml"}], body: resp} | ||
end) | ||
|
||
:ok | ||
end | ||
|
||
test "can parse UOF.API.Descriptions.Market.all/0 response" do | ||
resp = UOF.API.Descriptions.Market.all() | ||
|
||
assert Enum.count(resp) == 1172 | ||
assert hd(resp).id == 282 | ||
assert hd(resp).name == "Innings 1 to 5th top - {$competitor1} total" | ||
assert hd(resp).groups == ["all", "score", "4.5_innings"] | ||
assert Enum.map(hd(resp).outcomes, & &1.id) == [13, 12] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters