2020-03-09 16:00:16 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-03-09 16:00:16 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Chat do
|
|
|
|
use Ecto.Schema
|
2020-05-10 11:00:01 +00:00
|
|
|
|
2020-03-09 16:00:16 +00:00
|
|
|
import Ecto.Changeset
|
2020-09-10 09:24:44 +00:00
|
|
|
import Ecto.Query
|
2020-03-09 16:00:16 +00:00
|
|
|
|
2020-09-02 00:05:24 +00:00
|
|
|
alias Pleroma.Chat
|
2020-03-09 16:00:16 +00:00
|
|
|
alias Pleroma.Repo
|
2020-04-20 10:29:19 +00:00
|
|
|
alias Pleroma.User
|
2020-03-09 16:00:16 +00:00
|
|
|
|
|
|
|
@moduledoc """
|
2020-04-08 13:55:43 +00:00
|
|
|
Chat keeps a reference to ChatMessage conversations between a user and an recipient. The recipient can be a user (for now) or a group (not implemented yet).
|
2020-03-09 16:00:16 +00:00
|
|
|
|
|
|
|
It is a helper only, to make it easy to display a list of chats with other people, ordered by last bump. The actual messages are retrieved by querying the recipients of the ChatMessages.
|
|
|
|
"""
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
@type t :: %__MODULE__{}
|
2020-06-07 12:25:30 +00:00
|
|
|
@primary_key {:id, FlakeId.Ecto.CompatType, autogenerate: true}
|
|
|
|
|
2020-03-09 16:00:16 +00:00
|
|
|
schema "chats" do
|
|
|
|
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
|
|
|
|
field(:recipient, :string)
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2020-06-06 08:38:45 +00:00
|
|
|
def changeset(struct, params) do
|
2020-03-09 16:00:16 +00:00
|
|
|
struct
|
2020-06-03 12:26:50 +00:00
|
|
|
|> cast(params, [:user_id, :recipient])
|
2020-04-10 12:47:56 +00:00
|
|
|
|> validate_change(:recipient, fn
|
|
|
|
:recipient, recipient ->
|
|
|
|
case User.get_cached_by_ap_id(recipient) do
|
2020-04-29 18:14:34 +00:00
|
|
|
nil -> [recipient: "must be an existing user"]
|
2020-04-10 12:47:56 +00:00
|
|
|
_ -> []
|
|
|
|
end
|
|
|
|
end)
|
2020-03-09 16:00:16 +00:00
|
|
|
|> validate_required([:user_id, :recipient])
|
|
|
|
|> unique_constraint(:user_id, name: :chats_user_id_recipient_index)
|
|
|
|
end
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
@spec get_by_user_and_id(User.t(), FlakeId.Ecto.CompatType.t()) ::
|
|
|
|
{:ok, t()} | {:error, :not_found}
|
|
|
|
def get_by_user_and_id(%User{id: user_id}, id) do
|
|
|
|
from(c in __MODULE__,
|
|
|
|
where: c.id == ^id,
|
|
|
|
where: c.user_id == ^user_id
|
|
|
|
)
|
|
|
|
|> Repo.find_resource()
|
|
|
|
end
|
|
|
|
|
|
|
|
@spec get_by_id(FlakeId.Ecto.CompatType.t()) :: t() | nil
|
2020-06-03 10:30:12 +00:00
|
|
|
def get_by_id(id) do
|
2020-09-10 09:24:44 +00:00
|
|
|
Repo.get(__MODULE__, id)
|
2020-06-03 10:30:12 +00:00
|
|
|
end
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
@spec get(FlakeId.Ecto.CompatType.t(), String.t()) :: t() | nil
|
2020-04-09 10:44:20 +00:00
|
|
|
def get(user_id, recipient) do
|
2020-09-10 09:24:44 +00:00
|
|
|
Repo.get_by(__MODULE__, user_id: user_id, recipient: recipient)
|
2020-04-09 10:44:20 +00:00
|
|
|
end
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
@spec get_or_create(FlakeId.Ecto.CompatType.t(), String.t()) ::
|
|
|
|
{:ok, t()} | {:error, Ecto.Changeset.t()}
|
2020-04-09 13:13:55 +00:00
|
|
|
def get_or_create(user_id, recipient) do
|
|
|
|
%__MODULE__{}
|
2020-06-06 08:38:45 +00:00
|
|
|
|> changeset(%{user_id: user_id, recipient: recipient})
|
2020-04-09 13:13:55 +00:00
|
|
|
|> Repo.insert(
|
2020-05-05 18:07:47 +00:00
|
|
|
# Need to set something, otherwise we get nothing back at all
|
|
|
|
on_conflict: [set: [recipient: recipient]],
|
2020-04-09 13:13:55 +00:00
|
|
|
returning: true,
|
|
|
|
conflict_target: [:user_id, :recipient]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-09-10 09:24:44 +00:00
|
|
|
@spec bump_or_create(FlakeId.Ecto.CompatType.t(), String.t()) ::
|
|
|
|
{:ok, t()} | {:error, Ecto.Changeset.t()}
|
2020-04-09 10:44:20 +00:00
|
|
|
def bump_or_create(user_id, recipient) do
|
2020-03-09 16:00:16 +00:00
|
|
|
%__MODULE__{}
|
2020-06-06 08:38:45 +00:00
|
|
|
|> changeset(%{user_id: user_id, recipient: recipient})
|
2020-03-09 16:00:16 +00:00
|
|
|
|> Repo.insert(
|
2020-06-03 12:26:50 +00:00
|
|
|
on_conflict: [set: [updated_at: NaiveDateTime.utc_now()]],
|
2020-06-07 12:25:30 +00:00
|
|
|
returning: true,
|
2020-03-09 16:00:16 +00:00
|
|
|
conflict_target: [:user_id, :recipient]
|
|
|
|
)
|
|
|
|
end
|
2020-09-02 00:05:24 +00:00
|
|
|
|
|
|
|
@spec for_user_query(FlakeId.Ecto.CompatType.t()) :: Ecto.Query.t()
|
|
|
|
def for_user_query(user_id) do
|
|
|
|
from(c in Chat,
|
|
|
|
where: c.user_id == ^user_id,
|
2020-09-11 19:13:38 +00:00
|
|
|
order_by: [desc: c.updated_at]
|
2020-09-02 00:05:24 +00:00
|
|
|
)
|
|
|
|
end
|
2020-03-09 16:00:16 +00:00
|
|
|
end
|