ash/documentation/topics/extending-resources.md

221 lines
7.1 KiB
Markdown
Raw Normal View History

# Extending Resources
Resource extensions allow you to make powerful modifications to resources, and extend the DSL to configure how those modifications are made. If you are using `AshPostgres`, `AshGraphql` or `AshJsonApi`, they are all integrated into a resource using extensions. In this guide we will build a simple extension that adds timestamps to your resource. We'll also show some simple patterns that can help ensure that all of your resources are using your extension.
## Creating an extension
Extensions are modules that expose a set of DSL Transformers and DSL Sections. We'll start with the transformers.
Here we create an extension called `MyApp.Extensions.Base`, and configure a single transformer, called `MyApp.Extensions.Base.AddTimestamps`
```elixir
defmodule MyApp.Extensions.Base do
use Spark.Dsl.Extension, transformers: [MyApp.Extensions.Base.AddTimestamps]
end
```
## Creating a transformer
Transformers are all run serially against a map of data called `dsl_state`, which is the data structure that we build as we use the DSL. For example:
```elixir
attributes do
attribute :name, :string
end
```
2022-09-22 11:07:20 +12:00
Would, under the hood, look something like this:
```elixir
%{
[:attributes] => %{entities: [
%Ash.Resource.Attribute{name: :name, type: :string}
]
},
...
}
```
`Spark.Dsl.Transformer` provides utilities to work with this data structure, and most introspection utilities also work with that data structure (i.e `Ash.Resource.Info.attributes(dsl_state)`). A transformer exposes `transform/1`, which takes the `dsl_state` and returns either `{:ok, dsl_state}` or `{:error, error}`
```elixir
defmodule MyApp.Extensions.Base.AddTimestamps do
use Spark.Dsl.Transformer
alias Spark.Dsl.Transformer
def transform(dsl_state) do
{:ok, inserted_at} =
Transformer.build_entity(Ash.Resource.Dsl, [:attributes], :create_timestamp,
name: :inserted_at
)
{:ok, updated_at} =
Transformer.build_entity(Ash.Resource.Dsl, [:attributes], :update_timestamp,
name: :updated_at
)
{:ok,
dsl_state
|> Transformer.add_entity([:attributes], inserted_at)
|> Transformer.add_entity([:attributes], updated_at)}
end
end
```
This transformer builds and adds a `create_timestamp` called `:inserted_at` and an `update_timestamp` called `:updated_at`.
### Introspecting the resource
If the resource we are extending already has an attribute called `inserted_at` or `updated_at`, we'd most likely want to avoid adding one ourselves (this would cause a compile error about duplicate attribute names). We can check for an existing attribute and make that change like so:
```elixir
def transform(dsl_state) do
{:ok,
dsl_state
|> add_attribute_if_not_exists(:create_timestamp, :inserted_at)
|> add_attribute_if_not_exists(:update_timestamp, :updated_at)}
end
defp add_attribute_if_not_exists(dsl_state, type, name) do
if Ash.Resource.Info.attribute(dsl_state, name) do
dsl_state
else
{:ok, attribute} =
Transformer.build_entity(Ash.Resource.Dsl, [:attributes], type,
name: name
)
dsl_state
|> Transformer.add_entity([:attributes], attribute)
end
end
```
This is just one example of what you can do with transformers. Check out the functions in `Spark.Dsl.Transformer` to see what utilities are available.
### Make the extension configurable
So far we've covered transformers, and using them to modify resources, but now lets say we want to make this behavior opt-out. Perhaps certain resources really shouldn't have timestamps, but we want it to be the default. Lets add a "DSL Section" to our extension.
```elixir
defmodule MyApp.Extensions.Base do
@base %Spark.Dsl.Section{
name: :base,
describe: """
Configure the behavior of our base extension.
""",
examples: [
"""
base do
timestamps? false
end
"""
],
schema: [
timestamps?: [
type: :boolean,
doc: "Set to false to skip adding timestamps",
default: true
]
]
}
defmodule Info do
def timestamps?(resource) do
Spark.Dsl.Extension.get_opt(resource, [:base], :timestamps?, true)
end
end
use Spark.Dsl.Extension,
transformers: [MyApp.Extensions.Base.AddTimestamps],
sections: [@base]
end
```
Now we can use this configuration in our transformer, like so:
```elixir
def transform(dsl_state) do
if MyApp.Extensions.Base.Info.timestamps?(dsl_state) do
{:ok,
dsl_state
|> add_attribute_if_not_exists(:create_timestamp, :inserted_at)
|> add_attribute_if_not_exists(:update_timestamp, :updated_at)}
else
{:ok, dsl_state}
end
end
defp add_attribute_if_not_exists(dsl_state, type, name) do
if Ash.Resource.Info.attribute(dsl_state, name) do
dsl_state
else
{:ok, attribute} =
Transformer.build_entity(Ash.Resource.Dsl, [:attributes], type,
name: name
)
dsl_state
|> Transformer.add_entity([:attributes], attribute)
end
end
```
And now we have a configurable base extension
### A note on the ordering of transformers
In this case, this transformer can run in any order. However, as we start adding transformers and/or modify the behavior of this one, we may need to ensure that our transformer runs before or after specific transformers. As of the writing of this guide, the best way to look at the list of transformers is to look at the source of the extension, and see what transformers it has and what they do. The [Resource DSL](https://github.com/ash-project/ash/blob/main/lib/ash/resource/dsl.ex) for example.
If you need to affect the ordering, you can define `before?/1` and `after?/1` in your transformer, i.e
```elixir
# I go after any other transformer
def after?(_), do: true
# except I go before `SomeOtherTransformer`
def before?(SomeOtherTransformer), do: true
def before?(_), do: false
```
## Using your extension
Now it can be used like any other extension:
```elixir
defmodule MyApp.Tweet do
use Ash.Resource,
extensions: [MyApp.Extensions.Base]
base do
# And you can configure it like so
timestamps? false
end
end
```
Your extension will be automatically supported by the `elixir_sense` extension, showing inline documentation and auto complete as you type. For more on that, see p[Development Utilities](/documentation/topics/development-utilities.md)
## Making a Base Resource
The "Base Resource" pattern has been adopted by some as a way to make it easy to ensure that your base extension is used everywhere. Instead of using `Ash.Resource` you use `MyApp.Resource`. Take a look at the [Development Utilities](/documentation/topics/development-utilities.md) guide if you do this, as you will need to update your formatter configuration, if you are using it.
```elixir
defmodule MyApp.Resource do
defmacro __using__(opts) do
quote do
use Ash.Resource,
unquote(Keyword.update(opts, :extensions, [MyApp.Extensions.Base], &[MyApp.Extensions.Base | &1]))
end
end
end
```
And now you can use it with your resources like this:
```elixir
defmodule MyApp.Tweet do
use MyApp.Resource
end
improvement!: 3.0 (#955) * improvement!: use `%Ash.NotSelected{}` for unselected values * improvement!: default `require_atomic?` to `true` * improvement!: raise errors on unknown generic action arguments * improvement!: default bulk strategy to `:atomic` * improvement!: warnings on `require_atomic?` `true` actions improvement!: revise `Ash.NotSelected` to `Ash.NotLoaded` improvement!: errors on unknown action inputs across the board * doc: clarify wording in notifiers.md closes #889 * improvement!: default `api.authorization.authorize` to `:by_default` * improvement!: require the api when constructing changesets this commit also fixes some work from prior commits around the default value for the `authorize` option * improvement!: code_interface.define_for -> code_interface.api `code_interface.define_for` is now `code_interface.api`. Additionally, it is set automatically if the `api` option is specified on `use Ash.Resource`. * improvement!: remove registries * improvement!: pubsub notifier default to `previous_values?: false` improvement!: requires_original_data? callback defaults to false * improvement!: rename Ash.Calculation -> Ash.Resource.Calculation improvement!: improve `Ash.Query.Calculation.new` signature improvement!: anonymous function calculations now take lists and return lists improvement!: make callback contexts into structs improvement!: pass context to builtin lifecycle hook changes improvement!: calculation arguments are now in the `arguments` key of the context * chore: fix build * improvement!: remove `aggregates` and `calculations` from `Filter.parse` and `Filter.parse_input` * improvement: update spark to 2.0 * improvement!: make picosat_elixir optional with `simple_sat` * improvement!: rename api to domain * docs: add more info to upgrading guide * docs: tweak docs formatting * improvement!: remove `Ash.Changeset.new!` * docs: update docs for `Ash.Changeset.new/1` * improvement!: deprecate `private?: false` in favor of `public?: true` * doc: add upgrade guide for private -> public * improvement: update reactor to 3.0 * improvement!: default `default_accept` is now `[]` * improvement!: `Ash.CiString.new/1` returns `nil` on `nil` input * improvement!(Ash.Reactor): Improve integration with Ash 3.0 changes. * improvement!: clean up and reorganize `Ash` functions this is in preparation of deprecating the functions that are defined on the api improvement!: remove context-based functionality * chore: update docs references from `Ash.Domain` to `Ash` * chore: fix bad merge * chore: fix context access in atomic changes * improvement!: Deprecate calling functions on (domain) api in favor of `Ash` * improvement!: add `attribute_public?` and update `attribute_writable?` behavior * improvement!: update atomic behaviors, default to invalid * chore: update downcase docs * improvement!: changeset.filters -> changeset.filter * improvement!: remove deprecated functions * improvement!: remove and simplify `Ash.Filter.TemplateHelpers` * improvement: import Ash.Expr in modules where it is used improvement: require Ash.QUery in modules where it makes sense * fix!: keyword lists are no longer special cased in ash expressions * improvement: add structs for more context implementations * chore: small tweaks, finish `:all` -> `:*` conversion * chore: update DSL docs for multitenancy.global? * improvement: ensure selects are applied on destroys chore: remove TODOs * chore: some docs changes * improvement!: introduce strict mode to calculations * chore: update tests * improvement: support custom expressions * docs: document custom expressions * chore: fix and test custom expressions and function fragments docs: update relevant docs w/ the changes * improvement!: reverse order of before action & before transaction hooks * improvement!: default read actions are now paginatable * improvement!: require explicit accept lists in default actions * chore: update docs * improvement!: remove Ash.Flow and Ash.Engine * chore: unlock unused deps * chore: don't use unused variable * chore: include ash flow change in upgrade guide * improvement!: standardize various exception keys and names * improvement!: use `Splode` for errors * improvement: update upgrade guide to include Splode * feat: code interface on the domain * improvement: only require primary key if resource has actions or fields improvement: only build schema if resource has actions or fields improvement: verify primary key in its own verifier * improvement: add `resource/1` builtin check * improvement!: move simple_notifiers to an option instead of a DSL builder improvement!: update spark for better autocomplete, configure autocomplete for key functions docs: replace `an domain` with `a domain` * improvement: better code interface documentation * fix: set tenant on query so that root calles to Api.aggreagte work as expected (#929) * chore: fixes from previous improvements * chore: update splode * chore: update splode * improvement!: swap position of sort order and arguments in calculation sorting * improvement!: add `include_nil?` aggregate option, and default it to `false` * improvement: support notifiers within actions * improvement: support specifying multiple filters * improvement: add `sortable?` flags to all fields improvement: support multiple filters on relationships * improvement: support sensitive? on calculations and arguments * improvement: validate resources in inputs to code interface * chore: don't require explicit accept lists when using `default_accept :*` * chore: update spark * chore: update public attribute handling per 3.0 * improvement: update reactor and tests * chore: better error message * chore: fix rebase issue * chore: handle merge issues improvement: don't require domain on relationships if destination has domain * improvement!: errors on unknown inputs for calculations * improvement: always choose to cast atomic * improvement: support casting some embeds atomically * improvement: various 3.0 updates, documented in upgrade.md * chore: Add failing tests for loads with with explicit domains. (#948) Co-authored-by: James Harton <james@harton.nz> * improvement: ensure non-static dynamic domains works * improvement: add Ash.ToTenant protocol * chore: add docs for no ToTenant option * fix: properly construct new query in `build/3` * chore: update simple_sat dependency * chore: don't reselect when missing primary keys * chore: remove IO.inspect * chore: update spark * chore: update spark * improvement: use `Keyword.put_new` in `Ash.Context.to_opts` (#953) * improvement: support bulk and atomic operations in code interfaces --------- Co-authored-by: James Harton <james@harton.nz> Co-authored-by: WIGGLES <55168935+WIGGLES-dev@users.noreply.github.com> Co-authored-by: Dmitry Maganov <vonagam@gmail.com>
2024-03-28 09:06:40 +13:00
```