mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-11 03:39:13 +00:00
Merge branch 'feature/federation-job-insert-connection-checkout' into 'develop'
Publisher: check out a connection for inserting publish_one jobs See merge request pleroma/pleroma!2063
This commit is contained in:
commit
8efacfed67
1 changed files with 27 additions and 22 deletions
|
@ -9,6 +9,7 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
||||||
alias Pleroma.HTTP
|
alias Pleroma.HTTP
|
||||||
alias Pleroma.Instances
|
alias Pleroma.Instances
|
||||||
alias Pleroma.Object
|
alias Pleroma.Object
|
||||||
|
alias Pleroma.Repo
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
alias Pleroma.Web.ActivityPub.Relay
|
alias Pleroma.Web.ActivityPub.Relay
|
||||||
alias Pleroma.Web.ActivityPub.Transmogrifier
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
||||||
|
@ -188,31 +189,35 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
||||||
|
|
||||||
recipients = recipients(actor, activity)
|
recipients = recipients(actor, activity)
|
||||||
|
|
||||||
recipients
|
inboxes =
|
||||||
|> Enum.filter(&User.ap_enabled?/1)
|
recipients
|
||||||
|> Enum.map(fn %{source_data: data} -> data["inbox"] end)
|
|> Enum.filter(&User.ap_enabled?/1)
|
||||||
|> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
|
|> Enum.map(fn %{source_data: data} -> data["inbox"] end)
|
||||||
|> Instances.filter_reachable()
|
|> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
|
||||||
|> Enum.each(fn {inbox, unreachable_since} ->
|
|> Instances.filter_reachable()
|
||||||
%User{ap_id: ap_id} =
|
|
||||||
Enum.find(recipients, fn %{source_data: data} -> data["inbox"] == inbox end)
|
|
||||||
|
|
||||||
# Get all the recipients on the same host and add them to cc. Otherwise, a remote
|
Repo.checkout(fn ->
|
||||||
# instance would only accept a first message for the first recipient and ignore the rest.
|
Enum.each(inboxes, fn {inbox, unreachable_since} ->
|
||||||
cc = get_cc_ap_ids(ap_id, recipients)
|
%User{ap_id: ap_id} =
|
||||||
|
Enum.find(recipients, fn %{source_data: data} -> data["inbox"] == inbox end)
|
||||||
|
|
||||||
json =
|
# Get all the recipients on the same host and add them to cc. Otherwise, a remote
|
||||||
data
|
# instance would only accept a first message for the first recipient and ignore the rest.
|
||||||
|> Map.put("cc", cc)
|
cc = get_cc_ap_ids(ap_id, recipients)
|
||||||
|> Jason.encode!()
|
|
||||||
|
|
||||||
Pleroma.Web.Federator.Publisher.enqueue_one(__MODULE__, %{
|
json =
|
||||||
inbox: inbox,
|
data
|
||||||
json: json,
|
|> Map.put("cc", cc)
|
||||||
actor_id: actor.id,
|
|> Jason.encode!()
|
||||||
id: activity.data["id"],
|
|
||||||
unreachable_since: unreachable_since
|
Pleroma.Web.Federator.Publisher.enqueue_one(__MODULE__, %{
|
||||||
})
|
inbox: inbox,
|
||||||
|
json: json,
|
||||||
|
actor_id: actor.id,
|
||||||
|
id: activity.data["id"],
|
||||||
|
unreachable_since: unreachable_since
|
||||||
|
})
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue