Muhammad-Mullah

Muhammad-Mullah

Hey guys, working with phoenix 1.2 and i have a user model with user_role field which specifies if a user is an admin or sales or accounts. The Sign Up, Sign In and Sign Out flow works perfectly well but i wanted to implement a concept where a user is redirected to a specific dashboard after signing up and signing in i.e if a user is Admin then is redirected to Admin Dashboard and if is accounts is redirected to Accounts Dashboard. Am using Guardian for Authentication/Authorization

Anyone with an idea how i can implement this? Thanks in Advance

Showing Posts 1 to 5

danielberkompas

danielberkompas

I’m not familiar with Guardian, but this is how I would do it if I controlled the whole login flow.

Add a redirect_after_authentication function:

def redirect_after_authentication(conn) do
  path =
    case conn.assigns.current_user.user_role do
      "admin" ->
         admin_dashboard_path(conn, :index)
      "accounts" ->
         accounts_dashboard_path(conn, :index)
      "sales" ->
        accounts_dashboard_path(conn, :index)
    end

  redirect(conn, to: path)
end

You can put that function in a shared module, wherever it makes sense for your application. Then, in your SessionController, where you log in users, you’d do this:

# import `redirect_after_authentication/1` from wherever you put it

def create(conn, params) do
  # Authentication logic, checking email/password etc
  redirect_after_authentication(conn)
end
Muhammad-Mullah

Muhammad-Mullah OP

Thanks @danielberkompas.

I did pipe the above function to my SessionController :create function which is the sign in function as follows

def create(conn, %{“session” => %{“email” => email, “password” => password}}) do
case verify_credentials(email, password) do
{:ok, user} →
conn
|> put_flash(:info, “Successfully signed in”)
|> Guardian.Plug.sign_in(user)
|> redirect_after_authentication()
#|> redirect(to: admin_path(conn, :task))
{:error, _reason} →
conn
|> put_flash(:error, “Invalid email address or password”)
|> render(“new.html”)
end
end

and it produces this error message in the browser function nil.user_role/0 is undefined or private

kokolegorille

kokolegorille

Somewhere in your flow You should have

assign(socket, :user, user)

like just after

|> Guardian.Plug.sign_in(user)

and be sure to have a userole attribute in your schema.

Muhammad-Mullah

Muhammad-Mullah OP

yeah I do have user_role field in my schema

kokolegorille

kokolegorille

The error message is somehow clear…

nil.userrole/0

It does not find the user in

conn.assigns.user

— 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
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
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
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews