diff options
| author | lain <lain@soykaf.club> | 2020-04-09 15:13:55 +0200 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-04-09 15:13:55 +0200 | 
| commit | 68abea313d0be49aa6b8d4b980aa361383f991a7 (patch) | |
| tree | ed2750f46282d77ab168d32dd885cd05863c5fd5 /lib | |
| parent | d35e114acddf339ed398aeab02bf94abe229ac36 (diff) | |
| download | pleroma-68abea313d0be49aa6b8d4b980aa361383f991a7.tar.gz pleroma-68abea313d0be49aa6b8d4b980aa361383f991a7.zip  | |
ChatController: Add creation and return of chats.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/chat.ex | 10 | ||||
| -rw-r--r-- | lib/pleroma/web/pleroma_api/controllers/chat_controller.ex | 47 | ||||
| -rw-r--r-- | lib/pleroma/web/router.ex | 7 | 
3 files changed, 64 insertions, 0 deletions
diff --git a/lib/pleroma/chat.ex b/lib/pleroma/chat.ex index b61bc4c0e..2475019d1 100644 --- a/lib/pleroma/chat.ex +++ b/lib/pleroma/chat.ex @@ -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}) diff --git a/lib/pleroma/web/pleroma_api/controllers/chat_controller.ex b/lib/pleroma/web/pleroma_api/controllers/chat_controller.ex new file mode 100644 index 000000000..0ee8bea33 --- /dev/null +++ b/lib/pleroma/web/pleroma_api/controllers/chat_controller.ex @@ -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 diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index 3ecd59cd1..18ce9ee4b 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -287,6 +287,13 @@ defmodule Pleroma.Web.Router 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) +        get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)        get("/conversations/:id", PleromaAPIController, :conversation)        post("/conversations/read", PleromaAPIController, :read_conversations)  | 
