ion

ion

I know this is a really basic question, but I am having trouble figuring out how to authorize channel join events.

The phx.gen.channel template includes a private authorized?/1 function. If I want to find the user’s id to check their authorization role (I’m using phauxth), do I go about that by pattern matching the current_user from the payload argument? Or, can I check the socket directly for the current_user? If so, how? Just trying to check against socket.assigns.current_user but don’t know how… :grinning:

  # Add authorization logic here as required.
  defp authorized?(_payload) do
    true
  end

which is called in:

  def join("room:lobby", payload, socket) do
    if authorized?(payload) do
      {:ok, socket}
    else
      {:error, %{reason: "unauthorized"}}
    end
  end

Showing Posts 1 to 4

kokolegorille

kokolegorille

In the user_socket.ex, I do something like this

  def connect(%{"token" => token}, socket) do
    with {:ok, user_id} <- verify_token(token),
      user <- Accounting.get_user(user_id) do
      
      {:ok, assign(socket, :current_user, user)}
    else
      {:error, _reason} ->
        :error
    end
  end

I decode a token (a phoenix token), with this helper

  @salt "blah salt"
  @max_age 86400

  def verify_token(token), do:
    Phoenix.Token.verify(BlahWeb.Endpoint, @salt, token, max_age: @max_age)

Then, in the channel, I know I will get a user

  def join("user:" <> id, _params, socket) do
    if String.to_integer(id) === socket.assigns.current_user.id do
      {:ok, socket}
    else
      {:error, %{reason: "Not authorized"}}
    end
  end

In your case, You might just check for socket.assigns.current_user

ion

ion OP

I do the authentication in user_socket to get the user id.

Now in room_channel, to authorize the user, would it be a good idea to set the argument of authorized?/1 as socket.assigns.current_user?

def join("room:" <> room_id, payload, socket) do
 if authorized?(socket.assigns.current_user) do
  {:ok, socket}
 else
  {:error, "nope not authorized"}
 end
end

.

defp authorized?(useridpayload) do
 useridpayload = String.to_integer(useridpayload)
  ... repo get user role pseudocode..
  case role do
   "admin" -> true
   "user" -> true
    _ -> false
  end 
 end
kokolegorille

kokolegorille

That is what I do, I use socket.assigns.current_user as my authentication param…

ion

ion OP

Thanks for your help!

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
Blokh
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
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
Onor.io
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
jaybe78
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
Trolleger
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
widianto
I think I’ve found a small improvement I could contribute to &lt;%= web_namespace %&gt;.CoreComponents (installer/templates/phx_web/compo...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; 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
wintermeyer
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
aseigo
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews