2020-04-09 13:13:55 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.ChatController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.Chat
|
2020-04-09 14:59:49 +00:00
|
|
|
alias Pleroma.Object
|
2020-04-09 13:13:55 +00:00
|
|
|
alias Pleroma.Repo
|
2020-04-09 15:18:31 +00:00
|
|
|
alias Pleroma.User
|
2020-04-17 11:04:46 +00:00
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
2020-04-09 15:18:31 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2020-04-15 16:23:16 +00:00
|
|
|
alias Pleroma.Web.PleromaAPI.ChatView
|
|
|
|
alias Pleroma.Web.PleromaAPI.ChatMessageView
|
2020-04-16 16:43:31 +00:00
|
|
|
alias Pleroma.Pagination
|
2020-04-09 13:13:55 +00:00
|
|
|
|
|
|
|
import Ecto.Query
|
|
|
|
|
2020-04-09 15:18:31 +00:00
|
|
|
# TODO
|
|
|
|
# - Error handling
|
|
|
|
|
2020-04-17 11:04:46 +00:00
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["write:statuses"]} when action in [:post_chat_message, :create]
|
|
|
|
)
|
|
|
|
|
|
|
|
plug(
|
|
|
|
OAuthScopesPlug,
|
|
|
|
%{scopes: ["read:statuses"]} when action in [:messages, :index]
|
|
|
|
)
|
|
|
|
|
2020-04-15 16:23:16 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.ChatOperation
|
|
|
|
|
2020-04-09 15:18:31 +00:00
|
|
|
def post_chat_message(%{assigns: %{user: %{id: user_id} = user}} = conn, %{
|
|
|
|
"id" => id,
|
|
|
|
"content" => content
|
|
|
|
}) do
|
|
|
|
with %Chat{} = chat <- Repo.get_by(Chat, id: id, user_id: user_id),
|
|
|
|
%User{} = recipient <- User.get_cached_by_ap_id(chat.recipient),
|
|
|
|
{:ok, activity} <- CommonAPI.post_chat_message(user, recipient, content),
|
|
|
|
message <- Object.normalize(activity) do
|
|
|
|
conn
|
2020-04-15 16:23:16 +00:00
|
|
|
|> put_view(ChatMessageView)
|
|
|
|
|> render("show.json", for: user, object: message, chat: chat)
|
2020-04-09 15:18:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-16 16:43:31 +00:00
|
|
|
def messages(%{assigns: %{user: %{id: user_id} = user}} = conn, %{"id" => id} = params) do
|
2020-04-09 14:59:49 +00:00
|
|
|
with %Chat{} = chat <- Repo.get_by(Chat, id: id, user_id: user_id) do
|
|
|
|
messages =
|
|
|
|
from(o in Object,
|
|
|
|
where: fragment("?->>'type' = ?", o.data, "ChatMessage"),
|
|
|
|
where:
|
|
|
|
fragment(
|
|
|
|
"""
|
|
|
|
(?->>'actor' = ? and ?->'to' = ?)
|
|
|
|
OR (?->>'actor' = ? and ?->'to' = ?)
|
|
|
|
""",
|
|
|
|
o.data,
|
|
|
|
^user.ap_id,
|
|
|
|
o.data,
|
|
|
|
^[chat.recipient],
|
|
|
|
o.data,
|
|
|
|
^chat.recipient,
|
|
|
|
o.data,
|
|
|
|
^[user.ap_id]
|
2020-04-16 16:43:31 +00:00
|
|
|
)
|
2020-04-09 14:59:49 +00:00
|
|
|
)
|
2020-04-16 16:43:31 +00:00
|
|
|
|> Pagination.fetch_paginated(params)
|
2020-04-09 14:59:49 +00:00
|
|
|
|
|
|
|
conn
|
2020-04-15 16:23:16 +00:00
|
|
|
|> put_view(ChatMessageView)
|
|
|
|
|> render("index.json", for: user, objects: messages, chat: chat)
|
2020-04-17 11:04:46 +00:00
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_status(:not_found)
|
|
|
|
|> json(%{error: "not found"})
|
2020-04-09 14:59:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-16 16:43:31 +00:00
|
|
|
def index(%{assigns: %{user: %{id: user_id}}} = conn, params) do
|
2020-04-09 13:13:55 +00:00
|
|
|
chats =
|
|
|
|
from(c in Chat,
|
|
|
|
where: c.user_id == ^user_id,
|
|
|
|
order_by: [desc: c.updated_at]
|
|
|
|
)
|
2020-04-16 16:43:31 +00:00
|
|
|
|> Pagination.fetch_paginated(params)
|
2020-04-09 13:13:55 +00:00
|
|
|
|
|
|
|
conn
|
2020-04-15 16:23:16 +00:00
|
|
|
|> put_view(ChatView)
|
|
|
|
|> render("index.json", chats: chats)
|
2020-04-09 13:13:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
recipient = params["ap_id"] |> URI.decode_www_form()
|
|
|
|
|
|
|
|
with {:ok, %Chat{} = chat} <- Chat.get_or_create(user.id, recipient) do
|
|
|
|
conn
|
2020-04-15 16:23:16 +00:00
|
|
|
|> put_view(ChatView)
|
|
|
|
|> render("show.json", chat: chat)
|
2020-04-09 13:13:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|