sodapopcan

sodapopcan

The docs give this example of a policy:

policy action_type([:create, :update, :destroy]) do
  authorize_if expr(owner_id == ^actor(:id))
end

This is in the context of a policy group. Using it throws an error that filter expressions cannot be used for creations. I also get if I do it outside a group:

policy action_type(:create) do
  authorize_if expr(owner_id == ^actor(:id))
end

I read and understood the error message and it makes sense since there is no data yet for create, but how would you ensure that an actor can only create a resource for themselves?

I would like to do this:

MyApp.Items.create_item(%{
    title: "New item",
    user_id: user.id
  },
  actor: user
)

I’m also wondering more out of curiosity (even though I don’t want to do it this way) is there is a way to reference actor in action in change? For example, I tried to do this:

create :create do
  accept [:title]
  change set_attribute(:user_id, actor(:id))
end

though I see actor/1 is only available in expr (I think?)

Thanks!

Showing Posts 1 to 6

zachdaniel

zachdaniel

Creator of Ash

You actually can do what you described, but there is a more expressive builtin for it.

change relate_actor(:user)

And what it could look like done manually:

change fn changeset, context -> 
  Ash.Changeset.force_change_attribute(changeset, :user_id, context.actor.id)
end
zachdaniel

zachdaniel

Creator of Ash

We should probably update those docs to remove :create from the example, could you open a PR or issue to track that?

sodapopcan

sodapopcan OP

D’oh, sorry, this was an RTFM failure (did not find relate_actor or realize that change takes a fun) that’s awesome.

Yep, I’m happy to open a PR to fix docs!

sodapopcan

sodapopcan OP

Oh wait I was a bit overzealous there.

First, I’ll add that yes my bad, change set_attribute(:user_id, actor(:id)) does work, I had a different error :man_facepalming:

Secondly, how would you ensure the actor matches the passed user id purely at the policy level? Is that just not possible right now?

zachdaniel

zachdaniel

Creator of Ash

Oh, it’s very much possible. There are various ways you could do it.

policy :create do
  authorize_if relating_to_actor(:user)
end
defmodule MyApp.Checks.SomeCustomCheck do
  use Ash.Policy.SimpleCheck

  def match?(actor, %{subject: changeset}, _) do
    # arbitrary logic here
  end
end

policy action_type(:create) do
  authorize_if MyApp.Checks.SomeCustomCheck
end
sodapopcan

sodapopcan OP

Ha, amazing. Ok, thank you. Need more careful RTFM on my side.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews