2019-08-02 17:53:08 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-08-02 17:53:08 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.PleromaAPIController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2020-05-09 15:05:44 +00:00
|
|
|
import Pleroma.Web.ControllerHelper, only: [add_link_headers: 2]
|
2019-08-02 17:53:08 +00:00
|
|
|
|
2019-09-04 17:20:35 +00:00
|
|
|
alias Pleroma.Activity
|
2019-08-02 17:53:08 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-09-04 08:33:08 +00:00
|
|
|
alias Pleroma.Notification
|
2019-09-13 14:41:30 +00:00
|
|
|
alias Pleroma.Object
|
2019-09-15 15:22:08 +00:00
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
2019-10-07 10:40:33 +00:00
|
|
|
alias Pleroma.User
|
2019-08-02 17:53:08 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-09-04 17:20:35 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-09-12 16:48:25 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2019-08-05 13:09:19 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.ConversationView
|
2019-09-04 08:33:08 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.NotificationView
|
2019-08-05 14:11:23 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2019-08-02 17:53:08 +00:00
|
|
|
|
2019-09-15 15:22:08 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2019-12-15 19:32:42 +00:00
|
|
|
%{scopes: ["read:statuses"]}
|
2020-01-20 12:05:35 +00:00
|
|
|
when action in [:conversation, :conversation_statuses]
|
2019-12-15 19:32:42 +00:00
|
|
|
)
|
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["read:statuses"], fallback: :proceed_unauthenticated}
|
|
|
|
when action == :emoji_reactions_by
|
|
|
|
)
|
|
|
|
|
2019-12-15 19:32:42 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:statuses"]}
|
|
|
|
when action in [:react_with_emoji, :unreact_with_emoji]
|
2019-09-15 15:22:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
2020-04-21 13:29:19 +00:00
|
|
|
%{scopes: ["write:conversations"]}
|
|
|
|
when action in [:update_conversation, :mark_conversations_as_read]
|
2019-09-15 15:22:08 +00:00
|
|
|
)
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:notifications"]} when action == :mark_notifications_as_read
|
|
|
|
)
|
2019-10-02 17:42:40 +00:00
|
|
|
|
2020-02-19 16:16:45 +00:00
|
|
|
def emoji_reactions_by(%{assigns: %{user: user}} = conn, %{"id" => activity_id} = params) do
|
2019-09-12 16:48:25 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id_with_object(activity_id),
|
2020-01-22 12:57:42 +00:00
|
|
|
%Object{data: %{"reactions" => emoji_reactions}} when is_list(emoji_reactions) <-
|
|
|
|
Object.normalize(activity) do
|
2019-09-12 16:48:25 +00:00
|
|
|
reactions =
|
2019-09-30 13:13:25 +00:00
|
|
|
emoji_reactions
|
2020-01-29 10:39:06 +00:00
|
|
|
|> Enum.map(fn [emoji, user_ap_ids] ->
|
2020-02-19 16:16:45 +00:00
|
|
|
if params["emoji"] && params["emoji"] != emoji do
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
users =
|
|
|
|
Enum.map(user_ap_ids, &User.get_cached_by_ap_id/1)
|
2020-04-29 11:26:31 +00:00
|
|
|
|> Enum.filter(fn
|
|
|
|
%{deactivated: false} -> true
|
|
|
|
_ -> false
|
|
|
|
end)
|
2020-01-24 09:52:24 +00:00
|
|
|
|
2020-02-19 16:16:45 +00:00
|
|
|
%{
|
|
|
|
name: emoji,
|
|
|
|
count: length(users),
|
2020-05-01 15:45:24 +00:00
|
|
|
accounts:
|
|
|
|
AccountView.render("index.json", %{
|
|
|
|
users: users,
|
|
|
|
for: user,
|
2020-05-10 06:16:48 +00:00
|
|
|
as: :user
|
2020-05-01 15:45:24 +00:00
|
|
|
}),
|
2020-02-19 16:16:45 +00:00
|
|
|
me: !!(user && user.ap_id in user_ap_ids)
|
|
|
|
}
|
|
|
|
end
|
2019-09-12 16:48:25 +00:00
|
|
|
end)
|
2020-02-19 16:16:45 +00:00
|
|
|
|> Enum.filter(& &1)
|
2019-09-12 16:48:25 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> json(reactions)
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
conn
|
2020-01-22 12:57:42 +00:00
|
|
|
|> json([])
|
2019-09-12 16:48:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-04 17:20:35 +00:00
|
|
|
def react_with_emoji(%{assigns: %{user: user}} = conn, %{"id" => activity_id, "emoji" => emoji}) do
|
2020-05-05 10:28:28 +00:00
|
|
|
with {:ok, _activity} <- CommonAPI.react_with_emoji(activity_id, user, emoji),
|
2019-10-02 16:19:16 +00:00
|
|
|
activity <- Activity.get_by_id(activity_id) do
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("show.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unreact_with_emoji(%{assigns: %{user: user}} = conn, %{
|
|
|
|
"id" => activity_id,
|
|
|
|
"emoji" => emoji
|
|
|
|
}) do
|
2020-05-05 14:17:09 +00:00
|
|
|
with {:ok, _activity} <-
|
|
|
|
CommonAPI.unreact_with_emoji(activity_id, user, emoji),
|
2019-10-02 16:19:16 +00:00
|
|
|
activity <- Activity.get_by_id(activity_id) do
|
2019-09-04 17:20:35 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
2019-09-30 13:13:25 +00:00
|
|
|
|> render("show.json", %{activity: activity, for: user, as: :activity})
|
2019-09-04 17:20:35 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-12 11:58:04 +00:00
|
|
|
def conversation(%{assigns: %{user: user}} = conn, %{"id" => participation_id}) do
|
|
|
|
with %Participation{} = participation <- Participation.get(participation_id),
|
|
|
|
true <- user.id == participation.user_id do
|
|
|
|
conn
|
|
|
|
|> put_view(ConversationView)
|
2019-08-12 12:23:06 +00:00
|
|
|
|> render("participation.json", %{participation: participation, for: user})
|
2020-03-02 03:23:29 +00:00
|
|
|
else
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{"error" => "Unknown conversation id"})
|
2019-08-12 11:58:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-02 17:53:08 +00:00
|
|
|
def conversation_statuses(
|
2020-03-24 16:18:27 +00:00
|
|
|
%{assigns: %{user: %{id: user_id} = user}} = conn,
|
2019-08-02 17:53:08 +00:00
|
|
|
%{"id" => participation_id} = params
|
|
|
|
) do
|
2020-03-24 16:18:27 +00:00
|
|
|
with %Participation{user_id: ^user_id} = participation <-
|
|
|
|
Participation.get(participation_id, preload: [:conversation]) do
|
2019-09-06 10:08:47 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|> Map.put("muting_user", user)
|
|
|
|
|> Map.put("user", user)
|
|
|
|
|
2019-08-02 17:53:08 +00:00
|
|
|
activities =
|
|
|
|
participation.conversation.ap_id
|
2020-03-24 16:18:27 +00:00
|
|
|
|> ActivityPub.fetch_activities_for_context_query(params)
|
|
|
|
|> Pleroma.Pagination.fetch_paginated(Map.put(params, "total", false))
|
2019-08-02 17:53:08 +00:00
|
|
|
|> Enum.reverse()
|
|
|
|
|
|
|
|
conn
|
2019-09-06 10:08:47 +00:00
|
|
|
|> add_link_headers(activities)
|
2019-08-02 17:53:08 +00:00
|
|
|
|> put_view(StatusView)
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
activities: activities,
|
|
|
|
for: user,
|
2020-05-09 15:05:44 +00:00
|
|
|
as: :activity
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2020-03-02 03:23:29 +00:00
|
|
|
else
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{"error" => "Unknown conversation id"})
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
|
|
|
end
|
2019-08-05 13:09:19 +00:00
|
|
|
|
|
|
|
def update_conversation(
|
|
|
|
%{assigns: %{user: user}} = conn,
|
|
|
|
%{"id" => participation_id, "recipients" => recipients}
|
|
|
|
) do
|
2020-03-02 03:23:29 +00:00
|
|
|
with %Participation{} = participation <- Participation.get(participation_id),
|
|
|
|
true <- user.id == participation.user_id,
|
2019-08-14 13:56:15 +00:00
|
|
|
{:ok, participation} <- Participation.set_recipients(participation, recipients) do
|
2019-08-05 13:09:19 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ConversationView)
|
2019-08-12 12:23:06 +00:00
|
|
|
|> render("participation.json", %{participation: participation, for: user})
|
2020-03-02 03:23:29 +00:00
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(%{"error" => message})
|
|
|
|
|
|
|
|
_error ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{"error" => "Unknown conversation id"})
|
2019-08-05 13:09:19 +00:00
|
|
|
end
|
|
|
|
end
|
2019-09-04 08:33:08 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
def mark_conversations_as_read(%{assigns: %{user: user}} = conn, _params) do
|
2019-10-25 18:29:23 +00:00
|
|
|
with {:ok, _, participations} <- Participation.mark_all_as_read(user) do
|
2019-10-11 03:40:58 +00:00
|
|
|
conn
|
|
|
|
|> add_link_headers(participations)
|
|
|
|
|> put_view(ConversationView)
|
|
|
|
|> render("participations.json", participations: participations, for: user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
def mark_notifications_as_read(%{assigns: %{user: user}} = conn, %{"id" => notification_id}) do
|
2019-09-04 08:33:08 +00:00
|
|
|
with {:ok, notification} <- Notification.read_one(user, notification_id) do
|
|
|
|
conn
|
|
|
|
|> put_view(NotificationView)
|
|
|
|
|> render("show.json", %{notification: notification, for: user})
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(%{"error" => message})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-09 15:05:44 +00:00
|
|
|
def mark_notifications_as_read(%{assigns: %{user: user}} = conn, %{"max_id" => max_id}) do
|
2019-09-04 08:33:08 +00:00
|
|
|
with notifications <- Notification.set_read_up_to(user, max_id) do
|
|
|
|
notifications = Enum.take(notifications, 80)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(NotificationView)
|
2020-04-01 16:49:09 +00:00
|
|
|
|> render("index.json",
|
|
|
|
notifications: notifications,
|
2020-05-09 15:05:44 +00:00
|
|
|
for: user
|
2020-04-01 16:49:09 +00:00
|
|
|
)
|
2019-09-04 08:33:08 +00:00
|
|
|
end
|
|
|
|
end
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|