nilscam

nilscam

Hello :slight_smile:,

I would like to monitore phoenix socket process, to count the current user connected to my application, without having them to join a channel.

defmodule ChatWeb.UserSocket do

use Phoenix.Socket

channel "topic:*", ChatWeb.Channel

  def connect(_params, socket) do
    :ok = SocketWatcher.monitor(socket.transport_pid)
    {:ok, socket}
  end

  def id(_socket), do: nil

end

The problem here is that transport_pid is nil…
As explained chrismccord in this post, a socket transport_id field is nil until the connection has been authorized in UserSocket.connect/3.

Is there a way to implement a callback for UserSocket.connect/3 method, where i can get this transport_id and monitore it.

Thanks for your help.

Showing Posts 1 to 9

LostKobrakai

LostKobrakai

Can you elaborate on that constraint? Phoenix Presence basically solved the problem of tracking users.

nilscam

nilscam OP

In this monitore function, i use Presence ^^

I would like to do something like this. But this code doesn’t work anymore with newer phoenix versions. Transport_id is now nil until the connection has been authorized.

LostKobrakai

LostKobrakai

You should be able to do exactly that in a channel.

nilscam

nilscam OP

But as i said in the first sentence of my Post: “I would like to monitore phoenix socket process, to count the current user connected to my application, without having them to join a channel.”

LostKobrakai

LostKobrakai

Which is why I asked what’s preventing you from using a channel. Is there a particular reason for this constraint? Letting users join an additional channel doesn’t sound like a particular high barrier.

nilscam

nilscam OP

I’m building a SAAS product. I bill for number of simultaneous connected users.
Actually, in the SDK I give to my clients, when they connect to my service, i force them to join a special channel which is only used to count the number of simultaneous users thanks to Phoenix.Presence.

The problem is that if my clients comment the line that join this special channel, they can potentially use my service for free without any limit.

LostKobrakai

LostKobrakai

Then it might be worth going the route @chrismccord mentioned in the already linked topic and implement a custom Phoenix.Socket, which allows you to track the socket process using presence.

nilscam

nilscam OP

implementing my own socket seems pretty complicated compared to what I need.

I just need a callback that give me the pid of newly connected socket.

I think there must be an alternative solution that can solve my problem more simply.

LostKobrakai

LostKobrakai

Copy the implementation of phoenix and add the necessary callback or try to make a case for adding it to phoenix. The latter could include the first one as a PR.

— 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
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
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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

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
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews