nallwhy

nallwhy

Is it possible to get all connected sockets on phoenix?

I want to know socket connected user list on phoenix.
I used Presence and it works but it notifies all connection changes to all clients. I don’t want it.
The idea I have now is monitoring sockets with worker, but I want to know any better idea.
Thanks!

First 10 of 10 Posts Switch mode

LostKobrakai

LostKobrakai

Track all the users in Presence under a key different to the channel name. This will prevent users from receiving the diff messages.

nallwhy

nallwhy OP

cool! thx!

rjk

rjk

I had another method found earlier within this forum and that is to
intercept(["presence_diff"]) inside the channel module. That’s the message phoenix tries to send to provide the presence to connected clients. By intercepting you are able the change the outgoing message (even changing it to a no-op and effectively not sending a message to the clients).
To change the presence_diff message you use the following in the same channel module (where you just added the intercept line from above):

def handle_out("presence_diff", _, socket), do: {:noreply, socket}

Because this function returns a noreply it will not send out any presence information to the connected clients.
I guess both methods work but maybe this method conveys your intention a little better.

LostKobrakai

LostKobrakai

It surely does convey the intention quite well, but not trying to send diffs in the first place is probably the better implementation than trying to send them just to discard them on their way. I’m not sure how performance intensive a noop intercept is, but it has a warning that customizing messages per user can become a performance issue.

If you track users in presence using e.g. something like an internal:users topic I feel like the intend can be communicated in a similarly explicit fashion.

rogerweb

rogerweb

Maybe I’m doing something wrong but no matter the key I use (e.g.: internal:users), Presence still sends the presence_diff message to all users.

  def handle_info(:after_join, socket) do
    {:ok, _ref} =
      Presence.track(socket, "internal:users", %{
        user_id: socket.assigns.user_id,
        online_at: inspect(System.system_time(:second))
      })
    {:noreply, socket}
  end

This is Phoenix 1.6.10.

LostKobrakai

LostKobrakai

Are you sure the topic chosen is not one covered by a channel?

rogerweb

rogerweb

I would say so. This is the rest of my user_channel.ex file:

  def join("all_users", _params, socket) do
    user_id = socket.assigns.user_id
    {:ok, %{user_id: user_id}, socket}
  end

  def join("user:" <> user_id, _params, socket) when user_id == socket.assigns.user_id do
    send(self(), :after_join)
    {:ok, %{user_id: user_id}, socket}
  end

  def join("user:" <> other_user_id, _params, socket) do
    {:error, %{reason: "User must join his own channel"}}
  end
LostKobrakai

LostKobrakai

You’re not changing the topic here. When you use track/3 it’s track(socket, key, metadata). You want track/4 as track(pid, topic, key, metadata).

rogerweb

rogerweb

That was it. I was taking the term key in your comments literally, when I should have thought about it as the topic.

Thanks a lot @LostKobrakai. It is working now.

LostKobrakai

LostKobrakai

I’ve edited my post, so hopefully you’re the last one to fall for that.

— All posts loaded —

Where Next?

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
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
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
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement