Don't save user in socket, just save the name.

This commit is contained in:
Roger Braun 2017-12-05 10:01:36 +01:00
parent 69f1024bb0
commit 5945ec84e9
2 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@ defmodule Pleroma.Web.UserSocket do
def connect(%{"token" => token}, socket) do
with {:ok, user_id} <- Phoenix.Token.verify(socket, "user socket", token, max_age: 84600),
%User{} = user <- Pleroma.Repo.get(User, user_id) do
{:ok, assign(socket, :user, user)}
{:ok, assign(socket, :user_name, user.nickname)}
else
_e -> :error
end

View File

@ -1,6 +1,7 @@
defmodule Pleroma.Web.ChatChannel do
use Phoenix.Channel
alias Pleroma.Web.ChatChannel.ChatChannelState
alias Pleroma.User
def join("chat:public", _message, socket) do
send(self(), :after_join)
@ -12,10 +13,10 @@ defmodule Pleroma.Web.ChatChannel do
{:noreply, socket}
end
def handle_in("new_msg", %{"text" => text}, socket) do
author = socket.assigns[:user]
def handle_in("new_msg", %{"text" => text}, %{assigns: %{user_name: user_name}} = socket) do
author = User.get_cached_by_nickname(user_name)
author = Pleroma.Web.MastodonAPI.AccountView.render("account.json", user: author)
message= ChatChannelState.add_message(%{text: text, author: author})
message = ChatChannelState.add_message(%{text: text, author: author})
broadcast! socket, "new_msg", message
{:noreply, socket}