2017-11-11 13:59:25 +00:00
|
|
|
defmodule Pleroma.Web.Streamer do
|
|
|
|
use GenServer
|
|
|
|
require Logger
|
2018-08-29 09:23:05 +00:00
|
|
|
alias Pleroma.{User, Notification, Activity, Object, Repo}
|
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2017-11-11 13:59:25 +00:00
|
|
|
|
2018-05-07 16:11:37 +00:00
|
|
|
def init(args) do
|
|
|
|
{:ok, args}
|
|
|
|
end
|
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
def start_link do
|
2017-11-11 19:00:11 +00:00
|
|
|
spawn(fn ->
|
2018-03-30 13:01:53 +00:00
|
|
|
# 30 seconds
|
|
|
|
Process.sleep(1000 * 30)
|
2017-11-11 19:00:11 +00:00
|
|
|
GenServer.cast(__MODULE__, %{action: :ping})
|
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
GenServer.start_link(__MODULE__, %{}, name: __MODULE__)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_socket(topic, socket) do
|
|
|
|
GenServer.cast(__MODULE__, %{action: :add, socket: socket, topic: topic})
|
|
|
|
end
|
|
|
|
|
2017-11-11 19:00:11 +00:00
|
|
|
def remove_socket(topic, socket) do
|
|
|
|
GenServer.cast(__MODULE__, %{action: :remove, socket: socket, topic: topic})
|
|
|
|
end
|
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
def stream(topic, item) do
|
|
|
|
GenServer.cast(__MODULE__, %{action: :stream, topic: topic, item: item})
|
|
|
|
end
|
|
|
|
|
2017-11-11 19:00:11 +00:00
|
|
|
def handle_cast(%{action: :ping}, topics) do
|
|
|
|
Map.values(topics)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> List.flatten()
|
|
|
|
|> Enum.each(fn socket ->
|
2017-11-11 19:00:11 +00:00
|
|
|
Logger.debug("Sending keepalive ping")
|
2018-03-30 13:01:53 +00:00
|
|
|
send(socket.transport_pid, {:text, ""})
|
2017-11-11 19:00:11 +00:00
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-11 19:00:11 +00:00
|
|
|
spawn(fn ->
|
2018-03-30 13:01:53 +00:00
|
|
|
# 30 seconds
|
|
|
|
Process.sleep(1000 * 30)
|
2017-11-11 19:00:11 +00:00
|
|
|
GenServer.cast(__MODULE__, %{action: :ping})
|
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-11 19:00:11 +00:00
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
2018-05-11 02:15:42 +00:00
|
|
|
def handle_cast(%{action: :stream, topic: "direct", item: item}, topics) do
|
|
|
|
recipient_topics =
|
|
|
|
User.get_recipients_from_activity(item)
|
|
|
|
|> Enum.map(fn %{id: id} -> "direct:#{id}" end)
|
|
|
|
|
|
|
|
Enum.each(recipient_topics || [], fn user_topic ->
|
|
|
|
Logger.debug("Trying to push direct message to #{user_topic}\n\n")
|
|
|
|
push_to_socket(topics, user_topic, item)
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
2018-05-30 13:33:37 +00:00
|
|
|
def handle_cast(%{action: :stream, topic: "list", item: item}, topics) do
|
2018-08-29 09:23:05 +00:00
|
|
|
author = User.get_cached_by_ap_id(item.data["actor"])
|
|
|
|
|
|
|
|
# filter the recipient list if the activity is not public, see #270.
|
|
|
|
recipient_lists =
|
|
|
|
case ActivityPub.is_public?(item) do
|
|
|
|
true ->
|
|
|
|
Pleroma.List.get_lists_from_activity(item)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
Pleroma.List.get_lists_from_activity(item)
|
|
|
|
|> Enum.filter(fn list ->
|
|
|
|
owner = Repo.get(User, list.user_id)
|
2018-11-27 00:14:43 +00:00
|
|
|
|
|
|
|
ActivityPub.visible_for_user?(item, owner)
|
2018-08-29 09:23:05 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2018-05-30 13:33:37 +00:00
|
|
|
recipient_topics =
|
2018-08-29 09:23:05 +00:00
|
|
|
recipient_lists
|
2018-05-30 13:33:37 +00:00
|
|
|
|> Enum.map(fn %{id: id} -> "list:#{id}" end)
|
|
|
|
|
|
|
|
Enum.each(recipient_topics || [], fn list_topic ->
|
|
|
|
Logger.debug("Trying to push message to #{list_topic}\n\n")
|
|
|
|
push_to_socket(topics, list_topic, item)
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
2017-11-16 15:49:51 +00:00
|
|
|
def handle_cast(%{action: :stream, topic: "user", item: %Notification{} = item}, topics) do
|
|
|
|
topic = "user:#{item.user_id}"
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
Enum.each(topics[topic] || [], fn socket ->
|
|
|
|
json =
|
|
|
|
%{
|
|
|
|
event: "notification",
|
|
|
|
payload:
|
|
|
|
Pleroma.Web.MastodonAPI.MastodonAPIController.render_notification(
|
|
|
|
socket.assigns["user"],
|
|
|
|
item
|
|
|
|
)
|
|
|
|
|> Jason.encode!()
|
|
|
|
}
|
|
|
|
|> Jason.encode!()
|
|
|
|
|
|
|
|
send(socket.transport_pid, {:text, json})
|
2017-11-16 15:49:51 +00:00
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-16 15:49:51 +00:00
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast(%{action: :stream, topic: "user", item: item}, topics) do
|
|
|
|
Logger.debug("Trying to push to users")
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
recipient_topics =
|
|
|
|
User.get_recipients_from_activity(item)
|
|
|
|
|> Enum.map(fn %{id: id} -> "user:#{id}" end)
|
|
|
|
|
|
|
|
Enum.each(recipient_topics, fn topic ->
|
2017-11-16 15:49:51 +00:00
|
|
|
push_to_socket(topics, topic, item)
|
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-16 15:49:51 +00:00
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast(%{action: :stream, topic: topic, item: item}, topics) do
|
|
|
|
Logger.debug("Trying to push to #{topic}")
|
|
|
|
Logger.debug("Pushing item to #{topic}")
|
|
|
|
push_to_socket(topics, topic, item)
|
2017-11-11 13:59:25 +00:00
|
|
|
{:noreply, topics}
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_cast(%{action: :add, topic: topic, socket: socket}, sockets) do
|
2017-11-16 15:49:51 +00:00
|
|
|
topic = internal_topic(topic, socket)
|
2017-11-11 13:59:25 +00:00
|
|
|
sockets_for_topic = sockets[topic] || []
|
|
|
|
sockets_for_topic = Enum.uniq([socket | sockets_for_topic])
|
|
|
|
sockets = Map.put(sockets, topic, sockets_for_topic)
|
|
|
|
Logger.debug("Got new conn for #{topic}")
|
|
|
|
{:noreply, sockets}
|
|
|
|
end
|
|
|
|
|
2017-11-11 19:00:11 +00:00
|
|
|
def handle_cast(%{action: :remove, topic: topic, socket: socket}, sockets) do
|
2017-11-16 15:49:51 +00:00
|
|
|
topic = internal_topic(topic, socket)
|
2017-11-11 19:00:11 +00:00
|
|
|
sockets_for_topic = sockets[topic] || []
|
|
|
|
sockets_for_topic = List.delete(sockets_for_topic, socket)
|
|
|
|
sockets = Map.put(sockets, topic, sockets_for_topic)
|
|
|
|
Logger.debug("Removed conn for #{topic}")
|
|
|
|
{:noreply, sockets}
|
|
|
|
end
|
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
def handle_cast(m, state) do
|
2018-02-21 14:44:00 +00:00
|
|
|
Logger.info("Unknown: #{inspect(m)}, #{inspect(state)}")
|
2017-11-11 13:59:25 +00:00
|
|
|
{:noreply, state}
|
|
|
|
end
|
2017-11-19 01:22:07 +00:00
|
|
|
|
2018-06-13 21:57:14 +00:00
|
|
|
defp represent_update(%Activity{} = activity, %User{} = user) do
|
|
|
|
%{
|
|
|
|
event: "update",
|
|
|
|
payload:
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.render(
|
|
|
|
"status.json",
|
|
|
|
activity: activity,
|
|
|
|
for: user
|
|
|
|
)
|
|
|
|
|> Jason.encode!()
|
|
|
|
}
|
|
|
|
|> Jason.encode!()
|
|
|
|
end
|
|
|
|
|
2018-11-24 07:45:45 +00:00
|
|
|
defp represent_update(%Activity{} = activity) do
|
|
|
|
%{
|
|
|
|
event: "update",
|
|
|
|
payload:
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.render(
|
|
|
|
"status.json",
|
|
|
|
activity: activity
|
|
|
|
)
|
|
|
|
|> Jason.encode!()
|
|
|
|
}
|
|
|
|
|> Jason.encode!()
|
|
|
|
end
|
|
|
|
|
2018-06-13 21:57:14 +00:00
|
|
|
def push_to_socket(topics, topic, %Activity{data: %{"type" => "Announce"}} = item) do
|
|
|
|
Enum.each(topics[topic] || [], fn socket ->
|
|
|
|
# Get the current user so we have up-to-date blocks etc.
|
2018-11-24 07:45:45 +00:00
|
|
|
if socket.assigns[:user] do
|
|
|
|
user = User.get_cached_by_ap_id(socket.assigns[:user].ap_id)
|
2018-11-30 16:34:20 +00:00
|
|
|
blocks = user.info.blocks || []
|
2018-06-13 21:57:14 +00:00
|
|
|
|
2018-11-24 07:45:45 +00:00
|
|
|
parent = Object.normalize(item.data["object"])
|
2018-06-13 21:57:14 +00:00
|
|
|
|
2018-11-24 07:45:45 +00:00
|
|
|
unless is_nil(parent) or item.actor in blocks or parent.data["actor"] in blocks do
|
|
|
|
send(socket.transport_pid, {:text, represent_update(item, user)})
|
|
|
|
end
|
|
|
|
else
|
|
|
|
send(socket.transport_pid, {:text, represent_update(item)})
|
2018-06-13 21:57:14 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def push_to_socket(topics, topic, item) do
|
2018-03-30 13:01:53 +00:00
|
|
|
Enum.each(topics[topic] || [], fn socket ->
|
2018-05-05 11:40:47 +00:00
|
|
|
# Get the current user so we have up-to-date blocks etc.
|
2018-11-24 07:45:45 +00:00
|
|
|
if socket.assigns[:user] do
|
|
|
|
user = User.get_cached_by_ap_id(socket.assigns[:user].ap_id)
|
2018-11-30 16:34:20 +00:00
|
|
|
blocks = user.info.blocks || []
|
2018-11-24 07:45:45 +00:00
|
|
|
|
|
|
|
unless item.actor in blocks do
|
|
|
|
send(socket.transport_pid, {:text, represent_update(item, user)})
|
|
|
|
end
|
|
|
|
else
|
|
|
|
send(socket.transport_pid, {:text, represent_update(item)})
|
2018-05-05 11:40:47 +00:00
|
|
|
end
|
2017-11-19 01:22:07 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2018-05-26 19:06:46 +00:00
|
|
|
defp internal_topic(topic, socket) when topic in ~w[user direct] do
|
2018-05-11 02:15:42 +00:00
|
|
|
"#{topic}:#{socket.assigns[:user].id}"
|
2017-11-19 01:22:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp internal_topic(topic, _), do: topic
|
2017-11-11 13:59:25 +00:00
|
|
|
end
|