defmodule AshGraphql.Graphql.Resolver do @moduledoc false require Ash.Query def resolve( %{arguments: arguments, context: context} = resolution, {api, resource, %{type: :get, action: action, identity: identity}} ) do opts = [ actor: Map.get(context, :actor), authorize?: AshGraphql.Api.authorize?(api), action: action ] filter = if identity do resource |> Ash.Resource.identities() |> Enum.find(&(&1.name == identity)) |> Map.get(:keys) |> Enum.map(fn key -> {key, Map.get(arguments, key)} end) else [id: Map.get(arguments, :id)] end result = resource |> Ash.Query.new() |> Ash.Query.set_tenant(Map.get(context, :tenant)) |> Ash.Query.filter(^filter) |> api.read_one(opts) Absinthe.Resolution.put_result(resolution, to_resolution(result)) end def resolve( %{arguments: args, context: context, definition: %{selections: selections}} = resolution, {api, resource, %{type: :list, action: action}} ) do opts = [ actor: Map.get(context, :actor), authorize?: AshGraphql.Api.authorize?(api), action: action ] page_opts = args |> Map.take([:limit, :offset, :after, :before]) |> Enum.reject(fn {_, val} -> is_nil(val) end) opts = case page_opts do [] -> opts page_opts -> if Enum.any?(selections, &(&1.name == :count)) do page_opts = Keyword.put(page_opts, :count, true) Keyword.put(opts, :page, page_opts) else Keyword.put(opts, :page, page_opts) end end query = case Map.fetch(args, :filter) do {:ok, filter} -> Ash.Query.filter(resource, ^filter) _ -> Ash.Query.new(resource) end query = case Map.fetch(args, :sort) do {:ok, sort} -> keyword_sort = Enum.map(sort, fn %{order: order, field: field} -> {field, order} end) Ash.Query.sort(query, keyword_sort) _ -> query end result = query |> Ash.Query.set_tenant(Map.get(context, :tenant)) |> api.read(opts) |> case do {:ok, %{results: results, count: count}} -> {:ok, %{results: results, count: count}} {:ok, results} -> if Ash.Resource.action(resource, action, :read).pagination do {:ok, %{results: results, count: Enum.count(results)}} else {:ok, results} end error -> error end Absinthe.Resolution.put_result(resolution, to_resolution(result)) end def mutate( %{arguments: %{input: input}, context: context} = resolution, {api, resource, %{type: :create, action: action}} ) do {attributes, relationships, arguments} = split_attrs_rels_and_args(input, resource) changeset = Ash.Changeset.new(resource, attributes) changeset_with_relationships = Enum.reduce(relationships, changeset, fn {relationship, replacement}, changeset -> Ash.Changeset.replace_relationship(changeset, relationship, replacement) end) opts = [ actor: Map.get(context, :actor), authorize?: AshGraphql.Api.authorize?(api), action: action ] result = changeset_with_relationships |> Ash.Changeset.set_tenant(Map.get(context, :tenant)) |> Ash.Changeset.set_arguments(arguments) |> api.create(opts) |> case do {:ok, value} -> {:ok, %{result: value, errors: []}} {:error, error} -> {:ok, %{result: nil, errors: to_errors(error)}} end Absinthe.Resolution.put_result(resolution, to_resolution(result)) end def mutate( %{arguments: %{input: input} = arguments, context: context} = resolution, {api, resource, %{type: :update, action: action, identity: identity}} ) do filter = if identity do resource |> Ash.Resource.identities() |> Enum.find(&(&1.name == identity)) |> Map.get(:keys) |> Enum.map(fn key -> {key, Map.get(arguments, key)} end) else [id: Map.get(arguments, :id)] end resource |> Ash.Query.filter(^filter) |> Ash.Query.set_tenant(Map.get(context, :tenant)) |> api.read_one!() |> case do nil -> {:ok, %{result: nil, errors: [to_errors("not found")]}} initial -> {attributes, relationships, arguments} = split_attrs_rels_and_args(input, resource) changeset = Ash.Changeset.new(initial, attributes) changeset_with_relationships = Enum.reduce(relationships, changeset, fn {relationship, replacement}, changeset -> Ash.Changeset.replace_relationship(changeset, relationship, replacement) end) opts = [ actor: Map.get(context, :actor), authorize?: AshGraphql.Api.authorize?(api), action: action ] result = changeset_with_relationships |> Ash.Changeset.set_tenant(Map.get(context, :tenant)) |> Ash.Changeset.set_arguments(arguments) |> api.update(opts) |> case do {:ok, value} -> {:ok, %{result: value, errors: []}} {:error, error} -> {:ok, %{result: nil, errors: List.wrap(error)}} end Absinthe.Resolution.put_result(resolution, to_resolution(result)) end end def mutate( %{arguments: arguments, context: context} = resolution, {api, resource, %{type: :destroy, action: action, identity: identity}} ) do filter = if identity do resource |> Ash.Resource.identities() |> Enum.find(&(&1.name == identity)) |> Map.get(:keys) |> Enum.map(fn key -> {key, Map.get(arguments, key)} end) else [id: Map.get(arguments, :id)] end resource |> Ash.Query.filter(^filter) |> Ash.Query.set_tenant(Map.get(context, :tenant)) |> api.read_one!() |> case do nil -> {:ok, %{result: nil, errors: [to_errors("not found")]}} initial -> opts = if AshGraphql.Api.authorize?(api) do [actor: Map.get(context, :actor), action: action] else [action: action] end result = initial |> Ash.Changeset.new() |> Ash.Changeset.set_tenant(Map.get(context, :tenant)) |> api.destroy(opts) |> case do :ok -> {:ok, %{result: initial, errors: []}} {:error, error} -> {:ok, %{result: nil, errors: to_errors(error)}} end Absinthe.Resolution.put_result(resolution, to_resolution(result)) end end defp split_attrs_rels_and_args(input, resource) do Enum.reduce(input, {%{}, %{}, %{}}, fn {key, value}, {attrs, rels, args} -> cond do Ash.Resource.public_attribute(resource, key) -> {Map.put(attrs, key, value), rels, args} Ash.Resource.public_relationship(resource, key) -> {attrs, Map.put(rels, key, value), args} true -> {attrs, rels, Map.put(args, key, value)} end end) end defp to_errors(errors) do errors |> List.wrap() |> Enum.map(fn error -> cond do is_binary(error) -> %{message: error} Exception.exception?(error) -> %{ message: Exception.message(error) } true -> %{message: "something went wrong"} end end) end def resolve_assoc( %{source: parent, arguments: args, context: %{loader: loader} = context} = resolution, {api, relationship} ) do api_opts = [actor: Map.get(context, :actor), authorize?: AshGraphql.Api.authorize?(api)] opts = [ query: apply_load_arguments(args, Ash.Query.new(relationship.destination)), api_opts: api_opts, args: args, tenant: Map.get(context, :tenant) ] {batch_key, parent} = {{relationship.name, opts}, parent} do_dataloader(resolution, loader, api, batch_key, args, parent) end defp do_dataloader( resolution, loader, api, batch_key, _args, parent ) do loader = Dataloader.load(loader, api, batch_key, parent) fun = fn loader -> {:ok, Dataloader.get(loader, api, batch_key, parent)} end Absinthe.Resolution.put_result( resolution, {:middleware, Absinthe.Middleware.Dataloader, {loader, fun}} ) end defp apply_load_arguments(arguments, query) do Enum.reduce(arguments, query, fn {:limit, limit}, query -> Ash.Query.limit(query, limit) {:offset, offset}, query -> Ash.Query.offset(query, offset) {:filter, value}, query -> decode_and_filter(query, value) {:sort, value}, query -> keyword_sort = Enum.map(value, fn %{order: order, field: field} -> {field, order} end) Ash.Query.sort(query, keyword_sort) end) end defp decode_and_filter(query, value) do Ash.Query.filter(query, ^value) end defp to_resolution({:ok, value}), do: {:ok, value} defp to_resolution({:error, error}), do: {:error, error |> List.wrap() |> Enum.map(&Exception.message(&1))} end