1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Chat do
14 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).
16 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.
19 @primary_key {:id, FlakeId.Ecto.CompatType, autogenerate: true}
22 belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
23 field(:recipient, :string)
28 def changeset(struct, params) do
30 |> cast(params, [:user_id, :recipient])
31 |> validate_change(:recipient, fn
32 :recipient, recipient ->
33 case User.get_cached_by_ap_id(recipient) do
34 nil -> [recipient: "must be an existing user"]
38 |> validate_required([:user_id, :recipient])
39 |> unique_constraint(:user_id, name: :chats_user_id_recipient_index)
47 def get(user_id, recipient) do
49 |> Repo.get_by(user_id: user_id, recipient: recipient)
52 def get_or_create(user_id, recipient) do
54 |> changeset(%{user_id: user_id, recipient: recipient})
56 # Need to set something, otherwise we get nothing back at all
57 on_conflict: [set: [recipient: recipient]],
59 conflict_target: [:user_id, :recipient]
63 def bump_or_create(user_id, recipient) do
65 |> changeset(%{user_id: user_id, recipient: recipient})
67 on_conflict: [set: [updated_at: NaiveDateTime.utc_now()]],
69 conflict_target: [:user_id, :recipient]