mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-13 12:31:13 +00:00
Merge branch 'reachability' into 'develop'
Fix reachability based on results of publishing attempts See merge request pleroma/pleroma!4231
This commit is contained in:
commit
08a444f6c3
3 changed files with 14 additions and 11 deletions
1
changelog.d/publisher-reachability.fix
Normal file
1
changelog.d/publisher-reachability.fix
Normal file
|
@ -0,0 +1 @@
|
|||
Address case where instance reachability status couldn't be updated
|
|
@ -148,12 +148,17 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
|||
{"digest", p.digest}
|
||||
]
|
||||
) do
|
||||
maybe_set_reachable(p.unreachable_since, p.inbox)
|
||||
if not is_nil(p.unreachable_since) do
|
||||
Instances.set_reachable(p.inbox)
|
||||
end
|
||||
|
||||
result
|
||||
else
|
||||
{_post_result, %{status: code} = response} = e ->
|
||||
maybe_set_unreachable(p.unreachable_since, p.inbox)
|
||||
if is_nil(p.unreachable_since) do
|
||||
Instances.set_unreachable(p.inbox)
|
||||
end
|
||||
|
||||
Logger.metadata(activity: p.activity_id, inbox: p.inbox, status: code)
|
||||
Logger.error("Publisher failed to inbox #{p.inbox} with status #{code}")
|
||||
|
||||
|
@ -174,7 +179,10 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
|||
connection_pool_snooze()
|
||||
|
||||
e ->
|
||||
maybe_set_unreachable(p.unreachable_since, p.inbox)
|
||||
if is_nil(p.unreachable_since) do
|
||||
Instances.set_unreachable(p.inbox)
|
||||
end
|
||||
|
||||
Logger.metadata(activity: p.activity_id, inbox: p.inbox)
|
||||
Logger.error("Publisher failed to inbox #{p.inbox} #{inspect(e)}")
|
||||
{:error, e}
|
||||
|
@ -183,12 +191,6 @@ defmodule Pleroma.Web.ActivityPub.Publisher do
|
|||
|
||||
defp connection_pool_snooze, do: {:snooze, 3}
|
||||
|
||||
defp maybe_set_reachable(%NaiveDateTime{}, inbox), do: Instances.set_reachable(inbox)
|
||||
defp maybe_set_reachable(_, _), do: :ok
|
||||
|
||||
defp maybe_set_unreachable(nil, inbox), do: Instances.set_unreachable(inbox)
|
||||
defp maybe_set_unreachable(%NaiveDateTime{}, _), do: :ok
|
||||
|
||||
defp signature_host(%URI{port: port, scheme: scheme, host: host}) do
|
||||
if port == URI.default_port(scheme) do
|
||||
host
|
||||
|
|
|
@ -180,7 +180,7 @@ defmodule Pleroma.Web.ActivityPub.PublisherTest do
|
|||
Publisher.prepare_one(%{
|
||||
inbox: inbox,
|
||||
activity_id: activity.id,
|
||||
unreachable_since: NaiveDateTime.utc_now()
|
||||
unreachable_since: NaiveDateTime.utc_now() |> NaiveDateTime.to_string()
|
||||
})
|
||||
|> Publisher.publish_one()
|
||||
|
||||
|
@ -269,7 +269,7 @@ defmodule Pleroma.Web.ActivityPub.PublisherTest do
|
|||
Publisher.prepare_one(%{
|
||||
inbox: inbox,
|
||||
activity_id: activity.id,
|
||||
unreachable_since: NaiveDateTime.utc_now()
|
||||
unreachable_since: NaiveDateTime.utc_now() |> NaiveDateTime.to_string()
|
||||
})
|
||||
|> Publisher.publish_one()
|
||||
end) =~ "connrefused"
|
||||
|
|
Loading…
Reference in a new issue