defmodule Wordnik.Word.Hyphenation do
@moduledoc """
hyphenation information about requested word
[Wordnik Docs](https://developer.wordnik.com/docs#!/word/getHyphenation)
"""
alias Wordnik.Formatter.Query
@typedoc """
map of optional parameters that can be passed to `get_hyphenation/2` query
"""
@type hyphenation_params ::
%{
optional(:use_canonical) => boolean(),
optional(:limit) => integer(),
optional(:source_dict) => Formatter.Enums.source_dict()
}
@typedoc """
parsed JSON response to `get_hyphenation/2` query
"""
@type hyphenation ::
list(%{
optional(:type) => String.t(),
text: String.t(),
seq: integer
})
@valid_params [
"limit",
"source_dict",
"use_canonical"
]
defp format_url(word) do
"http://api.wordnik.com/v4/word.json/#{word}/hyphenation"
end
@doc """
get hyphenation for requested word
### Parameters
- use_canonical: boolean
- limit: integer
- source_dict: string
### Example
```elixir
iex> get_hyphenation("verbose", %{use_canonical})
```
### Response
`t:Word.Hyphenation.hyphenation/0`
### Wordnik Docs
https://developer.wordnik.com/docs#!/word/getHyphenation
"""
@spec get_hyphenation(String.t(), hyphenation_params()) ::
{:error, String.t()} | {:ok, hyphenation()}
def get_hyphenation(word, params \\ %{}) do
{fn_name, _} = __ENV__.function
word
|> format_url
|> Query.validate_and_fetch_query(params, @valid_params, fn_name)
end
end