Files
music_library/lib/last_fm/config.ex
T
2026-03-27 23:14:09 +00:00

59 lines
1.4 KiB
Elixir

defmodule LastFm.Config do
@type t :: %__MODULE__{
api_key: String.t(),
shared_secret: String.t(),
user: String.t(),
user_agent: String.t(),
req_options: Keyword.t(),
api_cooldown: non_neg_integer()
}
@enforce_keys [:api_key, :user]
defstruct api_key: "",
shared_secret: "",
user: "",
user_agent: "change me",
req_options: [],
api_cooldown: 500
@schema NimbleOptions.new!(
api_key: [
type: :string,
required: true
],
shared_secret: [
type: :string,
required: true
],
user: [
type: :string,
required: true
],
user_agent: [
type: :string,
required: false,
default: "change me"
],
req_options: [
type: :keyword_list,
required: false,
default: []
],
api_cooldown: [
type: :integer,
required: false,
default: 500
]
)
@doc NimbleOptions.docs(@schema)
@spec resolve(Application.app()) :: t | no_return
def resolve(otp_app) do
app_config =
Application.get_env(otp_app, LastFm)
|> NimbleOptions.validate!(@schema)
struct(__MODULE__, app_config)
end
end