ash_postgres/test/support/complex_calculations/resources/channel.ex
Zach Daniel 37cc01957d
improvement!: 3.0 (#227)
* WIP

* chore: fix mix.lock merge issues

* improvement: upgrade to 3.0

* chore: remove `repo.to_tenant`

* chore: continue removal of unnecessary helper

* chore: use `Ash.ToTenant`
2024-03-27 16:52:28 -04:00

95 lines
2.3 KiB
Elixir

defmodule AshPostgres.Test.ComplexCalculations.Channel do
@moduledoc false
use Ash.Resource,
domain: AshPostgres.Test.ComplexCalculations.Domain,
data_layer: AshPostgres.DataLayer,
authorizers: [Ash.Policy.Authorizer]
require Ash.Expr
actions do
default_accept(:*)
defaults([:create, :read, :update, :destroy])
end
attributes do
uuid_primary_key(:id)
create_timestamp(:created_at, public?: true)
update_timestamp(:updated_at, public?: true)
end
postgres do
table "complex_calculations_channels"
repo(AshPostgres.TestRepo)
end
relationships do
has_many(:channel_members, AshPostgres.Test.ComplexCalculations.ChannelMember) do
public?(true)
end
has_one :first_member, AshPostgres.Test.ComplexCalculations.ChannelMember do
public?(true)
destination_attribute(:channel_id)
from_many?(true)
sort(created_at: :asc)
end
has_one :second_member, AshPostgres.Test.ComplexCalculations.ChannelMember do
public?(true)
destination_attribute(:channel_id)
from_many?(true)
sort(created_at: :desc)
end
has_one :dm_channel, AshPostgres.Test.ComplexCalculations.DMChannel do
public?(true)
domain(AshPostgres.Test.ComplexCalculations.Domain)
destination_attribute(:id)
end
has_one :dm_channel_with_same_id, AshPostgres.Test.ComplexCalculations.DMChannel do
public?(true)
no_attributes?(true)
from_many?(true)
filter(expr(parent(id) == id))
domain(AshPostgres.Test.ComplexCalculations.Domain)
end
end
aggregates do
first(:first_member_name, [:first_member, :user], :name)
first(:second_member_name, [:second_member, :user], :name)
first(:dm_channel_name, [:dm_channel], :name)
end
calculations do
calculate :name, :string do
calculation(
expr(
cond do
first_member.user_id == ^actor(:id) ->
first_member_name
second_member.user_id == ^actor(:id) ->
second_member_name
true ->
first_member_name <> ", " <> second_member_name
end
)
)
end
calculate(:dm_name, :string, expr(dm_channel_name))
calculate(:foo, :string, expr(dm_channel_with_same_id.foobar))
end
policies do
policy always() do
authorize_if(always())
end
end
end