%Operation{
tags: ["chat"],
summary: "Create a chat",
+ operationId: "ChatController.create",
parameters: [
Operation.parameter(
:ap_id,
%Operation{
tags: ["chat"],
summary: "Get a list of chats that you participated in",
+ operationId: "ChatController.index",
parameters: [
Operation.parameter(:limit, :query, :integer, "How many results to return", example: 20),
Operation.parameter(:min_id, :query, :string, "Return only chats after this id"),
%Operation{
tags: ["chat"],
summary: "Get the most recent messages of the chat",
+ operationId: "ChatController.messages",
parameters: [
Operation.parameter(:id, :path, :string, "The ID of the Chat"),
Operation.parameter(:limit, :query, :integer, "How many results to return", example: 20),
%Operation{
tags: ["chat"],
summary: "Post a message to the chat",
+ operationId: "ChatController.post_chat_message",
parameters: [
Operation.parameter(:id, :path, :string, "The ID of the Chat")
],
alias Pleroma.Web.PleromaAPI.ChatMessageView
alias Pleroma.Web.PleromaAPI.ChatView
+ import Pleroma.Web.ActivityPub.ObjectValidator, only: [stringify_keys: 1]
+
import Ecto.Query
# TODO
%{scopes: ["read:statuses"]} when action in [:messages, :index]
)
+ plug(OpenApiSpex.Plug.CastAndValidate)
+
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.ChatOperation
- def post_chat_message(%{assigns: %{user: %{id: user_id} = user}} = conn, %{
- "id" => id,
- "content" => content
- }) do
+ def post_chat_message(
+ %{body_params: %{content: content}, assigns: %{user: %{id: user_id} = user}} = conn,
+ %{
+ id: id
+ }
+ ) 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),
end
end
- def messages(%{assigns: %{user: %{id: user_id} = user}} = conn, %{"id" => id} = params) do
+ def messages(%{assigns: %{user: %{id: user_id} = user}} = conn, %{id: id} = params) do
with %Chat{} = chat <- Repo.get_by(Chat, id: id, user_id: user_id) do
messages =
from(o in Object,
^[user.ap_id]
)
)
- |> Pagination.fetch_paginated(params)
+ |> Pagination.fetch_paginated(params |> stringify_keys())
conn
|> put_view(ChatMessageView)
where: c.user_id == ^user_id,
order_by: [desc: c.updated_at]
)
- |> Pagination.fetch_paginated(params)
+ |> Pagination.fetch_paginated(params |> stringify_keys)
conn
|> put_view(ChatView)
end
def create(%{assigns: %{user: user}} = conn, params) do
- recipient = params["ap_id"] |> URI.decode_www_form()
+ recipient = params[:ap_id]
with {:ok, %Chat{} = chat} <- Chat.get_or_create(user.id, recipient) do
conn
result =
conn
+ |> put_req_header("content-type", "application/json")
|> post("/api/v1/pleroma/chats/#{chat.id}/messages", %{"content" => "Hallo!!"})
|> json_response(200)
result =
conn
- |> get("/api/v1/pleroma/chats/#{chat.id}/messages", %{"max_id" => List.last(result)["id"]})
+ |> get("/api/v1/pleroma/chats/#{chat.id}/messages?max_id=#{List.last(result)["id"]}")
|> json_response(200)
assert length(result) == 10
result =
conn
- |> get("/api/v1/pleroma/chats", %{max_id: List.last(result)["id"]})
+ |> get("/api/v1/pleroma/chats?max_id=#{List.last(result)["id"]}")
|> json_response(200)
assert length(result) == 10