david234
I have the following routes
get "/locations", LocationsController, :show
get "/locations/add", LocationsController, :add
post "/locations/add", LocationsController, :create
get "/units", LocationsController, :show_units
get "/unit/add", LocationsController, :add_units
post "/unit/add", LocationsController, :create_units
get "/products", ProductsController, :show
get "/product/add", ProductsController, :add
post "/products/add", ProductsController, :create_product
get "/barcodes", ProductsController, :show_barcodes
get "/barcode/add", ProductsController, :add_barcode
post "/barcode/add", ProductsController, :create_barcode
I have three permission groups(admin can add more permission group)
can_admin_location
can_admin_products
can_admin_barcode
For example, You can see the below image to understand more what i am trying to achieve
I want to restrict route access based on permission given
For example if the below permission
can_admin_barcode (can use only below routes)
get "/barcodes", ProductsController, :show_barcodes
get "/barcode/add", ProductsController, :add_barcode
post "/barcode/add", ProductsController, :create_barcode
Then admin can change the user access level for this permission group
can_admin_barcode (can only view barcodes and only the below route will be accessible by this user)
get "/barcodes", ProductsController, :show_barcodes
Routes blocking must happen dynamically
I am storing current logged in user permission in session. I believe i can achieve this Route restriction using plugs.
Can someone share some insight on how to achieve this or any example. Your help is greatly appreciated
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
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
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Latest Phoenix Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming













Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mathieuprog
I created a similar Plug which protects routes against authorization rules. It’s on GitHub and the source is trivial:
https://github.com/mathieuprog/auth_z/blob/master/README.md#protecting-routes-against-unauthorized-users
Let me know if it doesn’t answer your case.
david234
Thanks. I will check now.
david234
I checked your code but I could able to figure out how I can use it to my situation.
For example, A user with this permission “can_admin_barcode” Can be allowed to view only below routes.
This value “can_admin_barcode” will be stored in session.
Can you give me insight on how to achieve this using your library.
kokolegorille
The plug does not know about the routes… but a simple plug like this might do
mathieuprog
Assuming that the user session is stored in
conn.assignsunder the:current_userkey (if not, just adapt) :It’s just one way to achieve authorization over routes.
david234
Thank you very much for your time and very neat explanation.
One small dout
My current router is like this
scope “/admin”, LogisticsWeb.Admin, as: :admin do
end
I am changing like this. Is this a proper way to achieve this?
mathieuprog
Yeah, that’s how I do it. You can see that I in fact attach an atom to each set of routes. Like all these barcode routes and the
:barcode_routesatom.Then in the Plug I retrieve that atom (representing thus that set of routes), and I check if the user has the right permissions for those routes.
Maybe there’s an easier way for you, but I just show you how I implemented it. This way, if you want to check something more than the
permissionsproperty in the future, there are no restrictions and you can check other user attributes.NduatiK
Continuing the discussion from Phoenix user role based access control:
You can also check out changelog.com’s approach. They define an authorize plug that allows them to define a policy for each route on a controller.
For example in the admin postcontroller these two plugs are defined.
For actions where an existing post is being manipulated, that post is first preloaded.
Then, permissions are checked on a per action basis using the Policies.Admin.Post policy which looks like:
Taken all together, when a user tries to update a post,