ash_graphql/lib/resource/transformers/validate_actions.ex
Zach Daniel 49c6534d73 improvement: generic action support
docs: better docs
2023-09-15 13:45:12 -04:00

60 lines
1.5 KiB
Elixir

defmodule AshGraphql.Resource.Transformers.ValidateActions do
# Ensures that all referenced actiosn exist
@moduledoc false
use Spark.Dsl.Transformer
alias Spark.Dsl.Transformer
def after_compile?, do: true
def transform(dsl) do
dsl
|> Transformer.get_entities([:graphql, :queries])
|> Enum.concat(Transformer.get_entities(dsl, [:graphql, :mutations]))
|> Enum.each(fn query_or_mutation ->
type =
case query_or_mutation do
%AshGraphql.Resource.Query{} ->
:read
%AshGraphql.Resource.Action{} ->
nil
%AshGraphql.Resource.Mutation{type: type} ->
type
end
available_actions = Transformer.get_entities(dsl, [:actions]) || []
available_actions =
if type do
Enum.filter(available_actions, fn action ->
action.type == type
end)
else
available_actions
end
action =
Enum.find(available_actions, fn action ->
action.name == query_or_mutation.action
end)
unless action do
resource = Transformer.get_persisted(dsl, :module)
raise Spark.Error.DslError,
module: resource,
message: """
No such action #{query_or_mutation.action} of type #{type} on #{inspect(resource)}
Available #{type} actions:
#{Enum.map_join(available_actions, ", ", & &1.name)}
"""
end
end)
{:ok, dsl}
end
end