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.Instances do
6 @moduledoc "Instances context."
8 @adapter Pleroma.Instances.Instance
10 defdelegate filter_reachable(urls_or_hosts), to: @adapter
11 defdelegate reachable?(url_or_host), to: @adapter
12 defdelegate set_reachable(url_or_host), to: @adapter
13 defdelegate set_unreachable(url_or_host, unreachable_since \\ nil), to: @adapter
14 defdelegate get_consistently_unreachable(), to: @adapter
16 def set_consistently_unreachable(url_or_host),
17 do: set_unreachable(url_or_host, reachability_datetime_threshold())
19 def reachability_datetime_threshold do
20 federation_reachability_timeout_days =
21 Pleroma.Config.get([:instance, :federation_reachability_timeout_days], 0)
23 if federation_reachability_timeout_days > 0 do
25 NaiveDateTime.utc_now(),
26 -federation_reachability_timeout_days * 24 * 3600,
30 ~N[0000-01-01 00:00:00]
34 def host(url_or_host) when is_binary(url_or_host) do
35 if url_or_host =~ ~r/^http/i do
36 URI.parse(url_or_host).host