mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-09 17:25:38 +00:00
109 lines
2.0 KiB
Elixir
109 lines
2.0 KiB
Elixir
defmodule WandererApp.Api.AccessList do
|
|
@moduledoc false
|
|
|
|
use Ash.Resource,
|
|
domain: WandererApp.Api,
|
|
data_layer: AshPostgres.DataLayer,
|
|
extensions: [AshJsonApi.Resource]
|
|
|
|
postgres do
|
|
repo(WandererApp.Repo)
|
|
table("access_lists_v1")
|
|
end
|
|
|
|
json_api do
|
|
type "access_lists"
|
|
|
|
includes([:owner, :members])
|
|
|
|
derive_filter?(true)
|
|
derive_sort?(true)
|
|
|
|
routes do
|
|
base("/access_lists")
|
|
get(:read)
|
|
index :read
|
|
post(:new)
|
|
patch(:update)
|
|
delete(:destroy)
|
|
end
|
|
end
|
|
|
|
code_interface do
|
|
define(:create, action: :create)
|
|
define(:available, action: :available)
|
|
define(:new, action: :new)
|
|
define(:read, action: :read)
|
|
define(:update, action: :update)
|
|
define(:destroy, action: :destroy)
|
|
|
|
define(:by_id,
|
|
get_by: [:id],
|
|
action: :read
|
|
)
|
|
end
|
|
|
|
actions do
|
|
default_accept [
|
|
:name,
|
|
:description,
|
|
:owner_id
|
|
]
|
|
|
|
defaults [:create, :read, :destroy]
|
|
|
|
read :available do
|
|
prepare WandererApp.Api.Preparations.FilterAclsByRoles
|
|
end
|
|
|
|
create :new do
|
|
# Added :api_key to the accepted attributes
|
|
accept [:name, :description, :owner_id, :api_key]
|
|
primary?(true)
|
|
|
|
argument :owner_id, :uuid, allow_nil?: false
|
|
|
|
change manage_relationship(:owner_id, :owner, on_lookup: :relate, on_no_match: nil)
|
|
end
|
|
|
|
update :update do
|
|
accept [:name, :description, :owner_id, :api_key]
|
|
primary?(true)
|
|
end
|
|
|
|
update :assign_owner do
|
|
accept [:owner_id]
|
|
end
|
|
end
|
|
|
|
attributes do
|
|
uuid_primary_key :id
|
|
|
|
attribute :name, :string do
|
|
allow_nil? false
|
|
end
|
|
|
|
attribute :description, :string do
|
|
allow_nil? true
|
|
end
|
|
|
|
attribute :api_key, :string do
|
|
allow_nil? true
|
|
end
|
|
|
|
create_timestamp(:inserted_at)
|
|
update_timestamp(:updated_at)
|
|
end
|
|
|
|
relationships do
|
|
belongs_to :owner, WandererApp.Api.Character do
|
|
attribute_writable? true
|
|
public? true
|
|
end
|
|
|
|
has_many :members, WandererApp.Api.AccessListMember do
|
|
public? true
|
|
end
|
|
end
|
|
end
|