2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
defmodule Pleroma.Web.Streamer do
|
|
|
|
use GenServer
|
|
|
|
require Logger
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-05-03 11:53:17 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Notification
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Object
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2019-03-15 13:36:07 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-02-22 12:29:52 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2019-03-14 18:39:58 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.NotificationView
|
2017-11-11 13:59:25 +00:00
|
|
|
|
2018-12-17 13:39:59 +00:00
|
|
|
@keepalive_interval :timer.seconds(30)
|
2018-05-07 16:11:37 +00:00
|
|
|
|
2017-11-11 13:59:25 +00:00
|
|
|
def start_link do
|
|
|
|
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
|
|
|
|
|
2018-12-17 13:39:59 +00:00
|
|
|
def init(args) do
|
|
|
|
spawn(fn ->
|
|
|
|
# 30 seconds
|
|
|
|
Process.sleep(@keepalive_interval)
|
|
|
|
GenServer.cast(__MODULE__, %{action: :ping})
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:ok, args}
|
|
|
|
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
|
2018-12-17 13:39:59 +00:00
|
|
|
Process.sleep(@keepalive_interval)
|
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
|
|
|
|
|
2019-05-03 11:39:14 +00:00
|
|
|
def handle_cast(%{action: :stream, topic: "participation", item: participation}, topics) do
|
|
|
|
user_topic = "direct:#{participation.user_id}"
|
|
|
|
Logger.debug("Trying to push a conversation participation to #{user_topic}\n\n")
|
|
|
|
|
|
|
|
push_to_socket(topics, user_topic, participation)
|
|
|
|
|
|
|
|
{: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
|
|
|
# filter the recipient list if the activity is not public, see #270.
|
|
|
|
recipient_lists =
|
2019-02-22 12:29:52 +00:00
|
|
|
case Visibility.is_public?(item) do
|
2018-08-29 09:23:05 +00:00
|
|
|
true ->
|
|
|
|
Pleroma.List.get_lists_from_activity(item)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
Pleroma.List.get_lists_from_activity(item)
|
|
|
|
|> Enum.filter(fn list ->
|
2019-04-22 07:20:43 +00:00
|
|
|
owner = User.get_cached_by_id(list.user_id)
|
2018-11-27 00:14:43 +00:00
|
|
|
|
2019-02-22 12:29:52 +00:00
|
|
|
Visibility.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:
|
2019-03-14 18:39:58 +00:00
|
|
|
NotificationView.render("show.json", %{
|
|
|
|
notification: item,
|
|
|
|
for: socket.assigns["user"]
|
|
|
|
})
|
2018-03-30 13:01:53 +00:00
|
|
|
|> 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
|
|
|
|
|
2019-05-03 11:39:14 +00:00
|
|
|
def represent_conversation(%Participation{} = participation) do
|
|
|
|
%{
|
|
|
|
event: "conversation",
|
|
|
|
payload:
|
|
|
|
Pleroma.Web.MastodonAPI.ConversationView.render("participation.json", %{
|
|
|
|
participation: participation,
|
|
|
|
user: participation.user
|
|
|
|
})
|
|
|
|
|> 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 || []
|
2019-01-20 04:28:34 +00:00
|
|
|
mutes = user.info.mutes || []
|
2019-03-15 13:06:58 +00:00
|
|
|
reblog_mutes = user.info.muted_reblogs || []
|
2018-06-13 21:57:14 +00:00
|
|
|
|
2019-03-23 02:27:52 +00:00
|
|
|
parent = Object.normalize(item)
|
2018-06-13 21:57:14 +00:00
|
|
|
|
2019-01-20 04:28:34 +00:00
|
|
|
unless is_nil(parent) or item.actor in blocks or item.actor in mutes or
|
2019-03-11 18:59:25 +00:00
|
|
|
item.actor in reblog_mutes or not ActivityPub.contain_activity(item, user) or
|
|
|
|
parent.data["actor"] in blocks or parent.data["actor"] in mutes do
|
2018-11-24 07:45:45 +00:00
|
|
|
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
|
|
|
|
|
2019-05-03 11:39:14 +00:00
|
|
|
def push_to_socket(topics, topic, %Participation{} = participation) do
|
|
|
|
Enum.each(topics[topic] || [], fn socket ->
|
|
|
|
send(socket.transport_pid, {:text, represent_conversation(participation)})
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-03-09 11:12:15 +00:00
|
|
|
def push_to_socket(topics, topic, %Activity{
|
|
|
|
data: %{"type" => "Delete", "deleted_activity_id" => deleted_activity_id}
|
|
|
|
}) do
|
2019-01-20 12:00:46 +00:00
|
|
|
Enum.each(topics[topic] || [], fn socket ->
|
|
|
|
send(
|
|
|
|
socket.transport_pid,
|
2019-03-09 11:12:15 +00:00
|
|
|
{:text, %{event: "delete", payload: to_string(deleted_activity_id)} |> Jason.encode!()}
|
2019-01-20 12:00:46 +00:00
|
|
|
)
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-03-09 11:12:15 +00:00
|
|
|
def push_to_socket(_topics, _topic, %Activity{data: %{"type" => "Delete"}}), do: :noop
|
|
|
|
|
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 || []
|
2019-01-20 04:28:34 +00:00
|
|
|
mutes = user.info.mutes || []
|
2018-11-24 07:45:45 +00:00
|
|
|
|
2019-03-09 15:24:32 +00:00
|
|
|
unless item.actor in blocks or item.actor in mutes or
|
|
|
|
not ActivityPub.contain_activity(item, user) do
|
2018-11-24 07:45:45 +00:00
|
|
|
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
|