ChatController: Add creation and return of chats.

This commit is contained in:
lain 2020-04-09 15:13:55 +02:00
commit 68abea313d
4 changed files with 119 additions and 0 deletions

View file

@ -35,6 +35,16 @@ defmodule Pleroma.Chat do
|> Repo.get_by(user_id: user_id, recipient: recipient)
end
def get_or_create(user_id, recipient) do
%__MODULE__{}
|> creation_cng(%{user_id: user_id, recipient: recipient})
|> Repo.insert(
on_conflict: :nothing,
returning: true,
conflict_target: [:user_id, :recipient]
)
end
def bump_or_create(user_id, recipient) do
%__MODULE__{}
|> creation_cng(%{user_id: user_id, recipient: recipient, unread: 1})

View file

@ -0,0 +1,47 @@
# 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
alias Pleroma.Repo
import Ecto.Query
def index(%{assigns: %{user: %{id: user_id}}} = conn, _params) do
chats =
from(c in Chat,
where: c.user_id == ^user_id,
order_by: [desc: c.updated_at]
)
|> Repo.all()
represented_chats =
Enum.map(chats, fn chat ->
%{
id: chat.id,
recipient: chat.recipient,
unread: chat.unread
}
end)
conn
|> json(represented_chats)
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
represented_chat = %{
id: chat.id,
recipient: chat.recipient,
unread: chat.unread
}
conn
|> json(represented_chat)
end
end
end

View file

@ -284,6 +284,13 @@ defmodule Pleroma.Web.Router do
end
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
scope [] do
pipe_through(:authenticated_api)
post("/chats/by-ap-id/:ap_id", ChatController, :create)
get("/chats", ChatController, :index)
end
scope [] do
pipe_through(:authenticated_api)