ChatController: Basic support for returning messages.
This commit is contained in:
parent
68abea313d
commit
e8fd0dd689
3 changed files with 69 additions and 0 deletions
|
|
@ -5,10 +5,50 @@ defmodule Pleroma.Web.PleromaAPI.ChatController do
|
|||
use Pleroma.Web, :controller
|
||||
|
||||
alias Pleroma.Chat
|
||||
alias Pleroma.Object
|
||||
alias Pleroma.Repo
|
||||
|
||||
import Ecto.Query
|
||||
|
||||
def messages(%{assigns: %{user: %{id: user_id} = user}} = conn, %{"id" => id}) do
|
||||
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]
|
||||
),
|
||||
order_by: [desc: o.id]
|
||||
)
|
||||
|> Repo.all()
|
||||
|
||||
represented_messages =
|
||||
messages
|
||||
|> Enum.map(fn message ->
|
||||
%{
|
||||
actor: message.data["actor"],
|
||||
id: message.id,
|
||||
content: message.data["content"]
|
||||
}
|
||||
end)
|
||||
|
||||
conn
|
||||
|> json(represented_messages)
|
||||
end
|
||||
end
|
||||
|
||||
def index(%{assigns: %{user: %{id: user_id}}} = conn, _params) do
|
||||
chats =
|
||||
from(c in Chat,
|
||||
|
|
|
|||
|
|
@ -289,6 +289,7 @@ defmodule Pleroma.Web.Router do
|
|||
|
||||
post("/chats/by-ap-id/:ap_id", ChatController, :create)
|
||||
get("/chats", ChatController, :index)
|
||||
get("/chats/:id/messages", ChatController, :messages)
|
||||
end
|
||||
|
||||
scope [] do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue