# SPDX-FileCopyrightText: 2019 ash contributors # # SPDX-License-Identifier: MIT defmodule Ash.Resource.Dsl do defmodule Filter do @moduledoc "Introspection target for a filter for read actions and relationships" defstruct [:filter, __spark_metadata__: nil] end @filter %Spark.Dsl.Entity{ name: :filter, args: [:filter], target: Filter, describe: "Applies a filter. Can use `^arg/1`, `^context/1` and `^actor/1` templates. Multiple filters are combined with *and*.", examples: [ """ filter expr(first_name == "fred") filter expr(last_name == "weasley" and magician == true) """ ], imports: [ Ash.Expr ], schema: [ filter: [ type: :any, doc: "The filter to apply. Can use `^arg/1`, `^context/1` and `^actor/1` templates. Multiple filters are combined with *and*.", required: true ] ] } @attribute %Spark.Dsl.Entity{ name: :attribute, describe: """ Declares an attribute on the resource. """, examples: [ """ attribute :name, :string do allow_nil? false end """ ], transform: {Ash.Resource.Attribute, :transform, []}, target: Ash.Resource.Attribute, args: [:name, :type], schema: Ash.Resource.Attribute.attribute_schema() } @create_timestamp %Spark.Dsl.Entity{ name: :create_timestamp, describe: """ Declares a non-writable attribute with a create default of `&DateTime.utc_now/0` Accepts all the same options as `d:Ash.Resource.Dsl.attributes.attribute`, except it sets the following different defaults: ```elixir writable? false default &DateTime.utc_now/0 match_other_defaults? true type Ash.Type.UTCDatetimeUsec allow_nil? false ``` """, examples: [ "create_timestamp :inserted_at" ], target: Ash.Resource.Attribute, args: [:name], schema: Ash.Resource.Attribute.create_timestamp_schema(), transform: {Ash.Resource.Attribute, :transform, []} } @update_timestamp %Spark.Dsl.Entity{ name: :update_timestamp, describe: """ Declares a non-writable attribute with a create and update default of `&DateTime.utc_now/0` Accepts all the same options as `d:Ash.Resource.Dsl.attributes.attribute`, except it sets the following different defaults: ```elixir writable? false default &DateTime.utc_now/0 match_other_defaults? true update_default &DateTime.utc_now/0 type Ash.Type.UTCDatetimeUsec allow_nil? false ``` """, examples: [ "update_timestamp :updated_at" ], target: Ash.Resource.Attribute, schema: Ash.Resource.Attribute.update_timestamp_schema(), args: [:name], transform: {Ash.Resource.Attribute, :transform, []} } @integer_primary_key %Spark.Dsl.Entity{ name: :integer_primary_key, describe: """ Declares a generated, non writable, non-nil, primary key column of type integer. Generated integer primary keys must be supported by the data layer. Accepts all the same options as `d:Ash.Resource.Dsl.attributes.attribute`, except for `allow_nil?`, but it sets the following different defaults: ```elixir public? true writable? false primary_key? true generated? true type :integer ``` """, examples: [ "integer_primary_key :id" ], args: [:name], target: Ash.Resource.Attribute, schema: Ash.Resource.Attribute.integer_primary_key_schema(), auto_set_fields: [allow_nil?: false], transform: {Ash.Resource.Attribute, :transform, []} } @uuid_primary_key %Spark.Dsl.Entity{ name: :uuid_primary_key, describe: """ Declares a non writable, non-nil, primary key column of type `uuid`, which defaults to `Ash.UUID.generate/0`. Accepts all the same options as `d:Ash.Resource.Dsl.attributes.attribute`, except for `allow_nil?`, but it sets the following different defaults: ```elixir writable? false public? true default &Ash.UUID.generate/0 primary_key? true type :uuid ``` """, examples: [ "uuid_primary_key :id" ], args: [:name], target: Ash.Resource.Attribute, schema: Ash.Resource.Attribute.uuid_primary_key_schema(), auto_set_fields: [allow_nil?: false], transform: {Ash.Resource.Attribute, :transform, []} } @uuid_v7_primary_key %Spark.Dsl.Entity{ name: :uuid_v7_primary_key, describe: """ Declares a non writable, non-nil, primary key column of type `uuid_v7`, which defaults to `Ash.UUIDv7.generate/0`. Accepts all the same options as `d:Ash.Resource.Dsl.attributes.attribute`, except for `allow_nil?`, but it sets the following different defaults: ```elixir writable? false public? true default &Ash.UUIDv7.generate/0 primary_key? true type :uuid_v7 ``` """, examples: [ "uuid_v7_primary_key :id" ], args: [:name], target: Ash.Resource.Attribute, schema: Ash.Resource.Attribute.uuid_v7_primary_key_schema(), auto_set_fields: [allow_nil?: false], transform: {Ash.Resource.Attribute, :transform, []} } @attributes %Spark.Dsl.Section{ name: :attributes, describe: """ A section for declaring attributes on the resource. """, imports: [Ash.Resource.Attribute.Helpers], examples: [ """ attributes do uuid_primary_key :id attribute :first_name, :string do allow_nil? false end attribute :last_name, :string do allow_nil? false end attribute :email, :string do allow_nil? false constraints [ match: ~r/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/ ] end attribute :type, :atom do constraints [ one_of: [:admin, :teacher, :student] ] end create_timestamp :inserted_at update_timestamp :updated_at end """ ], entities: [ @attribute, @create_timestamp, @update_timestamp, @integer_primary_key, @uuid_primary_key, @uuid_v7_primary_key ], patchable?: true } @has_one %Spark.Dsl.Entity{ name: :has_one, describe: """ Declares a `has_one` relationship. In a relational database, the foreign key would be on the *other* table. Generally speaking, a `has_one` also implies that the destination table is unique on that foreign key. To add a uniqueness constraint, you will need to add an identity for the foreign key column on the resource which defines the `belongs_to` side of the relationship. See the [identities guide](/documentation/topics/resources/identities.md) to learn more. See the [relationships guide](/documentation/topics/resources/relationships.md) for more. """, examples: [ """ # In a resource called `Word` has_one :dictionary_entry, DictionaryEntry do source_attribute :text destination_attribute :word_text end """ ], no_depend_modules: [:destination, :manual, :domain], target: Ash.Resource.Relationships.HasOne, schema: Ash.Resource.Relationships.HasOne.opt_schema(), transform: {Ash.Resource.Relationships.HasOne, :transform, []}, args: [:name, :destination], entities: [ filters: [@filter] ] } @has_many %Spark.Dsl.Entity{ name: :has_many, describe: """ Declares a `has_many` relationship. There can be any number of related entities. See the [relationships guide](/documentation/topics/resources/relationships.md) for more. """, examples: [ """ # In a resource called `Word` has_many :definitions, DictionaryDefinition do source_attribute :text destination_attribute :word_text end """ ], target: Ash.Resource.Relationships.HasMany, no_depend_modules: [:destination, :manual, :domain], schema: Ash.Resource.Relationships.HasMany.opt_schema(), args: [:name, :destination], transform: {Ash.Resource.Relationships.HasMany, :transform, []}, entities: [ filters: [@filter] ] } @many_to_many %Spark.Dsl.Entity{ name: :many_to_many, describe: """ Declares a `many_to_many` relationship. Many to many relationships require a join resource. A join resource is a resource that consists of a relationship to the source and destination of the many to many. See the [relationships guide](/documentation/topics/resources/relationships.md) for more. """, examples: [ """ # In a resource called `Word` many_to_many :books, Book do through BookWord source_attribute :text source_attribute_on_join_resource :word_text destination_attribute :id destination_attribute_on_join_resource :book_id end # And in `BookWord` (the join resource) belongs_to :book, Book, primary_key?: true, allow_nil?: false belongs_to :word, Word, primary_key?: true, allow_nil?: false """ ], no_depend_modules: [:destination, :through, :domain], target: Ash.Resource.Relationships.ManyToMany, schema: Ash.Resource.Relationships.ManyToMany.opt_schema(), transform: {Ash.Resource.Relationships.ManyToMany, :transform, []}, args: [:name, :destination], entities: [ filters: [@filter] ] } @belongs_to %Spark.Dsl.Entity{ name: :belongs_to, describe: """ Declares a `belongs_to` relationship. In a relational database, the foreign key would be on the *source* table. This creates a field on the resource with the corresponding name and type, unless `define_attribute?: false` is provided. See the [relationships guide](/documentation/topics/resources/relationships.md) for more. """, examples: [ """ # In a resource called `Word` belongs_to :dictionary_entry, DictionaryEntry do source_attribute :text, destination_attribute :word_text end """ ], no_depend_modules: [:destination, :domain], target: Ash.Resource.Relationships.BelongsTo, schema: Ash.Resource.Relationships.BelongsTo.opt_schema(), transform: {Ash.Resource.Relationships.BelongsTo, :transform, []}, args: [:name, :destination], entities: [ filters: [@filter] ] } @relationships %Spark.Dsl.Section{ name: :relationships, describe: """ A section for declaring relationships on the resource. Relationships are a core component of resource oriented design. Many components of Ash will use these relationships. A simple use case is loading relationships (done via the `Ash.Query.load/2`). See the [relationships guide](/documentation/topics/resources/relationships.md) for more. """, examples: [ """ relationships do belongs_to :post, MyApp.Post do primary_key? true end belongs_to :category, MyApp.Category do primary_key? true end end """, """ relationships do belongs_to :author, MyApp.Author many_to_many :categories, MyApp.Category do through MyApp.PostCategory destination_attribute_on_join_resource :category_id source_attribute_on_join_resource :post_id end end """, """ relationships do has_many :posts, MyApp.Post do destination_attribute :author_id end has_many :composite_key_posts, MyApp.CompositeKeyPost do destination_attribute :author_id end end """ ], imports: [ Ash.Expr ], entities: [ @has_one, @has_many, @many_to_many, @belongs_to ] } @action_change %Spark.Dsl.Entity{ name: :change, describe: """ A change to be applied to the changeset. See `Ash.Resource.Change` for more. """, examples: [ "change relate_actor(:reporter)", "change {MyCustomChange, :foo}" ], no_depend_modules: [:change], target: Ash.Resource.Change, schema: Ash.Resource.Change.action_schema(), args: [:change] } @action_argument %Spark.Dsl.Entity{ name: :argument, describe: """ Declares an argument on the action """, examples: [ "argument :password_confirmation, :string" ], target: Ash.Resource.Actions.Argument, args: [:name, :type], transform: {Ash.Type, :set_type_transformation, []}, schema: Ash.Resource.Actions.Argument.schema() } @metadata %Spark.Dsl.Entity{ name: :metadata, describe: """ A special kind of attribute that is only added to specific actions. Nothing sets this value, it must be set in a custom change after_action hook via `Ash.Resource.put_metadata/3`. """, examples: [ """ metadata :api_token, :string, allow_nil?: false """, """ metadata :operation_id, :string, allow_nil?: false """ ], target: Ash.Resource.Actions.Metadata, args: [:name, :type], schema: Ash.Resource.Actions.Metadata.schema(), transform: {Ash.Type, :set_type_transformation, []} } @change %Spark.Dsl.Entity{ name: :change, describe: """ A change to be applied to the changeset. See `Ash.Resource.Change` for more. """, examples: [ "change relate_actor(:reporter)", "change {MyCustomChange, :foo}" ], no_depend_modules: [:change], target: Ash.Resource.Change, schema: Ash.Resource.Change.schema(), args: [:change] } @validate %Spark.Dsl.Entity{ name: :validate, describe: """ Declares a validation for creates and updates. See `Ash.Resource.Validation.Builtins` or `Ash.Resource.Validation` for more. """, examples: [ "validate {Mod, [foo: :bar]}", "validate present([:first_name, :last_name], at_least: 1)" ], target: Ash.Resource.Validation, schema: Ash.Resource.Validation.opt_schema(), no_depend_modules: [:validation], transform: {Ash.Resource.Validation, :transform, []}, args: [:validation] } @action_validate %Spark.Dsl.Entity{ name: :validate, describe: """ Declares a validation to be applied to the changeset. See `Ash.Resource.Validation.Builtins` or `Ash.Resource.Validation` for more. """, examples: [ "validate changing(:email)" ], target: Ash.Resource.Validation, schema: Ash.Resource.Validation.action_schema(), no_depend_modules: [:validation], transform: {Ash.Resource.Validation, :transform, []}, args: [:validation] } @create %Spark.Dsl.Entity{ name: :create, describe: """ Declares a `create` action. For calling this action, see the `Ash.Domain` documentation. """, examples: [ """ create :register do primary? true end """ ], imports: [ Ash.Resource.Change.Builtins, Ash.Resource.Validation.Builtins, Ash.Expr ], target: Ash.Resource.Actions.Create, schema: Ash.Resource.Actions.Create.opt_schema(), no_depend_modules: [:manual, :touches_resources], deprecations: [ manual?: "Use the `manual` option instead, and provide an implementation." ], entities: [ changes: [ @action_change, @action_validate ], arguments: [ @action_argument ], metadata: [ @metadata ] ], args: [:name] } @prepare %Spark.Dsl.Entity{ name: :prepare, describe: """ Declares a preparation, which can be used to prepare a query for a read action. """, examples: [ """ prepare build(sort: [:foo, :bar]) """ ], target: Ash.Resource.Preparation, schema: Ash.Resource.Preparation.schema(), no_depend_modules: [:preparation], args: [:preparation] } @action %Spark.Dsl.Entity{ name: :action, describe: """ Declares a generic action. A combination of arguments, a return type and a run function. For calling this action, see the `Ash.Domain` documentation. """, examples: [ """ action :top_user_emails, {:array, :string} do argument :limit, :integer, default: 10, allow_nil?: false run fn input, context -> with {:ok, top_users} <- top_users(input.arguments.limit) do {:ok, Enum.map(top_users, &(&1.email))} end end end """ ], imports: [ Ash.Resource.Preparation.Builtins, Ash.Resource.Validation.Builtins, Ash.Expr ], target: Ash.Resource.Actions.Action, schema: Ash.Resource.Actions.Action.opt_schema(), transform: {Ash.Resource.Actions.Action, :transform, []}, entities: [ arguments: [ @action_argument ], preparations: [ @prepare, %{ @validate | schema: @validate.schema |> Keyword.delete(:always_atomic?) |> Keyword.delete(:on) } ] ], args: [:name, {:optional, :returns}] } @pagination %Spark.Dsl.Entity{ name: :pagination, describe: """ Adds pagination options to a resource """, target: Ash.Resource.Actions.Read.Pagination, schema: Ash.Resource.Actions.Read.pagination_schema(), transform: {Ash.Resource.Actions.Read.Pagination, :transform, []} } @read %Spark.Dsl.Entity{ name: :read, describe: """ Declares a `read` action. For calling this action, see the `Ash.Domain` documentation. """, examples: [ """ read :read_all do primary? true end """ ], imports: [ Ash.Resource.Preparation.Builtins, Ash.Resource.Validation.Builtins, Ash.Expr ], target: Ash.Resource.Actions.Read, schema: Ash.Resource.Actions.Read.opt_schema(), transform: {Ash.Resource.Actions.Read, :transform, []}, no_depend_modules: [:touches_resources, :manual], entities: [ arguments: [ @action_argument ], preparations: [ @prepare, %{ @validate | schema: @validate.schema |> Keyword.delete(:always_atomic?) |> Keyword.delete(:on) } ], pagination: [ @pagination ], metadata: [ @metadata ], filters: [ @filter ] ], args: [:name] } @update %Spark.Dsl.Entity{ name: :update, describe: """ Declares a `update` action. For calling this action, see the `Ash.Domain` documentation. """, imports: [ Ash.Resource.Change.Builtins, Ash.Resource.Validation.Builtins, Ash.Expr ], examples: [ "update :flag_for_review, primary?: true" ], entities: [ changes: [ @action_change, @action_validate ], metadata: [ @metadata ], arguments: [ @action_argument ] ], deprecations: [ manual?: "Use the `manual` option instead, and provide an implementation." ], no_depend_modules: [:touches_resources, :manual], target: Ash.Resource.Actions.Update, schema: Ash.Resource.Actions.Update.opt_schema(), transform: {Ash.Resource.Actions.Update, :transform, []}, args: [:name] } @destroy %Spark.Dsl.Entity{ name: :destroy, describe: """ Declares a `destroy` action. For calling this action, see the `Ash.Domain` documentation. See `Ash.Resource.Change.Builtins.cascade_destroy/2` for cascading destroy operations. """, examples: [ """ destroy :destroy do primary? true end """ ], imports: [ Ash.Resource.Change.Builtins, Ash.Resource.Validation.Builtins, Ash.Expr ], deprecations: [ manual?: "Use the `manual` option instead, and provide an implementation." ], no_depend_modules: [:touches_resources, :manual], entities: [ changes: [ @action_change, @action_validate ], metadata: [ @metadata ], arguments: [ @action_argument ] ], target: Ash.Resource.Actions.Destroy, schema: Ash.Resource.Actions.Destroy.opt_schema(), transform: {Ash.Resource.Actions.Destroy, :transform, []}, args: [:name] } @actions %Spark.Dsl.Section{ name: :actions, describe: """ A section for declaring resource actions. All manipulation of data through the underlying data layer happens through actions. There are four types of action: `create`, `read`, `update`, and `destroy`. You may recognize these from the acronym `CRUD`. You can have multiple actions of the same type, as long as they have different names. This is the primary mechanism for customizing your resources to conform to your business logic. It is normal and expected to have multiple actions of each type in a large application. """, schema: [ defaults: [ type: {:list, {:or, [ {:one_of, [:create, :read, :update, :destroy]}, {:tuple, [:atom, {:wrap_list, :atom}]} ]}}, doc: """ Creates a simple action of each specified type, with the same name as the type. These will be `primary?` unless one already exists for that type. Embedded resources, however, have a default of all resource types. """, snippet: "[:read, :destroy, create: :*, update: :*]" ], default_accept: [ type: {:or, [{:list, :atom}, {:literal, :*}]}, doc: """ A default value for the `accept` option for each action. Use `:*` to accept all public attributes. Ash >= 3.0 defaults to no attributes accepted. In prior versions of Ash all public, writable attributes were accepted by default. """ ] ], examples: [ """ actions do create :signup do argument :password, :string argument :password_confirmation, :string validate confirm(:password, :password_confirmation) change {MyApp.HashPassword, []} # A custom implemented Change end read :me do # An action that auto filters to only return the user for the current user filter [id: actor(:id)] end update :update do accept [:first_name, :last_name] end destroy do change set_attribute(:deleted_at, &DateTime.utc_now/0) # This tells it that even though this is a delete action, it # should be treated like an update because `deleted_at` is set. # This should be coupled with a `base_filter` on the resource # or with the read actions having a `filter` for `is_nil: :deleted_at` soft? true end end """ ], entities: [ @action, @create, @read, @update, @destroy ] } @identity %Spark.Dsl.Entity{ name: :identity, describe: """ Represents a unique constraint on the resource. See the [identities guide](/documentation/topics/resources/identities.md) for more. """, examples: [ "identity :name, [:name]", "identity :full_name, [:first_name, :last_name]" ], target: Ash.Resource.Identity, schema: Ash.Resource.Identity.schema(), no_depend_modules: [:pre_check_with, :eager_check_with], args: [:name, :keys] } @identities %Spark.Dsl.Section{ name: :identities, describe: """ Unique identifiers for the resource """, imports: [Ash.Expr], examples: [ """ identities do identity :full_name, [:first_name, :last_name] identity :email, [:email] end """ ], entities: [ @identity ] } @resource %Spark.Dsl.Section{ name: :resource, describe: """ General resource configuration """, examples: [ """ resource do description "A description of this resource" base_filter [is_nil: :deleted_at] end """ ], imports: [Ash.Expr], schema: [ description: [ type: :string, doc: "A human readable description of the resource, to be used in generated documentation" ], base_filter: [ type: :any, doc: "A filter statement to be applied to any queries on the resource" ], default_context: [ type: :any, doc: "Default context to apply to any queries/changesets generated for this resource." ], trace_name: [ type: :string, doc: """ The name to use in traces. Defaults to the short_name stringified. See the [monitoring guide](/documentation/topics/monitoring.md) for more. """ ], short_name: [ type: :atom, doc: """ A short identifier for the resource, which should be unique. See the [monitoring guide](/documentation/topics/monitoring.md) for more. """ ], inspect_private_fields?: [ type: :boolean, default: true, doc: """ Whether to include private fields in the inspect output. `show_inspect_fields` takes precedence over this option. """ ], hide_inspect_fields: [ type: {:list, :atom}, default: [], doc: """ A deny-list of fields to hide from the inspect output. Takes precedence over `show_inspect_fields`. """ ], show_inspect_fields: [ type: {:list, :atom}, doc: """ An allow-list of fields to show in the inspect output. Sensitive fields are _always_ hidden. """ ], plural_name: [ type: :atom, doc: """ A pluralized version of the resource short_name. May be used by generators or automated tooling. """ ], atomic_validation_default_target_attribute: [ type: :atom, doc: """ Overrides the attribute used when building atomic validation filters. Defaults to the first primary key attribute when not specified. """ ], require_primary_key?: [ type: :boolean, required: false, default: true, doc: """ Allow the resource to be used without any primary key fields. Warning: this option is experimental, and should not be used unless you know what you're doing. """ ] ] } @transform %Spark.Dsl.Entity{ name: :transform, describe: """ A transformation to be applied to the custom input. """, examples: [ """ transform do to :artist_id using &(&1.id) end """, """ transform do to :points using &try_parse_integer/1 end """ ], target: Ash.Resource.Interface.CustomInput.Transform, schema: [ to: [ type: :atom, doc: "A key to rewrite the argument to. If the custom input is also a required positional argument, then the `to` is automatically added to the `exclude_inputs` list." ], using: [ type: {:fun, 1}, doc: "A function to use to transform the value. Must return `value` or `nil`" ] ] } @custom_input %Spark.Dsl.Entity{ name: :custom_input, describe: """ Define or customize an input to the action. See the [code interface guide](/documentation/topics/resources/code-interfaces.md) for more. """, examples: [ """ custom_input :artist, :struct do transform to: :artist_id, using: &(&1.id) constraints instance_of: Artist end """ ], entities: [ transform: [ @transform ] ], singleton_entity_keys: [:transform], target: Ash.Resource.Interface.CustomInput, args: [:name, :type], schema: Ash.Resource.Interface.CustomInput.schema(), transform: {Ash.Type, :set_type_transformation, []} } @doc false def custom_input_dsl, do: @custom_input @define_calculation %Spark.Dsl.Entity{ name: :define_calculation, describe: """ Defines a function with the corresponding name and arguments, that evaluates a calculation. Use `:_record` to take an instance of a record. See the [code interface guide](/documentation/topics/resources/code-interfaces.md) for more. """, examples: [ "define_calculation :referral_link, args: [:id]", "define_calculation :referral_link, args: [{:arg, :id}, {:ref, :id}]" ], target: Ash.Resource.CalculationInterface, schema: Ash.Resource.CalculationInterface.schema(), transform: {Ash.Resource.CalculationInterface, :transform, []}, entities: [ custom_inputs: [ @custom_input ] ], args: [:name] } @define %Spark.Dsl.Entity{ name: :define, describe: """ Defines a function with the corresponding name and arguments. See the [code interface guide](/documentation/topics/resources/code-interfaces.md) for more. """, examples: [ "define :get_user_by_id, action: :get_by_id, args: [:id], get?: true" ], entities: [ custom_inputs: [ @custom_input ] ], target: Ash.Resource.Interface, schema: Ash.Resource.Interface.schema(), transform: {Ash.Resource.Interface, :transform, []}, args: [:name] } @code_interface %Spark.Dsl.Section{ name: :code_interface, describe: """ Functions that will be defined on the resource. See the [code interface guide](/documentation/topics/resources/code-interfaces.md) for more. """, examples: [ """ code_interface do define :create_user, action: :create define :get_user_by_id, action: :get_by_id, args: [:id], get?: true end """ ], no_depend_modules: [:domain], schema: [ domain: [ type: {:spark, Ash.Domain}, doc: "Use the provided Domain instead of the resources configured domain when calling actions.", default: false ], define?: [ type: :boolean, doc: "Whether or not to define the code interface in the resource." ] ], entities: [ @define, @define_calculation ] } @validations %Spark.Dsl.Section{ name: :validations, describe: """ Declare validations prior to performing actions against the resource """, imports: [Ash.Resource.Validation.Builtins], examples: [ """ validations do validate {Mod, [foo: :bar]} validate present([:first_name, :last_name], at_least: 1) end """ ], entities: [ @validate ] } @changes %Spark.Dsl.Section{ name: :changes, describe: """ Declare changes that occur on create/update/destroy actions against the resource See `Ash.Resource.Change` for more. """, imports: [ Ash.Resource.Validation.Builtins, Ash.Resource.Change.Builtins, Ash.Expr ], examples: [ """ changes do change {Mod, [foo: :bar]} change set_context(%{some: :context}) end """ ], entities: [ @change ] } @preparations %Spark.Dsl.Section{ name: :preparations, describe: """ Declare preparations that occur on all read actions for a given resource """, imports: [Ash.Resource.Preparation.Builtins, Ash.Resource.Validation.Builtins], examples: [ """ preparations do prepare {Mod, [foo: :bar]} prepare set_context(%{some: :context}) end """ ], entities: [ @prepare ] } @join_filter %Spark.Dsl.Entity{ name: :join_filter, describe: """ Declares a join filter on an aggregate. See the aggregates guide for more. """, examples: [ """ join_filter [:comments, :author], expr(active == true) """ ], target: Ash.Resource.Aggregate.JoinFilter, args: [:relationship_path, :filter], schema: [ relationship_path: [ type: {:wrap_list, :atom}, doc: "The relationship path on which to apply the join filter" ], filter: [ type: :any, doc: "The filter to apply. Can be an expression or a filter template." ] ] } @count %Spark.Dsl.Entity{ name: :count, describe: """ Declares a named count aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect the count) Can aggregate over relationships using a relationship path, or directly over another resource. See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ count :assigned_ticket_count, :assigned_tickets do filter [active: true] end """, """ count :matching_profiles_count, Profile do filter expr(name == parent(name)) end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path], schema: Keyword.put(Keyword.delete(Ash.Resource.Aggregate.schema(), :sort), :uniq?, type: :boolean, doc: "Whether or not to count unique values only", default: false ), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :count] } @first %Spark.Dsl.Entity{ name: :first, describe: """ Declares a named `first` aggregate on the resource First aggregates return the first value of the related record that matches. Supports both `filter` and `sort`. See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ first :first_assigned_ticket_subject, :assigned_tickets, :subject do filter [active: true] sort [:subject] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Keyword.put(Ash.Resource.Aggregate.schema(), :include_nil?, type: :boolean, default: false, doc: "Whether or not to include `nil` values in the aggregate. Only relevant for `list` and `first` aggregates." ), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :first] } @max %Spark.Dsl.Entity{ name: :max, describe: """ Declares a named `max` aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect the max) See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ max :first_assigned_ticket_subject, :assigned_tickets, :severity do filter [active: true] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Ash.Resource.Aggregate.schema() |> Keyword.delete(:sort), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :max] } @min %Spark.Dsl.Entity{ name: :min, describe: """ Declares a named `min` aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect the min) See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ min :first_assigned_ticket_subject, :assigned_tickets, :severity do filter [active: true] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Ash.Resource.Aggregate.schema() |> Keyword.delete(:sort), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :min] } @sum %Spark.Dsl.Entity{ name: :sum, describe: """ Declares a named `sum` aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect the sum) See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ sum :assigned_ticket_price_sum, :assigned_tickets, :price do filter [active: true] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Keyword.delete(Ash.Resource.Aggregate.schema(), :sort), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :sum] } @avg %Spark.Dsl.Entity{ name: :avg, describe: """ Declares a named `avg` aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect the avg) See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ avg :assigned_ticket_price_sum, :assigned_tickets, :price do filter [active: true] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Keyword.delete(Ash.Resource.Aggregate.schema(), :sort), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :avg] } @exists %Spark.Dsl.Entity{ name: :exists, describe: """ Declares a named `exists` aggregate on the resource Supports `filter`, but not `sort` (because that wouldn't affect if something exists) See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ exists :has_ticket, :assigned_tickets """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path], schema: Keyword.drop(Ash.Resource.Aggregate.schema(), [:sort, :field]), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :exists] } @custom %Spark.Dsl.Entity{ name: :custom, describe: """ Declares a named `custom` aggregate on the resource Supports `filter` and `sort`. Custom aggregates provide an `implementation` which must implement data layer specific callbacks. See the relevant data layer documentation and the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ custom :author_names, :authors, :string do implementation {StringAgg, delimiter: ","} end """ ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :type], entities: [ join_filters: [@join_filter] ], schema: Ash.Resource.Aggregate.schema() |> Keyword.put(:type, type: :module, required: true, doc: "The type of the value returned by the aggregate" ) |> Keyword.put(:implementation, type: {:spark_behaviour, Ash.Resource.Aggregate.CustomAggregate}, required: true, doc: "The module that implements the relevant data layer callbacks" ), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :custom] } @list %Spark.Dsl.Entity{ name: :list, describe: """ Declares a named `list` aggregate on the resource. A list aggregate selects the list of all values for the given field and relationship combination. See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ list :assigned_ticket_prices, :assigned_tickets, :price do filter [active: true] end """ ], entities: [ join_filters: [@join_filter] ], target: Ash.Resource.Aggregate, args: [:name, :relationship_path, :field], schema: Ash.Resource.Aggregate.schema() |> Keyword.put(:uniq?, type: :boolean, doc: "Whether or not to count unique values only", default: false ) |> Keyword.put(:include_nil?, type: :boolean, default: false, doc: "Whether or not to include `nil` values in the aggregate. Only relevant for `list` and `first` aggregates." ), transform: {Ash.Resource.Aggregate, :transform, []}, auto_set_fields: [kind: :list] } @aggregates %Spark.Dsl.Section{ name: :aggregates, describe: """ Declare named aggregates on the resource. These are aggregates that can be loaded only by name using `Ash.Query.load/2`. They are also available as top level fields on the resource. See the [aggregates guide](/documentation/topics/resources/aggregates.md) for more. """, examples: [ """ aggregates do count :assigned_ticket_count, :reported_tickets do filter [active: true] end end """ ], imports: [Ash.Expr], entities: [ @count, @exists, @first, @sum, @list, @max, @min, @avg, @custom ] } @argument %Spark.Dsl.Entity{ name: :argument, describe: """ An argument to be passed into the calculation's arguments map See the [calculations guide](/documentation/topics/resources/calculations.md) for more. """, examples: [ """ argument :params, :map do default %{} end """, """ argument :retries, :integer do allow_nil? false end """ ], target: Ash.Resource.Calculation.Argument, args: [:name, :type], schema: Ash.Resource.Calculation.Argument.schema(), transform: {Ash.Type, :set_type_transformation, []} } @calculate %Spark.Dsl.Entity{ name: :calculate, describe: """ Declares a named calculation on the resource. Takes a module that must adopt the `Ash.Resource.Calculation` behaviour. See that module for more information. To ensure that the necessary fields are loaded: 1.) Specifying the `load` option on a calculation in the resource. 2.) Define a `load/3` callback in the calculation module 3.) Set `always_select?` on the attribute in question See the [calculations guide](/documentation/topics/resources/calculations.md) for more. """, examples: [ { "`Ash.Resource.Calculation` implementation example:", "calculate :full_name, :string, {MyApp.FullName, keys: [:first_name, :last_name]}, load: [:first_name, :last_name]" }, { "`expr/1` example:", "calculate :full_name, :string, expr(first_name <> \" \" <> last_name)" }, { "Example with options:", "calculate :full_name, :string, expr(first_name <> \" \" <> last_name), allow_nil?: false" }, { "Example with options in `do` block:", """ calculate :full_name, :string, expr(first_name <> \" \" <> last_name) do allow_nil? false public? true end """ } ], target: Ash.Resource.Calculation, no_depend_modules: [:calculation], args: [:name, :type, {:optional, :calculation}], entities: [ arguments: [@argument] ], transform: {Ash.Type, :set_type_transformation, []}, schema: Ash.Resource.Calculation.schema() } @calculations %Spark.Dsl.Section{ name: :calculations, describe: """ Declare named calculations on the resource. These are calculations that can be loaded only by name using `Ash.Query.load/2`. They are also available as top level fields on the resource. See the [calculations guide](/documentation/topics/resources/calculations.md) for more. """, examples: [ """ calculations do calculate :full_name, :string, MyApp.MyResource.FullName end """ ], imports: [Ash.Resource.Calculation.Builtins, Ash.Expr], entities: [ @calculate ] } @multitenancy %Spark.Dsl.Section{ name: :multitenancy, describe: """ Options for configuring the multitenancy behavior of a resource. To specify a tenant, use `Ash.Query.set_tenant/2` or `Ash.Changeset.set_tenant/2` before passing it to an operation. See the [multitenancy guide](/documentation/topics/advanced/multitenancy.md) """, examples: [ """ multitenancy do strategy :attribute attribute :organization_id global? true end """ ], schema: [ strategy: [ type: {:in, [:context, :attribute]}, default: :context, doc: """ Determine if multitenancy is performed with attribute filters or using data layer features. """ ], attribute: [ type: :atom, doc: """ If using the `attribute` strategy, the attribute to use, e.g `org_id` """ ], global?: [ type: :boolean, doc: """ Whether or not the data may be accessed without setting a tenant. For example, with attribute multitenancy, this allows accessing without filtering by the tenant attribute. """, default: false ], parse_attribute: [ type: :mfa, doc: "An mfa ({module, function, args}) pointing to a function that takes a tenant and returns the attribute value", default: {__MODULE__, :identity, []} ], tenant_from_attribute: [ type: :mfa, doc: "An mfa ({module, function, args}) pointing to a function that takes an attribute value and returns the tenant. This is the inverse of `parse_attribute`.", default: {__MODULE__, :identity, []} ] ] } @sections [ @attributes, @relationships, @actions, @code_interface, @resource, @identities, @changes, @preparations, @validations, @aggregates, @calculations, @multitenancy ] @transformers [ Ash.Resource.Transformers.RequireUniqueActionNames, Ash.Resource.Transformers.SetRelationshipSource, Ash.Resource.Transformers.BelongsToAttribute, Ash.Resource.Transformers.HasDestinationField, Ash.Resource.Transformers.ManyToManySourceAttributeOnJoinResource, Ash.Resource.Transformers.ManyToManyDestinationAttributeOnJoinResource, Ash.Resource.Transformers.CreateJoinRelationship, Ash.Resource.Transformers.CachePrimaryKey, Ash.Resource.Transformers.SetPrimaryActions, Ash.Resource.Transformers.DefaultAccept, Ash.Resource.Transformers.RequireUniqueFieldNames, Ash.Resource.Transformers.SetInterfaceExcludeInputs, Ash.Resource.Transformers.SetDefineFor, Ash.Resource.Transformers.SetEagerCheckWith, Ash.Resource.Transformers.SetPreCheckWith, Ash.Resource.Transformers.GetByReadActions ] @persisters [ Ash.Resource.Transformers.CacheRelationships, Ash.Resource.Transformers.CacheCalculations, Ash.Resource.Transformers.AttributesByName, Ash.Resource.Transformers.ValidationsAndChangesForType, Ash.Resource.Transformers.CacheUniqueKeys, Ash.Resource.Transformers.CacheActionInputs ] @verifiers [ Ash.Resource.Verifiers.ValidateRelationshipAttributesMatch, Ash.Resource.Verifiers.VerifyReservedCalculationArguments, Ash.Resource.Verifiers.VerifyCalculations, Ash.Resource.Verifiers.VerifyIdentityFields, Ash.Resource.Verifiers.VerifyPrimaryReadActionHasNoArguments, Ash.Resource.Verifiers.VerifySelectedByDefault, Ash.Resource.Verifiers.VerifyFilterExpressions, Ash.Resource.Verifiers.ValidateAggregateField, Ash.Resource.Verifiers.ValidateRelationshipAttributes, Ash.Resource.Verifiers.NoReservedFieldNames, Ash.Resource.Verifiers.ValidateAccept, Ash.Resource.Verifiers.ValidateActionTypesSupported, Ash.Resource.Verifiers.ValidateAggregatesSupported, Ash.Resource.Verifiers.ValidateEagerIdentities, Ash.Resource.Verifiers.ValidateManagedRelationshipOpts, Ash.Resource.Verifiers.ValidateMultitenancy, Ash.Resource.Verifiers.ValidatePrimaryKey, Ash.Resource.Verifiers.ValidateAtomicValidationDefaultTargetAttribute, Ash.Resource.Verifiers.VerifyAcceptedByDomain, Ash.Resource.Verifiers.VerifyActionsAtomic, Ash.Resource.Verifiers.VerifyNotifiers, Ash.Resource.Verifiers.VerifyPrimaryKeyPresent, Ash.Resource.Verifiers.VerifyGenericActionReactorInputs, Ash.Resource.Verifiers.ValidateArgumentsToCodeInterface ] @moduledoc false use Spark.Dsl.Extension, sections: @sections, transformers: @transformers, verifiers: @verifiers, persisters: @persisters @doc false def identity(x), do: x end