@luna@f.l4.pm
a90c45b7e9
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Close #304. Notes: - This patch was made on top of Pleroma develop, so I created a separate cachex worker for request signature actions, instead of Akkoma's instance cache. If that is a merge blocker, I can attempt to move logic around for that. - Regarding the `has_request_signatures: true -> false` state transition: I think that is a higher level thing (resetting instance state on new instance actor key) which is separate from the changes relevant to this one. Co-authored-by: Luna <git@l4.pm> Reviewed-on: #312 Co-authored-by: @luna@f.l4.pm <akkoma@l4.pm> Co-committed-by: @luna@f.l4.pm <akkoma@l4.pm>
48 lines
1.4 KiB
Elixir
48 lines
1.4 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Instances do
|
|
@moduledoc "Instances context."
|
|
|
|
alias Pleroma.Instances.Instance
|
|
|
|
def filter_reachable(urls_or_hosts), do: Instance.filter_reachable(urls_or_hosts)
|
|
|
|
def reachable?(url_or_host), do: Instance.reachable?(url_or_host)
|
|
|
|
def set_reachable(url_or_host), do: Instance.set_reachable(url_or_host)
|
|
|
|
def set_unreachable(url_or_host, unreachable_since \\ nil),
|
|
do: Instance.set_unreachable(url_or_host, unreachable_since)
|
|
|
|
def get_consistently_unreachable, do: Instance.get_consistently_unreachable()
|
|
|
|
def set_consistently_unreachable(url_or_host),
|
|
do: set_unreachable(url_or_host, reachability_datetime_threshold())
|
|
|
|
def reachability_datetime_threshold do
|
|
federation_reachability_timeout_days =
|
|
Pleroma.Config.get([:instance, :federation_reachability_timeout_days], 0)
|
|
|
|
if federation_reachability_timeout_days > 0 do
|
|
NaiveDateTime.add(
|
|
NaiveDateTime.utc_now(),
|
|
-federation_reachability_timeout_days * 24 * 3600,
|
|
:second
|
|
)
|
|
else
|
|
~N[0000-01-01 00:00:00]
|
|
end
|
|
end
|
|
|
|
def host(url_or_host) when is_binary(url_or_host) do
|
|
if url_or_host =~ ~r/^http/i do
|
|
URI.parse(url_or_host).host
|
|
else
|
|
url_or_host
|
|
end
|
|
end
|
|
|
|
defdelegate set_request_signatures(url_or_host), to: Instance
|
|
end
|