2019-04-10 07:34:53 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-04-10 07:34:53 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Conversation do
|
|
|
|
alias Pleroma.Conversation.Participation
|
2019-08-02 09:55:41 +00:00
|
|
|
alias Pleroma.Conversation.Participation.RecipientShip
|
2019-04-10 16:17:22 +00:00
|
|
|
alias Pleroma.Repo
|
2019-04-10 14:33:45 +00:00
|
|
|
alias Pleroma.User
|
2019-04-10 07:34:53 +00:00
|
|
|
use Ecto.Schema
|
|
|
|
import Ecto.Changeset
|
|
|
|
|
|
|
|
schema "conversations" do
|
2019-04-10 14:33:45 +00:00
|
|
|
# This is the context ap id.
|
2019-04-10 07:34:53 +00:00
|
|
|
field(:ap_id, :string)
|
|
|
|
has_many(:participations, Participation)
|
2019-04-15 20:28:42 +00:00
|
|
|
has_many(:users, through: [:participations, :user])
|
2019-04-10 07:34:53 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
|
|
|
def creation_cng(struct, params) do
|
|
|
|
struct
|
|
|
|
|> cast(params, [:ap_id])
|
|
|
|
|> validate_required([:ap_id])
|
|
|
|
|> unique_constraint(:ap_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_for_ap_id(ap_id) do
|
|
|
|
%__MODULE__{}
|
|
|
|
|> creation_cng(%{ap_id: ap_id})
|
2019-04-10 14:33:45 +00:00
|
|
|
|> Repo.insert(
|
|
|
|
on_conflict: [set: [updated_at: NaiveDateTime.utc_now()]],
|
|
|
|
returning: true,
|
|
|
|
conflict_target: :ap_id
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_for_ap_id(ap_id) do
|
|
|
|
Repo.get_by(__MODULE__, ap_id: ap_id)
|
|
|
|
end
|
|
|
|
|
2019-08-06 13:06:19 +00:00
|
|
|
def maybe_create_recipientships(participation, activity) do
|
2019-08-02 09:55:41 +00:00
|
|
|
participation = Repo.preload(participation, :recipients)
|
|
|
|
|
|
|
|
if participation.recipients |> Enum.empty?() do
|
|
|
|
recipients = User.get_all_by_ap_id(activity.recipients)
|
|
|
|
RecipientShip.create(recipients, participation)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-10 14:33:45 +00:00
|
|
|
@doc """
|
|
|
|
This will
|
|
|
|
1. Create a conversation if there isn't one already
|
|
|
|
2. Create a participation for all the people involved who don't have one already
|
|
|
|
3. Bump all relevant participations to 'unread'
|
|
|
|
"""
|
2019-05-09 14:39:28 +00:00
|
|
|
def create_or_bump_for(activity, opts \\ []) do
|
2019-04-10 14:33:45 +00:00
|
|
|
with true <- Pleroma.Web.ActivityPub.Visibility.is_direct?(activity),
|
|
|
|
"Create" <- activity.data["type"],
|
2019-05-12 00:01:42 +00:00
|
|
|
object <- Pleroma.Object.normalize(activity),
|
2019-05-21 14:33:54 +00:00
|
|
|
true <- object.data["type"] in ["Note", "Question"],
|
2019-04-28 20:44:04 +00:00
|
|
|
ap_id when is_binary(ap_id) and byte_size(ap_id) > 0 <- object.data["context"] do
|
2019-04-10 14:33:45 +00:00
|
|
|
{:ok, conversation} = create_for_ap_id(ap_id)
|
|
|
|
|
2019-04-15 19:45:25 +00:00
|
|
|
users = User.get_users_from_set(activity.recipients, false)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
|
|
|
participations =
|
2019-04-10 15:05:33 +00:00
|
|
|
Enum.map(users, fn user ->
|
2019-10-25 18:29:23 +00:00
|
|
|
invisible_conversation = Enum.any?(users, &User.blocks?(user, &1))
|
|
|
|
|
|
|
|
unless invisible_conversation do
|
|
|
|
User.increment_unread_conversation_count(conversation, user)
|
|
|
|
end
|
|
|
|
|
|
|
|
opts = Keyword.put(opts, :invisible_conversation, invisible_conversation)
|
2019-10-01 21:37:08 +00:00
|
|
|
|
2019-04-10 14:33:45 +00:00
|
|
|
{:ok, participation} =
|
2019-05-09 14:39:28 +00:00
|
|
|
Participation.create_for_user_and_conversation(user, conversation, opts)
|
2019-04-10 14:33:45 +00:00
|
|
|
|
2019-08-06 13:06:19 +00:00
|
|
|
maybe_create_recipientships(participation, activity)
|
2019-04-10 14:33:45 +00:00
|
|
|
participation
|
|
|
|
end)
|
|
|
|
|
2019-05-03 11:39:14 +00:00
|
|
|
{:ok,
|
|
|
|
%{
|
|
|
|
conversation
|
|
|
|
| participations: participations
|
|
|
|
}}
|
|
|
|
else
|
|
|
|
e -> {:error, e}
|
2019-04-10 14:33:45 +00:00
|
|
|
end
|
2019-04-10 07:34:53 +00:00
|
|
|
end
|
2019-05-08 15:37:00 +00:00
|
|
|
|
|
|
|
@doc """
|
|
|
|
This is only meant to be run by a mix task. It creates conversations/participations for all direct messages in the database.
|
|
|
|
"""
|
2019-05-08 16:19:20 +00:00
|
|
|
def bump_for_all_activities do
|
2019-05-08 15:37:00 +00:00
|
|
|
stream =
|
|
|
|
Pleroma.Web.ActivityPub.ActivityPub.fetch_direct_messages_query()
|
|
|
|
|> Repo.stream()
|
|
|
|
|
2019-05-08 16:09:07 +00:00
|
|
|
Repo.transaction(
|
|
|
|
fn ->
|
|
|
|
stream
|
2019-05-09 14:39:28 +00:00
|
|
|
|> Enum.each(fn a -> create_or_bump_for(a, read: true) end)
|
2019-05-08 16:09:07 +00:00
|
|
|
end,
|
|
|
|
timeout: :infinity
|
|
|
|
)
|
2019-05-08 15:37:00 +00:00
|
|
|
end
|
2019-04-10 07:34:53 +00:00
|
|
|
end
|